查询 2003 年 dhcp 租约

查询 2003 年 dhcp 租约

如果我有 mac 地址或其他信息,我可以从我的 windows xp 查询我的 windows 2003 dhcp 服务器以获取 ip 地址吗?

答案1

对于 Windows 2003 服务器查询:

netsh dhcp server <type.srvIP.here> scope s.s.s.s show client | find "clientIP"
netsh dhcp server <type.srvIP.here> scope s.s.s.s show client | find "MACAddress"

您需要知道此客户端所在的范围 (ssss),以显示范围:

netsh dhcp server <type.srvIP.here> show scope

为什么不直接向你的网络交换机查询呢?:

arp -a "clientIP"
arp -a | find "MACAddress"

相关内容