Disable DAD on bridge NICs

This commit is contained in:
Joshua Boniface 2018-11-27 22:19:14 -05:00
parent 1da98a4497
commit 397c61f6bf
1 changed files with 6 additions and 0 deletions

View File

@ -399,6 +399,12 @@ add rule inet filter forward ip6 saddr {netaddr6} counter jump {vxlannic}-out
self.bridge_nic 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): def createFirewall(self):
# For future use # For future use