private-ap: firewall

This commit is contained in:
Maciej Krüger 2022-05-17 21:49:59 +02:00 committed by Alexander List
parent de3d85b09c
commit 69117afb15

View File

@ -23,6 +23,7 @@ uci:section('network', 'interface', 'ap', {
proto = 'static',
ipaddr = uci:get('network_gluon-old', 'ap', 'ipaddr') or '192.168.178.1/24',
ip6assign = '64',
zone = 'ap',
})
uci:section('dhcp', 'dhcp', 'ap', {
@ -32,6 +33,20 @@ uci:section('dhcp', 'dhcp', 'ap', {
leasetime = '12h',
})
uci:section('firewall', 'zone', 'ap', {
name = 'ap',
network = { 'ap' },
input = 'ACCEPT',
output = 'ACCEPT',
forward = 'ACCEPT'
})
uci:section('firewall', 'forwarding', 'afm', {
src = 'ap',
dest = 'mesh'
})
uci:save('firewall')
uci:save('network')
uci:save('dhcp')
uci:save('wireless')