How can I find the local IP address (i.e. 192.168.x.x or 10.0.x.x) in python, preferably with only built-in moduals, I would also like it to be platform independent.
|
4
|
|||
|
|
|
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. |
||
|
|
|
|
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 |
||||||||
|
|
|
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. |
|||
|
|
|
|
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. |
||
|
|
|
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.". For Python 3. |
|||
|
|
