-
Notifications
You must be signed in to change notification settings - Fork 70
Closed
Description
We noticed that some default values change (we are not sure if in Linux or Docker), creating problems while disabling IPv6 on Kathará devices. To solve the problem, we need to properly set the sysctl
values assigned to a device when IPv6 is not enabled:
Kathara/src/Kathara/manager/docker/DockerMachine.py
Lines 249 to 254 in dcb48fa
if machine.is_ipv6_enabled(): | |
sysctl_parameters["net.ipv6.conf.all.forwarding"] = 1 | |
sysctl_parameters["net.ipv6.conf.all.accept_ra"] = 0 | |
sysctl_parameters["net.ipv6.icmp.ratelimit"] = 0 | |
sysctl_parameters["net.ipv6.conf.default.disable_ipv6"] = 0 | |
sysctl_parameters["net.ipv6.conf.all.disable_ipv6"] = 0 |
Metadata
Metadata
Assignees
Labels
Type
Projects
Status
Done