码迷,mamicode.com
首页 > 系统相关 > 详细

shell脚本安装DHCP

时间:2019-08-24 17:08:08      阅读:101      评论:0      收藏:0      [点我收藏+]

标签:shel   style   emctl   mct   linu   default   ble   time   out   

#! /bin/bash

#这是安装DHCP的shell脚本

echo "安装DHCP"
yum -y install dhcp

echo "修改配置文件"
cat << EOF > /etc/dhcp/dhcpd.conf
option domain-name "crushlinux.com";
option domain-name-servers 114.114.114.114, 8.8.8.8;

default-lease-time 600;
max-lease-time 7200;


subnet 192.168.200.0 netmask 255.255.255.0 {
range 192.168.200.10 192.168.200.110;
option routers 192.168.200.2;
}
EOF

echo "开启服务,设置为开机自启动"
systemctl start dhcpd
systemctl enable dhcpd

shell脚本安装DHCP

标签:shel   style   emctl   mct   linu   default   ble   time   out   

原文地址:https://www.cnblogs.com/tanxiaojuncom/p/11405106.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!