我想同时运行 2 个 DHCP 服务器,每个服务器应该具有不同的 IP,但它们都位于同一子网、同一网关,但其中一个必须具有 DHCP 环的前半部分,另一个必须具有后半部分。
我应该怎么做呢(我可以配置服务器,没问题)但是我不应该将一个指向另一个吗?如果是,那么使用哪个命令或者我该怎么做。(目前我有 2 个 Windows 2008 服务器:192 168.111.11 /24 为范围的前半部分,192.168.111.20 /24 为范围的后半部分,我必须指向 111.20 来查看 111.11)。
我想用 2 个 ubuntu dhcp 服务器替换它们。
提前谢谢了
玛多娜
答案1
我在家里的一个子网中运行两个 DHCP 服务器(以防一个盒子不可用)。
在服务器上的 /etc/dhcp3/dhcpd.conf 中,我声明为主要服务器,我有以下内容:
failover peer "dhcp-failover" {
primary; # declare this to be the primary server
address 10.11.12.1;
port 647;
peer address 10.11.12.2;
peer port 647;
max-response-delay 30;
max-unacked-updates 10;
load balance max seconds 3;
mclt 1800;
split 128;
}
在服务器上的 /etc/dhcp3/dhcpd.conf 中,我声明为辅助服务器,内容如下:
failover peer "dhcp-failover" {
secondary; # declare this to be a secondary server
address 10.11.12.2;
port 647;
peer address 10.11.12.1;
peer port 647;
max-response-delay 30;
max-unacked-updates 10;
load balance max seconds 3;
}
希望有所帮助。