Re: Periodic Run and Logging Results ?
Tanya was correct about the running every X seconds/minutes. As for the
logging to a file that is only supported on windows and was really only
designed for running as a daemon in server mode. A easy way to do it would
be to use: iperf [options] > results.txt
That will overwite results.txt if it is already there. If you use:
iperf [options] >> results.txt
then it should append to the end of the file.
Kevin
On Fri, 16 May 2003, Myers Brian wrote:
>
> I would like to run Iperf to transmit data for 30 seconds every minute and
> log the results to a text file. I tried the following command from the
> client side: iperf -c x.x.x.x -i 60 -t 30 -o results.txt
>
> Iperf ran correctly and provided results to the screen. However, it never
> ran again nor could I find a results.txt file with the results. Is this
> command correct? Do I need to configure the server side with some of these
> options? Any help to get this to work like I want would be appreciated.
>
> Thanks,
> Brian Myers
>