在服务台环境中,工程师必须经常在 DHCP 服务器中查找 IP 地址。例如使用 VNC 查看器。
我在互联网上找不到真正可以在租用地址中搜索 IP 地址、主机名或 MAC 地址的工具。
答案1
您可以使用以下 PowerShell cmdlet:
Get-DhcpServerv4Lease
例子:
Get-DhcpServerv4Lease -ScopeId 192.168.1.0 |Where-Object {$_.IPAddress -eq "192.168.1.100"}
我要做的是定期安排创建 CSV 文件,以便服务台团队可以轻松地在其中搜索:
Get-DhcpServerv4Lease -ScopeId 192.168.1.0 |Export-Csv -Path \\myFileServer\DHCPInfo\dhcp.csv -NoTypeInformation