mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-08-09 13:04:59 +02:00
Added list-local-ip.ps1
This commit is contained in:
36
scripts/list-internet-ip.ps1
Executable file
36
scripts/list-internet-ip.ps1
Executable file
@ -0,0 +1,36 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Lists the Internet IP address
|
||||
.DESCRIPTION
|
||||
This PowerShell script queries all public IP address information and prints it.
|
||||
.EXAMPLE
|
||||
PS> ./list-internet-ip.ps1
|
||||
✅ Internet IP 185.72.229.161, 2003:f2:6128:fd01:e543:601:30c2:a028 near Munich, Germany
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
.NOTES
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
#>
|
||||
|
||||
try {
|
||||
if ($IsLinux) {
|
||||
[string]$publicIPv4 = (curl -4 --silent ifconfig.co)
|
||||
[string]$publicIPv6 = (curl -6 --silent ifconfig.co)
|
||||
[string]$city = (curl --silent ifconfig.co/city)
|
||||
[string]$country = (curl --silent ifconfig.co/country)
|
||||
} else {
|
||||
[string]$publicIPv4 = (curl.exe -4 --silent ifconfig.co)
|
||||
[string]$publicIPv6 = (curl.exe -6 --silent ifconfig.co)
|
||||
[string]$city = (curl.exe --silent ifconfig.co/city)
|
||||
[string]$country = (curl.exe --silent ifconfig.co/country)
|
||||
}
|
||||
if ("$publicIPv4" -eq "") { $publicIPv4 = "no IPv4" }
|
||||
if ("$publicIPv6" -eq "") { $publicIPv6 = "no IPv6" }
|
||||
if ("$city" -eq "") { $city = "unknown city" }
|
||||
if ("$country" -eq "") { $country = "unknown country" }
|
||||
"✅ Internet IP $publicIPv4, $publicIPv6 near $city, $country"
|
||||
exit 0 # success
|
||||
} catch {
|
||||
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||
exit 1
|
||||
}
|
Reference in New Issue
Block a user