Disable DAD on bridge NICs
This commit is contained in:
parent
1da98a4497
commit
397c61f6bf
|
@ -399,6 +399,12 @@ add rule inet filter forward ip6 saddr {netaddr6} counter jump {vxlannic}-out
|
|||
self.bridge_nic
|
||||
)
|
||||
)
|
||||
common.run_os_command(
|
||||
# Disable IPv6 DAD on bridge NICs
|
||||
'sysctl net.ipv6.conf.{}.accept_dad=0'.format(
|
||||
self.bridge_nic
|
||||
)
|
||||
)
|
||||
|
||||
def createFirewall(self):
|
||||
# For future use
|
||||
|
|
Loading…
Reference in New Issue