You are not logged in.
Pages: 1
I have a small vserver with unlimited bandwith. I now want to use this server to "access the internet", that means, establish a secure (SSL) link to the vserver and the vserver accesses the internet.
I want this to have a secure connection when I'm on public wifi hotspots for example.
What is the best way to achieve this? The VPN (or is there a better solution than VPN?) server should be extremely lightweight as I have little RAM on my server. I wouldn't mind a good tutorial as well.
thanks
Last edited by manzinger (2010-04-13 16:35:56)
Offline
OpenVPN is what you want to use if you want a true VPN, however a lot easier is just to use SSH with a dynamic port forward, and use it as a SOCKS proxy:
ssh -D 127.0.0.1:8080 server.comThen set firefox etc to use localhost port 8080 as it's SOCKS proxy....
Are you familiar with our Forum Rules, and How To Ask Questions The Smart Way?
BlueHackers // fscanary // resticctl
Offline
I have a similar setup and use TightVNC though an ssh tunnel. Speed is ok if you use the right encryption method. You might look at FreeNX. I had it working for a while then it quit working and I just never fixed it. Speed was a little better, but not that much.
:)
Offline
OpenVPN is what you want to use if you want a true VPN, however a lot easier is just to use SSH with a dynamic port forward, and use it as a SOCKS proxy:
ssh -D 127.0.0.1:8080 server.comThen set firefox etc to use localhost port 8080 as it's SOCKS proxy....
this works perfectly, thanks!
Offline
Glad that solves your problem ![]()
Are you familiar with our Forum Rules, and How To Ask Questions The Smart Way?
BlueHackers // fscanary // resticctl
Offline
Pages: 1