How can I find the public facing IP for my net work in Python?
|
|
This will fetch your remote IP address
If you don't want to rely on someone else, then just upload something like this PHP script:
and change the URL in the Python or if you prefer ASP:
Note: I don't know ASP, but I figured it might be useful to have here so I googled. |
||||
|
|
|
whatismyip.org is better... it just tosses back the ip as plaintext with no extraneous crap.
But yeah, it's impossible to do it easily without relying on something outside the network itself. |
|||||||
|
|
One way is , you can make a request to the page at http://www.biranchi.com/ip.php it returns the IP address of your system |
|||
|
|
|
All of the answers I see above would report the IP address of any web proxy in use, not necessarily the public facing IP address of your system (anything not being run through a web proxy may have an entirely different IP address). |
|||
|
|
|
If you don't mind expletives then try: Bind it up in the usual urllib stuff as others have shown. There's also: |
|||
|
|