192.168.1.0 /24
192.168.2.0 /24
192.168.3.0 /24
eth0;eth1;eth2
eth0:192.168.1.1
eth1:192.168.2.1
eth2:192.168.3.1
eth0
eth0:192.168.1.2
ddns-update-style interim;
ignore client-updates;
option time-offset -18000; # Eastern Standard Time
default-lease-time 259200;
max-lease-time 777600;
option routers 192.168.1.1;
range dynamic-bootp 192.168.1.5 192.168.1.254;
}
subnet 192.168.2.0 netmask 255.255.255.0 {
option routers 192.168.2.1;
range dynamic-bootp 192.168.2.5 192.168.2.254;
}
subnet 192.168.3.0 netmask 255.255.255.0 {
option routers 192.168.3.1;
range dynamic-bootp 192.168.3.5 192.168.7.254;
}
保存退出。
刷重防火墙 iptables -F注意是大写的F.(或者stop iptable)
这里DHCP就配置好了,可以根据需要配置OPTION.
echo 1 > /proc/sys/net/ipv4/ip_forward #开始路由功能。
dhcprelay 192.168.1.2 # 对192.168.1.2 的dhcp中继。
iptables -F
service dhcpd restart
就可以了。