SSH multiplexing is the ability to carry multiple SSH sessions over a single
TCP connection. One of the main advantages of this is that the overhead of
creating new TCP connections and negotiating the secure connection is eliminated
once your first connection has been established.
Support the channel:
BTC - 3NzWDDH3n5PsBKqWJyAb7rvsGvJKxcAPFv
Follow me:
SecureRandom on YouTube -
/ @securerandom5420
SecureRandom on LBRY / Odysee -
https://odysee.com/@SecureRandom:1
-----------------------------------------------------------------------------------------------------------------------------
Enable SSH multiplexing:
vim ~/.ssh/config
Host *
Enables SSH multiplexing
ControlPath /tmp/%r@%h:%p
ControlMaster auto
ControlPersist 30m