码迷,mamicode.com
首页 > 其他好文 > 详细

DHCP服务器搭建 企业实用 小白教程

时间:2018-08-13 10:45:08      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:serve   hardware   outer   files   dhcpd   安装   etc   lease   保存   

DHCP 服务器搭建

安装dhcp
Yum -y install dhcp
编辑配置文件
vim /etc/dhcp/dhcpd.conf
#dhcpd.conf
default-lease-time 600; 默认租期时间 单位秒
max-lease-time 7200; 最大租期时间 单位秒
subnet 192.168.1.0 netmask 255.255.255.0{ 定义子网
range 192.168.1.100 192.168.1.200; IP地址池
option domain-name-server 202.96.128.86,202.96.128.166; DNS服务器
option domain-name “hnzl.com”; 可选 设置默认搜索域
option routers 192.168.1.1; 网关
option broadcast-address 192.168.255.255; 可选 备选广播地址
}

host fileserver{ 主机
hardware ethernet (文件服务器MAC地址);
fixed-address 192.168.1.2; 指定IP地址
}
host printserver{
Hardward ethernet (打印服务器MAC地址);
fixed-address 192.168.1.3; 指定IP地址
}
保存退出
service dhcpd start 启动服务
chkconfig dhcpd on 开机启动

DHCP服务器搭建 企业实用 小白教程

标签:serve   hardware   outer   files   dhcpd   安装   etc   lease   保存   

原文地址:http://blog.51cto.com/7206952/2158570

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