Skip to content
Snippets Groups Projects
Commit 2f499dbf authored by Matthias Schiffer's avatar Matthias Schiffer
Browse files

gluon-respondd: restrict queries from the mesh to link-local addresses

Restrict to link-local addresses to prevent amplification attacks from
outside the mesh, or such attacks affecting the outside world.

Fixes #637
parent 4d6956fa
No related branches found
No related tags found
No related merge requests found
......@@ -16,5 +16,17 @@ uci:section('firewall', 'rule', 'wan_respondd',
}
)
-- Restrict respondd queries to link-local addresses to prevent amplification attacks from outside
uci:section('firewall', 'rule', 'client_respondd',
{
name = 'client_respondd',
src = 'client',
src_ip = '!fe80::/64',
dest_port = '1001',
proto = 'udp',
target = 'REJECT',
}
)
uci:save('firewall')
uci:commit('firewall')
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment