Skip to content

pibigstar/go-proxy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

内网穿透工具

  • 多协程与通道配合达到快速响应
  • 3秒发送一次心跳包维护连接
  • client断开自动重连

说明

  • server端: 具有公网地址的服务器
  • client端: 需要内网穿透的主机

使用

server端, 默认本地为5200端口

./server -l 5200 -r 3333

client端

./client -l 8080 -r 3333 -h 公网IP地址

用户访问 公网IP地址:5200 即可访问到 内网中的 8080端口程序