安装步骤
Centos 系统:
yum install -y socat
Debian/Ubuntu 系统:
apt-get update apt-get install -y socat
---------------------
使用方法
转发TCP
nohup socat TCP4-LISTEN:2333,reuseaddr,fork TCP4:233.233.233.233:6666 >> /root/socat.log 2>&1 &
nohup
指的是 后台运行。
TCP4-LI...