What is the command that can be used to get the IP address and the names of the computers that are located in the same network?
I am running Windows
|
What is the command that can be used to get the IP address and the names of the computers that are located in the same network? I am running Windows
| |||||||
feedback
|
|
nmap -sP 192.168.1.0/24 Put your network number in it. It'll do a ping-sweep of your net and report the reverse DNS's of the up machines. Won't find. C:> for /L %N in (1,1,254) do @nslookup 192.168.0.%N >> names.txt That'll do a reverse lookup of every IP in your subnet. | |||
|
feedback
|
|
There is a tool i like to use especially when i'd like to find a free IP in the chaos i like to call my network. It is called IP-Tools by KS-Soft and does @sysadmin1138s suggestion graphically. It has 18 other great utilities as well. It is a great little swiss army knife | |||
|
feedback
|
|
If you want to go for "regular", nmap will do just fine. If you want to go for "obscure", Doxpara Paketto Keiretsu will do that with scanrand and friends. Not exactly "offical" tools but certainly useful for finding nodes you can't otherwise see. And did I mention it's fast? | |||
|
feedback
|
|
If you don't mind installing this small app: Radmin's Advanced IP Scanner (Freeware for Windows) Provides you with Local Network hosts:
| |||
|
feedback
|
|
Using Powershell - dmitrysotnikov wrote a nice function, this is from: http://dmitrysotnikov.wordpress.com/2008/03/07/get-computer-by-ip-address/ does need some error handling for cleaner 'time-out' and 'host not found' replies.
| |||
|
feedback
|