本文整理汇总了Python中AutoNetkit.junos_logical_int_id方法的典型用法代码示例。如果您正苦于以下问题:Python AutoNetkit.junos_logical_int_id方法的具体用法?Python AutoNetkit.junos_logical_int_id怎么用?Python AutoNetkit.junos_logical_int_id使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类AutoNetkit
的用法示例。
在下文中一共展示了AutoNetkit.junos_logical_int_id方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: configure_igp
# 需要导入模块: import AutoNetkit [as 别名]
# 或者: from AutoNetkit import junos_logical_int_id [as 别名]
def configure_igp(self, router, igp_graph, ebgp_graph):
"""igp configuration"""
LOG.debug("Configuring IGP for %s" % self.network.label(router))
default_weight = 1
igp_interfaces = []
if igp_graph.degree(router) > 0:
# Only start IGP process if IGP links
igp_interfaces.append({ 'id': 'lo0', 'passive': True})
for src, dst, data in igp_graph.edges(router, data=True):
int_id = ank.junos_logical_int_id(self.int_id(data['id']))
description = 'Interface %s -> %s' % (
ank.fqdn(self.network, src),
ank.fqdn(self.network, dst))
igp_interfaces.append({
'id': int_id,
'weight': data.get('weight', default_weight),
'description': description,
})
# Need to add eBGP edges as passive interfaces
for src, dst in ebgp_graph.edges(router):
# Get relevant edges from ebgp_graph, and edge data from physical graph
data = self.network.graph[src][dst]
int_id = ank.junos_logical_int_id(self.int_id(data['id']))
description = 'Interface %s -> %s' % (
ank.fqdn(self.network, src),
ank.fqdn(self.network, dst))
igp_interfaces.append({
'id': int_id,
'weight': data.get('weight', default_weight),
'description': description,
'passive': True,
})
return igp_interfaces