powershell 查看出口 IP 和内网 IP

powershell 查看出口 IP 脚本

$ip = Invoke-RestMethod https://ipinfo.io/json
$ip.IP

如果想查看详细信息,可以直接输出 $ip

powershell 查看内网 IP 脚本

(Get-NetIPAddress -AddressFamily IPv4 -InterfaceAlias (Get-NetAdapter | Where-Object {$_.Status -eq 'Up'} | Select-Object -ExpandProperty Name)).IPAddress

如果有多张网卡,会显示多个 IP。

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>