diff --git a/systemvm/patches/debian/config/opt/cloud/bin/cs/CsAddress.py b/systemvm/patches/debian/config/opt/cloud/bin/cs/CsAddress.py index c280555fd33..f2bce44563e 100755 --- a/systemvm/patches/debian/config/opt/cloud/bin/cs/CsAddress.py +++ b/systemvm/patches/debian/config/opt/cloud/bin/cs/CsAddress.py @@ -137,7 +137,7 @@ class CsInterface: return self.get_attr("netmask") def get_gateway(self): - if self.config.is_vpc() or self.config.cmdline().is_redundant(): + if self.config.is_vpc() or not self.is_guest(): return self.get_attr("gateway") else: return self.config.cmdline().get_guest_gw()