Skip to content
Snippets Groups Projects
Commit 665377ab authored by Fabian Blaese's avatar Fabian Blaese Committed by Adrian Schmutzler
Browse files

network: set router solicitations to default value


When setting up a node, router solicitations can be used to speed
up receiving router advertisements a lot. This mechanism has been
previously disabled by our custom sysctl config.

However because linux does not send router solicitations, if it
doesn't accept router advertisements, which is disabled for every
link except WAN, this option can safely be set to it's default value
for all interfaces.

Signed-off-by: default avatarFabian Bläse <fabian@blaese.de>
Reviewed-by: default avatarRobert Langhammer <rlanghammer@web.de>
Reviewed-by: default avatarChristian Dresel <fff@chrisi01.de>
parent 0a05b15d
No related branches found
No related tags found
No related merge requests found
...@@ -39,11 +39,6 @@ net.ipv6.conf.all.accept_dad=0 ...@@ -39,11 +39,6 @@ net.ipv6.conf.all.accept_dad=0
net.ipv6.conf.all.accept_ra=0 net.ipv6.conf.all.accept_ra=0
net.ipv6.conf.all.accept_redirects=0 net.ipv6.conf.all.accept_redirects=0
# Number of Router Solicitations to send until assuming no routers are present.
# This is host and not router
net.ipv6.conf.default.router_solicitations = 0
net.ipv6.conf.all.router_solicitations = 0
# Accept Router Preference in RA? # Accept Router Preference in RA?
net.ipv6.conf.default.accept_ra_rtr_pref = 0 net.ipv6.conf.default.accept_ra_rtr_pref = 0
net.ipv6.conf.all.accept_ra_rtr_pref = 0 net.ipv6.conf.all.accept_ra_rtr_pref = 0
......
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