Polling a subnet for machine names?

ddrueding

Fixture
Joined
Feb 4, 2002
Messages
19,671
Location
Horsens, Denmark
Hi.

I'm looking for a tool that will ping all the IPs in a subnet and return machine names if possible. Any suggestions?

~David
 

Will Rickards

Storage Is My Life
Joined
Jan 23, 2002
Messages
2,011
Location
Here
Website
willrickards.net
From windows or unix?
Because if it was unix I think I would do something like
for i in 1 to 255
do
ping 192.168.0.$i | grep '.com'
done

But do you really want the ping result or just and ip to name lookup?
Is that nslookup?
 
Top