How can i go about programaticaly getting the IP address of my network as seen from the Internet? Its obviously a property that my router has access to when it connects to the ISP. Is there any way to get this info from a router using a standard protocol. My only other option is to either find a WS which returns my IP address (suprisingly difficult to do), or just go to something like whatismyip.com and strip out all the HTML (very dirty and susceptable to change). Is there any other way???
|
feedback
|
|
Don't scrape whatismyip.com, see here for how you can call their API which just returns your address. If you don't use this, you have to write something like it yourself, i.e. a host beyond your router which can report back your apparent address. Note that webserver might not see your real WAN IP address because:
| ||||
|
feedback
|
|
If your router supports snmp you could use that to ask it about it's external ip. A small example is found here: | |||
|
feedback
|
|
I've voted up Paul Dixons answer because it seemed complete, but there's one more aspect to this:
These aspects are not the typical day to day situation, but depending on your needs you might want to take these into account. | |||
|
feedback
|
|
I don't see a language specifacation but I did it here in python: http://stackoverflow.com/questions/166545/finding-a-public-facing-ip-address-in-python
| |||
feedback
|