本文整理汇总了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)
示例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