Created
November 17, 2015 18:55
-
-
Save GiorgioRegni/d7855182331b32649311 to your computer and use it in GitHub Desktop.
Test script for our network investigation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
VICTIM="$1" | |
echo "Starting network tests to $VICTIM" | |
for CONNECTIONS in 1 10 100 1000 10000 ; do | |
echo $CONNECTIONS connections | |
iperf -P $CONNECTIONS -c $VICTIM | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment