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


Python DMUtils.protocols_comment方法代码示例

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


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

示例1: init_evpn_config

# 需要导入模块: from dm_utils import DMUtils [as 别名]
# 或者: from dm_utils.DMUtils import protocols_comment [as 别名]
 def init_evpn_config(self):
     if not self.routing_instances:
         # no vn config then no need to configure evpn
         return
     if self.evpn:
         # evpn init done
         return
     self.evpn = self.build_evpn_config()
     self.evpn.set_extended_vni_list('all')
     if not self.is_spine():
         self.evpn.set_multicast_mode("ingress-replication")
     if not self.proto_config:
         self.proto_config = Protocols(comment=DMUtils.protocols_comment())
     self.proto_config.set_evpn(self.evpn)
开发者ID:nischalsheth,项目名称:contrail-controller,代码行数:16,代码来源:qfx_conf.py

示例2: set_bgp_group_config

# 需要导入模块: from dm_utils import DMUtils [as 别名]
# 或者: from dm_utils.DMUtils import protocols_comment [as 别名]
 def set_bgp_group_config(self):
     bgp_config = self._get_bgp_config_xml()
     if not bgp_config:
         return
     if not self.proto_config:
         self.proto_config = Protocols(comment=DMUtils.protocols_comment())
     bgp = Bgp()
     self.proto_config.set_bgp(bgp)
     bgp.add_group(bgp_config)
     self._get_neighbor_config_xml(bgp_config, self.bgp_peers)
     if self.external_peers:
         ext_grp_config = self._get_bgp_config_xml(True)
         bgp.add_group(ext_grp_config)
         self._get_neighbor_config_xml(ext_grp_config, self.external_peers)
     return
开发者ID:Juniper,项目名称:contrail-controller,代码行数:17,代码来源:juniper_conf.py


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