Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
Finding local IP addresses using Python's stdlib

To get my localhost IP address I do socket.gethostbyname(socket.gethostname()). But it gives me the answer 127.0.0.1. If I do an_existing_socket.getsockname()[0] I get the answer 0.0.0.0.

I need my 'real' ip address (for instance 192.168.x.x) to modify a configuration file. How could I get it?

share|improve this question
Why do you need the external IP of your computer? For it's own configuration it is a bad idea to set an IP in some configuration file and what is the point - you will have to change it (programmatically?) as soon as it's network address changes. For other computers, how are you going to let them know what your IP is (when it changes)? – Germann Arlington Jul 31 '12 at 8:25
@BigYellowCactus You're right, I'll look at these answers – Vaïk Godard Jul 31 '12 at 8:29
@Germann Arlington This configuration file is destinated to be used on another host: 1). I update the conf file with my IP and 2). I launch remotely an appli that use this conf file. For several reasons, I can't have any control upon the remote host when the appli is launched. – Vaïk Godard Jul 31 '12 at 8:36
@Vaïk Godard - in this case the best solution is to address it by name and let network DNS resolve it to the address. – Germann Arlington Jul 31 '12 at 8:41

marked as duplicate by Dominic Kexel, Tichodroma, Jürgen Thelen, Greg Hewgill, Donal Fellows Jul 31 '12 at 20:52

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 5 down vote accepted

I generally use this code:

import os
import socket

if os.name != "nt":
    import fcntl
    import struct

    def get_interface_ip(ifname):
        s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
        return socket.inet_ntoa(fcntl.ioctl(s.fileno(), 0x8915, struct.pack('256s',
                                ifname[:15]))[20:24])

def get_lan_ip():
    ip = socket.gethostbyname(socket.gethostname())
    if ip.startswith("127.") and os.name != "nt":
        interfaces = [
            "eth0",
            "eth1",
            "eth2",
            "wlan0",
            "wlan1",
            "wifi0",
            "ath0",
            "ath1",
            "ppp0",
            ]
        for ifname in interfaces:
            try:
                ip = get_interface_ip(ifname)
                break
            except IOError:
                pass
    return ip

I don't know it's origin, but it works on Linux/Windows.

Edit:

This code is used by smerlin in this stackoverflow question.

share|improve this answer

There is a nifty module you can use. Its called netifaces. Just do a pip install netifaces into a virtualenv for testing and try the following code:

import netifaces

interfaces = netifaces.interfaces()
for i in interfaces:
    if i == 'lo':
        continue
    iface = netifaces.ifaddresses(i).get(netifaces.AF_INET)
    if iface != None:
        for j in iface:
            print j['addr']

It all depends on your environment. If you only have one interface with one IP address attached to it, you can simply do:

netifaces.ifaddresses('eth0')[netifaces.AF_INET][0]['addr']

If you are behind a NAT and want to know your public IP address, you can use something like:

import urllib2

ret = urllib2.urlopen('https://enabledns.com/ip')
print ret.read()

Hope this helps.

share|improve this answer

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