up vote 7 down vote favorite
2
share [g+] share [fb]

How can I get a list of the IP addresses or host names from a local network easily in Python?

It would be best if it was multi-platform, but it needs to work on Mac OS X first, then others follow.

Edit: By local I mean all active addresses within a local network, such as 192.168.xxx.xxx.

So, if the IP address of my computer (within the local network) is 192.168.1.1, and I have three other connected computers, I would want it to return the IP addresses 192.168.1.2, 192.168.1.3, 192.168.1.4, and possibly their hostnames.

link|improve this question

75% accept rate
I don't think I understand what you want. – Zoredache Oct 16 '08 at 2:36
feedback

4 Answers

up vote 4 down vote accepted

If by "local" you mean on the same network segment, then you have to perform the following steps:

  1. Determine your own IP address
  2. Determine your own netmask
  3. Determine the network range
  4. Scan all the addresses (except the lowest, which is your network address and the highest, which is your broadcast address).
  5. Use your DNS's reverse lookup to determine the hostname for IP addresses which respond to your scan.

Or you can just let Python execute nmap externally and pipe the results back into your program.

link|improve this answer
feedback

Update: The script is now located on github.

I wrote a small python script, that leverages scapy's arping().

link|improve this answer
your endianness is incorrect in long2ip() and long2net() – newacct Jul 12 '10 at 6:13
should be fixed now – bene Apr 3 '11 at 14:20
feedback

If you know the names of your computers you can use:

import socket
IP1 = socket.gethostbyname(socket.gethostname()) # local IP adress of your computer
IP2 = socket.gethostbyname('name_of_your_computer') # IP adress of remote computer

Otherwise you will have to scan for all the IP addresses that follow the same mask as your local computer (IP1), as stated in another answer.

link|improve this answer
feedback

One of the answers in this question might help you. There seems to be a platform agnostic version for python, but I haven't tried it yet.

link|improve this answer
No, i dont want my ip address, i want everyone elses. What Steve Moyer has said, but with code :) – joshhunt Oct 16 '08 at 10:08
feedback

Your Answer

 
or
required, but never shown

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