MeatballCB
Weaksauce
- Joined
- Oct 8, 2008
- Messages
- 124
Not sure if this is the right forum, but programming seems about as close as to what I need.
I'm looking to do some Network testing where we run a series of ping tests against a single machine and track Min/Max/Avg Pingtime and # of Dropped Packets. I know I can easily dump a log file with something as simple as:
What's the easiest way to loop this x amount of times before dropping out.
Also, is there any way to just log the final statistics/results as opposed to every single ping line?
I'm looking to do some Network testing where we run a series of ping tests against a single machine and track Min/Max/Avg Pingtime and # of Dropped Packets. I know I can easily dump a log file with something as simple as:
Code:
ping 192.168.1.1 -n 100 >> filename.txt
What's the easiest way to loop this x amount of times before dropping out.
Also, is there any way to just log the final statistics/results as opposed to every single ping line?