How to ping range of IP Address via command line?
Ping a range of IP Address via command line, quite useful in a server core environment or set to task scheduler and run at specific time and day.
Batch files still does it wonder. Below is a command line
that can be save as a batch file and set via task scheduler to automatically
run at a specified time or day.
Batch file script to ping a range of IP and save to notepad
the result.
======================================
FOR /L %I IN (100,1,220) DO
echo %date% %time% 2 >>
d:\pingx.txt & ping 192.168.1.%I -n
2 >> d:\pingx.txt
======================================
The command will ping
iP range 192.168.1.100 to 192.168.1.220 and send 2 echo request. Results
of the ping is save on drive d at a file named pingx.txt.
Copy the command to notepad and save it as a batch file with
extension of “.bat” or “.cmd”.
Sample output:
Wed 11/11/2015
17:31:15.05 2
Pinging 192.168.1.100 with 32 bytes of data:
Reply from 192.168.1.7: Destination host unreachable.
Reply from 192.168.1.7: Destination host unreachable.
Ping statistics for 192.168.1.100:
Packets: Sent = 2,
Received = 2, Lost = 0 (0% loss),
Wed 11/11/2015
17:31:15.05 2
Pinging 192.168.1.101 with 32 bytes of data:
Reply from 192.168.1.7: Destination host unreachable.
Reply from 192.168.1.7: Destination host unreachable.
Ping statistics for 192.168.1.101:
Packets: Sent = 2,
Received = 2, Lost = 0 (0% loss),
Wed 11/11/2015
17:31:15.05 2
Pinging 192.168.1.102 with 32 bytes of data:
Reply from 192.168.1.7: Destination host unreachable.
Reply from 192.168.1.7: Destination host unreachable.
Ping whole subnet via command line. Ping the PC or server and shutdown if it is online.
http://quickbytesstuff.blogspot.sg/2015/11/how-to-ping-whole-subnet-using-batch.html
Cheers..till next time..
==================
Free Android Apps:
Click on links below to find out more:
https://play.google.com/store/apps/details?id=soulrefresh.beautiful.prayer
http://quickbytesstuff.blogspot.sg/2014/09/how-to-recite-rosary.html
==================
Free Android Apps:
Click on links below to find out more:
https://play.google.com/store/apps/details?id=soulrefresh.beautiful.prayer
Catholic Rosary Guide for Android:
Pray the Rosary every day, countless blessings will be showered upon your life if you recite the Rosary faithfully.
https://play.google.com/store/apps/details?id=com.myrosaryapp
https://play.google.com/store/apps/details?id=com.myrosaryapp
Comments
Post a Comment