#tunnel
#端口映射
在网络访问受限的环境中,我们经常会通过ssh隧道实现端口映射从而达到访问网络的目的,但由于网络条件不稳定,在需要长期保持连接的场景下,可以通过autossh实现自动重连的效果。
autossh -M 10000 \
-p 22 \
-o ServerAliveInterval=30 \
-o ServerAliveCountMax=3 \
-o UserKnownHostsFile=/dev/null \
-o StrictHostKeyChecking=no \
-i /path/to/private.key \
-R 127.0.0.1:20001:127.0.0.1:20001 \
-N username@remote.server
QmY8sCmhEy3NP79meA8KeENeUNpWDd4NsR7BLPQQYb9CP4 autossh-1.4g.tgz