返回列表 发帖

[问题求助] Powershell 获取IPV6地址

下面的代码, 取到的IPv6地址有三个, 有一个临时的, 还有一个本地的, 还有一个外网的,
如果我只想取那个外网的, 有什么更直接的方法吗? 请求高手解答, 多谢
$ComputerName = ''
[System.Net.Dns]::GetHostAddresses($ComputerName) |
Where-Object {
  $_.AddressFamily -eq 'InterNetworkV6'
} |
Select-Object -ExpandProperty IPAddressToStringCOPY

Get-NetIPAddress -AddressFamily IPv6 -PrefixOrigin RouterAdvertisement -SuffixOrigin Link|Select-Object -ExpandProperty IPAddressCOPY
win7 ps2.0可能不支持此cmdlet;
微信:flashercs
QQ:49908356

TOP

回复 2# flashercs


感谢大侠,

试了下, ps5.1也不能用, 难道非得要ps6或7吗

TOP

回复 2# flashercs


  找到了C#的代码, 但是不知道怎么在PS中使用
https://www.cnblogs.com/LifeDecidesHappiness/p/15577072.html

TOP

foreach ($nic in [System.Net.NetworkInformation.NetworkInterface]::GetAllNetworkInterfaces()) {
  if ($nic.NetworkInterfaceType -ne 'Loopback' -and $nic.OperationalStatus -eq 'Up') {
    $ipprops = $nic.GetIPProperties()
    foreach ($ipinfo in $ipprops.UnicastAddresses) {
      if ($ipinfo.PrefixOrigin -eq 'RouterAdvertisement' -and $ipinfo.SuffixOrigin -eq 'LinkLayerAddress') {
        $ipinfo.Address.ToString()
      }
    }
  }
}COPY
1

评分人数

微信:flashercs
QQ:49908356

TOP

返回列表