pingtunnel/README.md

77 lines
3.8 KiB
Markdown
Raw Normal View History

2018-12-20 10:09:16 +03:00
# Pingtunnel
2020-01-01 11:25:02 +03:00
2020-01-01 11:54:54 +03:00
[<img src="https://img.shields.io/github/license/esrrhs/pingtunnel">](https://github.com/esrrhs/pingtunnel)
2020-01-03 04:03:49 +03:00
[<img src="https://img.shields.io/github/languages/top/esrrhs/pingtunnel">](https://github.com/esrrhs/pingtunnel)
2020-01-06 05:42:34 +03:00
[![Go Report Card](https://goreportcard.com/badge/github.com/esrrhs/pingtunnel)](https://goreportcard.com/report/github.com/esrrhs/pingtunnel)
2020-01-01 11:33:40 +03:00
[<img src="https://img.shields.io/github/v/release/esrrhs/pingtunnel">](https://github.com/esrrhs/pingtunnel/releases)
[<img src="https://img.shields.io/github/downloads/esrrhs/pingtunnel/total">](https://github.com/esrrhs/pingtunnel/releases)
[<img src="https://img.shields.io/docker/pulls/esrrhs/pingtunnel">](https://hub.docker.com/repository/docker/esrrhs/pingtunnel)
2020-01-01 11:54:54 +03:00
[<img src="https://img.shields.io/github/workflow/status/esrrhs/pingtunnel/Go">](https://github.com/esrrhs/pingtunnel/actions)
2020-01-08 06:22:40 +03:00
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/a200bca59d1b4ca7a9c2cdb564508b47)](https://www.codacy.com/manual/esrrhs/pingtunnel?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=esrrhs/pingtunnel&amp;utm_campaign=Badge_Grade)
2020-01-01 11:25:02 +03:00
2020-10-31 18:03:22 +03:00
pingtunnel是把tcp/udp/sock5流量伪装成icmp流量进行转发的工具
2019-11-05 16:09:36 +03:00
2020-01-04 15:01:26 +03:00
[Readme EN](./README_EN.md)
2019-11-05 16:15:41 +03:00
**注意:本工具只是用作学习研究,请勿用于非法用途!**
2019-11-01 17:38:09 +03:00
![image](network.jpg)
2019-10-27 15:09:51 +03:00
2020-01-07 17:10:28 +03:00
# 使用
### 安装服务端
2020-10-31 18:03:22 +03:00
* 首先准备好一个具有公网ip的服务器假定域名或者公网ip是www.yourserver.com
2020-01-08 05:49:48 +03:00
* 从[releases](https://github.com/esrrhs/pingtunnel/releases)下载对应的安装包如pingtunnel_linux64.zip然后解压以**root**权限执行
2018-12-20 10:09:16 +03:00
```
2020-01-08 05:42:49 +03:00
sudo wget (最新release的下载链接)
2020-01-07 17:10:28 +03:00
sudo unzip pingtunnel_linux64.zip
2018-12-20 10:09:16 +03:00
sudo ./pingtunnel -type server
```
2020-01-08 05:38:33 +03:00
* (可选)关闭系统默认的ping
```
echo 1 >/proc/sys/net/ipv4/icmp_echo_ignore_all
```
2020-01-07 17:10:28 +03:00
### 安装GUI客户端(新手推荐)
* 从[pingtunnel-qt](https://github.com/esrrhs/pingtunnel-qt)下载qt的gui版本
* 双击exe运行修改server如www.yourserver.com、listen port如1080勾上sock5其他设置默认即可然后点击*GO*
* 一切正常界面上会有ping值显示然后可点击X隐藏到状态栏
2020-10-31 18:03:22 +03:00
* 设置浏览器的sock5代理到127.0.0.1:1080如果连不上网出现socks version not supported错误日志说明浏览器的代理不是socks5代理。如果提示非安全连接说明dns有问题勾上浏览器的【使用socks5代理DNS查询】
2020-01-07 17:10:28 +03:00
![image](qtrun.jpg)
2020-01-08 05:35:57 +03:00
### 安装客户端(高玩推荐)
2020-01-07 17:10:28 +03:00
* 从[releases](https://github.com/esrrhs/pingtunnel/releases)下载对应的安装包如pingtunnel_windows64.zip解压
2020-01-08 05:49:48 +03:00
* 然后用**管理员权限**运行,不同的转发功能所对应的命令如下
2020-01-08 05:33:02 +03:00
* 如果看到有ping pong的log说明连接正常
2020-01-07 17:10:28 +03:00
##### 转发sock5
2018-12-20 10:09:16 +03:00
```
2020-01-07 17:10:28 +03:00
pingtunnel.exe -type client -l :4455 -s www.yourserver.com -sock5 1
2018-12-20 10:09:16 +03:00
```
2020-01-07 17:10:28 +03:00
##### 转发tcp
2018-12-23 08:09:33 +03:00
```
2020-01-07 17:10:28 +03:00
pingtunnel.exe -type client -l :4455 -s www.yourserver.com -t www.yourserver.com:4455 -tcp 1
2018-12-23 08:09:33 +03:00
```
2020-01-07 17:10:28 +03:00
##### 转发udp
2018-12-23 08:09:33 +03:00
```
2020-01-07 17:10:28 +03:00
pingtunnel.exe -type client -l :4455 -s www.yourserver.com -t www.yourserver.com:4455
2018-12-23 08:09:33 +03:00
```
2020-01-07 17:10:28 +03:00
2020-01-08 05:35:57 +03:00
### Docker
2020-01-07 17:10:28 +03:00
server:
2019-10-28 11:54:09 +03:00
```
2020-01-07 17:10:28 +03:00
docker run --name pingtunnel-server -d --privileged --network host --restart=always esrrhs/pingtunnel ./pingtunnel -type server -key 123456
```
client:
```
docker run --name pingtunnel-client -d --restart=always -p 1080:1080 esrrhs/pingtunnel ./pingtunnel -type client -l :1080 -s www.yourserver.com -sock5 1 -key 123456
2019-10-28 11:54:09 +03:00
```
2019-10-27 15:27:52 +03:00
2020-01-07 17:10:28 +03:00
# 效果
2020-10-31 18:06:46 +03:00
下载centos镜像 [centos mirror](http://mirrors.ocf.berkeley.edu/centos/8.2.2004/isos/x86_64/CentOS-8.2.2004-x86_64-dvd1.iso),对比如下
2020-05-07 13:12:24 +03:00
| | wget | shaowsocks | kcptun | pingtunnel |
|--------------|----------|------------|------------|------------|
| 阿里云 | 26.6KB/s | 31.8KB/s | 606KB/s |5.64MB/s|
2020-01-04 13:30:28 +03:00
2020-01-07 17:10:28 +03:00
# 下载
2019-10-30 15:39:56 +03:00
cmd: https://github.com/esrrhs/pingtunnel/releases
2019-10-30 15:40:13 +03:00
2019-11-05 06:07:28 +03:00
QT GUI: https://github.com/esrrhs/pingtunnel-qt
2019-10-28 12:13:00 +03:00