This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# port you have open on your home router to forward ssh | |
SSH_PORT=22022 | |
# set up dynamic dns if you don't have a static ip | |
HOST=your.home.ip | |
# OSX Screen Sharing will complain if you try to connect to the standard | |
# VNC ports (5900+) on localhost, so pick another available port | |
LOCAL_PORT=1202 | |
ssh -p $SSH_PORT $HOST -L $LOCAL_PORT:localhost:5900 -f -N | |
open "vnc://localhost:$LOCAL_PORT" |