Hacker News new | ask | show | jobs
by beerbajay 4287 days ago
Couldn't the 1MB limit be bypassed by invoking scp to transfer the files?
1 comments

yes, but using a separate scp command requires a second round trip and second password/key authentication, which would double the wait time of the already slow ssh login process.
not, if you configure multiplexing (and why wouldn't you) https://en.wikibooks.org/wiki/OpenSSH/Cookbook/Multiplexing
As an inferior option for older OpenSSH versions, you could also forward a port and send the tarball over that.

If people regularly send large directories, you might also want to extend this with rsync.

Interesting, I wonder if python fabric or its ssh libs could help.