In this example we are screen sharing a Red Hat Enterprise Linux 7 server from a macOS client. VNC is inherently not a secure protocol. VNC passwords often goes thru clear text or no password at all (think telnet and ftp). SSH can be used to help secure your VNC connection from end to end.
Initial password setup
SSH to the server to set your VNC password, the view-only password is optional. NOTE this password should be treated as an insecure password and should not be re-used elsewhere.
$ vncpasswd Password: Verify: Would you like to enter a view-only password (y/n)? y Password: Verify:
Starting the VNC service
IMPORTANT: The password needs to be set before the service will start successfully.
On RHEL 8
Find the numerical value associated with your username (i.e. 3 for jhaase):
cat /etc/tigervnc/vncserver.users
Find the service associated with the numerical value (i.e. vncserver@:3.service for jhaase):
ls -l /etc/systemd/system/multi-user.target.wants
Check if the service is running:
$ systemctl status vncserver@:3.service ● vncserver@:3.service - Remote desktop service (VNC) Loaded: loaded (/usr/lib/systemd/system/vncserver@.service; enabled; vendor preset: disabled) Active: active (running) since Wed 2022-07-27 17:16:53 PDT; 31min ago Main PID: 2192 (vncsession) Tasks: 0 (limit: 3196277) Memory: 2.0M CGroup: /system.slice/system-vncserver.slice/vncserver@:3.service ‣ 2192 /usr/sbin/vncsession wcwong :3 Jul 27 17:16:51 moho systemd[1]: Starting Remote desktop service (VNC)... Jul 27 17:16:53 moho systemd[1]: Started Remote desktop service (VNC).
Looking for "active (running)" in the Active line.
If the service is not running:
$ systemctl start vncserver@:3.service ==== AUTHENTICATING FOR org.freedesktop.systemd1.manage-units ==== Authentication is required to start 'vncserver@:3.service'. Authenticating as: jhaase Password: ==== AUTHENTICATION COMPLETE ==== $
Where the "Password:" is asking for your AD password for your user account.
Bug reference https://bugzilla.redhat.com/show_bug.cgi?id=667764
Connecting
From the Server
Issue the following "lsof" command to determine which port the VNC server is set to use. In most cases VNC uses port in the 5900 range. The example below shows it using port 5903.
$ sudo lsof -i -P | grep -i "listen" Xvnc 1793 igpp 9u IPv4 10810 0t0 TCP *:5903 (LISTEN) Xvnc 1793 igpp 10u IPv6 10811 0t0 TCP *:5903 (LISTEN) $
From the Local Client
On your local client machine, create the tunnel with the port number obtained above. SSH to the server with the following command. The -C flag is optional for compression. Replace <username> with your username. Replace <servername> with name of the server.
ssh -C -L 5903:localhost:5903 <username>@<servername>.ucsd.edu
Once the ssh tunnel is established you can launch Screen Sharing via the Terminal or from the Finder
via Terminal$ open vnc://localhost:5903
or
via Finder > Go > Connect to Server...
enter vnc://localhost:5903- When prompted provide your VNC password. NOTE this password should be treated as an insecure password and should not be re-used elsewhere.