Code: Select all
# Allow client to pass locale environment variables #367017
AcceptEnv LANG LC_*
Code: Select all
cat largefile | ssh localhost cat > another_large_fileIs there a way to do this from the client side? I can certainly do this on those systems which I administer, but not on my employer's systems, which I don't.Ant P. wrote:Found a less intrusive workaround from a post on gentoo-user: setting "TcpRcvBufPoll no" in sshd_config fixed it for me.
Depends how you are using SSH, but I've found that invoking it with compression ("-C") prevents the hangs I've been seeing in most cases. For rsync the arg you need is -c, for unison it's -sshargs="-C".depontius wrote:Is there a way to do this from the client side? I can certainly do this on those systems which I administer, but not on my employer's systems, which I don't.Ant P. wrote:Found a less intrusive workaround from a post on gentoo-user: setting "TcpRcvBufPoll no" in sshd_config fixed it for me.

thanks, this fixed the problemAnt P. wrote:Found a less intrusive workaround from a post on gentoo-user: setting "TcpRcvBufPoll no" in sshd_config fixed it for me.