Merge release branch 4.9 to master

* 4.9:
  CLOUDSTACK-9770: fix missing ip routes in VR
This commit is contained in:
Rajani Karuturi 2017-02-08 15:02:30 +05:30
commit 2d5054f655
1 changed files with 1 additions and 0 deletions

View File

@ -528,6 +528,7 @@ class CsIP:
# add 'defaul via gateway' rule in the device specific routing table
if "gateway" in self.address and self.address["gateway"] != "None":
route.add_route(self.dev, self.address["gateway"])
route.add_network_route(self.dev, str(self.address["network"]))
if self.get_type() in ["public"]:
CsRule(self.dev).addRule("from " + str(self.address["network"]))