本文整理汇总了Python中ipaddr.IPNetwork.next方法的典型用法代码示例。如果您正苦于以下问题:Python IPNetwork.next方法的具体用法?Python IPNetwork.next怎么用?Python IPNetwork.next使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ipaddr.IPNetwork
的用法示例。
在下文中一共展示了IPNetwork.next方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: IPAddress
# 需要导入模块: from ipaddr import IPNetwork [as 别名]
# 或者: from ipaddr.IPNetwork import next [as 别名]
for address in local_cidr.iterhosts():
configuration += (' neighbor %s {\n'
' router-id %s;\n'
' local-address %s;\n'
' local-as %s;\n'
' peer-as %s;\n'
' family {\n'
' inet4 unicast;\n'
' }\n') % (peer_ip, address, address, args.local_as, args.peer_as)
if args.announce_cidr:
try:
configuration += (' static {\n'
' route %s/32 {\n'
' next-hop %s;\n'
' }\n'
' }\n') % (announce_cidr.next(), address)
except:
pass
configuration += ' }\n'
if args.local_interface:
os.system('ifconfig %s:%s %s netmask %s up 2>/dev/null' % (args.local_interface, IPAddress(address).__hex__()[2:], address, local_cidr.netmask))
sessions += 1
if sessions >= int(args.sessions):
break
configuration += '}\n'
# start ExaBGP with temporary configuration
path = 'exabgp-%d.conf' % os.getpid()
handle = open(path, 'w')
handle.write(configuration);
handle.close()