This is how I establish an SSH tunnel (dynamic port forwarding using SOCKS) from a local computer to a remote computer:
ssh -C -N -D 12345 [email protected] I use compression (-C) because my bandwidth is expensive and limited.
Is there a way to increase the compression level further? Version 1 of the SSH protocol had the CompressionLevel configuration option, but there is no equivalent option in version 2. I am open to the idea of using additional open source tools to achieve greater compression levels.
OS: Ubuntu 20.04.