SSH代理(如sshuttle
或socat
)在连接断开时自动重连的功能可以通过一些配置和脚本实现。以下是两种常见的方法:
autossh
autossh
是一个自动重连SSH隧道的工具。它会在连接断开时自动尝试重新连接。
安装autossh
:
sudo apt-get install autossh
sudo yum install autossh
brew install autossh
使用autossh
创建SSH隧道:
autossh -M 0 -N -o "ServerAliveInterval 30" -o "ServerAliveCountMax 3" -p <port> <user>@<host> -L <local_port>:<remote_host>:<remote_port>
解释:
-M 0
:禁用监控端口。-N
:不执行命令,只保持隧道连接。-o "ServerAliveInterval 30"
:每30秒发送一次保活信号。-o "ServerAliveCountMax 3"
:连续3次保活失败后断开连接。-p <port>
:SSH端口。<user>@<host>
:远程服务器地址和用户名。-L <local_port>:<remote_host>:<remote_port>
:本地端口转发配置。socat
socat
是一个多功能的网络工具,可以用来创建各种网络连接,包括自动重连的SSH代理。
安装socat
:
sudo apt-get install socat
sudo yum install socat
brew install socat
使用socat
创建SSH隧道:
socat TCP-LISTEN:8080,fork SSH:+<port>,server,permit_root=0,user=<user>@<host>
解释:
TCP-LISTEN:8080,fork
:监听本地端口8080,并在后台启动新的进程。SSH:+<port>
:通过SSH连接到远程服务器。server
:作为SSH服务器运行。permit_root=0
:不允许root用户通过。user=<user>@<host>
:远程服务器地址和用户名。这两种方法都可以实现SSH代理的自动重连功能。autossh
更简单,适合大多数用户;而socat
功能更强大,适合需要更多自定义配置的用户。选择哪种方法取决于你的具体需求。