https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=199174

--- Comment #15 from Sean Bruno <sbr...@freebsd.org> ---
(In reply to david.keller from comment #14)
Nothing fancy here.

Server runs "iperf -p 8000 -s"  (8core amd box)
Client under test runs this forever:

#!/bin/sh

FILE=test.out

if [ -f ${FILE} ]; then
    rm $FILE;
fi

while [ 1 ]; do
    date;
    iperf -p 8000 -c 192.168.100.1 -t 600 -P ${1} >> $FILE;
done

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
freebsd-net@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-net
To unsubscribe, send any mail to "freebsd-net-unsubscr...@freebsd.org"

Reply via email to