| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Pingtunnel is a tool that sends TCP/UDP traffic over ICMP.
📖 For detailed documentation, see USAGE.md: includes complete command-line parameters, configuration file usage (-c config.json), and setup guides for various proxy scenarios (global SOCKS5 proxy, TCP port forwarding, UDP forwarding, forward proxy, end-to-end AES/ChaCha20 encryption, etc.).
sudo ./pingtunnel -type server -key 123456echo 1 > /proc/sys/net/ipv4/icmp_echo_ignore_allRun with administrator privileges:
pingtunnel -type client -l :4455 -s www.yourserver.com -sock5 1 -key 123456pingtunnel -type client -l :4455 -s www.yourserver.com -t 192.168.1.100:22 -tcp 1 -key 123456pingtunnel -type client -l :4455 -s www.yourserver.com -t 8.8.8.8:53 -key 123456Both client and server support JSON configuration files:
# Start server with config
sudo ./pingtunnel -c server.json
# Start client with config
./pingtunnel -c client.jsonSee USAGE.md for JSON configuration templates and rules.
A dedicated Android client for pingtunnel is available, developed by the community:
Big thanks to itismoej for developing this Android client!
You can also start pingtunnel directly with Docker:
docker run --name pingtunnel-server -d --privileged --network host --restart=always esrrhs/pingtunnel ./pingtunnel -type server -key 123456docker 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| Back | FazBrowse Home | New Git URL |