On Thu, 29 Nov 2012, Mike Miller wrote:

> UltraVNC allows for some kinds of encryption.  Can the xvnc4viewer be 
> used with the encryption, or do you just have to run UltraVNC 
> unencrypted?  I usually use Xvnc with -localhost and then use ssh 
> portforwarding to create an SSH tunnel to connect through, but I'm not 
> sure of how to do that when the VNC server is running on Windows.

FYI -- below is the simple script I use to connect via SSH tunnel to 
server_host:1 with username "user".  --Mike


#!/bin/bash

ssh -f -L 25901:127.0.0.1:5901 user at server_host sleep 1
xvnc4viewer -FullScreen -FullColor 127.0.0.1::25901 &> /dev/null &