1
1
reverst: HTTP reverse tunnels over QUIC
2
2
---------------------------------------
3
3
4
+ <p align =" center " >
5
+ <img width =" 300 " height =" 300 " src =" ./docs/gopher-glasses.svg " alt =" Tunnel Gopher " >
6
+ </p >
7
+
4
8
> Ti esrever dna ti pilf nwod gnaht ym tup i
5
9
6
10
Reverst is a (load-balanced) reverse-tunnel server and Go server-client library built on QUIC and HTTP/3.
@@ -17,12 +21,13 @@ The tunnel binary is intended to be deployed on the public internet.
17
21
Client servers then dial out to the tunnels and register themselves on target tunnel groups.
18
22
A tunnel group is a load-balanced set of client-servers, which is exposed through the reverst tunnel HTTP interface.
19
23
20
- <p align =" center " >
21
- <img width =" 800 " height =" 1199 " src =" ./diagram.png " alt =" Tunnel Lifecycle " >
22
- </p >
23
-
24
24
## Client
25
25
26
+ [ ![ Go Reference] ( https://pkg.go.dev/badge/go.flipt.io/reverst/client.svg )] ( https://pkg.go.dev/go.flipt.io/reverst/client )
27
+
28
+ The following section refers to the Go tunnel client code.
29
+ This can be added as a dependency to any Go code that requires exposing through a ` reverstd ` tunnel server.
30
+
26
31
### Install
27
32
28
33
``` console
@@ -35,10 +40,12 @@ go get go.flipt.io/reverst/client
35
40
go install ./client/...
36
41
```
37
42
38
- ## Server
43
+ ## Server and CLI
39
44
40
45
### Building
41
46
47
+ The following builds both ` reverstd ` (tunnel server) and ` reverst ` (tunnel cli client).
48
+
42
49
``` console
43
50
go install ./cmd/...
44
51
```
@@ -47,61 +54,23 @@ go install ./cmd/...
47
54
48
55
Reverst uses Dagger to setup and run an integration test suite.
49
56
50
- ``` console
51
- dagger call test --source=.
52
- ```
53
-
54
- The test suite sets up a tunnel, registers a server-client to the tunnel and then requests the service through the tunnels HTTP interface.
55
-
56
- ### Running
57
-
58
- The following walks through experimenting with the [ ./examples/simple] ( ./examples/simple ) server example.
59
- This directory contains a number of things needed to stand up reverst and a registering client server:
60
-
61
- - The example service in [ ./examples/simple/main.go] ( ./examples/simple/main.go ) .
62
- - Simple self-signed TLS private key and certificate.
63
- - A tunnel-groups file for routing decisions.
64
-
65
- #### Running ` reverst `
66
-
67
- The following runs the tunnel server with:
68
-
69
- - The QUIC tunnel listener on ` 127.0.0.1:7171 `
70
- - The HTTP serving listener on ` 127.0.0.1:8181 `
71
- - Logging with ` debug ` level
72
- - A TLS server-name of ` flipt.dev.local `
73
- - Some tunnel group definitions with a single tunnel group
74
- - The group has the name ` flipt.dev.local `
75
- - The group is reachable under the same host name
76
- - The group requires basic username and password authentication
77
- - The dummy TLS certificates
57
+ #### Unit
78
58
79
59
``` console
80
- go run ./cmd/reverst/... -l debug \
81
- -n flipt.dev.local \
82
- -g examples/simple/group.yml \
83
- -k examples/simple/server.key \
84
- -c examples/simple/server.crt
60
+ dagger call testUnit --source=.
85
61
```
86
62
87
- #### Running example server
88
-
89
- Now you can run the example server.
90
- This is a simple HTTP server that responds to all requests with ` PONG ` .
91
- It is setup to use the server client to register as a listener on the tunnel.
63
+ #### Integration
92
64
93
65
``` console
94
- go run ./examples/simple/main.go --username user --password pass
66
+ dagger call testIntegration --source=.
95
67
```
96
68
97
- #### Making requests
69
+ The test suite sets up a tunnel, registers a server-client to the tunnel and then requests the service through the tunnels HTTP interface.
98
70
99
- You can now curl the tunnel and requests will be forward all the way through to the example server.
100
- Be sure to include the ` Host ` header, as this is used to route requests to the respective tunnel-group.
71
+ ### Examples
101
72
102
- ``` curl
103
- curl -H 'Host: flipt.dev.local' 127.0.0.1:8181/fo
104
- ```
73
+ Head over to the [ examples] ( ./examples ) directory for some walkthroughs running ` reverstd ` and ` reverst ` .
105
74
106
75
### Usage and Configuration
107
76
@@ -110,12 +79,12 @@ curl -H 'Host: flipt.dev.local' 127.0.0.1:8181/fo
110
79
The following flags can be used to configure a running instance of the ` reverst ` server.
111
80
112
81
``` console
113
- ➜ reverst -h
82
+ ➜ reverstd -h
114
83
COMMAND
115
- reverst
84
+ reverstd
116
85
117
86
USAGE
118
- reverst [FLAGS]
87
+ reverstd [FLAGS]
119
88
120
89
FLAGS
121
90
-l, --log LEVEL debug, info, warn or error (default: INFO)
@@ -145,25 +114,25 @@ Both tunnel group sources support watching sources for changes over time (see `-
145
114
146
115
- Local filesystem (` file://[path] ` )
147
116
148
- The standard and simplest method is to point reverst at your configuration YAML file on your machine via its path.
117
+ The standard and simplest method is to point ` reverstd ` at your configuration YAML file on your machine via its path.
149
118
150
119
``` console
151
- reverst -g path/to/configuration.yml
120
+ reverstd -g path/to/configuration.yml
152
121
// alternatively:
153
- reverst -g file:///path/to/configuration.yml
122
+ reverstd -g file:///path/to/configuration.yml
154
123
```
155
124
156
125
- Kubernetes ConfigMap ` k8s://configmap/[namespace]/[name]/[key] `
157
126
158
127
Alternatively, you can configure reverst to connect to a Kubernetes API server and fetch / watch configuration from.
159
128
160
129
``` console
161
- reverst -g k8s://configmap/default/tunnelconfig/groups.yml
130
+ reverstd -g k8s://configmap/default/tunnelconfig/groups.yml
162
131
```
163
132
164
133
** defining**
165
134
166
- The reverst server take a path to a YAML encoded file, which identifies the tunnel groups to be hosted.
135
+ The ` reverstd ` server take a path to a YAML encoded file, which identifies the tunnel groups to be hosted.
167
136
A tunnel group is a load-balancer on which tunneled servers can register themselves.
168
137
The file contains a top-level key groups, under which each tunnel group is uniquely named.
169
138
0 commit comments