|
|
|
|
|
by vacri
4339 days ago
|
|
If you think ssh negotiation is the slow point with ssh, have a look into 'persistent connections' The below is an example setup of a session that persists for ten minutes after last logout. Subsequent ssh attempts (or new parallel ssh attempts) will piggyback onto the session and avoid the renegotiation delay. host *
ControlPersist 10m
ControlPath ~/.ssh/master-%r@%n:%p
ControlMaster auto
|
|