We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efc1069 commit c398697Copy full SHA for c398697
src/genie/libs/parser/iosxe/show_platform.py
@@ -35344,6 +35344,9 @@ def cli(self, output=None):
35344
# SW_NUM ASIC # of TUNNELS PLATFORM
35345
# | 2 | 0 | 2 | C9300X |
35346
p2 = re.compile(r'\s+\|\s+(?P<switch_number>-?\d+)\s+\|\s+(?P<asic_value>-?\d+)\s+\|\s+(?P<num_of_tunnel>-?\d+)\s+\|\s+(?P<platform>\S+)\s+\|$')
35347
+ #| INTERFACE | IF_ID | SADB_ID | SW_NUM | ASIC |
35348
+ #| Tunnel201 | 0x00000216 | 1 | 1 | 0 |
35349
+ p3 = re.compile(r'^\s+\|\s+(?P<tunnel_int>Tunnel\d+)\s+\|\s+(?P<if_id>\w+)\s+\|\s+(?P<sbad_info>\d+)\s+\|\s+(?P<switch_number>\d+)\s+\|\s+(?P<asic_id>\d+)\s+\|')
35350
35351
for line in output.splitlines():
35352
0 commit comments