-
Notifications
You must be signed in to change notification settings - Fork 25
/
config-vlan.json
40 lines (40 loc) · 1.19 KB
/
config-vlan.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
39
40
{
"port-pairs": [
{
"private-port": {
"index": 0,
"subnet": "192.168.114.1/24",
"subnet6": "fd84::1/64",
"vlan-tag": 114
},
"public-port": {
"index": 1,
"subnet": "192.168.116.1/24",
"subnet6": "fd86::1/64",
"vlan-tag": 116,
"forward-ports": [
{
"port": 8080,
"destination": "192.168.114.2:80",
"protocol": "TCP"
},
{
"port": 8080,
"destination": "[fd84::2]:80",
"protocol": "TCP6"
},
{
"port": 2222,
"destination": "192.168.114.2:22",
"protocol": "TCP"
},
{
"port": 2222,
"destination": "[fd84::2]:22",
"protocol": "TCP6"
}
]
}
}
]
}