Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible in windows cmd line to check all of the network addresses (with ping or similar) to see which ones are taken/ have active devices:

ie. something that does something like the following:

for i = 0 to 255
    ping 192.168.1.i //Print this
end

This is psuedo code obviously. I am wondering if it is possible to do something like this in windows cmd. It would be great if you didn't need a batch file, but i understand if this is impossible.

PS. Also please mention if there is a program to do this, but it would be nice to do it in cmd.

share|improve this question
I have no knoledge, just wondering... would ping 192.168.1.255 get responses from all the devices in the subnet? – FrancescoMM Dec 4 '12 at 22:53
Hahaha, over 2000 views but no-one thinks this is a good question. – Ben May 9 at 1:08

3 Answers

up vote 5 down vote accepted

Open the Command Prompt and type in the following:

FOR /L %i IN (1,1,254) DO ping -n 1 192.168.10.%i | FIND /i "Reply">>c:\ipaddresses.txt

Change 192.168.10 to match you own network.

By using -n 1 you are asking for only 1 packet to be sent to each computer instead of the usual 4 packets.

The above command will ping all IP Addresses on the 192.168.10.0 network and create a text document in the C:\ drive called ipaddresses.txt. This text document should only contain IP Addresses that replied to the ping request.

Although it will take quite a bit longer to complete, you can also resolve the IP Addresses to HOST names by simply adding -a to the ping command.

FOR /L %i IN (1,1,254) DO ping -a -n 1 192.168.10.%i | FIND /i "Reply">>c:\ipaddresses.txt

This is from Here

Hope this helps

share|improve this answer
Great answer, however, it currently prints out that the find parameter is not correct. How can I fix that? – Ben Dec 4 '12 at 22:56
Try to paste the command in a text editor and delete and re-add the quotes. The quotes you copy are some HTML encoded double quote. – RGG Dec 4 '12 at 22:58
I've edited the post to fix the smart quotes. Should work now. :-) – Mark Dec 5 '12 at 2:49

All you are wanting to do is to see if computers are connected to the network and to gather their IP addresses. You can utilize angryIP scanner: http://www.angryip.org/w/Home to see what IP addresses are in use on a particular subnet or groups of subnets.

I have found this tool very helpful when trying to see what IPs are being used that are not located inside of my DHCP.

share|improve this answer

This post asks the same question, but for linux - you may find it helpful. Send a ping to each IP on a subnet

nmap is probably the best tool to use, as it can help identify host OS as well. It is available for the windows platform on the namp.org site

share|improve this answer
1  
Yeah, I have done it in Linux plenty of times, but not in windows. – Ben Dec 4 '12 at 22:57
+1 to nmap, great tool! – logray Dec 4 '12 at 23:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.