Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

what's the command to find out all IP addresses in a network?

Status
Not open for further replies.

datenis

Programmer
Jan 22, 2002
98
CA
what's the command to find out all IP addresses in a network?

Thanks

-D
 
You can get some IP addresses with this:
Code:
arp -a
Without a 'sniffer', you may write a script with brute force
Code:
ping
command inside a loop.

Hope This Help
PH.
 
You can also try pinging the broadcast address for the network. This should fill your arp cache with all devices on the network that responded to the ping request.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top