Let's say I have two machines: A and B.
- A has installed SSH server and client
- B has installed only SSH client
- Connection between both machines is working
I know that I can issue following command from machine B:
ssh A
and It will give me the console of machine A.
Is possible to somehow achieve similar but opposite way, get the B console from A?
If you insist of achieving this, you should look at custom protocols or applications. For example you can run team viewer over an ssh tunnel you created. But whatever you do, you need to run some server on client machine,there is no other way. Ssh itself does not support this kind of reverse connections.
– infiniteRefactor Feb 28 '15 at 12:59