-
Notifications
You must be signed in to change notification settings - Fork 25
/
config.json
38 lines (38 loc) · 1.12 KB
/
config.json
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
{
"port-pairs": [
{
"private-port": {
"index": 0,
"subnet": "192.168.14.1/24",
"subnet6": "fd14::1/64"
},
"public-port": {
"index": 1,
"subnet": "192.168.16.1/24",
"subnet6": "fd16::1/64",
"forward-ports": [
{
"port": 8080,
"destination": "192.168.14.2:80",
"protocol": "TCP"
},
{
"port": 8080,
"destination": "[fd14::2]:80",
"protocol": "TCP6"
},
{
"port": 2222,
"destination": "192.168.14.2:22",
"protocol": "TCP"
},
{
"port": 2222,
"destination": "[fd14::2]:22",
"protocol": "TCP6"
}
]
}
}
]
}