Ben's notes

Linux, Unix, network, radio...

User Tools

Site Tools


ssh_-_multihop

This is an old revision of the document!


SSH - multihop

Log in from workstation to RDP server using SSH tunnel.

Workstation → Server1 > Server2 > RDP server

  • Edit ~/.ssh/config
    host Server1
        hostname server1.fqdn
        user yourusername
    
    host server2
        hostname server2.fqdn
        user yourusername
        ProxyCommand ssh -q Server1 nv server2.fqdn 22
  • Log in.
    ssh -L3389:RDPserver:3389 server2
ssh_-_multihop.1402916953.txt.gz · Last modified: 2014/06/16 11:09 by admin