alivefox 大佬有话说 :
用nginx自带的stream模块转发ssh
放在和http段下面,和http段是同级关系,不要用rinetd了,stream支持tcp和udp,同理内网MySQL/Redis等,也可以使用。
stream {
server {
listen 2222;
proxy_pass 1.1.1.1:22;
proxy_connect_timeout 1h;
proxy_timeout 1h;
}
}