diff --git a/systemvm/patches/debian/config/opt/cloud/bin/cs/CsGuestNetwork.py b/systemvm/patches/debian/config/opt/cloud/bin/cs/CsGuestNetwork.py index 2ee99b92597..c1cd8a44eb1 100644 --- a/systemvm/patches/debian/config/opt/cloud/bin/cs/CsGuestNetwork.py +++ b/systemvm/patches/debian/config/opt/cloud/bin/cs/CsGuestNetwork.py @@ -35,6 +35,15 @@ class CsGuestNetwork: def is_guestnetwork(self): return self.guest + def get_dns(self): + return self.config.get_dns() + + def get_netmask(self): + return self.data['router_guest_netmask'] + + def get_gateway(self): + return self.data['router_guest_gateway'] + def get_domain(self): domain = "cloudnine.internal" if not self.guest: