#!/bin/bash

set -x

while true
do
    # We tunnel(ed) both VNC and RDP
        # -L3389:localhost:3389 \
    ssh \
        -t \
        dastromberg@uspubl-drs004.corp.blizzard.net \
        -L5903:localhost:5901 \
        'while : ; do stty > /dev/null; date; sleep 60; done'
    sleep 1
done