pingtunnel/cmd/main.go

89 lines
2.8 KiB
Go
Raw Normal View History

2018-12-16 08:56:40 +03:00
package main
import (
"flag"
"fmt"
2018-12-18 10:47:45 +03:00
"github.com/esrrhs/pingtunnel"
2018-12-16 08:56:40 +03:00
)
var usage = `
2018-12-18 10:36:59 +03:00
通过伪造ping把udp流量通过远程服务器转发到目的服务器上用于突破某些运营商封锁UDP流量
By forging ping, the udp traffic is forwarded to the destination server through the remote server. Used to break certain operators to block UDP traffic.
2018-12-16 08:56:40 +03:00
Usage:
2018-12-18 06:39:16 +03:00
pingtunnel -type server
2018-12-16 08:56:40 +03:00
2018-12-18 10:36:59 +03:00
pingtunnel -type client -l LOCAL_IP:4455 -s SERVER_IP -t SERVER_IP:4455
-type 服务器或者客户端
client or server
-l 本地的地址发到这个端口的流量将转发到服务器
Local address, traffic sent to this port will be forwarded to the server
-s 服务器的地址流量将通过隧道转发到这个服务器
The address of the server, the traffic will be forwarded to this server through the tunnel
-t 远端服务器转发的目的地址流量将转发到这个地址
Destination address forwarded by the remote server, traffic will be forwarded to this address
2018-12-16 08:56:40 +03:00
2018-12-19 06:48:48 +03:00
-timeout 本地记录连接超时的时间单位是秒默认60s
The time when the local record connection timed out, in seconds, 60 seconds by default
2018-12-20 09:12:17 +03:00
-sproto 客户端发送ping协议的协议默认是8
The protocol that the client sends the ping. The default is 8.
2018-12-19 09:38:44 +03:00
2018-12-20 09:12:17 +03:00
-rproto 客户端接收ping协议的协议默认是0
The protocol that the client receives the ping. The default is 0.
2018-12-16 08:56:40 +03:00
`
func main() {
2018-12-18 10:36:59 +03:00
t := flag.String("type", "", "client or server")
listen := flag.String("l", "", "listen addr")
target := flag.String("t", "", "target addr")
server := flag.String("s", "", "server addr")
timeout := flag.Int("timeout", 60, "conn timeout")
2018-12-20 09:12:17 +03:00
sproto := flag.Int("sproto", 8, "send ping proto")
rproto := flag.Int("rproto", 0, "recv ping proto")
2018-12-16 08:56:40 +03:00
flag.Usage = func() {
fmt.Printf(usage)
}
flag.Parse()
2018-12-18 10:36:59 +03:00
if (*t != "client" && *t != "server") || (*t == "client" && (len(*listen) == 0 || len(*target) == 0 || len(*server) == 0)) {
2018-12-16 08:56:40 +03:00
flag.Usage()
return
}
2018-12-18 10:36:59 +03:00
fmt.Println("start...")
2018-12-16 08:56:40 +03:00
if *t == "server" {
2018-12-19 09:38:44 +03:00
s, err := pingtunnel.NewServer(*timeout)
2018-12-16 08:56:40 +03:00
if err != nil {
fmt.Printf("ERROR: %s\n", err.Error())
return
}
2018-12-18 06:39:16 +03:00
fmt.Printf("Server start\n")
2018-12-16 08:56:40 +03:00
s.Run()
}
if *t == "client" {
2018-12-18 10:36:59 +03:00
fmt.Printf("type %s\n", *t)
fmt.Printf("listen %s\n", *listen)
fmt.Printf("server %s\n", *server)
fmt.Printf("target %s\n", *target)
2018-12-22 13:20:58 +03:00
c, err := pingtunnel.NewClient(*listen, *server, *target, *timeout, *sproto, *rproto)
2018-12-16 08:56:40 +03:00
if err != nil {
fmt.Printf("ERROR: %s\n", err.Error())
return
}
2018-12-18 10:36:59 +03:00
fmt.Printf("Client Listen %s (%s) Server %s (%s) TargetPort %s:\n", c.Addr(), c.IPAddr(),
c.ServerAddr(), c.ServerIPAddr(), c.TargetAddr())
2018-12-17 10:21:15 +03:00
c.Run()
2018-12-16 08:56:40 +03:00
}
}