我可以从我的Windows XP查询我的Windows 2003 DHCP服务器,以获得IP地址,如果我有MAC地址或其他。
对于Windows 2003服务器查询:
netsh dhcp server <type.srvIP.here> scope ssss show client | find "clientIP" netsh dhcp server <type.srvIP.here> scope ssss show client | find "MACAddress"
您需要知道该客户端所在的范围(ssss),以显示范围:
netsh dhcp server <type.srvIP.here> show scope
为什么不直接查询你的networking交换机呢?
arp -a "clientIP" arp -a | find "MACAddress"