我有一个IP地址列表,我需要为此列表的每个IP地址关联站点和子网。 我有5203个IP地址,要一一验证就太麻烦了;也许有人可以帮助我? 谢谢。
答案 0 :(得分:0)
您没有像@boxdog所说的那样提供太多信息。 我猜您正在使用DHCP,并且您想查询范围和租用的IP。
$scopes = Get-DhcpServerv4Scope -ComputerName "DHCP-Server"
foreach($scope in $scopes)
{
write-host -ForegroundColor Cyan "The current scope name is: " -NoNewline; Write-Host -ForegroundColor Green $scope.name
$lease = Get-DhcpServerv4Lease -ScopeId $scope.ScopeId -ComputerName "DHCP-Server"
$lease
}
如果没有,请提供有关您想做什么的更多信息。另外,您已经编写的脚本可能会有所帮助。