cli_ip_data.cisco_xr

Reference path:

ttp://misc/N2G/cli_ip_data/cisco_xr.txt


Template to parse Cisco IOSXR interfaces configuration and ARP cache.


Template Content
<template name="cisco_xr" results="per_template">

<doc>
Template to parse Cisco IOSXR interfaces configuration and ARP cache.
</doc>

<input load="python">
commands = [
    "show running-config interface",
    "show arp vrf all",
    "show arp"
]
kwargs = {"strip_prompt": False}
method = "send_command"
platform = ["cisco_xr"]
</input>

<vars>local_hostname="gethostname"</vars>

<group record="local_hostname" void="">
hostname {{ local_hostname }}
</group>

<!-- Interfaces configuration group -->
<group name="{{ local_hostname }}.interfaces.{{ interface }}">
interface {{ interface | resuball("IfsNormalize") }}
 description {{ port_description | re(".+") }}
 vrf {{ vrf }}
 <group name="ip_addresses*" chain="add_network()" method="table">
 ipv4 address {{ ip | IP }} {{ netmask }}
 ipv4 address {{ ip | IP }} {{ netmask }} secondary
 ipv4 address {{ ip | IP }}/{{ netmask }}
 </group>
! {{ _end_ }}
</group>

<!-- ARP cache group -->
<group name="{{ local_hostname }}.interfaces.{{ interface }}.arp*" method="table">
{{ ip | IP }} {{ age | replace("-", "-1") }} {{ mac | MAC| mac_eui }}  {{ ignore }}  {{ ignore }} {{ interface | resuball("IfsNormalize") }}
</group>

</template>
Back to top