-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathingress.policy.example.json
More file actions
52 lines (52 loc) · 1.09 KB
/
Copy pathingress.policy.example.json
File metadata and controls
52 lines (52 loc) · 1.09 KB
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
45
46
47
48
49
50
51
52
{
"defaults": {
"allow": true,
"bandwidthLimit": {
"mbps": 10,
"burstMbps": 50
}
},
"ips": {
"203.0.113.10": {
"labels": [
"trusted",
"office"
],
"bandwidthLimit": {
"mbps": 100,
"burstMbps": 200
}
},
"198.51.100.25": {
"allow": false,
"labels": [
"blocked"
]
},
"192.0.2.40": {
"labels": [
"vpn"
],
"onlyPorts": [
{
"from": 80,
"to": 443
}
],
"excludePorts": [
{
"from": 1194,
"to": 1194
},
{
"from": 51820,
"to": 51820
}
],
"bandwidthLimit": {
"mbps": 5,
"burstMbps": 20
}
}
}
}