Skip to content

Commit a3f484b

Browse files
committed
VR: fix radvd misconfiguration for non-netris env
1 parent b84fc57 commit a3f484b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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'] is entry['router_guest_ip6_gateway']:
110+
if entry['router_guest_ip6'] == entry['router_guest_ip6_gateway']:
111111
self.conf.append(" prefix %s" % full_addr)
112112
self.conf.append(" {")
113113
self.conf.append(" AdvOnLink on;")

0 commit comments

Comments
 (0)