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

【linux基础】dhcp服务

时间:2017-08-01 21:47:54      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:配置   dhcp   

1、修改服务的配置文件:定制功能

vi /etc/dhcp/dhcpd.conf 

option domain-name "linuxxue.top";

option domain-name-servers 202.106.0.20;

default-lease-time 600;

max-lease-time 7200;

log-facility local7;

subnet 192.168.100.0 netmask 255.255.255.0 {

  range 192.168.100.150 192.168.100.250;

  option routers 192.168.100.100;

}


##启动

/etc/init.d/dhcpd  start

chkconfig dhcpd on


2、linux客户机测试

dhclient  -d  eth0   ##获取ip

dhclient -r  eth0  ##释放ip


【linux基础】dhcp服务

标签:配置   dhcp   

原文地址:http://wangchuang.blog.51cto.com/10460964/1952762

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