2

Possible Duplicate:
Finding the Public IP address in a shell script

I'm currently doing this in a script:

EXTERNAL_IP=`curl -s http://whatismyip.org`

There's got to be a built in linux command or something for this, no?

Josh Nankin
  • 722
  • 11
  • 27
  • 1
    What is your precise definition of "external IP address"? If you mean the IP address that other sites on the Internet see your web requests as coming from (possibly the address of your HTTP proxy), then you are doing it the right way. If that's not what you mean, then maybe not. – David Schwartz Nov 30 '11 at 21:44

2 Answers2

3

If you mean your source address as the rest of the Internet sees it, then the way you're doing it now is pretty much it. A machine behind a firewall or other device doing NAT will be happily unaware of any address translation done further along.

You might find that http://ifconfig.me is a bit cleaner for what you're after - have a look under the Command Line Interface section on the front page.

Andy Smith
  • 1,798
  • 13
  • 15
1

No, there is no built-in command, and even the command you suggest may not give you what you want if your NAT device is doing anything more complex then a simple masquerading.

Zoredache
  • 128,755
  • 40
  • 271
  • 413