1、安裝Dhcp 伺服器
# apt-get install dhcp3-server
出現 * check syslog for diagnostics. [fail]
這是自動啟用失敗,需要正確後再啟用。
2、修改 /etc/dhcp/dhcpcd.conf,設定參照如下,網段可自行設定
ddns-update-style none;
option domain-name "test.com";
option domain-name-servers 10.1.1.1, 10.1.1.2;
default-lease-time 600;
max-lease-time 7200;
log-facility local7;
subnet 10.1.1.0 netmask 255.255.255.0 {
range dynamic-bootp 10.1.1.41 10.1.1.50;
option broadcast-address 10.1.1.255;
option routers 10.1.1.1;
}
3、修改 /etc/default/dhcp3-server
INTERFACES="eth0" <<設定要listen 的interfaces
4、指定IP給eth0
ifconfig eth1 10.1.1.0 netmask 255.255.255.0
最後啟動DHCP
/etc/init.d/dhcp3-server start
★注意一點,最好使用root 權限