I use a double loop to select all interfaces GigabitEthernet1/0/1 to 1/0/16 and 2/0/1 to 2/0/16 using efficient tool CISCOCONFPARSE : here is the example, that works :
CONFIG_PARSED = CiscoConfParse(CONFIG)
for i in range(1,3):
for j in range(1,17):
INT = CONFIG_PARSED.find_objects('^interface GigabitEthernet'+str(i)+'/0/'+str(j)+'$')
Question : Is there a way to do the same using a simple loop with a regex such as my incorrect example below ?
for INT in CONFIG_PARSED.find_objects('^interface GigabitEthernet[1-2]/0/[1-16]$')
This other example below is a valid regex, but does not allow to select 1 to 16 numbers :
for INT in CONFIG_PARSED.find_objects('^interface GigabitEthernet[1-2]/0/')
thanks for any help
You essentially have two options...
OPTION A: Parse port numbers yourself, using stable and supported CiscoConfParse code...
OPTION B: Offload port number parsing to CiscoConfParse's alpha-quality (as of version 1.1.5) port number parser...
FYI,
obj.ordinal_list
returns a python list of integers representing the card, slot and port number of the interface. For instanceordinal_list
for "GigabitEthernet2/0/11" is[2, 0, 11]
. You must use version 1.1.5 (or higher) and parse withfactory=True
to getordinal_list
.DON'T DO THIS:
The example you provided is truly bad from a performance perspective, because
find_objects()
walks the entire Cisco IOS configuration, start to finish looking for the regex provided. In case it isn't obvious, walking the entire Cisco IOS configuration 32 different times withfind_objects()
is very slow.