Python-Tcp 内网穿透

使用 Python3 进行 Tcp 内网穿透,需要一台公网 IP 的服务器做为中转。

中转端启动

1
python3 master.py -m 0.0.0.0:10000 -c 0.0.0.0:10022

接收端启动

1
python3 slaver.py -m 公网IP:10000 -t 127.0.0.1:本地服务端口

发起端启动

1
ssh 公网IP -p 10022