
Send a ping to each IP on a subnet - Stack Overflow
Is there a command line based way to send pings to each computer in a subnet? Like for(int i = 1; i < 254; i++) ping(192.168.1.i); to enforce arp resolution?
Ping all addresses in network, windows - Stack Overflow
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 …
How can I ping a range of IP addresses simultaneously
I have a bunch of machines on an IP address range which I want to ping simultaneously as a quick and dirty way of telling which ones are switched on. What (free) software can I use to do …
`cmd.exe` command to ping a range of addresses - Super User
Mar 15, 2014 · How can I ping a range of addresses starting with A and ending with B?
Fastest way to ping a network range and return responsive hosts?
Dec 26, 2012 · Constraints: 1. Speed matters. 2. I am allowed to ping once. I'm debating whether to use Python or shellscripting. Is there a method faster than bash? Here is the current code, …
powershell - Ping range of IP addresses - Stack Overflow
Dec 20, 2015 · So you want PowerShell to pull in an IP of 192.168.0.1 and say subnet mask provided is 255.255.255.224 /27. The end result is to ping the calculated range of IPs …
Find an unknown static IP + subnet mask of device?
Jun 25, 2011 · 46 I have a device set with a static IP and subnet mask. I do not know the IP or subnet mask. How can I find the devices IP and subnet mask? It is a piece of hardware, not a …
Use powershell to get device names and their ipaddress on a …
Jan 21, 2017 · I converted my batch tool for this into a Powershell script. It is a wrapper for the cmd line tools ping.exe, arp.exe and nslookup.exe. To get good results all devices should be …
Multiple ping script in Python - Stack Overflow
Aug 24, 2012 · for ping in range(1,10): ip="127.0.0."+str(ping) os.system("ping -c 3 %s" % ip) A simple script like that will ping the machines fine, but I'd like to get the script to returns 'active' …
How to ping multiple servers and return IP address and …
Sep 13, 2012 · Basically, the server HOSTNAMES are all listed in a txt file. I used the following code to ping all the servers and display their results in a txtfile. For /f %%i in (testservers.txt) …