Skip to content

Instantly share code, notes, and snippets.

@olex0r
Created April 14, 2022 05:30
Show Gist options
  • Save olex0r/55b6df23e2afbf2b01be2e69a1da03a8 to your computer and use it in GitHub Desktop.
Save olex0r/55b6df23e2afbf2b01be2e69a1da03a8 to your computer and use it in GitHub Desktop.
Get WAN IP
#!/bin/bash
WANIP=$(dig TXT +short o-o.myaddr.l.google.com @ns1.google.com | awk -F'"' '{ print $2}')
WANGEO=$(geoiplookup $WANIP | cut -d ' ' -f 4,5)
echo $WANIP
echo $WANGEO
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment