Only interfaces without decimals are processed. Handling is required for interfaces such as GigabitEthernet0/0/1.110
Backwards compatibility for interfaces without decimals to be maintained.
Proposed fix below (will create a PR at a later date)
https://github.com/CiscoTestAutomation/genieparser/blob/main/src/genie/libs/parser/iosxe/show_crypto.py#L4835
Updated to:
p1 = re.compile(r'^interface:+ (?P<interface>[\w\d\/\.]+)$')
Only interfaces without decimals are processed. Handling is required for interfaces such as
GigabitEthernet0/0/1.110Backwards compatibility for interfaces without decimals to be maintained.
Proposed fix below (will create a PR at a later date)
https://github.com/CiscoTestAutomation/genieparser/blob/main/src/genie/libs/parser/iosxe/show_crypto.py#L4835
Updated to: