Y
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
Russell91
4287 days ago
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.
link
dnet
4287 days ago
not, if you configure multiplexing (and why wouldn't you)
https://en.wikibooks.org/wiki/OpenSSH/Cookbook/Multiplexing
link
JoachimSchipper
4287 days ago
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.
link
mixmastamyk
4287 days ago
Interesting, I wonder if python fabric or its ssh libs could help.
link