当前位置: 首页>>代码示例>>Python>>正文


Python CsRoute.routeTable方法代码示例

本文整理汇总了Python中CsRoute.CsRoute.routeTable方法的典型用法代码示例。如果您正苦于以下问题:Python CsRoute.routeTable方法的具体用法?Python CsRoute.routeTable怎么用?Python CsRoute.routeTable使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在CsRoute.CsRoute的用法示例。


在下文中一共展示了CsRoute.routeTable方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: post_config_change

# 需要导入模块: from CsRoute import CsRoute [as 别名]
# 或者: from CsRoute.CsRoute import routeTable [as 别名]
    def post_config_change(self, method):
        route = CsRoute(self.dev)
        route.routeTable()
        route.add(self.address, method)
        self.fw_router()
        self.fw_vpcrouter()
        # On deletion nw_type will no longer be known
        if self.get_type() in ["guest"] and self.config.is_vpc():

            CsDevice(self.dev, self.config).configure_rp()

            logging.error("Not able to setup sourcenat for a regular router yet")
            dns = CsDnsmasq(self)
            dns.add_firewall_rules()
            app = CsApache(self)
            app.setup()

        # If redundant then this is dealt with by the master backup functions
        if self.get_type() in ["guest"] and not self.config.cl.is_redundant():
            pwdsvc = CsPasswdSvc(self.address['public_ip']).start()

        if self.get_type() == "public" and self.config.is_vpc():
            if self.address["source_nat"]:
                vpccidr = self.config.cmdline().get_vpccidr()
                self.fw.append(["filter", "", "-A FORWARD -s %s ! -d %s -j ACCEPT" % (vpccidr, vpccidr)])
                self.fw.append(["nat", "", "-A POSTROUTING -j SNAT -o %s --to-source %s" % (self.dev, self.address['public_ip'])])
开发者ID:andymiao858,项目名称:cloudstack,代码行数:28,代码来源:CsAddress.py

示例2: post_configure

# 需要导入模块: from CsRoute import CsRoute [as 别名]
# 或者: from CsRoute.CsRoute import routeTable [as 别名]
 def post_configure(self):
     """ The steps that must be done after a device is configured """
     if not self.get_type() in ["control"]:
         route = CsRoute(self.dev)
         route.routeTable()
         CsRule(self.dev).addMark()
         self.check_is_up()
         self.set_mark()
         self.arpPing()
         CsRpsrfs(self.dev).enable()
         self.post_config_change("add")
开发者ID:andymiao858,项目名称:cloudstack,代码行数:13,代码来源:CsAddress.py


注:本文中的CsRoute.CsRoute.routeTable方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。