Forward traffic using the Pingtunnel client
masterUse the following command patterns to forward different types of traffic through the ICMP tunnel. Replace www.yourserver.com with your actual server address.
Forward SOCKS5
Use the -sock5 1 flag.
Forward TCP
Use the -t flag to specify the target destination and the -tcp 1 flag.
Forward UDP
Use the -t flag to specify the target destination.
# Forward SOCKS5
pingtunnel.exe -type client -l :4455 -s www.yourserver.com -sock5 1
# Forward tcp
pingtunnel.exe -type client -l :4455 -s www.yourserver.com -t www.yourserver.com:4455 -tcp 1
# Forward udp
pingtunnel.exe -type client -l :4455 -s www.yourserver.com -t www.yourserver.com:4455