Merge pull request #15633 from pguibert6WIND/ipv4_ignore_routes_with_linkdown

topotests: fix ignore routes with linkdown
This commit is contained in:
Russ White 2024-04-04 14:01:31 -04:00 committed by GitHub
commit 51afc9e31f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1296,6 +1296,8 @@ def fix_netns_limits(ns):
sysctl_assure(ns, "net.ipv4.conf.all.ignore_routes_with_linkdown", 1)
sysctl_assure(ns, "net.ipv6.conf.all.ignore_routes_with_linkdown", 1)
sysctl_assure(ns, "net.ipv4.conf.default.ignore_routes_with_linkdown", 1)
sysctl_assure(ns, "net.ipv6.conf.default.ignore_routes_with_linkdown", 1)
# igmp
sysctl_atleast(ns, "net.ipv4.igmp_max_memberships", 1000)