どこかの環境へ常時ポートを飛ばし続ける
Windowsのスタートアップに、Cygwin.batを設定
Cygwin起動時に、Autosshを発動
1 2 |
$ cat /etc/profile.d/autossh.sh autossh -f -M 50000 -C -N host4 |
1 2 3 4 5 6 7 8 9 10 11 |
$ cat ~/.ssh/config Host host1 hostname humidai1 User root Port 443 Host host2 hostname testdomain.com Port 8080 User root ProxyCommand ssh -CW %h:%p host1 RemoteForward 10022 localhost:22 |