Home arrow Linux Tips arrow List available IP's in Network
Syndicate
List available IP's in Network PDF Print E-mail
Feb 03, 2010 at 08:38 AM
List available IP's in Network

nmap -T4 -sP 192.168.0.0/24 && egrep "00:00:00:00:00:00" /proc/net/arp
nmap -T4 -sP 192.168.0.0/24 && egrep "00:00:00:00:00:00" /proc/net/arp > ip.list.txt
nmap -T4 -sP 192.168.0.0/24 && egrep "00:00:00:00:00:00" /proc/net/arp >> ip.list.txt
nmap -T4 -sP 192.168.0.0/24 >> ip.list.txt && egrep "00:00:00:00:00:00" /proc/net/arp >> ip.list.txt

Last Updated ( Feb 20, 2010 at 08:42 AM )
<Previous   Next>

Mambo is Free Software released under the GNU/GPL License.