Home | Mirror | Search

第 40 章 DHCP

目錄

1. DHCP Server
2. dhclient
3. release matching connections

1. DHCP Server

eth0 公網ip

eth1 192.168.0.1 255.255.255.0

eth2 192.168.1.1 255.255.255.0

		
dhcpd.conf配置內容如下:

#Sample /etc/dhcpd.conf
default-lease-time 1200;
max-lease-time 19200;
option domain-name-servers 202.102.192.68,202.102.199.68; 
#option domain-name "test.test";
ddns-update-style ad-hoc;

subnet 192.168.0.0 netmask 255.255.255.0 {
	range 192.168.0.20 192.168.0.200;
	option subnet-mask 255.255.255.0;
	option broadcast-address 192.168.0.255;
	option routers 192.168.0.1;
}
subnet 192.168.1.0 netmask 255.255.255.0 {
	range 192.168.1.20 192.168.1.200;
	option subnet-mask 255.255.255.0;
	option broadcast-address 192.168.1.255;
	option routers 192.168.1.1;
}		
		
		
comments powered by Disqus