Simple way to find external IP from command line

ZenTree

Well-Known Member
Reaction score
195
Location
UK
Stumbled across this which could come in handy for certain situations:

nslookup myip.opendns.com resolver1.opendns.com

"It uses resolver1.opendns.com dns server to resolve the magical myip.opendns.com hostname toyour ip address."

Hopefully it helps someone else as well.
 
Stumbled across this which could come in handy for certain situations:

nslookup myip.opendns.com resolver1.opendns.com

"It uses resolver1.opendns.com dns server to resolve the magical myip.opendns.com hostname toyour ip address."

Hopefully it helps someone else as well.

Thanks, awesome. And it bypasses any browser mumbo jumbo, as well as works in all OS's. Now I just have to practice it a bunch so it stays at the top of the memory heap.
 
Stumbled across this which could come in handy for certain situations:

nslookup myip.opendns.com resolver1.opendns.com

"It uses resolver1.opendns.com dns server to resolve the magical myip.opendns.com hostname toyour ip address."

Hopefully it helps someone else as well.

Thanks loads for this, really handy!
 
Another command line method to display your external IP address is:
curl ifconfig.co

Yeah I've seen a lot of references to curl recently but it's something you need to install on the system, whereas like Mark pointed out this should work on any native system. You can change the nslookup to dig for linux and I believe it should work there too.
 
Yeah I've seen a lot of references to curl recently but it's something you need to install on the system, whereas like Mark pointed out this should work on any native system. You can change the nslookup to dig for linux and I believe it should work there too.

I use Linux, so it works fine on my "native system". I forgot that Windows has very limited command line options. I don't think Windows includes a command line http client.

nslookup works on Linux too. Microsoft probably copied it from Unix.

The "myip" method is a bit cute, or magical. It extends (or corrupts) DNS to get it to do something it was not designed to do.
 
I like this!

I decided to expand on the idea a little by creating a small batch file (which makes it particularity useful to add to ScreenConnect's toolbox):

Code:
FOR /F "tokens=1,2 delims= " %%A IN ('nslookup myip.opendns.com resolver1.opendns.com') DO IF "%%A"=="Address:" SET EXTIP=%%B
set /p=%EXTIP%<NUL|clip
msg * /time:5 "The external IP ("%EXTIP%") has been copied to the clipboard."

The batch file extracts just the relevant IP address, copies it to the clipboard then displays a message (for a predefined number of seconds):

HSmnQmM.png
 
Hahaha! Not sure, but I've been using that for a long time. Google has tons of neat tools you can use just by typing certain keywords in a search....

http://www.hongkiat.com/blog/google-search-fun/

Wow tons I didn't know about. Thanks! The google find IP thing is something I use all the time but there are some situations where you can only have background CLI access or want to script something which is where the nslookup command could come in handy.
 
Back
Top