I can connect to my VPS SSH from my home internet connection.

However, I cant connect to SSH via my Univ internet connection.

What I know is that my University uses VPN, and maybe proxy.

My professor told me that the connection port to SSH is open in the University.

Is there any possible reason to this?

my VPS is centOS 5.4

Thank You,

link|improve this question
feedback

migrated from stackoverflow.com Jun 22 '10 at 2:09

This question came from our site for professional and enthusiast programmers.

1 Answer

If you can set up an ssh tunnel through your home computer, you can access it like that.

ssh -t reachable_host ssh unreachable_host

Reference - http://www.commandlinefu.com/commands/view/1339/ssh-connection-through-host-in-the-middle#comment

link|improve this answer
feedback

Your Answer

 
or
required, but never shown