• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Securing VNC in Linux? (Or an alternative)

debian0001

Senior member
Anyone know a pretty clear cut guide to setting up VNC over SSH for Linux or another secure method?

I have RDP setup on my Windows 10 computer listening on an obscure port but I want to get back to using Linux. The VNC option is rather lacking but if that's all there is I just want to test it out in a VM before converting back to Linux.
 
Look up up how to use SSH tunnels. It's something that will work by default with just a regular SSH connection but it just requires a bit of setting up in the client (Putty etc). Essentially what it will do is open a local port on the client machine (ex: 127.0.0.1:5900) and when you connect to it, it's like connecting to the server on the remote network. That way you don't need to open up VNC or RDP over the internet (which is a really bad idea). You can do this with even windows too because you can specify any host on the network you're connecting to, does not need to be the SSH server itself.
 
SSH setup is the same, like Red said....after you start up the tunnel, VNC should hit 127.0.0.1:port_here or localhost:port_here

So there's some port forwarding to setup also
 
Back
Top