node.js, sinatra, rails,SimpleHTTPServerとかを使って
ローカルで開発中のものをシェアする際に使えそう.
もう少し凝れば簡易Dropbox的にも使えるかも.
8022ポートにアクセスしてるものの,8022は開けなくても良さそうなところが使えるポイントか.
/usr/local/bin/revpfwd
#!/bin/zsh if [ $# -ne 1 ]; then print "identify port number." exit fi echo "SSH Port Forwarding: localhost:"$@" to YOURSITE.com:8022" ssh -N -R 8022:127.0.0.1:$@ USER@YOUR_HOST -p YOUR_PORT -i ~/.ssh/YOUR_IDENTITY