Answers for "get public ip"

8

ubuntu check public ip command line

#4 Ways to Find Server Public IP Address in Linux Terminal
#1. Using dig Utility
dig +short myip.opendns.com @resolver1.opendns.com
#2. Using host Utility
host myip.opendns.com resolver1.opendns.com | grep "myip.opendns.com has" | awk '{print $4}'
#3. Using wget Command Line Downloader
wget -qO- http://ipecho.net/plain | xargs echo
wget -qO - icanhazip.com
#4. Using cURL Command Line Downloader
 curl ifconfig.co
 curl ifconfig.me
 curl icanhazip.com
Posted by: Guest on August-09-2020
0

windows internal ip

//See your internal ip on any windows
Search -> Write:cmd -> command:ipconfig
Posted by: Guest on December-23-2020
1

get public ip

dig +short myip.opendns.com @resolver1.opendns.com
Posted by: Guest on April-16-2020
33

my ip

Only Share This if you are hosting a server or something and you know what ur doing.
Posted by: Guest on December-27-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language