DHCP server monitoring

  • Thread starter Thread starter Chris
  • Start date Start date
C

Chris

Is there anyway or any utility that we could use to monitor
the leases on a subnet without having to use the MMC.

It would be great if an alert could be emailed out stating
that a subnet had less than 10% of its leases available.
The MMC tool is way to slow and we can't use this when we
are on the road.

Thank you
Chris
 
Wouldnt something like this be written to the Event Log? I'm sure there must be something that will fire off an email or something based on event log events.
 
Chris said:
Is there anyway or any utility that we could use to monitor
the leases on a subnet without having to use the MMC.


If you know how many potential address are available,
DHCPcmd can enumerate active leases. You can use
this in a script to determine how many are available

The following link gives you more info and you can download
it there.

http://support.microsoft.com/defaul...port/kb/articles/q232/2/13.ASP&NoWebContent=1

You should also be able to use netsh something like this:

netsh dhcp server 192.168.0.2 scope 192.168.10.0 show clients

This also enumerates leases and you will need to calculate available
leases if you need that information.
 
Back
Top