route/cmd/route-httpagent/main.go

47 lines
1.2 KiB
Go
Raw Normal View History

2017-01-18 09:57:18 +00:00
package main
import (
2017-10-01 13:28:13 +00:00
"context"
2017-03-26 20:14:24 +00:00
"crypto/tls"
2017-01-18 09:57:18 +00:00
"flag"
"time"
2017-01-18 09:57:18 +00:00
2017-10-01 15:23:08 +00:00
"git.xeserv.us/xena/route/internal/tun2"
2017-03-26 20:14:24 +00:00
"github.com/Xe/ln"
"github.com/facebookgo/flagenv"
_ "github.com/joho/godotenv"
2017-01-18 09:57:18 +00:00
)
var (
token = flag.String("token", "", "authentication token used to authenticate with routed")
domain = flag.String("domain", "", "domain to use when authenticating with routed")
backend = flag.String("backend", "http://127.0.0.1:9090", "backend TCP/HTTP server route-httpagent should relay traffic to/from")
serverAddr = flag.String("server", "127.0.0.1:9234", "the address that routed is listening on for backend connections")
connMethod = flag.String("method", "tcp", "the connection method used to talk to routed (MUST be either 'tcp' or 'kcp')")
2017-01-18 09:57:18 +00:00
)
func main() {
flagenv.Parse()
2017-01-18 09:57:18 +00:00
flag.Parse()
2017-03-26 20:14:24 +00:00
cfg := &tun2.ClientConfig{
TLSConfig: &tls.Config{},
2017-03-26 20:57:09 +00:00
ConnType: *connMethod,
ServerAddr: *serverAddr,
2017-03-26 20:14:24 +00:00
Token: *token,
Domain: *domain,
BackendURL: *backend,
2017-01-18 09:57:18 +00:00
}
2017-03-26 20:14:24 +00:00
client, _ := tun2.NewClient(cfg)
for {
2017-10-04 07:00:16 +00:00
err := client.Connect(context.Background())
if err != nil {
ln.Error(context.Background(), err, ln.Action("client connection failed"))
}
time.Sleep(2 * time.Second)
2017-01-18 09:57:18 +00:00
}
}