Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.