-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.gateway.json
58 lines (58 loc) · 2.69 KB
/
config.gateway.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"firewall": {
"name": {
"WAN_LOCAL": {
"rule": {
"10": {
"action": "accept",
"description": "allow snmp",
"destination": {
"port": "161"
},
"protocol": "tcp_udp"
}
}
}
}
},
"interfaces": {
"ethernet": {
"eth0": {
"duplex": "auto",
"speed": "auto",
"vif": {
"100": {
"address": [
"dhcp"
],
"dhcp-options": {
"client-option": [
"send vendor-class-identifier "BYGTELIAD";"
],
"default-route": "update",
"default-route-distance": "210"
},
"firewall": {
"in": {
"name": "WAN_IN"
},
"local": {
"name": "WAN_LOCAL"
}
}
}
}
}
}
},
"service": {
"snmp": {
"community": {
"snmp_CHANGE_ME": {
"authorization": "ro",
"client": ["CHANGE_ME_IP_ADDRESS"]
}
}
}
}
}