gluon-respondd: firewall should allow access for devices in zone local_client (#1291)

This commit is contained in:
Christof Schulze 2017-12-31 19:57:57 +01:00 committed by Matthias Schiffer
parent 910a6c8bb3
commit bc2fb8cc69
1 changed files with 2 additions and 2 deletions

View File

@ -15,10 +15,10 @@ uci:section('firewall', 'rule', 'wan_respondd', {
target = 'ACCEPT',
})
-- Allow respondd-access on client_local
-- Allow respondd-access for local clients
uci:section('firewall', 'rule', 'client_respondd', {
name = 'client_respondd',
src = 'client_local',
src = 'local_client',
src_ip = 'fe80::/64',
dest_port = '1001',
proto = 'udp',