search for: 1kfile

Displaying 1 result from an estimated 1 matches for "1kfile".

Did you mean: mkfile
2001 Aug 02
0
Bugs: SSH sometimes failing to report exit-status and more
...tus from the remote command if small amounts of data are transfered, SSH version is 2 and ssh is run with no STDIN or with the -n option. Below is an example. Authentication method is hostbased and the file sizes are 1KB, 4KB and 8KB: [sturles at ulrik]~ $ for i in `seq 1 20`; do ssh -n pat cat 1kfile > /dev/null || echo $i failed; done 1 failed 3 failed 5 failed 8 failed 10 failed 12 failed 18 failed 19 failed [sturles at ulrik]~ $ for i in `seq 1 20`; do ssh -n pat cat 4kfile > /dev/null || echo $i failed; done 10 failed [sturles at ulrik]~ $ for i in `seq 1 20`; do...