0

我正在尝试在 Cisco IOS 配置上使用 CiscoConfParse,其中接口的地址超过 IPv6 地址,而我只获得第一个 IP 地址。下面的代码、输入文件和输出我在这里做错了什么?任何指导表示赞赏。

    confparse = CiscoConfParse("ipv6_ints.txt")

    # extract the interface name and description
    # first, we get all interface commands from the configuration
    interface_cmds = confparse.find_objects(r"^interface ")

    # iterate over the resulting IOSCfgLine objects
    for interface_cmd in interface_cmds:
        # get the interface name (remove the interface command from the configuration line)
        intf_name = interface_cmd.text[len("interface "):]
        result["interfaces"][intf_name] = {}

        IPv6_REGEX = (r"ipv6\saddress\s(\S+)")
        for cmd in interface_cmd.re_search_children(IPv6_REGEX):
           ipv6_addr = interface_cmd.re_match_iter_typed(IPv6_REGEX, result_type=IPv6Obj)
           result["interfaces"][intf_name].update({
              "ipv6": {
              "ipv6 address": ipv6_addr.compressed,
              }
            })

    print("\nEXTRACTED PARAMETERS\n")
    print(json.dumps(result, indent=4))

输入文件

4

1 回答 1

0

你是对的,re_match_iter_typed()只返回第一个匹配,所以它不适合这个应用程序。

我建议以下几点:

  • 像往常一样找到接口对象,使用find_objects()
  • .children使用属性遍历接口对象的所有子对象
  • 在每个子对象上使用re_match_typed()(使用默认值,以便您可以轻松检测是否获得 IPv6 地址匹配)。

下面的示例代码...


import re

from ciscoconfparse.ccp_util import IPv6Obj
from ciscoconfparse import CiscoConfParse

CONFIG = """!
interface Vlan150
 no ip proxy-arp
 ipv6 address FE80:150::2 link-local
 ipv6 address 2A01:860:FE:1::1/64
 ipv6 enable
!
interface Vlan160
 no ip proxy-arp
 ipv6 address FE80:160::2 link-local
 ipv6 address 2A01:870:FE:1::1/64
 ipv6 enable
!"""

parse = CiscoConfParse(CONFIG.splitlines())

result = dict()
result['interfaces'] = dict()
for intf_obj in parse.find_objects(r'^interface'):
    intf_name = re.split(r'\s+', intf_obj.text)[-1]
    result['interfaces'][intf_name] = dict()

    IPV6_REGEX = r'ipv6\s+address\s+(\S+)'
    for val_obj in intf_obj.children:

        val = val_obj.re_match_typed(IPV6_REGEX, result_type=IPv6Obj,
            untyped_default=True, default='__not_addr__')
        if val!='__not_addr__':
            # Do whatever you like here...
            print("{} {}".format(intf_name, val.compressed))

运行此代码会导致:

$ python try.py
Vlan150 fe80:150::2/128
Vlan150 2a01:860:fe:1::1/64
Vlan160 fe80:160::2/128
Vlan160 2a01:870:fe:1::1/64
$

当然,您可以使用任何您想要的打包方案将这些结果打包成 json。

此技术在文档中进行了解释,在Get Config Values下

于 2019-06-14T01:57:27.853 回答