dhcpd 管理問題 (已分配與未分配的IP) - BBS

Table of Contents

Dear All,
小弟有2台DHCP server 做 failover

failover peer "dhcp" {
primary;
address 10.18.4.90;
port 520;
peer address 10.18.4.89;
peer port 519;
max-response-delay 60;
max-unacked-updates 10;
mclt 600;
split 128;
load balance max seconds 3;
}


有個網段,我共給他2個C的IP讓伺服器分配

shared-network dhcp16
{
subnet 10.18.16.0 netmask 255.255.252.0
{
pool
{
failover peer "dhcp";
deny dynamic bootp clients;
range 10.18.16.1 10.18.16.253;
range 10.18.17.0 10.18.17.252;

}
option broadcast-address 10.18.19.255;
option routers 10.18.19.254;
option subnet-mask 255.255.252.0;
}
}

租約 設定為

default-lease-time 14400;
max-lease-time 28800;

最近使用者反應一直發不到IP,但LOG發現顯示 dhcp peer holds all free leases
似乎是沒有IP可以分配了,但是我看在線上的使用者不到100人
實在不可能IP已經分配完了,因此想看使用中的租約有哪些,哪些是尚未分配出去的

我試過用 webmin 去看,但是他顯示沒有使用中的租約,連過期的租約也沒有
不知道除了 webmin 外,isc-dhcpd 有沒有管理軟體可以看伺服器的運作IP分配狀況呢?

--

All Comments