Tuesday, October 26, 2010

ssh and tunnel- the college freelancer saviour

simple 2 lines to ssh to a server outside the campus:

  1. ssh -L 1090(local port):IP-of-external-server:22(port-which-allows-ssh) user@localserver
  2. In another terminal window type :
    ssh -p 1090 user@localhost


and you are done :D

Yes its that simple :)

No comments:

Post a Comment