Development
This commit is contained in:
parent
9c22b6f2fd
commit
6e610f888e
10 changed files with 526 additions and 102 deletions
|
|
@ -316,23 +316,7 @@
|
|||
"dns_servers": "",
|
||||
"ntp_servers": ""
|
||||
}
|
||||
},
|
||||
"port_wrangling": [
|
||||
{
|
||||
"description": "DNS wrangling - redirect Trusted DNS to local resolver",
|
||||
"enabled": true,
|
||||
"protocol": "both",
|
||||
"dest_port": 53,
|
||||
"redirect_to": "192.168.1.1"
|
||||
},
|
||||
{
|
||||
"description": "NTP wrangling - redirect Trusted NTP to local time server",
|
||||
"enabled": false,
|
||||
"protocol": "udp",
|
||||
"dest_port": 123,
|
||||
"redirect_to": "192.168.1.1"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"vlan_id": 10,
|
||||
|
|
@ -363,23 +347,7 @@
|
|||
"dns_servers": "",
|
||||
"ntp_servers": ""
|
||||
}
|
||||
},
|
||||
"port_wrangling": [
|
||||
{
|
||||
"description": "DNS wrangling - redirect IoT DNS to local resolver",
|
||||
"enabled": true,
|
||||
"protocol": "both",
|
||||
"dest_port": 53,
|
||||
"redirect_to": "192.168.10.1"
|
||||
},
|
||||
{
|
||||
"description": "NTP wrangling - redirect IoT NTP to local time server",
|
||||
"enabled": false,
|
||||
"protocol": "udp",
|
||||
"dest_port": 123,
|
||||
"redirect_to": "192.168.10.1"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"vlan_id": 20,
|
||||
|
|
@ -410,23 +378,7 @@
|
|||
"dns_servers": "",
|
||||
"ntp_servers": ""
|
||||
}
|
||||
},
|
||||
"port_wrangling": [
|
||||
{
|
||||
"description": "DNS wrangling - redirect Guest DNS to local resolver",
|
||||
"enabled": true,
|
||||
"protocol": "both",
|
||||
"dest_port": 53,
|
||||
"redirect_to": "192.168.20.1"
|
||||
},
|
||||
{
|
||||
"description": "NTP wrangling - redirect Guest NTP to local time server",
|
||||
"enabled": false,
|
||||
"protocol": "udp",
|
||||
"dest_port": 123,
|
||||
"redirect_to": "192.168.20.1"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"vlan_id": 30,
|
||||
|
|
@ -458,23 +410,7 @@
|
|||
"dns_servers": "",
|
||||
"ntp_servers": ""
|
||||
}
|
||||
},
|
||||
"port_wrangling": [
|
||||
{
|
||||
"description": "DNS wrangling - redirect Kids DNS to local resolver",
|
||||
"enabled": true,
|
||||
"protocol": "both",
|
||||
"dest_port": 53,
|
||||
"redirect_to": "192.168.30.1"
|
||||
},
|
||||
{
|
||||
"description": "NTP wrangling - redirect Kids NTP to local time server",
|
||||
"enabled": false,
|
||||
"protocol": "udp",
|
||||
"dest_port": 123,
|
||||
"redirect_to": "192.168.30.1"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"vlan_id": 40,
|
||||
|
|
@ -505,23 +441,7 @@
|
|||
"mtu": ""
|
||||
}
|
||||
},
|
||||
"peers": [],
|
||||
"port_wrangling": [
|
||||
{
|
||||
"description": "DNS wrangling - redirect VPN DNS to local resolver",
|
||||
"enabled": true,
|
||||
"protocol": "both",
|
||||
"dest_port": 53,
|
||||
"redirect_to": "192.168.40.1"
|
||||
},
|
||||
{
|
||||
"description": "NTP wrangling - redirect VPN NTP to local time server",
|
||||
"enabled": false,
|
||||
"protocol": "udp",
|
||||
"dest_port": 123,
|
||||
"redirect_to": "192.168.40.1"
|
||||
}
|
||||
]
|
||||
"peers": []
|
||||
}
|
||||
],
|
||||
"ddns": {
|
||||
|
|
@ -826,5 +746,87 @@
|
|||
"ip": "dynamic",
|
||||
"vlan": "kids"
|
||||
}
|
||||
],
|
||||
"port_wrangling": [
|
||||
{
|
||||
"description": "DNS wrangling - redirect Trusted DNS to local resolver",
|
||||
"enabled": true,
|
||||
"protocol": "both",
|
||||
"dest_port": 53,
|
||||
"redirect_to": "192.168.1.1",
|
||||
"vlan": "trusted"
|
||||
},
|
||||
{
|
||||
"description": "NTP wrangling - redirect Trusted NTP to local time server",
|
||||
"enabled": false,
|
||||
"protocol": "udp",
|
||||
"dest_port": 123,
|
||||
"redirect_to": "192.168.1.1",
|
||||
"vlan": "trusted"
|
||||
},
|
||||
{
|
||||
"description": "DNS wrangling - redirect IoT DNS to local resolver",
|
||||
"enabled": true,
|
||||
"protocol": "both",
|
||||
"dest_port": 53,
|
||||
"redirect_to": "192.168.10.1",
|
||||
"vlan": "iot"
|
||||
},
|
||||
{
|
||||
"description": "NTP wrangling - redirect IoT NTP to local time server",
|
||||
"enabled": false,
|
||||
"protocol": "udp",
|
||||
"dest_port": 123,
|
||||
"redirect_to": "192.168.10.1",
|
||||
"vlan": "iot"
|
||||
},
|
||||
{
|
||||
"description": "DNS wrangling - redirect Guest DNS to local resolver",
|
||||
"enabled": true,
|
||||
"protocol": "both",
|
||||
"dest_port": 53,
|
||||
"redirect_to": "192.168.20.1",
|
||||
"vlan": "guest"
|
||||
},
|
||||
{
|
||||
"description": "NTP wrangling - redirect Guest NTP to local time server",
|
||||
"enabled": false,
|
||||
"protocol": "udp",
|
||||
"dest_port": 123,
|
||||
"redirect_to": "192.168.20.1",
|
||||
"vlan": "guest"
|
||||
},
|
||||
{
|
||||
"description": "DNS wrangling - redirect Kids DNS to local resolver",
|
||||
"enabled": true,
|
||||
"protocol": "both",
|
||||
"dest_port": 53,
|
||||
"redirect_to": "192.168.30.1",
|
||||
"vlan": "kids"
|
||||
},
|
||||
{
|
||||
"description": "NTP wrangling - redirect Kids NTP to local time server",
|
||||
"enabled": false,
|
||||
"protocol": "udp",
|
||||
"dest_port": 123,
|
||||
"redirect_to": "192.168.30.1",
|
||||
"vlan": "kids"
|
||||
},
|
||||
{
|
||||
"description": "DNS wrangling - redirect VPN DNS to local resolver",
|
||||
"enabled": true,
|
||||
"protocol": "both",
|
||||
"dest_port": 53,
|
||||
"redirect_to": "192.168.40.1",
|
||||
"vlan": "vpn"
|
||||
},
|
||||
{
|
||||
"description": "NTP wrangling - redirect VPN NTP to local time server",
|
||||
"enabled": false,
|
||||
"protocol": "udp",
|
||||
"dest_port": 123,
|
||||
"redirect_to": "192.168.40.1",
|
||||
"vlan": "vpn"
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue