vote up 4 vote down star

How can I find the public facing IP for my net work in Python?

flag

Yes I asked this with the intention of answering it, but it was not here and I could see someone else needing the info. – Unkwntech Oct 3 '08 at 12:22

2 Answers

vote up 4 vote down check

This will fetch your remote IP address

import urllib
ip = urllib.urlopen('http://www.whatismyip.com/automation/n09230945.asp').read()

If you don't want to rely on someone else, then just upload something like this PHP script:

<?php echo $_SERVER['REMOTE_ADDR']; ?>

and change the URL in the Python or if you prefer ASP:

<%
Dim UserIPAddress
UserIPAddress = Request.ServerVariables("REMOTE_ADDR")
%>

Note: I don't know ASP, but I figured it might be useful to have here so I googled.

link|flag
vote up 3 vote down

whatismyip.org is better... it just tosses back the ip as plaintext with no extraneous crap.

import urllib
ip = urllib.urlopen('http://whatismyip.org').read()

But yeah, it's impossible to do it easily without relying on something outside the network itself.

link|flag
Neither does the link I reference, it also just returns the raw IP address. – Unkwntech Oct 3 '08 at 12:31

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.