systemvm: emit IPv6 prefix block for redundant VPC VRs in radvd.conf (#13127)

This commit is contained in:
Jtolelo 2026-06-30 04:06:53 -03:00 committed by GitHub
parent 0231e67b9d
commit 097a57967b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ class CsVpcGuestNetwork(CsDataBag):
self.conf.append(" AdvSendAdvert on;")
self.conf.append(" MinRtrAdvInterval 5;")
self.conf.append(" MaxRtrAdvInterval 15;")
if entry['router_guest_ip6'] == entry['router_guest_ip6_gateway']:
if entry['router_guest_ip6'] == entry['router_guest_ip6_gateway'] or self.cl.is_redundant():
self.conf.append(" prefix %s" % full_addr)
self.conf.append(" {")
self.conf.append(" AdvOnLink on;")