Skip to content

Commit 097a579

Browse files
systemvm: emit IPv6 prefix block for redundant VPC VRs in radvd.conf (#13127)
1 parent 0231e67 commit 097a579

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

systemvm/debian/opt/cloud/bin/cs/CsVpcGuestNetwork.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def add_radvd_conf(self, entry):
107107
self.conf.append(" AdvSendAdvert on;")
108108
self.conf.append(" MinRtrAdvInterval 5;")
109109
self.conf.append(" MaxRtrAdvInterval 15;")
110-
if entry['router_guest_ip6'] == entry['router_guest_ip6_gateway']:
110+
if entry['router_guest_ip6'] == entry['router_guest_ip6_gateway'] or self.cl.is_redundant():
111111
self.conf.append(" prefix %s" % full_addr)
112112
self.conf.append(" {")
113113
self.conf.append(" AdvOnLink on;")

0 commit comments

Comments
 (0)