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

二分钟搭建LINUX dhcp服务器

时间:2017-01-04 17:12:41      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:linux dhcp服务


直接采用: yum install dhcp*


技术分享


设置配置文件:vim /etc/dhcp/dhcpd.conf

技术分享

配置文件:dhcpd.conf

# dhcpd.conf

#

# Sample configuration file for ISC dhcpd

#

# option definitions common to all supported networks...

option domain-name "jerry.com";

option domain-name-servers 114.114.114.114;

default-lease-time 43600;

max-lease-time 87200;

# Use this to enble / disable dynamic dns updates globally.

#ddns-update-style none;

# If this DHCP server is the official DHCP server for the local

# network, the authoritative directive should be uncommented.

#authoritative;

# Use this to send dhcp log messages to a different log file (you also

# have to hack syslog.conf to complete the redirection).

log-facility local7;

# No service will be given on this subnet, but declaring it helps the 

# DHCP server to understand the network topology.

subnet 192.168.0.0 netmask 255.255.0.0 {

       range 192.168.26.100 192.168.26.110;

       option routers 192.168.25.3;

}



启动DHCPD服务:/etc/init.d/dhcpd start  #设置配置文件有误会报错,按错误提示修正再启动即可。


技术分享

开一台虚拟机,设置成自动获取IP,测试效果如下:


技术分享

本文出自 “在路上……找回丢失的记忆” 博客,请务必保留此出处http://jdonghong.blog.51cto.com/3473478/1888895

二分钟搭建LINUX dhcp服务器

标签:linux dhcp服务

原文地址:http://jdonghong.blog.51cto.com/3473478/1888895

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