Advertisement
DarkKnight

iperf

Aug 22nd, 2014
336
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.16 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. COUNTER=100
  4. IP=192.168.1.1
  5. TIME=60
  6. FILE=output.txt
  7.  
  8. while [ $((COUNTER--)) -gt 0 ]; do
  9.         iperf -c $IP -t $TIME >> $FILE 2>&1
  10. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement