diff --git a/templates/alcatel_sros_show_lag.textfsm b/templates/alcatel_sros_show_lag.textfsm new file mode 100644 index 0000000000..5d2226814b --- /dev/null +++ b/templates/alcatel_sros_show_lag.textfsm @@ -0,0 +1,18 @@ +Value LAG_ID (\d+) +Value ADM (up|down) +Value OPR (up|down) +Value WEIGHTED (Yes|No) +Value THRESHOLD (\d+) +Value UP_COUNT (\d+) +Value MC_ACT_STDBY (N/A|active|standby) + +Start + ^----------- -> Lag + +Lag + ^${LAG_ID}\s+${ADM}\s+${OPR}\s+${WEIGHTED}\s+${THRESHOLD}\s+${UP_COUNT}\s+${MC_ACT_STDBY}(\s|$$) -> Record + ^\s*$$ + ^----------- + ^=========== + ^Total + ^. -> Error diff --git a/templates/alcatel_sros_show_port.textfsm b/templates/alcatel_sros_show_port.textfsm new file mode 100644 index 0000000000..07350dabb3 --- /dev/null +++ b/templates/alcatel_sros_show_port.textfsm @@ -0,0 +1,25 @@ +Value PORT_ID (\S+) +Value ADMIN_STATE (Up|Down) +Value LINK (Yes|No) +Value PORT_STATE (Up|Down|Ghost|Link Up) +Value CFG_MTU (\d+) +Value OPER_MTU (\d+) +Value LAG (\d+|-) +Value PORT_MODE (\S+) +Value PORT_ENCP (\S+) +Value PORT_TYPE (\S+) +Value C_QS_S_XFP_MDIMDX (.*) + +Start + ^----------- -> Port + +Port + ^${PORT_ID}\s+${ADMIN_STATE}\s+${PORT_STATE}\s+conn\s*${C_QS_S_XFP_MDIMDX} -> Record + ^${PORT_ID}\s+${ADMIN_STATE}\s+${LINK}\s+${PORT_STATE}\s+${CFG_MTU}\s+${OPER_MTU}\s+${LAG}\s+${PORT_MODE}\s+${PORT_ENCP}\s+${PORT_TYPE}\s*${C_QS_S_XFP_MDIMDX} -> Record + ^\s*$$ + ^----------- + ^=========== + ^Port + ^Id + ^\*\sindicates + ^. -> Error diff --git a/templates/alcatel_sros_show_router_bgp_summary_family.textfsm b/templates/alcatel_sros_show_router_bgp_summary_family.textfsm new file mode 100644 index 0000000000..417f3132ba --- /dev/null +++ b/templates/alcatel_sros_show_router_bgp_summary_family.textfsm @@ -0,0 +1,24 @@ +Value NEIGHBOR (\d+\.\d+\.\d+\.\d+|[0-9a-f:]*) +Value Required AS (\d+\**) +Value PKTRCVD (\d+\**) +Value PKTSENT (\d+\**) +Value INQ (\d+\**) +Value OUTQ (\d+\**) +Value UP_DOWN (\S+) +Value STATE (\w+) +Value RCV (\d+) +Value ACT (\d+) +Value SENT (\d+) + +Start + ^----------- -> Neighbor + +Neighbor + ^${NEIGHBOR}(\s|$$) -> NeighborData + +NeighborData + ^\s+${AS}\s+${PKTRCVD}\s+${PKTSENT}\s+${INQ}\s+${OUTQ}\s+${UP_DOWN}\s+(${STATE}|${RCV}/${ACT}/${SENT})(\s|$$) -> Record Neighbor + ^.*indicates + ^----------- + ^\s*$$ + ^. -> Error diff --git a/templates/alcatel_sros_show_router_isis_adjacency.textfsm b/templates/alcatel_sros_show_router_isis_adjacency.textfsm new file mode 100644 index 0000000000..e6ff4bf689 --- /dev/null +++ b/templates/alcatel_sros_show_router_isis_adjacency.textfsm @@ -0,0 +1,18 @@ +Value SYSTEM_ID (\S+) +Value USAGE (\S+) +Value STATE (Up|Down) +Value HOLD (\d+) +Value INTERFACE (\S+) +Value MT_ID (\S+) + +Start + ^----------- -> Adjacency + +Adjacency + ^${SYSTEM_ID}\s+${USAGE}\s+${STATE}\s+${HOLD}\s+${INTERFACE}\s+${MT_ID} -> Record + ^\s*$$ + ^----------- + ^=========== + ^Adjacencies + ^. -> Error + diff --git a/templates/alcatel_sros_show_router_isis_interface.textfsm b/templates/alcatel_sros_show_router_isis_interface.textfsm new file mode 100644 index 0000000000..8303c85f08 --- /dev/null +++ b/templates/alcatel_sros_show_router_isis_interface.textfsm @@ -0,0 +1,17 @@ +Value INTERFACE (\S+) +Value LEVEL (\S+) +Value CIRCID (\d+) +Value OPER_STATE (Up|Down) +Value METRIC_L1 (\d+) +Value METRIC_L2 (\d+) + +Start + ^----------- -> Interface + +Interface + ^${INTERFACE}\s+${LEVEL}\s+${CIRCID}\s+${OPER_STATE}\s+${METRIC_L1}/${METRIC_L2} -> Record + ^\s*$$ + ^----------- + ^=========== + ^Interfaces + ^. -> Error diff --git a/templates/alcatel_sros_show_router_ldp_interface.textfsm b/templates/alcatel_sros_show_router_ldp_interface.textfsm new file mode 100644 index 0000000000..2490d123a7 --- /dev/null +++ b/templates/alcatel_sros_show_router_ldp_interface.textfsm @@ -0,0 +1,24 @@ +Value INTERFACE (\S+) +Value ADM (Up|Dwn) +Value OPR (Up|Dwn) +Value SUB_INTERFACE (ipv\d) +Value SUB_INTERFACE_ADM (Up|Dwn) +Value SUB_INTERFACE_OPR (Up|Dwn) +Value HELLO_FCTR (\d+) +Value HOLDTIME (\d+) +Value KA_FCTR (\d+) +Value KA_TIME (\d+) +Value TRANSPORT_ADDRESS (\S+) + +Start + ^----------- -> Interface + +Interface + ^${INTERFACE}\s+${ADM}/${OPR}(\s|$$) -> SubInterface + +SubInterface + ^\s+${SUB_INTERFACE}\s+${SUB_INTERFACE_ADM}/${SUB_INTERFACE_OPR}\s+${HELLO_FCTR}\s+${HOLDTIME}\s+${KA_FCTR}\s+${KA_TIME}\s+${TRANSPORT_ADDRESS}(\s|$$) -> Record Interface + ^No.\s+of\s+Interfaces + ^----------- + ^\s*$$ + ^. -> Error diff --git a/templates/alcatel_sros_show_router_pim_interface.textfsm b/templates/alcatel_sros_show_router_pim_interface.textfsm new file mode 100644 index 0000000000..83f3a91cfb --- /dev/null +++ b/templates/alcatel_sros_show_router_pim_interface.textfsm @@ -0,0 +1,20 @@ +Value INTERFACE (\S+) +Value ADM (Up|Down) +Value OPR (Up|Down) +Value DR ((\d+\.\d+\.\d+\.\d+|[0-9a-f:]*)|N/A) +Value DR_PRTY (\d+|N/A) +Value HELLO_INTVL (\d+) +Value MCAST_SEND (\S+) + +Start + ^----------- -> Interface + +Interface + ^${INTERFACE}\s+${ADM}\s+${OPR}\s+${DR_PRTY}\s+${HELLO_INTVL}\s+${MCAST_SEND}(\s|$$) -> Dr + +Dr + ^\s+${DR}(\s|$$) -> Record Interface + ^No.\s+of\s+Interfaces + ^----------- + ^\s*$$ + ^. -> Error diff --git a/templates/index b/templates/index index 9cd78e8a7d..c2f4de0d35 100644 --- a/templates/index +++ b/templates/index @@ -14,8 +14,15 @@ Template, Hostname, Platform, Command alcatel_aos_show_vlan.textfsm, .*, alcatel_aos, show vlan alcatel_sros_show_router_bgp_routes_vpn-ipv4.textfsm, .*, alcatel_sros, sh[[ow]] router bgp rou[[tes]] vpn-ipv4 +alcatel_sros_show_router_bgp_summary_family.textfsm, .*, alcatel_sros, sh[[ow]] router bgp sum[[mary]] family +alcatel_sros_show_router_isis_adjacency.textfsm, .*, alcatel_sros, sh[[ow]] router isis adj[[acency]] +alcatel_sros_show_router_isis_interface.textfsm, .*, alcatel_sros, sh[[ow]] router isis int[[erface]] +alcatel_sros_show_router_ldp_interface.textfsm, .*, alcatel_sros, sh[[ow]] router ldp int[[erface]] +alcatel_sros_show_router_pim_interface.textfsm, .*, alcatel_sros, sh[[ow]] router pim int[[erface]] alcatel_sros_show_service_id_base.textfsm, .*, alcatel_sros, sh[[ow]] serv[[ice]] id ba[[se]] alcatel_sros_oam_mac-ping.textfsm, .*, alcatel_sros, oam mac-pi[[ng]] +alcatel_sros_show_port.textfsm, .*, alcatel_sros, show port +alcatel_sros_show_lag.textfsm, .*, alcatel_sros, show lag arista_eos_show_mac_security_participants_detail.textfsm, .*, arista_eos, sh[[ow]] ma[[c]] secu[[rity]] part[[icipants]] det[[ail]] arista_eos_show_interfaces_transceiver_detail.textfsm, .*, arista_eos, sh[[ow]] inte[[rfaces]] tr[[ansceiver]] de[[tail]] diff --git a/tests/alcatel_sros/show_lag/show_lag.raw b/tests/alcatel_sros/show_lag/show_lag.raw new file mode 100644 index 0000000000..d995a328b7 --- /dev/null +++ b/tests/alcatel_sros/show_lag/show_lag.raw @@ -0,0 +1,40 @@ + +=============================================================================== +Lag Data +=============================================================================== +Lag-id Adm Opr Weighted Threshold Up-Count MC Act/Stdby +------------------------------------------------------------------------------- +1 up up No 0 2 N/A +2 up up No 0 2 N/A +3 up up No 0 1 N/A +4 down down No 0 0 N/A +5 down down No 0 0 N/A +10 down down No 0 0 N/A +20 up down No 0 0 standby +70 down down No 0 0 N/A +80 up down No 0 0 N/A +90 down down No 0 0 N/A +100 up up No 0 1 N/A +101 up up No 0 1 N/A +102 up up No 0 1 N/A +103 up up No 0 1 active +104 up up No 0 1 N/A +105 up up No 0 1 N/A +106 up up No 0 1 N/A +107 up up No 0 1 N/A +108 up up No 0 1 N/A +109 up up No 0 1 N/A +110 up up No 0 1 active +111 up up No 0 1 N/A +112 up up No 0 1 N/A +114 up up No 0 1 N/A +115 up up No 0 1 N/A +120 up up No 0 1 N/A +124 down down No 0 0 N/A +140 up up No 0 1 N/A +150 down down No 0 0 N/A +153 up up No 0 1 active +180 down down No 0 0 N/A +------------------------------------------------------------------------------- +Total Lag-ids: 31 Single Chassis: 27 MC Act: 3 MC Stdby: 1 +=============================================================================== diff --git a/tests/alcatel_sros/show_lag/show_lag.yml b/tests/alcatel_sros/show_lag/show_lag.yml new file mode 100644 index 0000000000..b3cf0f7ae8 --- /dev/null +++ b/tests/alcatel_sros/show_lag/show_lag.yml @@ -0,0 +1,219 @@ +--- +parsed_sample: + - lag_id: "1" + adm: "up" + opr: "up" + weighted: "No" + threshold: "0" + up_count: "2" + mc_act_stdby: "N/A" + - lag_id: "2" + adm: "up" + opr: "up" + weighted: "No" + threshold: "0" + up_count: "2" + mc_act_stdby: "N/A" + - lag_id: "3" + adm: "up" + opr: "up" + weighted: "No" + threshold: "0" + up_count: "1" + mc_act_stdby: "N/A" + - lag_id: "4" + adm: "down" + opr: "down" + weighted: "No" + threshold: "0" + up_count: "0" + mc_act_stdby: "N/A" + - lag_id: "5" + adm: "down" + opr: "down" + weighted: "No" + threshold: "0" + up_count: "0" + mc_act_stdby: "N/A" + - lag_id: "10" + adm: "down" + opr: "down" + weighted: "No" + threshold: "0" + up_count: "0" + mc_act_stdby: "N/A" + - lag_id: "20" + adm: "up" + opr: "down" + weighted: "No" + threshold: "0" + up_count: "0" + mc_act_stdby: "standby" + - lag_id: "70" + adm: "down" + opr: "down" + weighted: "No" + threshold: "0" + up_count: "0" + mc_act_stdby: "N/A" + - lag_id: "80" + adm: "up" + opr: "down" + weighted: "No" + threshold: "0" + up_count: "0" + mc_act_stdby: "N/A" + - lag_id: "90" + adm: "down" + opr: "down" + weighted: "No" + threshold: "0" + up_count: "0" + mc_act_stdby: "N/A" + - lag_id: "100" + adm: "up" + opr: "up" + weighted: "No" + threshold: "0" + up_count: "1" + mc_act_stdby: "N/A" + - lag_id: "101" + adm: "up" + opr: "up" + weighted: "No" + threshold: "0" + up_count: "1" + mc_act_stdby: "N/A" + - lag_id: "102" + adm: "up" + opr: "up" + weighted: "No" + threshold: "0" + up_count: "1" + mc_act_stdby: "N/A" + - lag_id: "103" + adm: "up" + opr: "up" + weighted: "No" + threshold: "0" + up_count: "1" + mc_act_stdby: "active" + - lag_id: "104" + adm: "up" + opr: "up" + weighted: "No" + threshold: "0" + up_count: "1" + mc_act_stdby: "N/A" + - lag_id: "105" + adm: "up" + opr: "up" + weighted: "No" + threshold: "0" + up_count: "1" + mc_act_stdby: "N/A" + - lag_id: "106" + adm: "up" + opr: "up" + weighted: "No" + threshold: "0" + up_count: "1" + mc_act_stdby: "N/A" + - lag_id: "107" + adm: "up" + opr: "up" + weighted: "No" + threshold: "0" + up_count: "1" + mc_act_stdby: "N/A" + - lag_id: "108" + adm: "up" + opr: "up" + weighted: "No" + threshold: "0" + up_count: "1" + mc_act_stdby: "N/A" + - lag_id: "109" + adm: "up" + opr: "up" + weighted: "No" + threshold: "0" + up_count: "1" + mc_act_stdby: "N/A" + - lag_id: "110" + adm: "up" + opr: "up" + weighted: "No" + threshold: "0" + up_count: "1" + mc_act_stdby: "active" + - lag_id: "111" + adm: "up" + opr: "up" + weighted: "No" + threshold: "0" + up_count: "1" + mc_act_stdby: "N/A" + - lag_id: "112" + adm: "up" + opr: "up" + weighted: "No" + threshold: "0" + up_count: "1" + mc_act_stdby: "N/A" + - lag_id: "114" + adm: "up" + opr: "up" + weighted: "No" + threshold: "0" + up_count: "1" + mc_act_stdby: "N/A" + - lag_id: "115" + adm: "up" + opr: "up" + weighted: "No" + threshold: "0" + up_count: "1" + mc_act_stdby: "N/A" + - lag_id: "120" + adm: "up" + opr: "up" + weighted: "No" + threshold: "0" + up_count: "1" + mc_act_stdby: "N/A" + - lag_id: "124" + adm: "down" + opr: "down" + weighted: "No" + threshold: "0" + up_count: "0" + mc_act_stdby: "N/A" + - lag_id: "140" + adm: "up" + opr: "up" + weighted: "No" + threshold: "0" + up_count: "1" + mc_act_stdby: "N/A" + - lag_id: "150" + adm: "down" + opr: "down" + weighted: "No" + threshold: "0" + up_count: "0" + mc_act_stdby: "N/A" + - lag_id: "153" + adm: "up" + opr: "up" + weighted: "No" + threshold: "0" + up_count: "1" + mc_act_stdby: "active" + - lag_id: "180" + adm: "down" + opr: "down" + weighted: "No" + threshold: "0" + up_count: "0" + mc_act_stdby: "N/A" diff --git a/tests/alcatel_sros/show_port/show_port.raw b/tests/alcatel_sros/show_port/show_port.raw new file mode 100644 index 0000000000..45f4fa4501 --- /dev/null +++ b/tests/alcatel_sros/show_port/show_port.raw @@ -0,0 +1,238 @@ + +=============================================================================== +Ports on Slot 1 +=============================================================================== +Port Admin Link Port Cfg Oper LAG/ Port Port Port C/QS/S/XFP/ +Id State State MTU MTU Bndl Mode Encp Type MDIMDX +------------------------------------------------------------------------------- +1/1/1 Up Yes Up 9212 9212 - hybr dotq xcme GIGE-SX +1/1/2 Up Yes Up 1518 1518 - accs dotq xcme MDI GIGE-T +1/1/3 Up Yes Up 1518 1518 - accs dotq xcme MDX GIGE-T +1/1/4 Up Yes Up 9212 9212 1 netw null xcme GIGE-SX +1/1/5 Up Yes Up 9212 9212 - netw null xcme GIGE-SX +1/1/6 Up Yes Up 9212 9212 - netw null xcme GIGE-SX +1/1/7 Up Yes Up 1518 1518 - accs dotq xcme MDX GIGE-T +1/1/8 Up Yes Up 1514 1514 - accs null xcme MDX GIGE-T +1/1/9 Up Yes Up 9212 9212 - netw null xcme GIGE-SX +1/1/10 Up No Down 1518 1518 - accs dotq xcme GIGE-SX +1/1/11 Up No Down 1518 1518 - accs dotq xcme GIGE-T +1/1/12 Up Yes Up 9000 9000 - accs null xcme MDX GIGE-T +1/1/13 Up Yes Up 1514 1514 - accs null xcme GIGE-SX +1/1/14 Up Yes Up 1514 1514 - accs null xcme MDI GIGE-T +1/1/15 Up Yes Up 9000 9000 - accs null xcme MDI GIGE-T +1/1/16 Up Yes Up 1514 1514 - accs null xcme GIGE-SX +1/1/17 Up No Down 1518 1518 - accs dotq xcme GIGE-T +1/1/18 Up Yes Up 1518 1518 - accs dotq xcme MDI GIGE-T +1/1/19 Up Yes Up 1514 1514 - accs null xcme MDI GIGE-T +1/1/20 Up Yes Up 9212 9212 - hybr dotq xcme MDX GIGE-T +1/1/21 Up Yes Up 1518 1518 - accs dotq xcme GIGE-SX +1/1/22 Up Yes Up 1518 1518 - accs dotq xcme GIGE-SX +1/1/23 Up Yes Up 1518 1518 - accs dotq xcme MDI GIGE-T +1/1/24 Up Yes Up 1518 1518 - accs dotq xcme MDX GIGE-T +1/2/1 Up No Down 1518 1518 - accs dotq xcme GIGE-SX +1/2/2 Up Yes Up 1514 1514 - accs null xcme MDI GIGE-T +1/2/3 Up Yes Up 1514 1514 - accs null xcme MDI GIGE-T +1/2/4 Up No Down 1514 1514 - accs null xcme GIGE-T +1/2/5 Up Yes Up 9212 9212 - hybr dotq xcme MDX GIGE-T +1/2/6 Up No Down 9022 9022 - accs null xcme GIGE-T +1/2/7 Up Yes Up 1514 1514 - accs null xcme MDX GIGE-T +1/2/8 Up No Down 1514 1514 - accs null xcme +1/2/9 Up No Down 1518 1518 99 accs dotq xcme GIGE-SX +1/2/10 Up Yes Up 1514 1514 - accs null xcme MDI GIGE-T +1/2/11 Up Yes Up 1514 1514 - accs null xcme MDI GIGE-T +1/2/12 Up No Down 1514 1514 - accs null xcme GIGE-T +1/2/13 Up Yes Up 1514 1514 - accs null xcme MDX GIGE-T +1/2/14 Up No Down 1514 1514 - accs null xcme GIGE-T +1/2/15 Up No Down 1570 1570 - accs dotq xcme GIGE-T +1/2/16 Up Yes Up 9022 9022 - accs null xcme MDX GIGE-T +1/2/17 Up Yes Up 1538 1538 - accs dotq xcme MDX GIGE-T +1/2/18 Up No Down 1514 1514 - accs null xcme GIGE-T +1/2/19 Up No Down 1518 1518 - accs dotq xcme GIGE-T +1/2/20 Up No Down 1514 1514 - accs null xcme GIGE-T +1/2/21 Up Yes Up 1514 1514 - accs null xcme MDI GIGE-T +1/2/22 Up Yes Up 1518 1518 - accs dotq xcme MDX GIGE-T +1/2/23 Up Yes Up 1518 1518 - accs dotq xcme MDX GIGE-T +1/2/24 Up Yes Up 9212 9212 7 netw null xcme GIGE-SX + +=============================================================================== +Ports on Slot A +=============================================================================== +Port Admin Link Port Cfg Oper LAG/ Port Port Port C/QS/S/XFP/ +Id State State MTU MTU Bndl Mode Encp Type MDIMDX +------------------------------------------------------------------------------- +A/1 Up Yes Up 1514 1514 - netw null faste MDI +A/4 Up No Down 1514 1514 - netw null faste + +=============================================================================== +Ports on Slot B +=============================================================================== +Port Admin Link Port Cfg Oper LAG/ Port Port Port C/QS/S/XFP/ +Id State State MTU MTU Bndl Mode Encp Type MDIMDX +------------------------------------------------------------------------------- +B/1 Up No Down 1514 1514 - netw null faste +B/4 Up No Down 1514 1514 - netw null faste + + +=============================================================================== +Ports on Satellite esat-1 +=============================================================================== +Port Admin Link Port Cfg Oper LAG/ Port Port Port C/QS/S/XFP/ +Id State State MTU MTU Bndl Mode Encp Type MDIMDX +------------------------------------------------------------------------------- +esat-1/1/1 Up Yes Up 1518 1518 5 accs dotq xcme MDI GIGE-T +esat-1/1/2 Up Yes Up 1518 1518 - accs dotq xcme MDI GIGE-T +esat-1/1/3 Up Yes Up 1518 1518 - accs dotq xcme MDX GIGE-T +esat-1/1/4 Up Yes Up 1538 1538 - accs dotq xcme MDX GIGE-T +esat-1/1/5 Up Yes Up 9022 9022 - accs null xcme MDX GIGE-T +esat-1/1/6 Up Yes Up 1514 1514 - accs null xcme MDI GIGE-T +esat-1/1/7 Up Yes Up 9022 9022 - accs null xcme MDI GIGE-T +esat-1/1/8 Up No Down 9022 9022 - accs null xcme GIGE-T +esat-1/1/9 Down No Down 9208 9208 - netw null xcme +esat-1/1/10 Down No Down 9208 9208 - netw null xcme +esat-1/1/11 Down No Down 9208 9208 - netw null xcme +esat-1/1/12 Down No Down 9208 9208 - netw null xcme +esat-1/1/13 Down No Down 9208 9208 - netw null xcme +esat-1/1/14 Down No Down 9208 9208 - netw null xcme +esat-1/1/15 Down No Down 9208 9208 - netw null xcme +esat-1/1/16 Down No Down 9208 9208 - netw null xcme +esat-1/1/17 Down No Down 9208 9208 - netw null xcme +esat-1/1/18 Down No Down 9208 9208 - netw null xcme +esat-1/1/19 Down No Down 9208 9208 - netw null xcme +esat-1/1/20 Down No Down 9208 9208 - netw null xcme +esat-1/1/21 Down No Down 9208 9208 - netw null xcme +esat-1/1/22 Down No Down 9208 9208 - netw null xcme +esat-1/1/23 Down No Down 9208 9208 - netw null xcme +esat-1/1/24 Down No Down 9208 9208 - netw null xcme +esat-1/1/25 Down No Down 9208 9208 - netw null xcme +esat-1/1/26 Down No Down 9208 9208 - netw null xcme +esat-1/1/27 Down No Down 9208 9208 - netw null xcme +esat-1/1/28 Down No Down 9208 9208 - netw null xcme +esat-1/1/29 Down No Down 9208 9208 - netw null xcme +esat-1/1/30 Down No Down 9208 9208 - netw null xcme +esat-1/1/31 Up No Down 9208 9208 - netw null xcme +esat-1/1/32 Down No Down 9208 9208 - netw null xcme +esat-1/1/33 Down No Down 9208 9208 - netw null xcme +esat-1/1/34 Down No Down 9208 9208 - netw null xcme +esat-1/1/35 Down No Down 9208 9208 - netw null xcme +esat-1/1/36 Down No Down 9208 9208 - netw null xcme +esat-1/1/37 Down No Down 9208 9208 - netw null xcme +esat-1/1/38 Down No Down 9208 9208 - netw null xcme +esat-1/1/39 Down No Down 9208 9208 - netw null xcme +esat-1/1/40 Down No Down 9208 9208 - netw null xcme +esat-1/1/41 Down No Down 9208 9208 - netw null xcme +esat-1/1/42 Down No Down 9208 9208 - netw null xcme +esat-1/1/43 Down No Down 9208 9208 - netw null xcme +esat-1/1/44 Down No Down 9208 9208 - netw null xcme +esat-1/1/45 Down No Down 9208 9208 - netw null xcme +esat-1/1/46 Down No Down 9208 9208 - netw null xcme +esat-1/1/47 Down No Down 9208 9208 - netw null xcme +esat-1/1/48 Down No Down 9208 9208 - netw null xcme +esat-1/1/u1 Up Yes Up 9212 9212 - accs dotq xgige 10GBASE-LR * +esat-1/1/u2 Up No Down 9212 9212 - accs dotq xgige +esat-1/1/u3 Up No Down 9212 9212 - accs dotq xgige +esat-1/1/u4 Up No Down 9212 9212 - accs dotq xgige + +=============================================================================== +Ports on Satellite esat-2 +=============================================================================== +Port Admin Link Port Cfg Oper LAG/ Port Port Port C/QS/S/XFP/ +Id State State MTU MTU Bndl Mode Encp Type MDIMDX +------------------------------------------------------------------------------- +esat-2/1/1 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/2 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/3 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/4 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/5 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/6 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/7 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/8 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/9 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/10 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/11 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/12 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/13 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/14 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/15 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/16 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/17 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/18 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/19 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/20 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/21 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/22 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/23 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/24 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/25 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/26 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/27 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/28 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/29 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/30 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/31 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/32 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/33 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/34 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/35 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/36 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/37 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/38 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/39 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/40 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/41 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/42 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/43 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/44 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/45 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/46 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/47 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/48 Down No Ghost 9208 9208 - netw null xcme +esat-2/1/u1 Up No Ghost 9212 9212 - accs dotq xgige +esat-2/1/u2 Up No Ghost 9212 9212 - accs dotq xgige +esat-2/1/u3 Up No Ghost 9212 9212 - accs dotq xgige +esat-2/1/u4 Up No Ghost 9212 9212 - accs dotq xgige + +=============================================================================== +Ports on Slot 10 +=============================================================================== +Port Admin Link Port Cfg Oper LAG/ Port Port Port C/QS/S/XFP/ +Id State State MTU MTU Bndl Mode Encp Type MDIMDX +------------------------------------------------------------------------------- +10/2/c1 Up Link Up conn 100GBASE-LR4* +10/2/c1/1 Up Yes Up 9192 9192 10 accs null cgige +10/2/c2 Up Link Up conn 100GBASE-LR4* +10/2/c2/1 Up Yes Up 9192 9192 10 accs null cgige +10/2/c3 Up Link Up conn 100GBASE-LR4* +10/2/c3/1 Up Yes Up 9192 9192 10 accs null cgige +10/2/c4 Down Down conn 100GBASE-LR4* +10/2/c5 Down Down conn +10/2/c6 Down Down conn +10/2/c7 Up Link Up conn 100GBASE-LR4* +10/2/c7/1 Up Yes Up 9192 9192 15 accs null cgige +10/2/c8 Up Link Up conn 100GBASE-LR4* +10/2/c8/1 Up Yes Up 9192 9192 30 accs null cgige +10/2/c9 Down Down conn 100GBASE-LR4* +10/2/c10 Up Link Up conn 100GBASE-LR4* +10/2/c10/1 Up Yes Up 9192 9192 24 accs null cgige +10/2/c11 Down Down conn +10/2/c12 Down Down conn +10/2/c13 Up Link Up conn 100GBASE-LR4* +10/2/c13/1 Up Yes Up 9192 9192 14 accs null cgige +10/2/c14 Up Link Up conn 100GBASE-LR4* +10/2/c14/1 Up Yes Link Up 9192 9192 14 accs null cgige +10/2/c15 Up Link Up conn 100GBASE-LR4* +10/2/c15/1 Down No Down 9192 9192 - accs null cgige +10/2/c16 Down Down conn 100GBASE-LR4* +10/2/c17 Down Down conn +10/2/c18 Down Down conn +10/2/c19 Up Link Up conn 100GBASE-LR4* +10/2/c19/1 Up Yes Up 9212 9212 7 netw null cgige +10/2/c20 Up Link Up conn 100GBASE-LR4* +10/2/c20/1 Up Yes Up 9212 9212 3 netw null cgige +10/2/c21 Up Link Up conn 100GBASE-LR4* +10/2/c21/1 Up Yes Up 9212 9212 7 netw null cgige +10/2/c22 Down Down conn +10/2/c23 Down Down conn +10/2/c24 Down Down conn +=============================================================================== +* indicates that the corresponding row element may have been truncated. + diff --git a/tests/alcatel_sros/show_port/show_port.yml b/tests/alcatel_sros/show_port/show_port.yml new file mode 100644 index 0000000000..6ca35c0cf2 --- /dev/null +++ b/tests/alcatel_sros/show_port/show_port.yml @@ -0,0 +1,2114 @@ +--- +parsed_sample: + - port_id: "1/1/1" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "9212" + oper_mtu: "9212" + lag: "-" + port_mode: "hybr" + port_encp: "dotq" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "GIGE-SX" + - port_id: "1/1/2" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "1518" + oper_mtu: "1518" + lag: "-" + port_mode: "accs" + port_encp: "dotq" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "MDI GIGE-T" + - port_id: "1/1/3" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "1518" + oper_mtu: "1518" + lag: "-" + port_mode: "accs" + port_encp: "dotq" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "MDX GIGE-T" + - port_id: "1/1/4" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "9212" + oper_mtu: "9212" + lag: "1" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "GIGE-SX" + - port_id: "1/1/5" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "9212" + oper_mtu: "9212" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "GIGE-SX" + - port_id: "1/1/6" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "9212" + oper_mtu: "9212" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "GIGE-SX" + - port_id: "1/1/7" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "1518" + oper_mtu: "1518" + lag: "-" + port_mode: "accs" + port_encp: "dotq" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "MDX GIGE-T" + - port_id: "1/1/8" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "1514" + oper_mtu: "1514" + lag: "-" + port_mode: "accs" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "MDX GIGE-T" + - port_id: "1/1/9" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "9212" + oper_mtu: "9212" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "GIGE-SX" + - port_id: "1/1/10" + admin_state: "Up" + link: "No" + port_state: "Down" + cfg_mtu: "1518" + oper_mtu: "1518" + lag: "-" + port_mode: "accs" + port_encp: "dotq" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "GIGE-SX" + - port_id: "1/1/11" + admin_state: "Up" + link: "No" + port_state: "Down" + cfg_mtu: "1518" + oper_mtu: "1518" + lag: "-" + port_mode: "accs" + port_encp: "dotq" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "GIGE-T" + - port_id: "1/1/12" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "9000" + oper_mtu: "9000" + lag: "-" + port_mode: "accs" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "MDX GIGE-T" + - port_id: "1/1/13" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "1514" + oper_mtu: "1514" + lag: "-" + port_mode: "accs" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "GIGE-SX" + - port_id: "1/1/14" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "1514" + oper_mtu: "1514" + lag: "-" + port_mode: "accs" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "MDI GIGE-T" + - port_id: "1/1/15" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "9000" + oper_mtu: "9000" + lag: "-" + port_mode: "accs" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "MDI GIGE-T" + - port_id: "1/1/16" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "1514" + oper_mtu: "1514" + lag: "-" + port_mode: "accs" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "GIGE-SX" + - port_id: "1/1/17" + admin_state: "Up" + link: "No" + port_state: "Down" + cfg_mtu: "1518" + oper_mtu: "1518" + lag: "-" + port_mode: "accs" + port_encp: "dotq" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "GIGE-T" + - port_id: "1/1/18" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "1518" + oper_mtu: "1518" + lag: "-" + port_mode: "accs" + port_encp: "dotq" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "MDI GIGE-T" + - port_id: "1/1/19" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "1514" + oper_mtu: "1514" + lag: "-" + port_mode: "accs" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "MDI GIGE-T" + - port_id: "1/1/20" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "9212" + oper_mtu: "9212" + lag: "-" + port_mode: "hybr" + port_encp: "dotq" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "MDX GIGE-T" + - port_id: "1/1/21" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "1518" + oper_mtu: "1518" + lag: "-" + port_mode: "accs" + port_encp: "dotq" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "GIGE-SX" + - port_id: "1/1/22" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "1518" + oper_mtu: "1518" + lag: "-" + port_mode: "accs" + port_encp: "dotq" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "GIGE-SX" + - port_id: "1/1/23" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "1518" + oper_mtu: "1518" + lag: "-" + port_mode: "accs" + port_encp: "dotq" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "MDI GIGE-T" + - port_id: "1/1/24" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "1518" + oper_mtu: "1518" + lag: "-" + port_mode: "accs" + port_encp: "dotq" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "MDX GIGE-T" + - port_id: "1/2/1" + admin_state: "Up" + link: "No" + port_state: "Down" + cfg_mtu: "1518" + oper_mtu: "1518" + lag: "-" + port_mode: "accs" + port_encp: "dotq" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "GIGE-SX" + - port_id: "1/2/2" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "1514" + oper_mtu: "1514" + lag: "-" + port_mode: "accs" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "MDI GIGE-T" + - port_id: "1/2/3" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "1514" + oper_mtu: "1514" + lag: "-" + port_mode: "accs" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "MDI GIGE-T" + - port_id: "1/2/4" + admin_state: "Up" + link: "No" + port_state: "Down" + cfg_mtu: "1514" + oper_mtu: "1514" + lag: "-" + port_mode: "accs" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "GIGE-T" + - port_id: "1/2/5" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "9212" + oper_mtu: "9212" + lag: "-" + port_mode: "hybr" + port_encp: "dotq" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "MDX GIGE-T" + - port_id: "1/2/6" + admin_state: "Up" + link: "No" + port_state: "Down" + cfg_mtu: "9022" + oper_mtu: "9022" + lag: "-" + port_mode: "accs" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "GIGE-T" + - port_id: "1/2/7" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "1514" + oper_mtu: "1514" + lag: "-" + port_mode: "accs" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "MDX GIGE-T" + - port_id: "1/2/8" + admin_state: "Up" + link: "No" + port_state: "Down" + cfg_mtu: "1514" + oper_mtu: "1514" + lag: "-" + port_mode: "accs" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "1/2/9" + admin_state: "Up" + link: "No" + port_state: "Down" + cfg_mtu: "1518" + oper_mtu: "1518" + lag: "99" + port_mode: "accs" + port_encp: "dotq" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "GIGE-SX" + - port_id: "1/2/10" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "1514" + oper_mtu: "1514" + lag: "-" + port_mode: "accs" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "MDI GIGE-T" + - port_id: "1/2/11" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "1514" + oper_mtu: "1514" + lag: "-" + port_mode: "accs" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "MDI GIGE-T" + - port_id: "1/2/12" + admin_state: "Up" + link: "No" + port_state: "Down" + cfg_mtu: "1514" + oper_mtu: "1514" + lag: "-" + port_mode: "accs" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "GIGE-T" + - port_id: "1/2/13" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "1514" + oper_mtu: "1514" + lag: "-" + port_mode: "accs" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "MDX GIGE-T" + - port_id: "1/2/14" + admin_state: "Up" + link: "No" + port_state: "Down" + cfg_mtu: "1514" + oper_mtu: "1514" + lag: "-" + port_mode: "accs" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "GIGE-T" + - port_id: "1/2/15" + admin_state: "Up" + link: "No" + port_state: "Down" + cfg_mtu: "1570" + oper_mtu: "1570" + lag: "-" + port_mode: "accs" + port_encp: "dotq" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "GIGE-T" + - port_id: "1/2/16" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "9022" + oper_mtu: "9022" + lag: "-" + port_mode: "accs" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "MDX GIGE-T" + - port_id: "1/2/17" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "1538" + oper_mtu: "1538" + lag: "-" + port_mode: "accs" + port_encp: "dotq" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "MDX GIGE-T" + - port_id: "1/2/18" + admin_state: "Up" + link: "No" + port_state: "Down" + cfg_mtu: "1514" + oper_mtu: "1514" + lag: "-" + port_mode: "accs" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "GIGE-T" + - port_id: "1/2/19" + admin_state: "Up" + link: "No" + port_state: "Down" + cfg_mtu: "1518" + oper_mtu: "1518" + lag: "-" + port_mode: "accs" + port_encp: "dotq" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "GIGE-T" + - port_id: "1/2/20" + admin_state: "Up" + link: "No" + port_state: "Down" + cfg_mtu: "1514" + oper_mtu: "1514" + lag: "-" + port_mode: "accs" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "GIGE-T" + - port_id: "1/2/21" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "1514" + oper_mtu: "1514" + lag: "-" + port_mode: "accs" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "MDI GIGE-T" + - port_id: "1/2/22" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "1518" + oper_mtu: "1518" + lag: "-" + port_mode: "accs" + port_encp: "dotq" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "MDX GIGE-T" + - port_id: "1/2/23" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "1518" + oper_mtu: "1518" + lag: "-" + port_mode: "accs" + port_encp: "dotq" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "MDX GIGE-T" + - port_id: "1/2/24" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "9212" + oper_mtu: "9212" + lag: "7" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "GIGE-SX" + - port_id: "A/1" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "1514" + oper_mtu: "1514" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "faste" + c_qs_s_xfp_mdimdx: "MDI" + - port_id: "A/4" + admin_state: "Up" + link: "No" + port_state: "Down" + cfg_mtu: "1514" + oper_mtu: "1514" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "faste" + c_qs_s_xfp_mdimdx: "" + - port_id: "B/1" + admin_state: "Up" + link: "No" + port_state: "Down" + cfg_mtu: "1514" + oper_mtu: "1514" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "faste" + c_qs_s_xfp_mdimdx: "" + - port_id: "B/4" + admin_state: "Up" + link: "No" + port_state: "Down" + cfg_mtu: "1514" + oper_mtu: "1514" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "faste" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-1/1/1" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "1518" + oper_mtu: "1518" + lag: "5" + port_mode: "accs" + port_encp: "dotq" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "MDI GIGE-T" + - port_id: "esat-1/1/2" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "1518" + oper_mtu: "1518" + lag: "-" + port_mode: "accs" + port_encp: "dotq" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "MDI GIGE-T" + - port_id: "esat-1/1/3" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "1518" + oper_mtu: "1518" + lag: "-" + port_mode: "accs" + port_encp: "dotq" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "MDX GIGE-T" + - port_id: "esat-1/1/4" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "1538" + oper_mtu: "1538" + lag: "-" + port_mode: "accs" + port_encp: "dotq" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "MDX GIGE-T" + - port_id: "esat-1/1/5" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "9022" + oper_mtu: "9022" + lag: "-" + port_mode: "accs" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "MDX GIGE-T" + - port_id: "esat-1/1/6" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "1514" + oper_mtu: "1514" + lag: "-" + port_mode: "accs" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "MDI GIGE-T" + - port_id: "esat-1/1/7" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "9022" + oper_mtu: "9022" + lag: "-" + port_mode: "accs" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "MDI GIGE-T" + - port_id: "esat-1/1/8" + admin_state: "Up" + link: "No" + port_state: "Down" + cfg_mtu: "9022" + oper_mtu: "9022" + lag: "-" + port_mode: "accs" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "GIGE-T" + - port_id: "esat-1/1/9" + admin_state: "Down" + link: "No" + port_state: "Down" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-1/1/10" + admin_state: "Down" + link: "No" + port_state: "Down" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-1/1/11" + admin_state: "Down" + link: "No" + port_state: "Down" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-1/1/12" + admin_state: "Down" + link: "No" + port_state: "Down" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-1/1/13" + admin_state: "Down" + link: "No" + port_state: "Down" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-1/1/14" + admin_state: "Down" + link: "No" + port_state: "Down" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-1/1/15" + admin_state: "Down" + link: "No" + port_state: "Down" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-1/1/16" + admin_state: "Down" + link: "No" + port_state: "Down" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-1/1/17" + admin_state: "Down" + link: "No" + port_state: "Down" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-1/1/18" + admin_state: "Down" + link: "No" + port_state: "Down" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-1/1/19" + admin_state: "Down" + link: "No" + port_state: "Down" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-1/1/20" + admin_state: "Down" + link: "No" + port_state: "Down" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-1/1/21" + admin_state: "Down" + link: "No" + port_state: "Down" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-1/1/22" + admin_state: "Down" + link: "No" + port_state: "Down" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-1/1/23" + admin_state: "Down" + link: "No" + port_state: "Down" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-1/1/24" + admin_state: "Down" + link: "No" + port_state: "Down" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-1/1/25" + admin_state: "Down" + link: "No" + port_state: "Down" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-1/1/26" + admin_state: "Down" + link: "No" + port_state: "Down" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-1/1/27" + admin_state: "Down" + link: "No" + port_state: "Down" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-1/1/28" + admin_state: "Down" + link: "No" + port_state: "Down" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-1/1/29" + admin_state: "Down" + link: "No" + port_state: "Down" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-1/1/30" + admin_state: "Down" + link: "No" + port_state: "Down" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-1/1/31" + admin_state: "Up" + link: "No" + port_state: "Down" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-1/1/32" + admin_state: "Down" + link: "No" + port_state: "Down" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-1/1/33" + admin_state: "Down" + link: "No" + port_state: "Down" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-1/1/34" + admin_state: "Down" + link: "No" + port_state: "Down" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-1/1/35" + admin_state: "Down" + link: "No" + port_state: "Down" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-1/1/36" + admin_state: "Down" + link: "No" + port_state: "Down" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-1/1/37" + admin_state: "Down" + link: "No" + port_state: "Down" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-1/1/38" + admin_state: "Down" + link: "No" + port_state: "Down" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-1/1/39" + admin_state: "Down" + link: "No" + port_state: "Down" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-1/1/40" + admin_state: "Down" + link: "No" + port_state: "Down" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-1/1/41" + admin_state: "Down" + link: "No" + port_state: "Down" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-1/1/42" + admin_state: "Down" + link: "No" + port_state: "Down" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-1/1/43" + admin_state: "Down" + link: "No" + port_state: "Down" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-1/1/44" + admin_state: "Down" + link: "No" + port_state: "Down" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-1/1/45" + admin_state: "Down" + link: "No" + port_state: "Down" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-1/1/46" + admin_state: "Down" + link: "No" + port_state: "Down" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-1/1/47" + admin_state: "Down" + link: "No" + port_state: "Down" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-1/1/48" + admin_state: "Down" + link: "No" + port_state: "Down" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-1/1/u1" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "9212" + oper_mtu: "9212" + lag: "-" + port_mode: "accs" + port_encp: "dotq" + port_type: "xgige" + c_qs_s_xfp_mdimdx: "10GBASE-LR *" + - port_id: "esat-1/1/u2" + admin_state: "Up" + link: "No" + port_state: "Down" + cfg_mtu: "9212" + oper_mtu: "9212" + lag: "-" + port_mode: "accs" + port_encp: "dotq" + port_type: "xgige" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-1/1/u3" + admin_state: "Up" + link: "No" + port_state: "Down" + cfg_mtu: "9212" + oper_mtu: "9212" + lag: "-" + port_mode: "accs" + port_encp: "dotq" + port_type: "xgige" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-1/1/u4" + admin_state: "Up" + link: "No" + port_state: "Down" + cfg_mtu: "9212" + oper_mtu: "9212" + lag: "-" + port_mode: "accs" + port_encp: "dotq" + port_type: "xgige" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/1" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/2" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/3" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/4" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/5" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/6" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/7" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/8" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/9" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/10" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/11" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/12" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/13" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/14" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/15" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/16" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/17" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/18" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/19" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/20" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/21" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/22" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/23" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/24" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/25" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/26" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/27" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/28" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/29" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/30" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/31" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/32" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/33" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/34" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/35" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/36" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/37" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/38" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/39" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/40" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/41" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/42" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/43" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/44" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/45" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/46" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/47" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/48" + admin_state: "Down" + link: "No" + port_state: "Ghost" + cfg_mtu: "9208" + oper_mtu: "9208" + lag: "-" + port_mode: "netw" + port_encp: "null" + port_type: "xcme" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/u1" + admin_state: "Up" + link: "No" + port_state: "Ghost" + cfg_mtu: "9212" + oper_mtu: "9212" + lag: "-" + port_mode: "accs" + port_encp: "dotq" + port_type: "xgige" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/u2" + admin_state: "Up" + link: "No" + port_state: "Ghost" + cfg_mtu: "9212" + oper_mtu: "9212" + lag: "-" + port_mode: "accs" + port_encp: "dotq" + port_type: "xgige" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/u3" + admin_state: "Up" + link: "No" + port_state: "Ghost" + cfg_mtu: "9212" + oper_mtu: "9212" + lag: "-" + port_mode: "accs" + port_encp: "dotq" + port_type: "xgige" + c_qs_s_xfp_mdimdx: "" + - port_id: "esat-2/1/u4" + admin_state: "Up" + link: "No" + port_state: "Ghost" + cfg_mtu: "9212" + oper_mtu: "9212" + lag: "-" + port_mode: "accs" + port_encp: "dotq" + port_type: "xgige" + c_qs_s_xfp_mdimdx: "" + - port_id: "10/2/c1" + admin_state: "Up" + link: "" + port_state: "Link Up" + cfg_mtu: "" + oper_mtu: "" + lag: "" + port_mode: "" + port_encp: "" + port_type: "" + c_qs_s_xfp_mdimdx: "100GBASE-LR4*" + - port_id: "10/2/c1/1" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "9192" + oper_mtu: "9192" + lag: "10" + port_mode: "accs" + port_encp: "null" + port_type: "cgige" + c_qs_s_xfp_mdimdx: "" + - port_id: "10/2/c2" + admin_state: "Up" + link: "" + port_state: "Link Up" + cfg_mtu: "" + oper_mtu: "" + lag: "" + port_mode: "" + port_encp: "" + port_type: "" + c_qs_s_xfp_mdimdx: "100GBASE-LR4*" + - port_id: "10/2/c2/1" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "9192" + oper_mtu: "9192" + lag: "10" + port_mode: "accs" + port_encp: "null" + port_type: "cgige" + c_qs_s_xfp_mdimdx: "" + - port_id: "10/2/c3" + admin_state: "Up" + link: "" + port_state: "Link Up" + cfg_mtu: "" + oper_mtu: "" + lag: "" + port_mode: "" + port_encp: "" + port_type: "" + c_qs_s_xfp_mdimdx: "100GBASE-LR4*" + - port_id: "10/2/c3/1" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "9192" + oper_mtu: "9192" + lag: "10" + port_mode: "accs" + port_encp: "null" + port_type: "cgige" + c_qs_s_xfp_mdimdx: "" + - port_id: "10/2/c4" + admin_state: "Down" + link: "" + port_state: "Down" + cfg_mtu: "" + oper_mtu: "" + lag: "" + port_mode: "" + port_encp: "" + port_type: "" + c_qs_s_xfp_mdimdx: "100GBASE-LR4*" + - port_id: "10/2/c5" + admin_state: "Down" + link: "" + port_state: "Down" + cfg_mtu: "" + oper_mtu: "" + lag: "" + port_mode: "" + port_encp: "" + port_type: "" + c_qs_s_xfp_mdimdx: "" + - port_id: "10/2/c6" + admin_state: "Down" + link: "" + port_state: "Down" + cfg_mtu: "" + oper_mtu: "" + lag: "" + port_mode: "" + port_encp: "" + port_type: "" + c_qs_s_xfp_mdimdx: "" + - port_id: "10/2/c7" + admin_state: "Up" + link: "" + port_state: "Link Up" + cfg_mtu: "" + oper_mtu: "" + lag: "" + port_mode: "" + port_encp: "" + port_type: "" + c_qs_s_xfp_mdimdx: "100GBASE-LR4*" + - port_id: "10/2/c7/1" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "9192" + oper_mtu: "9192" + lag: "15" + port_mode: "accs" + port_encp: "null" + port_type: "cgige" + c_qs_s_xfp_mdimdx: "" + - port_id: "10/2/c8" + admin_state: "Up" + link: "" + port_state: "Link Up" + cfg_mtu: "" + oper_mtu: "" + lag: "" + port_mode: "" + port_encp: "" + port_type: "" + c_qs_s_xfp_mdimdx: "100GBASE-LR4*" + - port_id: "10/2/c8/1" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "9192" + oper_mtu: "9192" + lag: "30" + port_mode: "accs" + port_encp: "null" + port_type: "cgige" + c_qs_s_xfp_mdimdx: "" + - port_id: "10/2/c9" + admin_state: "Down" + link: "" + port_state: "Down" + cfg_mtu: "" + oper_mtu: "" + lag: "" + port_mode: "" + port_encp: "" + port_type: "" + c_qs_s_xfp_mdimdx: "100GBASE-LR4*" + - port_id: "10/2/c10" + admin_state: "Up" + link: "" + port_state: "Link Up" + cfg_mtu: "" + oper_mtu: "" + lag: "" + port_mode: "" + port_encp: "" + port_type: "" + c_qs_s_xfp_mdimdx: "100GBASE-LR4*" + - port_id: "10/2/c10/1" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "9192" + oper_mtu: "9192" + lag: "24" + port_mode: "accs" + port_encp: "null" + port_type: "cgige" + c_qs_s_xfp_mdimdx: "" + - port_id: "10/2/c11" + admin_state: "Down" + link: "" + port_state: "Down" + cfg_mtu: "" + oper_mtu: "" + lag: "" + port_mode: "" + port_encp: "" + port_type: "" + c_qs_s_xfp_mdimdx: "" + - port_id: "10/2/c12" + admin_state: "Down" + link: "" + port_state: "Down" + cfg_mtu: "" + oper_mtu: "" + lag: "" + port_mode: "" + port_encp: "" + port_type: "" + c_qs_s_xfp_mdimdx: "" + - port_id: "10/2/c13" + admin_state: "Up" + link: "" + port_state: "Link Up" + cfg_mtu: "" + oper_mtu: "" + lag: "" + port_mode: "" + port_encp: "" + port_type: "" + c_qs_s_xfp_mdimdx: "100GBASE-LR4*" + - port_id: "10/2/c13/1" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "9192" + oper_mtu: "9192" + lag: "14" + port_mode: "accs" + port_encp: "null" + port_type: "cgige" + c_qs_s_xfp_mdimdx: "" + - port_id: "10/2/c14" + admin_state: "Up" + link: "" + port_state: "Link Up" + cfg_mtu: "" + oper_mtu: "" + lag: "" + port_mode: "" + port_encp: "" + port_type: "" + c_qs_s_xfp_mdimdx: "100GBASE-LR4*" + - port_id: "10/2/c14/1" + admin_state: "Up" + link: "Yes" + port_state: "Link Up" + cfg_mtu: "9192" + oper_mtu: "9192" + lag: "14" + port_mode: "accs" + port_encp: "null" + port_type: "cgige" + c_qs_s_xfp_mdimdx: "" + - port_id: "10/2/c15" + admin_state: "Up" + link: "" + port_state: "Link Up" + cfg_mtu: "" + oper_mtu: "" + lag: "" + port_mode: "" + port_encp: "" + port_type: "" + c_qs_s_xfp_mdimdx: "100GBASE-LR4*" + - port_id: "10/2/c15/1" + admin_state: "Down" + link: "No" + port_state: "Down" + cfg_mtu: "9192" + oper_mtu: "9192" + lag: "-" + port_mode: "accs" + port_encp: "null" + port_type: "cgige" + c_qs_s_xfp_mdimdx: "" + - port_id: "10/2/c16" + admin_state: "Down" + link: "" + port_state: "Down" + cfg_mtu: "" + oper_mtu: "" + lag: "" + port_mode: "" + port_encp: "" + port_type: "" + c_qs_s_xfp_mdimdx: "100GBASE-LR4*" + - port_id: "10/2/c17" + admin_state: "Down" + link: "" + port_state: "Down" + cfg_mtu: "" + oper_mtu: "" + lag: "" + port_mode: "" + port_encp: "" + port_type: "" + c_qs_s_xfp_mdimdx: "" + - port_id: "10/2/c18" + admin_state: "Down" + link: "" + port_state: "Down" + cfg_mtu: "" + oper_mtu: "" + lag: "" + port_mode: "" + port_encp: "" + port_type: "" + c_qs_s_xfp_mdimdx: "" + - port_id: "10/2/c19" + admin_state: "Up" + link: "" + port_state: "Link Up" + cfg_mtu: "" + oper_mtu: "" + lag: "" + port_mode: "" + port_encp: "" + port_type: "" + c_qs_s_xfp_mdimdx: "100GBASE-LR4*" + - port_id: "10/2/c19/1" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "9212" + oper_mtu: "9212" + lag: "7" + port_mode: "netw" + port_encp: "null" + port_type: "cgige" + c_qs_s_xfp_mdimdx: "" + - port_id: "10/2/c20" + admin_state: "Up" + link: "" + port_state: "Link Up" + cfg_mtu: "" + oper_mtu: "" + lag: "" + port_mode: "" + port_encp: "" + port_type: "" + c_qs_s_xfp_mdimdx: "100GBASE-LR4*" + - port_id: "10/2/c20/1" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "9212" + oper_mtu: "9212" + lag: "3" + port_mode: "netw" + port_encp: "null" + port_type: "cgige" + c_qs_s_xfp_mdimdx: "" + - port_id: "10/2/c21" + admin_state: "Up" + link: "" + port_state: "Link Up" + cfg_mtu: "" + oper_mtu: "" + lag: "" + port_mode: "" + port_encp: "" + port_type: "" + c_qs_s_xfp_mdimdx: "100GBASE-LR4*" + - port_id: "10/2/c21/1" + admin_state: "Up" + link: "Yes" + port_state: "Up" + cfg_mtu: "9212" + oper_mtu: "9212" + lag: "7" + port_mode: "netw" + port_encp: "null" + port_type: "cgige" + c_qs_s_xfp_mdimdx: "" + - port_id: "10/2/c22" + admin_state: "Down" + link: "" + port_state: "Down" + cfg_mtu: "" + oper_mtu: "" + lag: "" + port_mode: "" + port_encp: "" + port_type: "" + c_qs_s_xfp_mdimdx: "" + - port_id: "10/2/c23" + admin_state: "Down" + link: "" + port_state: "Down" + cfg_mtu: "" + oper_mtu: "" + lag: "" + port_mode: "" + port_encp: "" + port_type: "" + c_qs_s_xfp_mdimdx: "" + - port_id: "10/2/c24" + admin_state: "Down" + link: "" + port_state: "Down" + cfg_mtu: "" + oper_mtu: "" + lag: "" + port_mode: "" + port_encp: "" + port_type: "" + c_qs_s_xfp_mdimdx: "" diff --git a/tests/alcatel_sros/show_router_bgp_summary_family/alcatel_sros_show_router_bgp_summary_family.raw b/tests/alcatel_sros/show_router_bgp_summary_family/alcatel_sros_show_router_bgp_summary_family.raw new file mode 100644 index 0000000000..c1da92864c --- /dev/null +++ b/tests/alcatel_sros/show_router_bgp_summary_family/alcatel_sros_show_router_bgp_summary_family.raw @@ -0,0 +1,64 @@ +[kvanlang@steffi upgrade-support]$ cat ../ntc-templates-test/lib/test-bgp-sum-family.raw +A:SRHERE01# show router "Base" bgp summary family ipv4 +=============================================================================== + BGP Router ID:192.0.2.11 AS:6848 Local AS:65535 +=============================================================================== +BGP Admin State : Up BGP Oper State : Up +Total Peer Groups : 6 Total Peers : 150 +Total VPN Peer Groups : 79 Total VPN Peers : 207 +Total BGP Paths : 407944 Total Path Memory : 160791243 + +Total IPv4 Remote Rts : 1725031 Total IPv4 Rem. Active Rts : 862201 +Total IPv6 Remote Rts : 0 Total IPv6 Rem. Active Rts : 0 +Total IPv4 Backup Rts : 0 Total IPv6 Backup Rts : 0 +Total LblIpv4 Rem Rts : 2844 Total LblIpv4 Rem. Act Rts : 311 +Total LblIpv6 Rem Rts : 196896 Total LblIpv6 Rem. Act Rts : 98446 +Total LblIpv4 Bkp Rts : 0 Total LblIpv6 Bkp Rts : 0 +Total Supressed Rts : 0 Total Hist. Rts : 0 +Total Decay Rts : 0 + +Total VPN-IPv4 Rem. Rts : 93000 Total VPN-IPv4 Rem. Act. Rts: 45689 +Total VPN-IPv6 Rem. Rts : 0 Total VPN-IPv6 Rem. Act. Rts: 0 +Total VPN-IPv4 Bkup Rts : 0 Total VPN-IPv6 Bkup Rts : 0 +Total VPN Local Rts : 1147 Total VPN Supp. Rts : 0 +Total VPN Hist. Rts : 0 Total VPN Decay Rts : 0 + +Total MVPN-IPv4 Rem Rts : 0 Total MVPN-IPv4 Rem Act Rts : 0 +Total MVPN-IPv6 Rem Rts : 0 Total MVPN-IPv6 Rem Act Rts : 0 +Total MDT-SAFI Rem Rts : 0 Total MDT-SAFI Rem Act Rts : 0 +Total McIPv4 Remote Rts : 0 Total McIPv4 Rem. Active Rts: 0 +Total McIPv6 Remote Rts : 0 Total McIPv6 Rem. Active Rts: 0 +Total McVpnIPv4 Rem Rts : 0 Total McVpnIPv4 Rem Act Rts : 0 +Total McVpnIPv6 Rem Rts : 0 Total McVpnIPv6 Rem Act Rts : 0 + +Total EVPN Rem Rts : 692 Total EVPN Rem Act Rts : 338 +Total L2-VPN Rem. Rts : 0 Total L2VPN Rem. Act. Rts : 0 +Total MSPW Rem Rts : 0 Total MSPW Rem Act Rts : 0 +Total RouteTgt Rem Rts : 1546 Total RouteTgt Rem Act Rts : 1546 +Total FlowIpv4 Rem Rts : 0 Total FlowIpv4 Rem Act Rts : 0 +Total FlowIpv6 Rem Rts : 0 Total FlowIpv6 Rem Act Rts : 0 +Total Link State Rem Rts: 0 Total Link State Rem Act Rts: 0 +Total SrPlcyIpv4 Rem Rts: 0 Total SrPlcyIpv4 Rem Act Rts: 0 + +=============================================================================== +BGP IPv4 Summary +=============================================================================== +Legend : D - Dynamic Neighbor +=============================================================================== +Neighbor + AS PktRcvd PktSent InQ OutQ Up/Down State|Recv/Actv/Sent +------------------------------------------------------------------------------- +192.0.2.118 + 42598* 228872 215409 0 0 25d10h18m 2/2/1 +192.0.2.110 + 42598 271035 249777 0 0 29d11h41m 1/1/1 +192.0.2.126 + 42598* 0 0 0 0 54d18h43m Connect +192.0.2.254 + 42598* 0 0 0 0 36d13h37m Active +192.0.2.103 + 65535 390698* 749512 0 0 54d18h40m 862440/627895/373 +192.0.2.104 + 65535 355316* 749512 0 0 54d18h40m 862439/234172/373 +------------------------------------------------------------------------------- +* indicates that the corresponding row element may have been truncated. diff --git a/tests/alcatel_sros/show_router_bgp_summary_family/alcatel_sros_show_router_bgp_summary_family.yml b/tests/alcatel_sros/show_router_bgp_summary_family/alcatel_sros_show_router_bgp_summary_family.yml new file mode 100644 index 0000000000..8bb40a7086 --- /dev/null +++ b/tests/alcatel_sros/show_router_bgp_summary_family/alcatel_sros_show_router_bgp_summary_family.yml @@ -0,0 +1,68 @@ +--- +parsed_sample: + - neighbor: "192.0.2.118" + as: "42598*" + pktrcvd: "228872" + pktsent: "215409" + inq: "0" + outq: "0" + up_down: "25d10h18m" + state: "" + rcv: "2" + act: "2" + sent: "1" + - neighbor: "192.0.2.110" + as: "42598" + pktrcvd: "271035" + pktsent: "249777" + inq: "0" + outq: "0" + up_down: "29d11h41m" + state: "" + rcv: "1" + act: "1" + sent: "1" + - neighbor: "192.0.2.126" + as: "42598*" + pktrcvd: "0" + pktsent: "0" + inq: "0" + outq: "0" + up_down: "54d18h43m" + state: "Connect" + rcv: "" + act: "" + sent: "" + - neighbor: "192.0.2.254" + as: "42598*" + pktrcvd: "0" + pktsent: "0" + inq: "0" + outq: "0" + up_down: "36d13h37m" + state: "Active" + rcv: "" + act: "" + sent: "" + - neighbor: "192.0.2.103" + as: "65535" + pktrcvd: "390698*" + pktsent: "749512" + inq: "0" + outq: "0" + up_down: "54d18h40m" + state: "" + rcv: "862440" + act: "627895" + sent: "373" + - neighbor: "192.0.2.104" + as: "65535" + pktrcvd: "355316*" + pktsent: "749512" + inq: "0" + outq: "0" + up_down: "54d18h40m" + state: "" + rcv: "862439" + act: "234172" + sent: "373" diff --git a/tests/alcatel_sros/show_router_isis_adjacency/alcatel_sros_show_router_isis_adjacency.raw b/tests/alcatel_sros/show_router_isis_adjacency/alcatel_sros_show_router_isis_adjacency.raw new file mode 100644 index 0000000000..e43d0a9cdb --- /dev/null +++ b/tests/alcatel_sros/show_router_isis_adjacency/alcatel_sros_show_router_isis_adjacency.raw @@ -0,0 +1,11 @@ + +=============================================================================== +Rtr Base ISIS Instance 0 Adjacency +=============================================================================== +System ID Usage State Hold Interface MT-ID +------------------------------------------------------------------------------- +R2 L2 Up 27 R1_R2 0,2 +R3 L2 Up 19 R1_R3 0,2 +------------------------------------------------------------------------------- +Adjacencies : 2 +=============================================================================== diff --git a/tests/alcatel_sros/show_router_isis_adjacency/alcatel_sros_show_router_isis_adjacency.yml b/tests/alcatel_sros/show_router_isis_adjacency/alcatel_sros_show_router_isis_adjacency.yml new file mode 100644 index 0000000000..8000f44746 --- /dev/null +++ b/tests/alcatel_sros/show_router_isis_adjacency/alcatel_sros_show_router_isis_adjacency.yml @@ -0,0 +1,14 @@ +--- +parsed_sample: + - system_id: "R2" + usage: "L2" + state: "Up" + hold: "27" + interface: "R1_R2" + mt_id: "0,2" + - system_id: "R3" + usage: "L2" + state: "Up" + hold: "19" + interface: "R1_R3" + mt_id: "0,2" diff --git a/tests/alcatel_sros/show_router_isis_interface/alcatel_sros_show_router_isis_interface.raw b/tests/alcatel_sros/show_router_isis_interface/alcatel_sros_show_router_isis_interface.raw new file mode 100644 index 0000000000..1c9ef15e43 --- /dev/null +++ b/tests/alcatel_sros/show_router_isis_interface/alcatel_sros_show_router_isis_interface.raw @@ -0,0 +1,12 @@ + +=============================================================================== +Rtr Base ISIS Instance 0 Interfaces +=============================================================================== +Interface Level CircID Oper State L1/L2 Metric +------------------------------------------------------------------------------- +system L1L2 1 Up 0/0 +R1_R2 L2 18 Up 10/10 +R1_R3 L1 21 Down 10/1000 +------------------------------------------------------------------------------- +Interfaces : 3 +=============================================================================== diff --git a/tests/alcatel_sros/show_router_isis_interface/alcatel_sros_show_router_isis_interface.yml b/tests/alcatel_sros/show_router_isis_interface/alcatel_sros_show_router_isis_interface.yml new file mode 100644 index 0000000000..e8312c5a73 --- /dev/null +++ b/tests/alcatel_sros/show_router_isis_interface/alcatel_sros_show_router_isis_interface.yml @@ -0,0 +1,20 @@ +--- +parsed_sample: + - interface: "system" + level: "L1L2" + circid: "1" + oper_state: "Up" + metric_l1: "0" + metric_l2: "0" + - interface: "R1_R2" + level: "L2" + circid: "18" + oper_state: "Up" + metric_l1: "10" + metric_l2: "10" + - interface: "R1_R3" + level: "L1" + circid: "21" + oper_state: "Down" + metric_l1: "10" + metric_l2: "1000" diff --git a/tests/alcatel_sros/show_router_ldp_interface/show_router_ldp_interface.raw b/tests/alcatel_sros/show_router_ldp_interface/show_router_ldp_interface.raw new file mode 100644 index 0000000000..42047f7189 --- /dev/null +++ b/tests/alcatel_sros/show_router_ldp_interface/show_router_ldp_interface.raw @@ -0,0 +1,18 @@ + +=============================================================================== +LDP Interfaces +=============================================================================== +Interface Adm/Opr + Sub-Interface(s) Adm/Opr Hello Hold KA KA Transport + Fctr Time Fctr Time Address +------------------------------------------------------------------------------- +R1_R2 Up/Up + ipv4 Up/Up 3 15 3 30 System +R1_R3 Up/Up + ipv4 Up/Up 3 15 3 30 System + ipv6 Up/Up 3 15 3 30 System +R1_R4 Up/Up + ipv4 Up/Dwn 3 15 3 30 System +------------------------------------------------------------------------------- +No. of Interfaces: 3 +=============================================================================== diff --git a/tests/alcatel_sros/show_router_ldp_interface/show_router_ldp_interface.yml b/tests/alcatel_sros/show_router_ldp_interface/show_router_ldp_interface.yml new file mode 100644 index 0000000000..36a90f65b5 --- /dev/null +++ b/tests/alcatel_sros/show_router_ldp_interface/show_router_ldp_interface.yml @@ -0,0 +1,35 @@ +--- +parsed_sample: + - interface: "R1_R2" + adm: "Up" + opr: "Up" + sub_interface: "ipv4" + sub_interface_adm: "Up" + sub_interface_opr: "Up" + hello_fctr: "3" + holdtime: "15" + ka_fctr: "3" + ka_time: "30" + transport_address: "System" + - interface: "R1_R3" + adm: "Up" + opr: "Up" + sub_interface: "ipv4" + sub_interface_adm: "Up" + sub_interface_opr: "Up" + hello_fctr: "3" + holdtime: "15" + ka_fctr: "3" + ka_time: "30" + transport_address: "System" + - interface: "R1_R4" + adm: "Up" + opr: "Up" + sub_interface: "ipv4" + sub_interface_adm: "Up" + sub_interface_opr: "Dwn" + hello_fctr: "3" + holdtime: "15" + ka_fctr: "3" + ka_time: "30" + transport_address: "System" diff --git a/tests/alcatel_sros/show_router_pim_interface/show_router_pim_interface.raw b/tests/alcatel_sros/show_router_pim_interface/show_router_pim_interface.raw new file mode 100644 index 0000000000..72b2ccbb19 --- /dev/null +++ b/tests/alcatel_sros/show_router_pim_interface/show_router_pim_interface.raw @@ -0,0 +1,20 @@ + +=============================================================================== +PIM Interfaces ipv4 +=============================================================================== +Interface Adm Opr DR Prty Hello Intvl Mcast Send + DR +------------------------------------------------------------------------------- +R1_R2 Up Up 1 30 auto + 192.0.2.245 +R1_R3 Up Up 1 30 auto + 192.0.2.42 +R1_R4 Up Down 10 30 auto + N/A +R1_R5 Up Down 5 30 auto + N/A +R1_R6 Up Down N/A 30 auto + N/A +------------------------------------------------------------------------------- +Interfaces : 5 Tunnel-Interfaces : 0 +=============================================================================== diff --git a/tests/alcatel_sros/show_router_pim_interface/show_router_pim_interface.yml b/tests/alcatel_sros/show_router_pim_interface/show_router_pim_interface.yml new file mode 100644 index 0000000000..a26dec2f3b --- /dev/null +++ b/tests/alcatel_sros/show_router_pim_interface/show_router_pim_interface.yml @@ -0,0 +1,37 @@ +--- +parsed_sample: + - interface: "R1_R2" + adm: "Up" + opr: "Up" + dr: "192.0.2.245" + dr_prty: "1" + hello_intvl: "30" + mcast_send: "auto" + - interface: "R1_R3" + adm: "Up" + opr: "Up" + dr: "192.0.2.42" + dr_prty: "1" + hello_intvl: "30" + mcast_send: "auto" + - interface: "R1_R4" + adm: "Up" + opr: "Down" + dr: "N/A" + dr_prty: "10" + hello_intvl: "30" + mcast_send: "auto" + - interface: "R1_R5" + adm: "Up" + opr: "Down" + dr: "N/A" + dr_prty: "5" + hello_intvl: "30" + mcast_send: "auto" + - interface: "R1_R6" + adm: "Up" + opr: "Down" + dr: "N/A" + dr_prty: "N/A" + hello_intvl: "30" + mcast_send: "auto"