VNC can be accessed over the Internet using ssh protocol. This will improve security as traffic will be encrypted.
Sample Setup
pc22.nixcraft.in +----------------+ +-----------------+ | Laptop @ Home |---> Internet ---> | UNIX PC @ Work | +----------------+ +-----------------+ vncserver port 5901 OR +----------------+ +-----------------+ | Laptop @ Home |---> Internet ---> | Router/firewall | +----------------+ | port forwarding | +-----------------+ | fw.nixcraft.in ssh/tcp22 | ///\\\ // \\ / \ +-----------------+ | UNIX/Linux /OS X| | at work | +-----------------+ pc22.nixcraft.in vncserver @ port 5901Your work pc may be directly connected to the Internet. Otherwise most offices have a router and firewall installed. You need to make sure your firewall allows port forwarding for TCP port 22 to your UNIX / OS X / workstation or server called pc22.nixcraft.in. It works as follows:
+------------+ | SSH Client |-------> Internet ssh connection with encryption | with | | | vncviewer | | +------------+ | \|/ +------------------------+ | SSH server at port 22 | | Vncserver at port 5501 | +------------------------+You connect from your local ssh client (localhost) to your ssh server (pc22.nixcraft.in) installed at your work UNIX pc with port forwarding at router / firewall level. I'm assuming that port forwarding is correctly configured at your office. Now, open the terminal and type the following command:
ssh -N -f -L 5000:localhost:5901 vivek@pc22.nixcraft.iThe above command will start an ssh connection to pc22.nixcraft.in and also listen on port 5000 on localhost and forward vnc connection to port 5901 on pc22.nixcraft.in. Usaully local and remote port numbers are same to avoid confusion:
ssh -N -f -L 5901:localhost:5901 vivek@pc22.nixcraft.iNow, you can use vncviewer at your home as follows:
vncviewer localhost:5901
You can also use GUI tool and set VNC server location to localhost:5901
Once connected you will get desktop login windows or last session window as follows: