Loading...

List all used IP addresses in a network

:heavy_exclamation_mark: This post is older than a year. Consider some information might not be accurate anymore. :heavy_exclamation_mark:

nmap - Network exploration tool and security / port scanner - allows to scan an entire network and list all used or assigned IP addresses in a private network. This post shows a little example.

First we need to install:

sudo apt-get install nmap

Second we scan and list with the option -sL.

The list scan is a degenerate form of host discovery that simply lists each host of the network(s) specified, without sending any packets to the target hosts. By default, Nmap still does reverse-DNS resolution on the hosts to learn their names. .. Nmap also reports the total number of IP addresses at the end. The list scan is a good sanity check to ensure that you have proper IP addresses for your targets. ..

Replace with your broadcast IP, if you want to try it yourself.

nmap -sL 192.168.1.0/24 > nmap.out

The output is written to the file nmap.out. It has (simplified and truncated) following lines:

tan@cinhtau:~$ cat nmap.out
Starting Nmap 6.40 ( http://nmap.org ) at 2015-10-14 21:25 CEST
Nmap scan report for 192.168.1.0
Nmap scan report for dsldevice.home (192.168.1.1)
..
Nmap scan report for TanVinhsiPhone.home (192.168.1.119)
Nmap scan report for omega.home (192.168.1.120)
Nmap scan report for 192.168.1.121
Nmap scan report for pelion.home (192.168.1.122)
..
Nmap scan report for 192.168.1.255
Nmap done: 256 IP addresses (0 hosts up) scanned in 4.12 seconds

To get only the interesting information (IP addresses, that have host names) we can use awk with its regex capability. The regex searches simply for the term with alphabetical letters, instead of the IP address. The host name is in the fifth field and the IP address is in the last field.

tan@cinhtau:~$ cat nmap.out | awk '/Nmap scan report for [a-zA-z]/ {print $5 " " $NF}'
dsldevice.home (192.168.1.1)
TanVinhsiPhone.home (192.168.1.119)
omega.home (192.168.1.120)
pelion.home (192.168.1.122)
Please remember the terms for blog comments.