# go-proxy **Repository Path**: pibigstar/go-proxy ## Basic Information - **Project Name**: go-proxy - **Description**: 用Go写一个内网穿透工具 - **Primary Language**: Go - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 1 - **Created**: 2020-10-28 - **Last Updated**: 2022-01-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 内网穿透工具 - 多协程与通道配合达到快速响应 - 3秒发送一次心跳包维护连接 - client断开自动重连 ## 说明 - server端: 具有公网地址的服务器 - client端: 需要内网穿透的主机 ## 使用 server端, 默认本地为5200端口 ```bash ./server -l 5200 -r 3333 ``` client端 ```bash ./client -l 8080 -r 3333 -h 公网IP地址 ``` 用户访问 `公网IP地址:5200` 即可访问到 内网中的 `8080`端口程序