mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-25 17:33:17 +01:00
71 lines
1.8 KiB
Markdown
71 lines
1.8 KiB
Markdown
*list-public-ip.ps1*
|
|
================
|
|
|
|
This PowerShell script queries the public IP address(es) and prints it.
|
|
|
|
Parameters
|
|
----------
|
|
```powershell
|
|
PS> ./list-public-ip.ps1 [<CommonParameters>]
|
|
|
|
[<CommonParameters>]
|
|
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
|
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
|
```
|
|
|
|
Example
|
|
-------
|
|
```powershell
|
|
PS> ./list-public-ip.ps1
|
|
✅ Public IP address 185.72.209.161, 2003:f2:6128:fc01:e503:601:30c2:a028 near Munich
|
|
|
|
```
|
|
|
|
Notes
|
|
-----
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
Related Links
|
|
-------------
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
Script Content
|
|
--------------
|
|
```powershell
|
|
<#
|
|
.SYNOPSIS
|
|
Lists the public IP address(es)
|
|
.DESCRIPTION
|
|
This PowerShell script queries the public IP address(es) and prints it.
|
|
.EXAMPLE
|
|
PS> ./list-public-ip.ps1
|
|
✅ Public IP address 185.72.209.161, 2003:f2:6128:fc01:e503:601:30c2:a028 near Munich
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
.NOTES
|
|
Author: Markus Fleschutz | License: CC0
|
|
#>
|
|
|
|
try {
|
|
if ($IsLinux) {
|
|
$publicIPv4 = (curl -4 --silent ifconfig.co)
|
|
$publicIPv6 = (curl -6 --silent ifconfig.co)
|
|
$city = (curl --silent ifconfig.co/city)
|
|
} else {
|
|
$publicIPv4 = (curl.exe -4 --silent ifconfig.co)
|
|
$publicIPv6 = (curl.exe -6 --silent ifconfig.co)
|
|
$city = (curl.exe --silent ifconfig.co/city)
|
|
}
|
|
if ("$publicIPv4" -eq "") { $publicIPv4 = "no IPv4" }
|
|
if ("$publicIPv6" -eq "") { $publicIPv6 = "no IPv6" }
|
|
if ("$city" -eq "") { $city = "unknown" }
|
|
Write-Output "✅ Public IP address $publicIPv4, $publicIPv6 near $City"
|
|
exit 0 # success
|
|
} catch {
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
exit 1
|
|
}
|
|
```
|
|
|
|
*(generated by convert-ps2md.ps1 using the comment-based help of list-public-ip.ps1 as of 10/19/2023 08:11:39)*
|