shared-network "temp" {
subnet 172.210.140.0 netmask 255.255.252.0 {
option routers 172.210.140.1;
## Define the DHCP pool and access list for
this pool.
pool {
allow unknown-clients;
failover peer "dhcp-failover";
range 172.210.140.2
172.210.140.255;
range 172.210.141.1
172.210.141.255;
range 172.210.142.1
172.210.142.255;
range 172.210.143.1
172.210.143.254;
}
}
subnet 172.210.144.0 netmask 255.255.252.0 {
option routers 172.210.144.1;
}
}
I can't post log entries as we have expanded the pool to
patch the issue, so currently there are no errors. However,
this pool only shows 74% utilization. And all it takes is a
few more turn-ups to cause this problem.
--------------------------------------------------
Monitoring: ON
Warning limit: 80%
Critical limit: 90%
Active leases: 762/1018 (74.9%)
As I've mentioned before, the only thing that stands out to
me in dhcpd.leases is the fact that we have a couple hundred
of "expired" leases, which could and should be used, even
though these are actually being held in the expectation that
the previous client will return. (At least, that is my
understanding)
But, what is expected behavior here? For example, if we
have 500 leases, 250 of them have a binding state of active
and the other 250 have expired if a new client comes along
DHCP should free up one of the expired ones, correct?