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

gluon-mesh-batman-adv: increase bridge multicast querier robustness to 9

The RFC standard multicast querier interval is 120s. Our querier uses in
interval of 20s for better support of roaming clients, but our robustness
setting of 3 leads to external queriers using the standard interval to be
timeout after only 60s, leading to frequent "querier appeared/disappeared"
messages. Increase robustness so that external queriers with any interval
<180s are supported.
parent 68a706a9
No related branches found
No related tags found
No related merge requests found
...@@ -18,7 +18,7 @@ uci:section('network', 'interface', 'client', { ...@@ -18,7 +18,7 @@ uci:section('network', 'interface', 'client', {
peerdns = not site.dns.servers(), peerdns = not site.dns.servers(),
sourcefilter = false, sourcefilter = false,
keep_ra_dnslifetime = true, keep_ra_dnslifetime = true,
robustness = 3, robustness = 9,
query_interval = 2000, query_interval = 2000,
query_response_interval = 500, query_response_interval = 500,
}) })
......
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