-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
44 lines (44 loc) · 833 Bytes
/
Copy pathconfig.example.json
File metadata and controls
44 lines (44 loc) · 833 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "example",
"hosts": [
{
"name": "bastion",
"endpoint": "142.251.35.238:51820",
"egressInterface": "ens4",
"interface": {
"address": "172.24.0.1/32",
"mtu": 1380
}
},
{
"name": "simple",
"interface": {
"address": "172.24.0.2/32",
"mtu": 1380,
"dns": ["1.1.1.1", "1.0.0.1"]
}
},
{
"name": "all",
"interface": {
"address": "172.24.0.3/32",
"mtu": 1380,
"dns": ["1.1.1.1", "1.0.0.1"]
}
}
],
"routes": [
{
"from": "simple",
"to": "bastion",
"persistentKeepalive": 25,
"allowedIps": ["10.158.144.3/32"]
},
{
"from": "all",
"to": "bastion",
"persistentKeepalive": 25,
"allowedIps": ["0.0.0.0/0"]
}
]
}