Contents
hide
Problem Definition
- 重启后仍然有效的那种
Solution
从5555自动转发到9101端口 (记得5555端口要被防火墙允许)
apt install -y socat vi /etc/rc.local # 在这个开机自启动脚本的最后加入 nohup socat TCP4-LISTEN:5555,reuseaddr,fork TCP4:127.0.0.1:9101 >> /tmp/socat.log 2>&1 & # 查看端口 lsof -i:5555,9101 # 从外部机器上参看端口开放情况