blob: 802b2d871ed0b40aa27fc33f94020f89f5fc9db8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/bash -e
. $(dirname $0)/base.sh
# usage:
# run_iperf -s server args -c client args
#
# client args should contain $ip or -V $ip6
# results returned in $results
run_iperf \
-s --ipv6_domain -P 1 -i 1 -t 3 \
-c $ip6 -V -P 1 -i 1 -t 2
|