I am looking for a fix IP tracking utility

  • Thread starter Thread starter Tee
  • Start date Start date
T

Tee

I know this is a DNS news group, but I do have a DHCP
question: Is the a free utility or tool out there that I
can use to keep track of my IP addresses?

I setup a DHCP server with 2 IP scopes configured. i have
a range of IP addresses used for DHCP and another range
for fix assignment. I am looking for a utility in which
I can track my fix IP assignments.

Any help?

Tee
 
If you know how to code, you can query for all the subkeys under
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\DhcpServer\Configuration\Subnets\yourS
copeAddress\ReservedIps

Reg.exe from cmd can do this for you. e.g.
C:\>reg query
\\myDHCPServer\HKLM\SOFTWARE\Microsoft\DhcpServer\Configuration\Subnets /s
|find /i "reservedip" will search for all the reserved(static IP) in all the
scopes on myDHCPServer
For VBScripts, try
http://www.microsoft.com/technet/scriptcenter/registry/default.asp

HTH
--
Sincerely,

Dèjì Akómöláfé, MCSE MCSA MCP+I
www.akomolafe.com
www.iyaburo.com
Do you now realize that Today is the Tomorrow you were worried about
Yesterday? -anon
 
Back
Top