I am using SOCKS server by the following command (on machine A).
machine_A: $ ssh -N -D 0.0.0.0:1080 machine_B
Then on machine_A, I start a client program sending packets to B:1080. The header field indicates the packets should be tunnelled to machine_C where the server is running.
Traffic between machine_A and machine_B is encrypted and Traffic between machine_B and machine_C is clear text, which I understand.
Question: is it possible to make B<==>C also encrypted (without application level programming)? Assume C also has sshd running. Or is there no such thing?
Thank you.