How can I find the local IP address (i.e. 192.168.x.x or 10.0.x.x) in Python platform independently and using only the standard library?
This won't work always (returns 127.0.0.1 on machines having the hostname in /etc/hosts as 127.0.0.1), a paliative would be what gimel shows, use socket.getfqdn() instead. Of course your machine needs a resolvable hostname. |
|||||||||||||||||||||
|
|
I just found this but it seems a bit hackish, however they say tried it on *nix and I did on windows and it worked.
This assumes you have an internet access, and that there is no local proxy. |
|||||||||||||||||||||
|
I'm using this, because one of the computers I was on had an /etc/hosts with duplicate entries and references to itself. socket.gethostbyname() only returns the last entry in /etc/hosts. This solution weeds out the ones starting with "127.". Works with Python 3 and 2.5, possibly other versions too. Does not deal with several network devices or IPv6. Works on Linux and Windows. |
|||||||||||||||
|
|
You can use the netifaces module. Just type:
in your command shell and it will install itself on default Python installation. Then you can use it like this:
On my computer it printed: {45639BDC-1050-46E0-9BE9-075C30DE1FBC}: 192.168.0.100
{D43A468B-F3AE-4BF9-9391-4863A4500583}: 10.5.9.207
Author of this module claims it should work on Windows, UNIX and Mac OS X. |
|||||||||||||||
|
|
Socket API method
Downsides:
Reflector method (Do note that this does not answer the OP's question of the local IP address, e.g. 192.168...; it gives you your public IP address, which might be more desirable depending on use case.) You can query some site like whatismyip.com (but with an API), such as:
or if using python2:
Advantages:
Disadvantages (and workarounds):
edit: Though initially I thought these methods were really bad (unless you use many fallbacks, the code may be irrelevant many years from now), it does pose the question "what is the internet?". A computer may have many interfaces pointing to many different networks. For a more thorough description of the topic, google for |
|||||||||||
|
|
I use this on my ubuntu machines:
|
|||||||||||
|
|
If you don't want to use external packages and don't want to rely on outside Internet servers, this might help. It's a code sample that I found on Google Code Search and modified to return required information:
Usage:
As it relies on |
|||||||||||
|
|
im using following module:
Tested with windows and linux (and doesnt require additional modules for those) intended for use on systems which are in a single LAN. |
|||
|
|
|
On Linux:
|
||||
|
|
|
I'm afraid there aren't any good platform independent ways to do this other than connecting to another computer and having it send you your IP address. For example: findmyipaddress. Note that this won't work if you need an IP address that's behind NAT unless the computer you're connecting to is behind NAT as well. Here's one solution that works in Linux: get the IP address associated with a network interface. |
||||
|
|
|
However, there is no cross-platform way to get all IP addresses. On Linux, you can use the |
|||||
|
|
FYI I can verify that the method:
Works in OS X (10.6,10.5), Windows XP, and on a well administered RHEL department server. It did not work on a very minimal CentOS VM that I just do some kernel hacking on. So for that instance you can just check for a 127.0.0.1 address and in that case do the following:
And then parse the ip address from the output. It should be noted that ifconfig is not in a normal user's PATH by default and that is why I give the full path in the command. I hope this helps. |
|||
|
|
|
One simple way to produce "clean" output via command line utils:
It will show all IPv4 addresses on the system. |
||||
|
|
I had to solve the problem "Figure out if an IP address is local or not", and my first thought was to build a list of IPs that were local and then match against it. This is what led me to this question. However, I later realized there is a more straightfoward way to do it: Try to bind on that IP and see if it works.
I know this doesn't answer the question directly, but this should be helpful to anyone trying to solve the related question and who was following the same train of thought. This has the advantage of being a cross-platform solution (I think). |
|||
|
|
|
This will work on most linux boxes:
|
|||
|
|
|
A slight refinement of the commands version that uses the IP command, and returns IPv4 and IPv6 addresses:
|
|||
|
|
|
|||
|
|
This answer is my personal attempt to solve the problem of getting the LAN IP, since
|
||||
|
|
|
For a list of IP addresses on *nix systems,
Though it's a bit late for this answer, I thought someone else may find it useful :-) PS : It'll return Broadcast addresses and Netmask as well. |
|||||||||||
|
|
A machine can have multiple network interfaces (including the local loopback 127.0.0.1) you mentioned. As far as the OS is concerned, it's also a "real IP address". If you want to track all of interfaces, have a look at the following Puthon package : http://alastairs-place.net/netifaces/ I think you can avoid having gethostbyname return 127.0.0.1 if you ommit the loopback entry from your hosts file. (to be verified). |
|||
|
|
|
Ok so this is Windows specific, and requires the installation of the python WMI module, but it seems much less hackish than constantly trying to call an external server. It's just another option, as there are already many good ones, but it might be a good fit for your project.
By the way, WMI is very powerful... if you are doing any remote admin of window machines you should definitely check out what it can do. |
|||
|
|
|
Another option is to ping whatismyip the below script will return your public ip as a string - advantage is that they allow this http://www.whatismyip.com/faq/automation.asp
executable version available at https://gist.github.com/2786450 |
||||
|
|


ifconfig -aand use the output from there... – Fredrik Pihl Jun 23 '11 at 11:18ip addris far more suitable (and easier to parse, to boot). – phihag Jun 23 '11 at 13:07binda socket to a particular interface, then it is a policy matter. If the local IP address is needed to hand it over to a peer so that the peer can "call back", i.e. to open a connection back to the local machine, then the situation depends on whether there are any NAT (Network Address Translation) boxes in between. If there are no NATs,getsocknameis a good choice. – Pekka Nikander Apr 30 '12 at 4:58