I live in university housing, but I work offsite. I want to be able to remote into my computer during the day, but the university has a firewall built into their routers or whatever that blocks absolutely all incoming connections. I need to mention also that I cannot install programs onto my work computer, but it has remote desktop on it which is why I need to use it instead of VNC or something. Any help is greatly appreciated!
feedback
|
closed as off topic by Zoredache, MikeyB, womble, John Gardeniers, Izzy Nov 3 '09 at 21:44
Questions on Server Fault are expected to generally relate to servers, networking, or desktop infrastructure, within the scope defined in the faq.
|
You could try a service like Hamachi or LogMeIn to do this if you do not have access to your firewall configuration. In your specific case I would suggest LogMeIn at home and then access it via the website at work. Free for home use. | |||
|
feedback
|
|
Before trying to hack something together and undermine your IT department, try and talk with them about your needs. Maybe get a representative such as a professor that can vouch for the benefit of you being able to access your machine from work (I'm assuming that you're a student and not faculty). SysAdmins have an unfortunate reputation for being surly and cold to users' needs, but you may be able to get them to work with you in some way. Going around them is sure to cause more issues in the long run and possibly, depending on your university's policies, some kind of punitive action. If not official punishment, at the least it will cause "interpersonal issues" that might just be worse than any official punishment. Don't think that the admins won't notice something going on eventually. Maybe they simply don't know that the need for remote access like this exists among the student body and if more people requested it to their department leaders / professors something could be worked out. EDIT: As an addendum, IMO you'd want to talk to the IT manager / department head and not one of the SysAdmins themselves. Managers / Directors and etc. are more inclined to be interested in customer needs and considering changes. This is all in my experience, of course. Your mileage may vary. | |||
feedback
|
|
You need to set up a reverse tunnel with port forwarding out to your machine at home from work and then traverse it backwards to get into the machine via rdp. Look into plink/putty ssh and google for ssh reverse tunnel, which should put you in the right direction. At the very least you need the ssh software on that work machine, and in all likelihood you can get someone to install it for you since its necessary to access a great many third parties. If not you may be out of luck unless you get particularly nefarious. | |||
|
feedback
|
|
I think opening a logmein account, and installing the free version of the client on both your home and work computers would be the easiest. This is also assuming you have admin rights on your work machine to be able to install software. | |||||||||
feedback
|
|
LogMeIn would work. Another option would be Windows Live Mesh - it has Remote Desktop built in. Edit: nevermind, didn't see that you couldn't install apps on your work machine. | |||
|
feedback
|
|
You can forward RDP port using SSH: download Putty SSH client, connect it to a remote server, and setup a static tunnel :) This can be done either from the server or from another host in the same network. The only thing you'll need is a *nix server to which you can connect with ssh. Here's how to forward RDP port 3389: putty.exe -R3389:localhost:3389 user-name@server-name.domain | |||
|
feedback
|