ssh -o TCPKeepAlive=no -o ServerAliveInterval=15 -nNT -R 8822:localhost:22 username@computerCThis command will forward port 22 (SSH) to port 8822, which is an unprivileged port on computerC
ssh -o TCPKeepAlive=no -o ServerAliveInterval=15 -nNT -L 8822:localhost:8822 username@computerCThis one forwards the port 8822 on computerC to our own 8822 on ComputerB.
ssh -o TCPKeepAlive=no -o ServerAliveInterval=15 username@localhost -p 8822The username should be the username on computerA that you are connecting to.