gluon-firewall: reject DNS queries from br-client (they should be accepted on local-node only)

This commit is contained in:
Matthias Schiffer 2014-07-05 15:56:22 +02:00
parent 72c0df3969
commit ac997386a9
1 changed files with 11 additions and 0 deletions

View File

@ -26,5 +26,16 @@ c:section('firewall', 'rule', 'wan_ssh',
}
)
c:section('firewall', 'rule', 'client_dns',
{
name = 'client_dns',
src = 'client',
dest_port = '53',
target = 'REJECT',
}
)
c:save('firewall')
c:commit('firewall')