diff --git a/1-TestPlan/README.md b/1-TestPlan/README.md new file mode 100644 index 0000000..fa943b7 --- /dev/null +++ b/1-TestPlan/README.md @@ -0,0 +1,22 @@ +# Testplan + +We've just received our new test plan, it begins like this: + +## Testcase - Shut no shut BGP + +1. Have BGP configuration on your devices +2. Shut BGP +3. Verify it has been shut +4. Unshut it +5. Verify it is back to its original state + +We want to automate this test plan following these guidelines: + +* Make it independent on specific device, topology, or hostname +* Make it independent on the device configuration +* Make the log readable - easy to understand the failures + * divide the actions + * log useful information +* Be able to re-use this test in combination with other test + +> Good design and coding practices pays off big time in the long run diff --git a/2-Manual/README.md b/2-Manual/README.md new file mode 100644 index 0000000..b59fa03 --- /dev/null +++ b/2-Manual/README.md @@ -0,0 +1,185 @@ +# Manual + +Before starting with our automation, we can first test it on the device +manually. + +## The Typical... Way + +Telnet to the device and issue these commands + +```text +show bgp process vrf all + +router bgp + shutdown + +show bgp process vrf all + +router bgp + no shutdown + +show bgp process vrf all +``` + +The nature of these commands shows that you are trying to accomplish the +following: + +- **Step 1:** study what was there before + +- **Step 2:** perform the action + +- **Step 3:** verify what has changed and is it expected + +- **Step 4:** perform second action + +- **Step 5:** Make sure it recovered as expected + +These steps requires human interaction and expertise to determine what has +changed and not just look to what is expected. + +> What if something else changes that was not anticipated by these steps? + +As engineers, we write automated scripts for a few reasons: + +* Make sure our features react as expected +* Make sure there are no unexpected changes +* We don't want to manually test the samething every day: it's too slow and + too repetitive +* We need to go fast! +* We want the machine to analyze the data and tell us what has changed +* Find bugs + +We should not be looking only at the expected (typical scenario). Rather, +also consider the surrounding aspects as well: the unexpected. + +As an exercise, let's see what has changed: + +We have three snapshot here + +- First one is the initial state +- Second one is the modified state with Bgp shutdown +- Third one is the reverted state with Bgp unshut + +``` +# Initial +mock_device_cli --os nxos --mock_data_dir $VIRTUAL_ENV/testing-bootcamp/mocked_devices/2-manual/initial/playback/nxos --state execute +# Bgp Shutdown +mock_device_cli --os nxos --mock_data_dir $VIRTUAL_ENV/testing-bootcamp/mocked_devices/2-manual/modified/playback/nxos --state execute +# Bgp Unshut +mock_device_cli --os nxos --mock_data_dir $VIRTUAL_ENV/testing-bootcamp/mocked_devices/2-manual/reverted/playback/nxos --state execute +``` + +Even though is a 1 line change, it still remains hard to find all the issues. + + +# pyATS Cli | Manual Automation way + +| Note: As we are using a mock device, no need to perform the action on the device, just skip Step 2 and 5. + +- **Step 1:** take a snapshot + ```bash + pyats parse "show bgp process vrf all" --testbed-file $VIRTUAL_ENV/testing-bootcamp/tb.yaml --output initial --device nx-osv-1 --replay $VIRTUAL_ENV/testing-bootcamp/mocked_devices/2-manual/initial/record/ + ``` + +- **Step 2:** perform the action + ```text + router bgp + shutdown + ``` + +- **Step 3:** take a snapshot + ```bash + pyats parse "show bgp process vrf all" --testbed-file $VIRTUAL_ENV/testing-bootcamp/tb.yaml --output modified --device nx-osv-1 --replay $VIRTUAL_ENV/testing-bootcamp/mocked_devices/2-manual/modified/record/ + ``` + +- **Step 4:** compare the snapshot + ```bash + pyats diff initial modified --output modified_diff + ``` + +- **Step 5:** perform second action + ```text + router bgp + no shutdown + ``` + +- **Step 6:** take a snapshot + ```bash + pyats parse "show bgp process vrf all" --testbed-file $VIRTUAL_ENV/testing-bootcamp/tb.yaml --output recovered --device nx-osv-1 --replay $VIRTUAL_ENV/testing-bootcamp/mocked_devices/2-manual/reverted/record/ + ``` + +- **Step 7:** compare the snapshot + ```bash + pyats diff initial recovered --output recovered_diff + ``` + +| Note: The `--record` is only needed as we are using mocked devices + + +This way, you are being told what has changed at each step: instead of relying +on human expertise (the probablity of error) on finding the issues, you can +make educated decisions based on the automation output instead: focus your +attention where it matters. + +You are being told of all the changes that has happened, so that we can +revert to the original output and ensure nothing else was modified! + +Take a look in the `output/output.txt` directory for the flow and all the log! + +We can see all the values which changed; this is more than expected! Would we +have though about all of those? + +```text +> cat modified_diff/diff_nx-osv-1_show-bgp-process-vrf-all_parsed.txt +--- initial/nx-osv-1_show-bgp-process-vrf-all_parsed.txt ++++ modified/nx-osv-1_show-bgp-process-vrf-all_parsed.txt ++bgp_protocol_state: shutdown +-bgp_protocol_state: running ++bytes_used: 100 +-bytes_used: 200 ++num_attr_entries: 1 +-num_attr_entries: 2 +vrf: + default: + address_family: + ipv4 unicast: + peers: + 1: ++ active_peers: 0 +- active_peers: 1 ++ paths: 1 +- paths: 2 ++ routes: 1 +- routes: 2 ++ num_established_peers: 0 +- num_established_peers: 1 +``` + +You can also parse multiple commands to see this action affect the operation +state of the device. + + +Can we go one level deeper? + +``` +1. pyats learn bgp --testbed-file $VIRTUAL_ENV/testing-bootcamp/tb.yaml --output bgp_initial --device nx-osv-1 --replay $VIRTUAL_ENV/testing-bootcamp/mocked_devices/2-manual/initial/record/ + +2. router bgp + shutdown + +3. pyats learn bgp --testbed-file $VIRTUAL_ENV/testing-bootcamp/tb.yaml --output bgp_modified --device nx-osv-1 --replay $VIRTUAL_ENV/testing-bootcamp/mocked_devices/2-manual/modified/record/ + +4. pyats diff bgp_initial bgp_modified --output bgp_modified_diff + +5. router bgp + no shutdown + +6. pyats learn bgp --testbed-file $VIRTUAL_ENV/testing-bootcamp/tb.yaml --output bgp_recovered --device nx-osv-1 --replay $VIRTUAL_ENV/testing-bootcamp/mocked_devices/2-manual/reverted/record/ + +7. pyats diff bgp_initial bgp_recovered --output bgp_recovered_diff + +``` + +Now instead of just focusing on only 1 command, it learns BGP and related commands, and compare these. + +https://pubhub.devnetcloud.com/media/genie-feature-browser/docs/#/models diff --git a/2-Manual/output/initial/connection_nx-osv-1.txt b/2-Manual/output/initial/connection_nx-osv-1.txt new file mode 100644 index 0000000..65e4262 --- /dev/null +++ b/2-Manual/output/initial/connection_nx-osv-1.txt @@ -0,0 +1,96 @@ +[2019-04-23 17:08:03,573] +++ nx-osv-1 logfile initial/connection_nx-osv-1.txt +++ +[2019-04-23 17:08:03,573] +++ Unicon plugin nxos +++ +[2019-04-23 17:08:03,578] +++ connection to spawn: telnet 172.25.192.90 17002, id: 4620279144 +++ +[2019-04-23 17:08:03,579] connection to nx-osv-1 +Trying 172.25.192.90... +Connected to asg-virl-ubuntu.cisco.com. +Escape character is '^]'. + + nx-osv-1# +[2019-04-23 17:08:04,468] +++ initializing handle +++ +[2019-04-23 17:08:04,469] +++ nx-osv-1: executing command 'term length 0' +++ +term length 0 + nx-osv-1# +[2019-04-23 17:08:04,646] +++ nx-osv-1: executing command 'term width 511' +++ +term width 511 + nx-osv-1# +[2019-04-23 17:08:04,936] +++ nx-osv-1: executing command 'terminal session-timeout 0' +++ +terminal session-timeout 0 + nx-osv-1# +[2019-04-23 17:08:05,122] +++ nx-osv-1: config +++ +config term +Enter configuration commands, one per line. End with CNTL/Z. + nx-osv-1(config)# no logging console + nx-osv-1(config)# line console + nx-osv-1(config-console)# exec-timeout 0 + nx-osv-1(config-console)# terminal width 511 + nx-osv-1(config-console)# end + nx-osv-1# +[2019-04-23 17:08:06,714] +++ nx-osv-1: executing command 'show bgp process vrf all' +++ +show bgp process vrf all + +BGP Process Information +BGP Process ID : 8610 +BGP Protocol Started, reason: : configuration +BGP Protocol Tag : 65000 +BGP Protocol State : Running +BGP MMODE : Not Initialized +BGP Memory State : OK +BGP asformat : asplain + +BGP attributes information +Number of attribute entries : 2 +HWM of attribute entries : 2 +Bytes used by entries : 200 +Entries pending delete : 0 +HWM of entries pending delete : 0 +BGP paths per attribute HWM : 1 +BGP AS path entries : 0 +Bytes used by AS path entries : 0 + +Information regarding configured VRFs: + +BGP Information for VRF default +VRF Id : 1 +VRF state : UP +Router-ID : 10.2.2.2 +Configured Router-ID : 10.2.2.2 +Confed-ID : 0 +Cluster-ID : 0.0.0.0 +No. of configured peers : 1 +No. of pending config peers : 0 +No. of established peers : 1 +VRF RD : Not configured + + Information for address family IPv4 Unicast in VRF default + Table Id : 1 + Table state : UP + Peers Active-peers Routes Paths Networks Aggregates + 1 1 2 2 1 0 + + Redistribution + None + + Wait for IGP convergence is not configured + + + Nexthop trigger-delay + critical 3000 ms + non-critical 10000 ms + + Information for address family IPv6 Unicast in VRF default + Table Id : 80000001 + Table state : UP + Peers Active-peers Routes Paths Networks Aggregates + 0 0 0 0 0 0 + + Redistribution + None + + Wait for IGP convergence is not configured + + + Nexthop trigger-delay + critical 3000 ms + non-critical 10000 ms + nx-osv-1# diff --git a/2-Manual/output/initial/nx-osv-1_show-bgp-process-vrf-all_console.txt b/2-Manual/output/initial/nx-osv-1_show-bgp-process-vrf-all_console.txt new file mode 100644 index 0000000..584844c --- /dev/null +++ b/2-Manual/output/initial/nx-osv-1_show-bgp-process-vrf-all_console.txt @@ -0,0 +1,68 @@ ++++ nx-osv-1: executing command 'show bgp process vrf all' +++ +show bgp process vrf all + +BGP Process Information +BGP Process ID : 8610 +BGP Protocol Started, reason: : configuration +BGP Protocol Tag : 65000 +BGP Protocol State : Running +BGP MMODE : Not Initialized +BGP Memory State : OK +BGP asformat : asplain + +BGP attributes information +Number of attribute entries : 2 +HWM of attribute entries : 2 +Bytes used by entries : 200 +Entries pending delete : 0 +HWM of entries pending delete : 0 +BGP paths per attribute HWM : 1 +BGP AS path entries : 0 +Bytes used by AS path entries : 0 + +Information regarding configured VRFs: + +BGP Information for VRF default +VRF Id : 1 +VRF state : UP +Router-ID : 10.2.2.2 +Configured Router-ID : 10.2.2.2 +Confed-ID : 0 +Cluster-ID : 0.0.0.0 +No. of configured peers : 1 +No. of pending config peers : 0 +No. of established peers : 1 +VRF RD : Not configured + + Information for address family IPv4 Unicast in VRF default + Table Id : 1 + Table state : UP + Peers Active-peers Routes Paths Networks Aggregates + 1 1 2 2 1 0 + + Redistribution + None + + Wait for IGP convergence is not configured + + + Nexthop trigger-delay + critical 3000 ms + non-critical 10000 ms + + Information for address family IPv6 Unicast in VRF default + Table Id : 80000001 + Table state : UP + Peers Active-peers Routes Paths Networks Aggregates + 0 0 0 0 0 0 + + Redistribution + None + + Wait for IGP convergence is not configured + + + Nexthop trigger-delay + critical 3000 ms + non-critical 10000 ms + nx-osv-1# diff --git a/2-Manual/output/initial/nx-osv-1_show-bgp-process-vrf-all_parsed.txt b/2-Manual/output/initial/nx-osv-1_show-bgp-process-vrf-all_parsed.txt new file mode 100644 index 0000000..795fda2 --- /dev/null +++ b/2-Manual/output/initial/nx-osv-1_show-bgp-process-vrf-all_parsed.txt @@ -0,0 +1,67 @@ +{ + "bgp_as_path_entries": 0, + "bgp_asformat": "asplain", + "bgp_memory_state": "ok", + "bgp_mmode": "Not Initialized", + "bgp_paths_per_hwm_attr": 1, + "bgp_pid": 8610, + "bgp_protocol_started_reason": "configuration", + "bgp_protocol_state": "running", + "bgp_tag": "65000", + "bytes_used": 200, + "bytes_used_as_path_entries": 0, + "entries_pending_delete": 0, + "hwm_attr_entries": 2, + "hwm_entries_pending_delete": 0, + "num_attr_entries": 2, + "vrf": { + "default": { + "address_family": { + "ipv4 unicast": { + "next_hop_trigger_delay": { + "critical": 3000, + "non_critical": 10000 + }, + "peers": { + "1": { + "active_peers": 1, + "aggregates": 0, + "networks": 1, + "paths": 2, + "routes": 2 + } + }, + "table_id": "0x1", + "table_state": "up" + }, + "ipv6 unicast": { + "next_hop_trigger_delay": { + "critical": 3000, + "non_critical": 10000 + }, + "peers": { + "0": { + "active_peers": 0, + "aggregates": 0, + "networks": 0, + "paths": 0, + "routes": 0 + } + }, + "table_id": "0x80000001", + "table_state": "up" + } + }, + "cluster_id": "0.0.0.0", + "conf_router_id": "10.2.2.2", + "confed_id": 0, + "num_conf_peers": 1, + "num_established_peers": 1, + "num_pending_conf_peers": 0, + "router_id": "10.2.2.2", + "vrf_id": "1", + "vrf_rd": "not configured", + "vrf_state": "up" + } + } +} \ No newline at end of file diff --git a/2-Manual/output/modified/connection_nx-osv-1.txt b/2-Manual/output/modified/connection_nx-osv-1.txt new file mode 100644 index 0000000..2d29fc1 --- /dev/null +++ b/2-Manual/output/modified/connection_nx-osv-1.txt @@ -0,0 +1,98 @@ +[2019-04-23 17:21:10,963] +++ nx-osv-1 logfile modified/connection_nx-osv-1.txt +++ +[2019-04-23 17:21:10,963] +++ Unicon plugin nxos +++ +[2019-04-23 17:21:10,966] +++ connection to spawn: telnet 172.25.192.90 17002, id: 4648336688 +++ +[2019-04-23 17:21:10,967] connection to nx-osv-1 +Trying 172.25.192.90... +Connected to asg-virl-ubuntu.cisco.com. +Escape character is '^]'. + + nx-osv-1(config-router)# +[2019-04-23 17:21:11,811] +++ initializing handle +++ +end + nx-osv-1# +[2019-04-23 17:21:12,091] +++ nx-osv-1: executing command 'term length 0' +++ +term length 0 + nx-osv-1# +[2019-04-23 17:21:12,265] +++ nx-osv-1: executing command 'term width 511' +++ +term width 511 + nx-osv-1# +[2019-04-23 17:21:12,468] +++ nx-osv-1: executing command 'terminal session-timeout 0' +++ +terminal session-timeout 0 + nx-osv-1# +[2019-04-23 17:21:12,642] +++ nx-osv-1: config +++ +config term +Enter configuration commands, one per line. End with CNTL/Z. + nx-osv-1(config)# no logging console + nx-osv-1(config)# line console + nx-osv-1(config-console)# exec-timeout 0 + nx-osv-1(config-console)# terminal width 511 + nx-osv-1(config-console)# end + nx-osv-1# +[2019-04-23 17:21:14,241] +++ nx-osv-1: executing command 'show bgp process vrf all' +++ +show bgp process vrf all + +BGP Process Information +BGP Process ID : 8610 +BGP Protocol Started, reason: : configuration +BGP Protocol Tag : 65000 +BGP Protocol State : Shutdown +BGP MMODE : Not Initialized +BGP Memory State : OK +BGP asformat : asplain + +BGP attributes information +Number of attribute entries : 1 +HWM of attribute entries : 2 +Bytes used by entries : 100 +Entries pending delete : 0 +HWM of entries pending delete : 0 +BGP paths per attribute HWM : 1 +BGP AS path entries : 0 +Bytes used by AS path entries : 0 + +Information regarding configured VRFs: + +BGP Information for VRF default +VRF Id : 1 +VRF state : UP +Router-ID : 10.2.2.2 +Configured Router-ID : 10.2.2.2 +Confed-ID : 0 +Cluster-ID : 0.0.0.0 +No. of configured peers : 1 +No. of pending config peers : 0 +No. of established peers : 0 +VRF RD : Not configured + + Information for address family IPv4 Unicast in VRF default + Table Id : 1 + Table state : UP + Peers Active-peers Routes Paths Networks Aggregates + 1 0 1 1 1 0 + + Redistribution + None + + Wait for IGP convergence is not configured + + + Nexthop trigger-delay + critical 3000 ms + non-critical 10000 ms + + Information for address family IPv6 Unicast in VRF default + Table Id : 80000001 + Table state : UP + Peers Active-peers Routes Paths Networks Aggregates + 0 0 0 0 0 0 + + Redistribution + None + + Wait for IGP convergence is not configured + + + Nexthop trigger-delay + critical 3000 ms + non-critical 10000 ms + nx-osv-1# diff --git a/2-Manual/output/modified/nx-osv-1_show-bgp-process-vrf-all_console.txt b/2-Manual/output/modified/nx-osv-1_show-bgp-process-vrf-all_console.txt new file mode 100644 index 0000000..7fd791f --- /dev/null +++ b/2-Manual/output/modified/nx-osv-1_show-bgp-process-vrf-all_console.txt @@ -0,0 +1,68 @@ ++++ nx-osv-1: executing command 'show bgp process vrf all' +++ +show bgp process vrf all + +BGP Process Information +BGP Process ID : 8610 +BGP Protocol Started, reason: : configuration +BGP Protocol Tag : 65000 +BGP Protocol State : Shutdown +BGP MMODE : Not Initialized +BGP Memory State : OK +BGP asformat : asplain + +BGP attributes information +Number of attribute entries : 1 +HWM of attribute entries : 2 +Bytes used by entries : 100 +Entries pending delete : 0 +HWM of entries pending delete : 0 +BGP paths per attribute HWM : 1 +BGP AS path entries : 0 +Bytes used by AS path entries : 0 + +Information regarding configured VRFs: + +BGP Information for VRF default +VRF Id : 1 +VRF state : UP +Router-ID : 10.2.2.2 +Configured Router-ID : 10.2.2.2 +Confed-ID : 0 +Cluster-ID : 0.0.0.0 +No. of configured peers : 1 +No. of pending config peers : 0 +No. of established peers : 0 +VRF RD : Not configured + + Information for address family IPv4 Unicast in VRF default + Table Id : 1 + Table state : UP + Peers Active-peers Routes Paths Networks Aggregates + 1 0 1 1 1 0 + + Redistribution + None + + Wait for IGP convergence is not configured + + + Nexthop trigger-delay + critical 3000 ms + non-critical 10000 ms + + Information for address family IPv6 Unicast in VRF default + Table Id : 80000001 + Table state : UP + Peers Active-peers Routes Paths Networks Aggregates + 0 0 0 0 0 0 + + Redistribution + None + + Wait for IGP convergence is not configured + + + Nexthop trigger-delay + critical 3000 ms + non-critical 10000 ms + nx-osv-1# diff --git a/2-Manual/output/modified/nx-osv-1_show-bgp-process-vrf-all_parsed.txt b/2-Manual/output/modified/nx-osv-1_show-bgp-process-vrf-all_parsed.txt new file mode 100644 index 0000000..06beb1b --- /dev/null +++ b/2-Manual/output/modified/nx-osv-1_show-bgp-process-vrf-all_parsed.txt @@ -0,0 +1,67 @@ +{ + "bgp_as_path_entries": 0, + "bgp_asformat": "asplain", + "bgp_memory_state": "ok", + "bgp_mmode": "Not Initialized", + "bgp_paths_per_hwm_attr": 1, + "bgp_pid": 8610, + "bgp_protocol_started_reason": "configuration", + "bgp_protocol_state": "shutdown", + "bgp_tag": "65000", + "bytes_used": 100, + "bytes_used_as_path_entries": 0, + "entries_pending_delete": 0, + "hwm_attr_entries": 2, + "hwm_entries_pending_delete": 0, + "num_attr_entries": 1, + "vrf": { + "default": { + "address_family": { + "ipv4 unicast": { + "next_hop_trigger_delay": { + "critical": 3000, + "non_critical": 10000 + }, + "peers": { + "1": { + "active_peers": 0, + "aggregates": 0, + "networks": 1, + "paths": 1, + "routes": 1 + } + }, + "table_id": "0x1", + "table_state": "up" + }, + "ipv6 unicast": { + "next_hop_trigger_delay": { + "critical": 3000, + "non_critical": 10000 + }, + "peers": { + "0": { + "active_peers": 0, + "aggregates": 0, + "networks": 0, + "paths": 0, + "routes": 0 + } + }, + "table_id": "0x80000001", + "table_state": "up" + } + }, + "cluster_id": "0.0.0.0", + "conf_router_id": "10.2.2.2", + "confed_id": 0, + "num_conf_peers": 1, + "num_established_peers": 0, + "num_pending_conf_peers": 0, + "router_id": "10.2.2.2", + "vrf_id": "1", + "vrf_rd": "not configured", + "vrf_state": "up" + } + } +} \ No newline at end of file diff --git a/2-Manual/output/modified_diff/diff_nx-osv-1_show-bgp-process-vrf-all_parsed.txt b/2-Manual/output/modified_diff/diff_nx-osv-1_show-bgp-process-vrf-all_parsed.txt new file mode 100644 index 0000000..204d2e6 --- /dev/null +++ b/2-Manual/output/modified_diff/diff_nx-osv-1_show-bgp-process-vrf-all_parsed.txt @@ -0,0 +1,22 @@ +--- initial/nx-osv-1_show-bgp-process-vrf-all_parsed.txt ++++ modified/nx-osv-1_show-bgp-process-vrf-all_parsed.txt ++bgp_protocol_state: shutdown +-bgp_protocol_state: running ++bytes_used: 100 +-bytes_used: 200 ++num_attr_entries: 1 +-num_attr_entries: 2 +vrf: + default: + address_family: + ipv4 unicast: + peers: + 1: ++ active_peers: 0 +- active_peers: 1 ++ paths: 1 +- paths: 2 ++ routes: 1 +- routes: 2 ++ num_established_peers: 0 +- num_established_peers: 1 \ No newline at end of file diff --git a/2-Manual/output/output.txt b/2-Manual/output/output.txt new file mode 100644 index 0000000..af4e420 --- /dev/null +++ b/2-Manual/output/output.txt @@ -0,0 +1,176 @@ +> genie parse "show bgp process vrf all" --testbed-file ../tb.yaml --output initial --device nx-osv-1 +100%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 1/1 [00:00<00:00, 1.04it/s] ++==============================================================================+ +| Genie Parse Summary for nx-osv-1 | ++==============================================================================+ +| Connected to nx-osv-1 | +| - Log: initial/connection_nx-osv-1.txt | +|------------------------------------------------------------------------------| +| Parsed command 'show bgp process vrf all' | +| - Parsed structure: initial/nx-osv-1_show-bgp-process-vrf-all_parsed.txt | +| - Device Console: initial/nx-osv-1_show-bgp-process-vrf-all_console.txt | +|------------------------------------------------------------------------------| + +> telnet 172.25.192.90 17002 +Trying 172.25.192.90... + +Connected to asg-virl-ubuntu.cisco.com. +Escape character is '^]'. + +nx-osv-1# +nx-osv-1# show bgp process vrf all + +BGP Process Information +BGP Process ID : 8610 +BGP Protocol Started, reason: : configuration +BGP Protocol Tag : 65000 +BGP Protocol State : Running +BGP MMODE : Not Initialized +BGP Memory State : OK +BGP asformat : asplain + +BGP attributes information +Number of attribute entries : 2 +HWM of attribute entries : 2 +Bytes used by entries : 200 +Entries pending delete : 0 +HWM of entries pending delete : 0 +BGP paths per attribute HWM : 1 +BGP AS path entries : 0 +Bytes used by AS path entries : 0 + +Information regarding configured VRFs: + +BGP Information for VRF default +VRF Id : 1 +VRF state : UP +Router-ID : 10.2.2.2 +Configured Router-ID : 10.2.2.2 +Confed-ID : 0 +Cluster-ID : 0.0.0.0 +No. of configured peers : 1 +No. of pending config peers : 0 +No. of established peers : 1 +VRF RD : Not configured + + Information for address family IPv4 Unicast in VRF default + Table Id : 1 + Table state : UP + Peers Active-peers Routes Paths Networks Aggregates + 1 1 2 2 1 0 + + Redistribution + None + + Wait for IGP convergence is not configured + + + Nexthop trigger-delay + critical 3000 ms + non-critical 10000 ms + + Information for address family IPv6 Unicast in VRF default + Table Id : 80000001 + Table state : UP + Peers Active-peers Routes Paths Networks Aggregates + 0 0 0 0 0 0 + + Redistribution + None + + Wait for IGP convergence is not configured + + + Nexthop trigger-delay + critical 3000 ms + non-critical 10000 ms + +nx-osv-1# conf t +Enter configuration commands, one per line. End with CNTL/Z. +nx-osv-1(config)# router bgp 65000 +nx-osv-1(config-router)# shutdown +nx-osv-1(config-router)# +telnet> q +Connection closed. + +> genie parse "show bgp process vrf all" --testbed-file ../tb.yaml --output modified --device nx-osv-1 +100%|███████████████████████████████████████████████████████████████████████████████| 1/1 [00:00<00:00, 1.36it/s] ++==============================================================================+ +| Genie Parse Summary for nx-osv-1 | ++==============================================================================+ +| Connected to nx-osv-1 | +| - Log: modified/connection_nx-osv-1.txt | +|------------------------------------------------------------------------------| +| Parsed command 'show bgp process vrf all' | +| - Parsed structure: modified/nx-osv-1_show-bgp-process-vrf-all_parsed.txt | +| - Device Console: modified/nx-osv-1_show-bgp-process-vrf-all_console.txt | +|------------------------------------------------------------------------------| + +> genie diff initial modified --output modified_diff +1it [00:00, 256.34it/s] ++==============================================================================+ +| Genie Diff Summary between directories initial/ and modified/ | ++==============================================================================+ +| File: nx-osv-1_show-bgp-process-vrf-all_parsed.txt | +| - Diff can be found at modified_diff/diff_nx-osv-1_show-bgp-process-vrf- | +| all_parsed.txt | +|------------------------------------------------------------------------------| + +> cat modified_diff/diff_nx-osv-1_show-bgp-process-vrf-all_parsed.txt +--- initial/nx-osv-1_show-bgp-process-vrf-all_parsed.txt ++++ modified/nx-osv-1_show-bgp-process-vrf-all_parsed.txt ++bgp_protocol_state: shutdown +-bgp_protocol_state: running ++bytes_used: 100 +-bytes_used: 200 ++num_attr_entries: 1 +-num_attr_entries: 2 +vrf: + default: + address_family: + ipv4 unicast: + peers: + 1: ++ active_peers: 0 +- active_peers: 1 ++ paths: 1 +- paths: 2 ++ routes: 1 +- routes: 2 ++ num_established_peers: 0 + +> telnet 172.25.192.90 17002 +Trying 172.25.192.90... +Connected to asg-virl-ubuntu.cisco.com. +Escape character is '^]'. + +nx-osv-1# +nx-osv-1# conf t +Enter configuration commands, one per line. End with CNTL/Z. +nx-osv-1(config)# router bgp 65000 +nx-osv-1(config-router)# no shutdown +nx-osv-1(config-router)# +telnet> q +Connection closed. + +> genie parse "show bgp process vrf all" --testbed-file ../tb.yaml --output recovered --device nx-osv-1 +100%|███████████████████████████████████████████████████████████████████████████████| 1/1 [00:00<00:00, 1.36it/s] ++==============================================================================+ +| Genie Parse Summary for nx-osv-1 | ++==============================================================================+ +| Connected to nx-osv-1 | +| - Log: recovered/connection_nx-osv-1.txt | +|------------------------------------------------------------------------------| +| Parsed command 'show bgp process vrf all' | +| - Parsed structure: recovered/nx-osv-1_show-bgp-process-vrf-all_parsed.txt | +| - Device Console: recovered/nx-osv-1_show-bgp-process-vrf-all_console.txt | +|------------------------------------------------------------------------------| + +> genie diff initial recovered --output recovered_diff +1it [00:00, 543.51it/s] ++==============================================================================+ +| Genie Diff Summary between directories initial/ and recovered/ | ++==============================================================================+ +| File: nx-osv-1_show-bgp-process-vrf-all_parsed.txt | +| - Identical | +|------------------------------------------------------------------------------| diff --git a/2-Manual/output/recovered/connection_nx-osv-1.txt b/2-Manual/output/recovered/connection_nx-osv-1.txt new file mode 100644 index 0000000..9767ae1 --- /dev/null +++ b/2-Manual/output/recovered/connection_nx-osv-1.txt @@ -0,0 +1,98 @@ +[2019-04-23 17:23:37,205] +++ nx-osv-1 logfile recovered/connection_nx-osv-1.txt +++ +[2019-04-23 17:23:37,205] +++ Unicon plugin nxos +++ +[2019-04-23 17:23:37,209] +++ connection to spawn: telnet 172.25.192.90 17002, id: 4446362928 +++ +[2019-04-23 17:23:37,210] connection to nx-osv-1 +Trying 172.25.192.90... +Connected to asg-virl-ubuntu.cisco.com. +Escape character is '^]'. + + nx-osv-1(config-router)# +[2019-04-23 17:23:38,126] +++ initializing handle +++ +end + nx-osv-1# +[2019-04-23 17:23:38,314] +++ nx-osv-1: executing command 'term length 0' +++ +term length 0 + nx-osv-1# +[2019-04-23 17:23:38,495] +++ nx-osv-1: executing command 'term width 511' +++ +term width 511 + nx-osv-1# +[2019-04-23 17:23:38,672] +++ nx-osv-1: executing command 'terminal session-timeout 0' +++ +terminal session-timeout 0 + nx-osv-1# +[2019-04-23 17:23:38,863] +++ nx-osv-1: config +++ +config term +Enter configuration commands, one per line. End with CNTL/Z. + nx-osv-1(config)# no logging console + nx-osv-1(config)# line console + nx-osv-1(config-console)# exec-timeout 0 + nx-osv-1(config-console)# terminal width 511 + nx-osv-1(config-console)# end + nx-osv-1# +[2019-04-23 17:23:40,520] +++ nx-osv-1: executing command 'show bgp process vrf all' +++ +show bgp process vrf all + +BGP Process Information +BGP Process ID : 8610 +BGP Protocol Started, reason: : configuration +BGP Protocol Tag : 65000 +BGP Protocol State : Running +BGP MMODE : Not Initialized +BGP Memory State : OK +BGP asformat : asplain + +BGP attributes information +Number of attribute entries : 2 +HWM of attribute entries : 2 +Bytes used by entries : 200 +Entries pending delete : 0 +HWM of entries pending delete : 0 +BGP paths per attribute HWM : 1 +BGP AS path entries : 0 +Bytes used by AS path entries : 0 + +Information regarding configured VRFs: + +BGP Information for VRF default +VRF Id : 1 +VRF state : UP +Router-ID : 10.2.2.2 +Configured Router-ID : 10.2.2.2 +Confed-ID : 0 +Cluster-ID : 0.0.0.0 +No. of configured peers : 1 +No. of pending config peers : 0 +No. of established peers : 1 +VRF RD : Not configured + + Information for address family IPv4 Unicast in VRF default + Table Id : 1 + Table state : UP + Peers Active-peers Routes Paths Networks Aggregates + 1 1 2 2 1 0 + + Redistribution + None + + Wait for IGP convergence is not configured + + + Nexthop trigger-delay + critical 3000 ms + non-critical 10000 ms + + Information for address family IPv6 Unicast in VRF default + Table Id : 80000001 + Table state : UP + Peers Active-peers Routes Paths Networks Aggregates + 0 0 0 0 0 0 + + Redistribution + None + + Wait for IGP convergence is not configured + + + Nexthop trigger-delay + critical 3000 ms + non-critical 10000 ms + nx-osv-1# diff --git a/2-Manual/output/recovered/nx-osv-1_show-bgp-process-vrf-all_console.txt b/2-Manual/output/recovered/nx-osv-1_show-bgp-process-vrf-all_console.txt new file mode 100644 index 0000000..584844c --- /dev/null +++ b/2-Manual/output/recovered/nx-osv-1_show-bgp-process-vrf-all_console.txt @@ -0,0 +1,68 @@ ++++ nx-osv-1: executing command 'show bgp process vrf all' +++ +show bgp process vrf all + +BGP Process Information +BGP Process ID : 8610 +BGP Protocol Started, reason: : configuration +BGP Protocol Tag : 65000 +BGP Protocol State : Running +BGP MMODE : Not Initialized +BGP Memory State : OK +BGP asformat : asplain + +BGP attributes information +Number of attribute entries : 2 +HWM of attribute entries : 2 +Bytes used by entries : 200 +Entries pending delete : 0 +HWM of entries pending delete : 0 +BGP paths per attribute HWM : 1 +BGP AS path entries : 0 +Bytes used by AS path entries : 0 + +Information regarding configured VRFs: + +BGP Information for VRF default +VRF Id : 1 +VRF state : UP +Router-ID : 10.2.2.2 +Configured Router-ID : 10.2.2.2 +Confed-ID : 0 +Cluster-ID : 0.0.0.0 +No. of configured peers : 1 +No. of pending config peers : 0 +No. of established peers : 1 +VRF RD : Not configured + + Information for address family IPv4 Unicast in VRF default + Table Id : 1 + Table state : UP + Peers Active-peers Routes Paths Networks Aggregates + 1 1 2 2 1 0 + + Redistribution + None + + Wait for IGP convergence is not configured + + + Nexthop trigger-delay + critical 3000 ms + non-critical 10000 ms + + Information for address family IPv6 Unicast in VRF default + Table Id : 80000001 + Table state : UP + Peers Active-peers Routes Paths Networks Aggregates + 0 0 0 0 0 0 + + Redistribution + None + + Wait for IGP convergence is not configured + + + Nexthop trigger-delay + critical 3000 ms + non-critical 10000 ms + nx-osv-1# diff --git a/2-Manual/output/recovered/nx-osv-1_show-bgp-process-vrf-all_parsed.txt b/2-Manual/output/recovered/nx-osv-1_show-bgp-process-vrf-all_parsed.txt new file mode 100644 index 0000000..795fda2 --- /dev/null +++ b/2-Manual/output/recovered/nx-osv-1_show-bgp-process-vrf-all_parsed.txt @@ -0,0 +1,67 @@ +{ + "bgp_as_path_entries": 0, + "bgp_asformat": "asplain", + "bgp_memory_state": "ok", + "bgp_mmode": "Not Initialized", + "bgp_paths_per_hwm_attr": 1, + "bgp_pid": 8610, + "bgp_protocol_started_reason": "configuration", + "bgp_protocol_state": "running", + "bgp_tag": "65000", + "bytes_used": 200, + "bytes_used_as_path_entries": 0, + "entries_pending_delete": 0, + "hwm_attr_entries": 2, + "hwm_entries_pending_delete": 0, + "num_attr_entries": 2, + "vrf": { + "default": { + "address_family": { + "ipv4 unicast": { + "next_hop_trigger_delay": { + "critical": 3000, + "non_critical": 10000 + }, + "peers": { + "1": { + "active_peers": 1, + "aggregates": 0, + "networks": 1, + "paths": 2, + "routes": 2 + } + }, + "table_id": "0x1", + "table_state": "up" + }, + "ipv6 unicast": { + "next_hop_trigger_delay": { + "critical": 3000, + "non_critical": 10000 + }, + "peers": { + "0": { + "active_peers": 0, + "aggregates": 0, + "networks": 0, + "paths": 0, + "routes": 0 + } + }, + "table_id": "0x80000001", + "table_state": "up" + } + }, + "cluster_id": "0.0.0.0", + "conf_router_id": "10.2.2.2", + "confed_id": 0, + "num_conf_peers": 1, + "num_established_peers": 1, + "num_pending_conf_peers": 0, + "router_id": "10.2.2.2", + "vrf_id": "1", + "vrf_rd": "not configured", + "vrf_state": "up" + } + } +} \ No newline at end of file diff --git a/3-Automate/README.md b/3-Automate/README.md new file mode 100644 index 0000000..5aca466 --- /dev/null +++ b/3-Automate/README.md @@ -0,0 +1,134 @@ +# Automation + +Let's automate it now! + +Before we go ahead and code anything, let's re-iterate our goal: + +* Make it independent on specific device, topology, or hostname +* Make it independent on the device configuration +* Make the log readable - easy to understand the failures + * divide the actions + * log useful information +* Be able to re-use this test in combination with other test + +Grow our libraries and make all future automation much easier! + +Here are the steps: + +1. Create a Trigger +2. Hook it up in the Yaml files +3. Run it + + +## 1. Create a Trigger + +The trigger is already pre-created for you, let's go through it. +Open `triggers/shutnoshut/bgp/nxos/shutnoshut.py`. + +This is the "trigger" that performs a modify action. It looks the same as +any other pyATS Testcase, however not tied to a script. It can be re-used time +and time again in any test scripts. + +Yes, triggers are independent pyATS testcases that can be loaded and used where +needed. We build a consistent library of testcases so whenever +some testing is needed, just pull out and use it! + +We want a library of testcase for the same reason that we want library in programing. + +**Re-use them.** + +## 2. Hook it up in the YAML files + +Now that the trigger has been created, lets run it. In this concept of +"pool/library of testcases", because everything is reusable, and all you need to to is "pick and choose" the testcases you want to run, it means that: + +- there is no testscript +- we define all the available "testcases" we can run in a YAML file + +Check both `3-Automate/run/verification_datafile.yaml` and `3-Automate/run/Trigger_datafile.yaml` + +The framework knows how to read the syntax of these YAML file. For all intents, think of these YAML files as your "test library database" + +## 3. Run it + +It runs the same way as another pyATS script: using the job file. It can also be run with the `pyats run genie` command, which removes the need of a job file. + +```bash +cd run +cat job.py +``` + +Open up the file to see the content and how we mention what we want to execute. + +```python +gRun(trigger_uids=['TriggerDemoShutNoShutBgp'], + trigger_datafile='trigger_datafile.yaml') +``` + +> `gRun()` API effectively tells the engine to run "these testcases" from +> "that pool of test cases as a suite" + +And to run it + +```bash +pyats run job job.py --testbed-file ../../tb.yaml --liveview --replay $VIRTUAL_ENV/testing-bootcamp/mocked_devices/3-automate/one/ +``` + +That's it! Our re-usable testcase is now running. With the ``--liveview`` field, a logviewer will pop up at runtime. + +Right now our trigger verify only what is expected. The next step is - how do we verify also the unexpected as we've seen in the previous manual step? + +Try this by uncommenting the comments in the trigger code. + +And this is also a perfect place to introduce our Verification concept: + +```python +# in job file +gRun(verification_uids=['Verify_BgpProcessVrfAll.uut'], + trigger_uids=['TriggerDemoShutNoShutBgp'], + trigger_datafile='trigger_datafile.yaml') +``` + +The code that was uncommented works, instead of just verifying the shut/no shut +of Bgp it will verify the other keys in that same show command, to make sure +they are the same as initially. + +However, what if tomorrow you want to verify Ospf? Or 5 new commands. You +always need to go back and modify your Testcase, which is NOT what we want to +do. + +By adding these checks within your testcase, your testcase becomes less and less re-usable. + +Go back and comment out the uncommented code from earlier. + +Instead, we can use the power of Verification. + +A verification is another Testcase which is ran AROUND a Trigger. It runs before and after. + +They are to be added dynamically either a Global Verification or Local verification. + +- Global: Run before and after every Trigger +- Local: Run before and after specific Trigger + +Let's modify our job file to now call Verify_Bgp + +| Note: Any of the verification defined on this page can be used: https://pubhub.devnetcloud.com/media/testing-feature-browser/docs/#/verifications + +```python +# in job file +gRun(verification_uids=['Verify_Bgp.uut'], + trigger_uids=['TriggerDemoShutNoShutBgp'], + verification_datafile='verification_datafile.yaml', + trigger_datafile='trigger_datafile.yaml') +``` + +```bash +pyats run job job.py --testbed-file ../../tb.yaml --replay $VIRTUAL_ENV/testing-bootcamp/mocked_devices/3-automate/three/ +``` + +We've seen a few ways to run this trigger, all are accomplished using only libraries: +- pick and choose what we need +- and create test suite using `gRun()` + +Nothing is hard-coded, everything is reusable, and the flow is exactly as +we've determined. diff --git a/3-Automate/__init__.py b/3-Automate/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/3-Automate/output/TaksLog1.html b/3-Automate/output/TaksLog1.html new file mode 100644 index 0000000..f4f5306 --- /dev/null +++ b/3-Automate/output/TaksLog1.html @@ -0,0 +1,4216 @@ + + + + + LogViewer + + + + + + + + job + + + + +
+ + + +
+
+
+
+
+
    + +
  • +
    + arrow_drop_down +
    Overview
    +
    +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Job Name:job
    Start Time:2019-04-28T17:46:19
    End Time:2019-04-28T17:46:54
    Submitter:jeaubin
    Run Time:0:00:34
    Testbed:ma_new_tb
    +
    +
    +
    +
    +
    +
    +
  • + + + + + +
  • + + +
    + + arrow_drop_down +
    Task-1: genie_testscript.py
    arrow_drop_down + + +
    + expand_more + expand_less +
    +
    +
    + + + + +
      + + +
    • +
      + + arrow_drop_down + commonSetup + + +
      + expand_more + expand_less +
      + PASSED + 0:00:16 +
      +
      + + + +
        + + + + +
      • +
        + + arrow_drop_down + connect + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:04 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          16: JEAUBIN-M-43JF: 2019-04-28T17:46:30: %AETEST-6-INFO: %[pid=40378][pname=Task-1]: Starting subsection connect
          +17: JEAUBIN-M-43JF: 2019-04-28T17:46:30: %GENIE-6-INFO: %[pid=40378][pname=Task-1]: Connect to all the devices described in the 'Mapping Datafile' and 'Testbed file': csr1000v-1, nx-osv-1
          +18: JEAUBIN-M-43JF: 2019-04-28T17:46:30: %GENIE-6-INFO: %[pid=40378][pname=Task-1]: For more information visit Genie connection section documentation: http://wwwin-pyats.cisco.com/cisco-shared/genie/latest/harness/user/gettingstarted.html#set-up
          +
          +19: JEAUBIN-M-43JF: 2019-04-28T17:46:30: %UNICON-6-INFO: %[pid=40378][pname=Task-1]: +++ csr1000v-1 logfile /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr28_17:46:18.554146/csr1000v-1-cli-1556498790.log +++
          +20: JEAUBIN-M-43JF: 2019-04-28T17:46:30: %UNICON-6-INFO: %[pid=40378][pname=Task-1]: +++ Unicon plugin iosxe +++
          +21: JEAUBIN-M-43JF: 2019-04-28T17:46:30: %UNICON-6-INFO: %[pid=40378][pname=Task-1]: +++ connection to spawn: telnet 172.25.192.90 17000, id: 4569833936 +++
          +22: JEAUBIN-M-43JF: 2019-04-28T17:46:31: %UNICON-6-INFO: %[pid=40378][pname=Task-1]: connection to csr1000v-1
          +Trying 172.25.192.90...
          +Connected to asg-virl-ubuntu.cisco.com.
          +Escape character is '^]'.
          +
          +csr1000v-1#
          +26: JEAUBIN-M-43JF: 2019-04-28T17:46:31: %UNICON-6-INFO: %[pid=40378][pname=Task-1]: +++ initializing handle +++
          +27: JEAUBIN-M-43JF: 2019-04-28T17:46:31: %UNICON-6-INFO: %[pid=40378][pname=Task-1]: +++ csr1000v-1: executing command 'term length 0' +++
          +term length 0
          +csr1000v-1#
          +29: JEAUBIN-M-43JF: 2019-04-28T17:46:31: %UNICON-6-INFO: %[pid=40378][pname=Task-1]: +++ csr1000v-1: executing command 'term width 0' +++
          +term width 0
          +csr1000v-1#
          +31: JEAUBIN-M-43JF: 2019-04-28T17:46:32: %UNICON-6-INFO: %[pid=40378][pname=Task-1]: +++ csr1000v-1: config +++
          +config term
          +Enter configuration commands, one per line.  End with CNTL/Z.
          +csr1000v-1(config)#no logging console
          +csr1000v-1(config)#line console 0
          +csr1000v-1(config-line)#exec-timeout 0
          +csr1000v-1(config-line)#end
          +csr1000v-1#
          +37: JEAUBIN-M-43JF: 2019-04-28T17:46:32: %GENIE-6-INFO: %[pid=40378][pname=Task-1]: 
          +38: JEAUBIN-M-43JF: 2019-04-28T17:46:32: %GENIE-6-INFO: %[part=38.1/3][pid=40378][pname=Task-1]: +------------------------------------------------------------------------------+
          +39: JEAUBIN-M-43JF: 2019-04-28T17:46:32: %GENIE-6-INFO: %[part=38.2/3][pid=40378][pname=Task-1]: |             Identifying device 'csr1000v-1' management interface             |
          +40: JEAUBIN-M-43JF: 2019-04-28T17:46:32: %GENIE-6-INFO: %[part=38.3/3][pid=40378][pname=Task-1]: +------------------------------------------------------------------------------+
          +41: JEAUBIN-M-43JF: 2019-04-28T17:46:32: %UNICON-6-INFO: %[pid=40378][pname=Task-1]: +++ csr1000v-1: executing command 'show ip interface brief | include 172.25.192.90' +++
          +show ip interface brief | include 172.25.192.90
          +csr1000v-1#
          +43: JEAUBIN-M-43JF: 2019-04-28T17:46:32: %GENIE-6-INFO: %[pid=40378][pname=Task-1]: 
          +44: JEAUBIN-M-43JF: 2019-04-28T17:46:32: %GENIE-6-INFO: %[pid=40378][pname=Task-1]: Device 'csr1000v-1' does not have a management interface configured which could be found
          +45: JEAUBIN-M-43JF: 2019-04-28T17:46:32: %UNICON-6-INFO: %[pid=40378][pname=Task-1]: +++ nx-osv-1 logfile /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr28_17:46:18.554146/nx-osv-1-cli-1556498792.log +++
          +46: JEAUBIN-M-43JF: 2019-04-28T17:46:32: %UNICON-6-INFO: %[pid=40378][pname=Task-1]: +++ Unicon plugin nxos +++
          +47: JEAUBIN-M-43JF: 2019-04-28T17:46:32: %UNICON-6-INFO: %[pid=40378][pname=Task-1]: +++ connection to spawn: telnet 172.25.192.90 17002, id: 4570000352 +++
          +48: JEAUBIN-M-43JF: 2019-04-28T17:46:32: %UNICON-6-INFO: %[pid=40378][pname=Task-1]: connection to nx-osv-1
          +Trying 172.25.192.90...
          +Connected to asg-virl-ubuntu.cisco.com.
          +Escape character is '^]'.
          +
          +
          +
          +nx-osv-1# 
          +52: JEAUBIN-M-43JF: 2019-04-28T17:46:33: %UNICON-6-INFO: %[pid=40378][pname=Task-1]: +++ initializing handle +++
          +53: JEAUBIN-M-43JF: 2019-04-28T17:46:33: %UNICON-6-INFO: %[pid=40378][pname=Task-1]: +++ nx-osv-1: executing command 'term length 0' +++
          +term length 0
          +
          +
          +nx-osv-1# 
          +55: JEAUBIN-M-43JF: 2019-04-28T17:46:33: %UNICON-6-INFO: %[pid=40378][pname=Task-1]: +++ nx-osv-1: executing command 'term width 511' +++
          +term width 511
          +
          +
          +nx-osv-1# 
          +57: JEAUBIN-M-43JF: 2019-04-28T17:46:33: %UNICON-6-INFO: %[pid=40378][pname=Task-1]: +++ nx-osv-1: executing command 'terminal session-timeout 0' +++
          +terminal session-timeout 0
          +
          +
          +nx-osv-1# 
          +59: JEAUBIN-M-43JF: 2019-04-28T17:46:33: %UNICON-6-INFO: %[pid=40378][pname=Task-1]: +++ nx-osv-1: config +++
          +config term
          +
          +Enter configuration commands, one per line.  End with CNTL/Z.
          +
          +nx-osv-1(config)# no logging console
          +
          +
          +nx-osv-1(config)# line console
          +
          +
          +nx-osv-1(config-console)# exec-timeout 0
          +
          +
          +nx-osv-1(config-console)# terminal width 511
          +
          +
          +nx-osv-1(config-console)# end
          +
          +
          +nx-osv-1# 
          +66: JEAUBIN-M-43JF: 2019-04-28T17:46:34: %GENIE-6-INFO: %[pid=40378][pname=Task-1]: 
          +67: JEAUBIN-M-43JF: 2019-04-28T17:46:34: %GENIE-6-INFO: %[part=67.1/3][pid=40378][pname=Task-1]: +------------------------------------------------------------------------------+
          +68: JEAUBIN-M-43JF: 2019-04-28T17:46:34: %GENIE-6-INFO: %[part=67.2/3][pid=40378][pname=Task-1]: |              Identifying device 'nx-osv-1' management interface              |
          +69: JEAUBIN-M-43JF: 2019-04-28T17:46:34: %GENIE-6-INFO: %[part=67.3/3][pid=40378][pname=Task-1]: +------------------------------------------------------------------------------+
          +70: JEAUBIN-M-43JF: 2019-04-28T17:46:34: %UNICON-6-INFO: %[pid=40378][pname=Task-1]: +++ nx-osv-1: executing command 'show ip interface brief vrf all | include 172.25.192.90' +++
          +show ip interface brief vrf all | include 172.25.192.90
          +
          +
          +nx-osv-1# 
          +72: JEAUBIN-M-43JF: 2019-04-28T17:46:34: %GENIE-6-INFO: %[pid=40378][pname=Task-1]: 
          +73: JEAUBIN-M-43JF: 2019-04-28T17:46:34: %GENIE-6-INFO: %[pid=40378][pname=Task-1]: Device 'nx-osv-1' does not have a management interface configured which could be found
          +74: JEAUBIN-M-43JF: 2019-04-28T17:46:34: %GENIE-6-INFO: %[pid=40378][pname=Task-1]: 
          +
          +75: JEAUBIN-M-43JF: 2019-04-28T17:46:34: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: +====================================================================================================================================================+
          +76: JEAUBIN-M-43JF: 2019-04-28T17:46:34: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: | Connection Summary                                                                                                                                 |
          +77: JEAUBIN-M-43JF: 2019-04-28T17:46:34: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: +====================================================================================================================================================+
          +78: JEAUBIN-M-43JF: 2019-04-28T17:46:34: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: | * Summary for device: csr1000v-1                                                                                                                   |
          +79: JEAUBIN-M-43JF: 2019-04-28T17:46:34: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +80: JEAUBIN-M-43JF: 2019-04-28T17:46:34: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: |     - Connected with alias 'cli' using connection 'a'                                                                                              |
          +81: JEAUBIN-M-43JF: 2019-04-28T17:46:34: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: |====================================================================================================================================================|
          +82: JEAUBIN-M-43JF: 2019-04-28T17:46:34: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: | * Summary for device: nx-osv-1                                                                                                                     |
          +83: JEAUBIN-M-43JF: 2019-04-28T17:46:34: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +84: JEAUBIN-M-43JF: 2019-04-28T17:46:34: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: |     - Connected with alias 'cli' using connection 'cli'                                                                                            |
          +85: JEAUBIN-M-43JF: 2019-04-28T17:46:34: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: |====================================================================================================================================================|
          +86: JEAUBIN-M-43JF: 2019-04-28T17:46:34: %GENIE-6-INFO: %[part=86.1/2][pid=40378][pname=Task-1]: 
          +87: JEAUBIN-M-43JF: 2019-04-28T17:46:34: %GENIE-6-INFO: %[part=86.2/2][pid=40378][pname=Task-1]: Information about devices and connections can be found in the Testbed file and Mapping datafile
          +88: JEAUBIN-M-43JF: 2019-04-28T17:46:34: %AETEST-6-INFO: %[pid=40378][pname=Task-1]: The result of subsection connect is => PASSED
          +89: JEAUBIN-M-43JF: 2019-04-
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + configure + + Description + + +
        + expand_more + expand_less +
        + SKIPPED + 0:00:00 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          89: JEAUBIN-M-43JF: 2019-04-28T17:46:34: %AETEST-6-INFO: %[pid=40378][pname=Task-1]: Starting subsection configure
          +90: JEAUBIN-M-43JF: 2019-04-28T17:46:34: %GENIE-6-INFO: %[pid=40378][pname=Task-1]: Configure each device with the configuration provided in the 'Config datafile'
          +91: JEAUBIN-M-43JF: 2019-04-28T17:46:34: %GENIE-6-INFO: %[pid=40378][pname=Task-1]: For more information visit Genie configure section http://wwwin-pyats.cisco.com/cisco-shared/genie/latest/harness/user/gettingstarted.html#configuration
          +92: JEAUBIN-M-43JF: 2019-04-28T17:46:34: %ROOT-6-INFO: %[pid=40378][pname=Task-1]:    +====================================================================================================================================================+
          +93: JEAUBIN-M-43JF: 2019-04-28T17:46:34: %ROOT-6-INFO: %[pid=40378][pname=Task-1]:    | Configuration Summary                                                                                                                              |
          +94: JEAUBIN-M-43JF: 2019-04-28T17:46:34: %ROOT-6-INFO: %[pid=40378][pname=Task-1]:    +====================================================================================================================================================+
          +95: JEAUBIN-M-43JF: 2019-04-28T17:46:34: %ROOT-4-WARNING: %[pid=40378][pname=Task-1]: |     - No configuration to apply on any device                                                                                                      |
          +96: JEAUBIN-M-43JF: 2019-04-28T17:46:34: %ROOT-6-INFO: %[pid=40378][pname=Task-1]:    |====================================================================================================================================================|
          +97: JEAUBIN-M-43JF: 2019-04-28T17:46:34: %GENIE-6-INFO: %[pid=40378][pname=Task-1]: 
          +
          +98: JEAUBIN-M-43JF: 2019-04-28T17:46:34: %AETEST-6-INFO: %[pid=40378][pname=Task-1]: Skipped reason: No configuration to be applied on any device
          +99: JEAUBIN-M-43JF: 2019-04-28T17:46:34: %AETEST-6-INFO: %[pid=40378][pname=Task-1]: The result of subsection configure is => SKIPPED
          +
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + configuration_snapshot + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:01 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          100: JEAUBIN-M-43JF: 2019-04-28T17:46:34: %AETEST-6-INFO: %[pid=40378][pname=Task-1]: Starting subsection configuration_snapshot
          +101: JEAUBIN-M-43JF: 2019-04-28T17:46:34: %GENIE-6-INFO: %[pid=40378][pname=Task-1]: Take a snapshot of the configuration of each device. In the Common Cleanup, the same process will be done to make sure no extra configuration remains on the devices
          +102: JEAUBIN-M-43JF: 2019-04-28T17:46:34: %GENIE-6-INFO: %[pid=40378][pname=Task-1]: For more information visit Genie check_config section http://wwwin-pyats.cisco.com/cisco-shared/genie/latest/harness/user/gettingstarted.html#check-config
          +2: JEAUBIN-M-43JF: 2019-04-28T17:46:34: %LOG-6-INFO: %[pid=40448][pname=ChildLabor-3:1]: >>>> Begin child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr28_17:46:18.554146/TaskLog.Task-1:pid-40448
          +3: JEAUBIN-M-43JF: 2019-04-28T17:46:34: %UNICON-6-INFO: %[pid=40448][pname=ChildLabor-3:1]: +++ csr1000v-1: executing command 'show running-config' +++
          +show running-config
          +Building configuration...
          +
          +Current configuration : 4219 bytes
          +!
          +! Last configuration change at 00:46:21 UTC Mon Apr 29 2019
          +!
          +version 16.9
          +service config
          +service timestamps debug datetime msec
          +service timestamps log datetime msec
          +platform qfp utilization monitor load 80
          +no platform punt-keepalive disable-kernel-core
          +platform console serial
          +!
          +hostname csr1000v-1
          +!
          +boot-start-marker
          +boot-end-marker
          +!
          +!
          +no logging console
          +enable secret 5 $1$wlDY$aYpdGzmHlBCznQBCYZX/q0
          +!
          +no aaa new-model
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +ip admission watch-list expiry-time 0
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +subscriber templating
          +! 
          +! 
          +! 
          +! 
          +!
          +multilink bundle-name authenticated
          +!
          +!
          +!
          +!
          +!
          +crypto pki trustpoint TP-self-signed-1664596352
          + enrollment selfsigned
          + subject-name cn=IOS-Self-Signed-Certificate-1664596352
          + revocation-check none
          + rsakeypair TP-self-signed-1664596352
          +!
          +!
          +crypto pki certificate chain TP-self-signed-1664596352
          + certificate self-signed 01
          +  30820330 30820218 A0030201 02020101 300D0609 2A864886 F70D0101 05050030 
          +  31312F30 2D060355 04031326 494F532D 53656C66 2D536967 6E65642D 43657274 
          +  69666963 6174652D 31363634 35393633 3532301E 170D3139 30343039 30303530 
          +  30335A17 0D333030 31303130 30303030 305A3031 312F302D 06035504 03132649 
          +  4F532D53 656C662D 5369676E 65642D43 65727469 66696361 74652D31 36363435 
          +  39363335 32308201 22300D06 092A8648 86F70D01 01010500 0382010F 00308201 
          +  0A028201 01009251 9249BF1E CAEB9073 0EE0254F 13AFC868 50B488E0 537408FD 
          +  27011BAA 346D19DA 70656043 4F7785F0 6679CC26 744BF77B 4E67A312 4D08F243 
          +  559E28A0 DEC217DD B48FE7F2 67BF339F 125E17EB FED1B10F 9E6EE7B5 C250C85A 
          +  A939DE1E DDC830F8 89230BA1 DB106783 8B09A777 7A92D388 03015F80 1AC7FC41 
          +  8BBAA19B 04600DCC F9D6A266 235B989D 6B864C35 8888BE4F 4817B4C4 B53C1FB5 
          +  CA53D93E 96BC900D CFF18777 FFF66D5E 3A46D6E3 DE6DE5F4 5151A66C 1382933A 
          +  2A46407E 53FBA2B1 141EA839 37B34B95 E60D31AC 496128CC E2A645A4 C9F42BE8 
          +  493A5748 4F1D0D5E 949312DF DFCAD602 B49025EF B3828CA0 08708BFD 150DF77A 
          +  4E22B257 6EC50203 010001A3 53305130 0F060355 1D130101 FF040530 030101FF 
          +  301F0603 551D2304 18301680 1434CE87 BC30C852 D663D826 E068BACB B500AC89 
          +  92301D06 03551D0E 04160414 34CE87BC 30C852D6 63D826E0 68BACBB5 00AC8992 
          +  300D0609 2A864886 F70D0101 05050003 82010100 4A426F44 7A22F137 615ABF5F 
          +  4B595C5B 03483695 BCE4041C 766D1273 219E3257 618DBCBE 260FD6F7 44CA69B4 
          +  467B77A3 0032C6A2 D401423E E780E18F A498EE6C FB5162EF 91422C4A 51B52384 
          +  0595C987 80FD4FBA 4EFE8227 76C6522E 02C0F548 0A1C3F20 7C176D4B C2458EEB 
          +  6B437FFE B3DEA4D4 7105CFC4 F83B5A51 9A4F43C5 8DC14533 4A5D0AE3 4269294E 
          +  2FBB8563 8A806EBE 0545F028 4C0B32ED A7840E4A 8F4FFF1D 894AD9FD 8C958C97 
          +  8DD917D5 3CBC3399 C481D57F 144571B1 ADC3B2B5 E6990255 600B5E2D 28D9719F 
          +  0091B2D7 6C988EFA 8627AE88 BAEA521A D46E09ED 5A692525 A77157B5 90A97B84 
          +  94BF8540 1C1FF02C B3848B50 2E68DEA6 DD1488C8
          +  	quit
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +license udi pid CSR1000V sn 9P34NU3ZQ4L
          +no license smart enable
          +diagnostic bootup level minimal
          +!
          +spanning-tree extend system-id
          +!
          +!
          +!
          +username cisco privilege 15 secret 5 $1$Hxh.$djLU5CFb2av38EBH6WO8a/
          +!
          +redundancy
          +!
          +!
          +!
          +!
          +!
          +!
          +! 
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +! 
          +! 
          +!
          +!
          +interface Loopback0
          + ip address 10.1.1.1 255.255.255.255
          + ip ospf 1 area 0
          +!
          +interface Loopback1
          + ip address 10.11.11.11 255.255.255.255
          +!
          +interface GigabitEthernet1
          + ip address dhcp
          + negotiation auto
          + no mop enabled
          + no mop sysid
          +!
          +interface GigabitEthernet2
          + ip address 10.0.1.1 255.255.255.0
          + ip ospf 1 area 0
          + negotiation auto
          + no mop enabled
          + no mop sysid
          +!
          +interface GigabitEthernet3
          + ip address 10.0.2.1 255.255.255.0
          + ip ospf 1 area 0
          + negotiation auto
          + no mop enabled
          + no mop sysid
          +!
          +router ospf 1
          + router-id 10.1.1.1
          +!
          +router bgp 65000
          + bgp router-id 10.1.1.1
          + bgp log-neighbor-changes
          + no bgp default ipv4-unicast
          + neighbor 10.2.2.2 remote-as 65000
          + neighbor 10.2.2.2 update-source Loopback0
          + !
          + address-family ipv4
          +  network 10.11.11.11 mask 255.255.255.255
          +  neighbor 10.2.2.2 activate
          + exit-address-family
          +!
          +!
          +virtual-service csr_mgmt
          +!
          +ip forward-protocol nd
          +ip http server
          +ip http authentication local
          +ip http secure-server
          +ip http client source-interface GigabitEthernet1
          +!
          +!
          +!
          +!
          +!
          +!
          +control-plane
          +!
          +!
          +!
          +!
          +!
          +!
          +line con 0
          + exec-timeout 0 0
          + stopbits 1
          +line vty 0
          + login
          +line vty 1
          + login
          + length 20
          +line vty 2 4
          + login
          +!
          +!
          +!
          +!
          +!
          +!
          +end
          +
          +csr1000v-1#
          +16: JEAUBIN-M-43JF: 2019-04-28T17:46:35: %LOG-6-INFO: %[pid=40448][pname=ChildLabor-3:1]: <<<< End child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr28_17:46:18.554146/TaskLog.Task-1:pid-40448
          +2: JEAUBIN-M-43JF: 2019-04-28T17:46:34: %LOG-6-INFO: %[pid=40449][pname=ChildLabor-3:2]: >>>> Begin child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr28_17:46:18.554146/TaskLog.Task-1:pid-40449
          +3: JEAUBIN-M-43JF: 2019-04-28T17:46:34: %UNICON-6-INFO: %[pid=40449][pname=ChildLabor-3:2]: +++ nx-osv-1: executing command 'show running-config' +++
          +show running-config
          +
          +
          +!Command: show running-config
          +!Time: Mon Apr 29 00:52:13 2019
          +
          +version 7.3(0)D1(1)
          +power redundancy-mode redundant
          +license grace-period
          +
          +hostname nx-osv-1
          +vdc nx-osv-1 id 1
          +  limit-resource module-type m1 m1xl m2xl f2e 
          +  allocate interface Ethernet2/1-48
          +  allocate interface Ethernet3/1-48
          +  allocate interface Ethernet4/1-48
          +  limit-resource vlan minimum 16 maximum 4094
          +  limit-resource vrf minimum 2 maximum 4096
          +  limit-resource port-channel minimum 0 maximum 768
          +  limit-resource u4route-mem minimum 96 maximum 96
          +  limit-resource u6route-mem minimum 24 maximum 24
          +  limit-resource m4route-mem minimum 58 maximum 58
          +  limit-resource m6route-mem minimum 8 maximum 8
          +
          +feature ospf
          +feature bgp
          +
          +username admin password 5 $5$Otc7T0NC$K.ulnSZnSyXLrTGNBdtLgZJXEa8EeNx.BrdZ98XyK2C  role network-admin
          +no password strength-check
          +ip domain-lookup
          +vlan dot1Q tag native
          +system default switchport
          +system jumbomtu 0
          +no logging event trunk-status enable
          +copp profile strict
          +snmp-server user admin auth md5 0x328945d53e05e8e7207f8c20b142f0b7 priv 0x328945d53e05e8e7207f8c20b142f0b7 localizedkey engineID 128:0:0:9:3:0:0:0:0:0:0
          +rmon event 1 log description FATAL(1) owner PMON@FATAL
          +rmon event 2 log description CRITICAL(2) owner PMON@CRITICAL
          +rmon event 3 log description ERROR(3) owner PMON@ERROR
          +rmon event 4 log description WARNING(4) owner PMON@WARNING
          +rmon event 5 log description INFORMATION(5) owner PMON@INFO
          +snmp-server enable traps link
          +snmp-server enable traps link cisco-xcvr-mon-status-chg
          +ntp server 216.239.35.0 prefer
          +
          +vlan 1
          +
          +vrf context management
          +
          +interface mgmt0
          +  vrf member management
          +
          +interface Ethernet2/1
          +  no switchport
          +  mac-address 0000.0000.002f
          +  ip address 10.0.1.2/24
          +  ip router ospf 1 area 0.0.0.0
          +  no shutdown
          +
          +interface Ethernet2/2
          +  no switchport
          +  mac-address 0000.0000.002f
          +  ip address 10.0.2.2/24
          +  ip router ospf 1 area 0.0.0.0
          +  no shutdown
          +
          +interface Ethernet2/3
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/4
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/5
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/6
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/7
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/8
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/9
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/10
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/11
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/12
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/13
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/14
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/15
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/16
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/17
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/18
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/19
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/20
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/21
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/22
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/23
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/24
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/25
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/26
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/27
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/28
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/29
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/30
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/31
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/32
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/33
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/34
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/35
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/36
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/37
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/38
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/39
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/40
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/41
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/42
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/43
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/44
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/45
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/46
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/47
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/48
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet3/1
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/2
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/3
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/4
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/5
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/6
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/7
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/8
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/9
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/10
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/11
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/12
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/13
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/14
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/15
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/16
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/17
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/18
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/19
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/20
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/21
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/22
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/23
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/24
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/25
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/26
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/27
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/28
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/29
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/30
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/31
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/32
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/33
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/34
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/35
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/36
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/37
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/38
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/39
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/40
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/41
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/42
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/43
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/44
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/45
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/46
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/47
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/48
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet4/1
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/2
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/3
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/4
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/5
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/6
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/7
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/8
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/9
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/10
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/11
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/12
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/13
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/14
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/15
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/16
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/17
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/18
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/19
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/20
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/21
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/22
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/23
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/24
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/25
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/26
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/27
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/28
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/29
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/30
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/31
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/32
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/33
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/34
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/35
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/36
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/37
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/38
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/39
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/40
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/41
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/42
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/43
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/44
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/45
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/46
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/47
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/48
          +  switchport
          +  no shutdown
          +
          +interface loopback0
          +  ip address 10.2.2.2/32
          +  ip router ospf 1 area 0.0.0.0
          +
          +interface loopback1
          +  ip address 10.22.22.22/32
          +line console
          +  exec-timeout 0
          +  terminal width  511
          +line vty
          +boot kickstart bootflash:/titanium-d1-kickstart.7.3.0.D1.1.bin
          +boot system bootflash:/titanium-d1.7.3.0.D1.1.bin 
          +router ospf 1
          +  router-id 10.2.2.2
          +router bgp 65000
          +  router-id 10.2.2.2
          +  address-family ipv4 unicast
          +    network 10.22.22.22/32
          +  neighbor 10.1.1.1
          +    remote-as 65000
          +    update-source loopback0
          +    address-family ipv4 unicast
          +no logging console
          +
          +
          +
          +nx-osv-1# 
          +61: JEAUBIN-M-43JF: 2019-04-28T17:46:35: %LOG-6-INFO: %[pid=40449][pname=ChildLabor-3:2]: <<<< End child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr28_17:46:18.554146/TaskLog.Task-1:pid-40449
          +103: JEAUBIN-M-43JF: 2019-04-28T17:46:35: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: +====================================================================================================================================================+
          +104: JEAUBIN-M-43JF: 2019-04-28T17:46:35: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: | Check config Summary                                                                                                                               |
          +105: JEAUBIN-M-43JF: 2019-04-28T17:46:35: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: +====================================================================================================================================================+
          +106: JEAUBIN-M-43JF: 2019-04-28T17:46:35: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: | * Summary for device: csr1000v-1                                                                                                                   |
          +107: JEAUBIN-M-43JF: 2019-04-28T17:46:35: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +108: JEAUBIN-M-43JF: 2019-04-28T17:46:35: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: |     - Successfully saved configuration snapshot                                                                                                    |
          +109: JEAUBIN-M-43JF: 2019-04-28T17:46:35: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: |====================================================================================================================================================|
          +110: JEAUBIN-M-43JF: 2019-04-28T17:46:35: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: | * Summary for device: nx-osv-1                                                                                                                     |
          +111: JEAUBIN-M-43JF: 2019-04-28T17:46:35: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +112: JEAUBIN-M-43JF: 2019-04-28T17:46:35: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: |     - Successfully saved configuration snapshot                                                                                                    |
          +113: JEAUBIN-M-43JF: 2019-04-28T17:46:35: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: |====================================================================================================================================================|
          +114: JEAUBIN-M-43JF: 2019-04-28T17:46:35: %GENIE-6-INFO: %[pid=40378][pname=Task-1]: 
          +
          +115: JEAUBIN-M-43JF: 2019-04-28T17:46:35: %AETEST-6-INFO: %[pid=40378][pname=Task-1]: The result of subsection configuration_snapshot is => PASSED
          +
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + save_bootvar + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:11 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          116: JEAUBIN-M-43JF: 2019-04-28T17:46:35: %AETEST-6-INFO: %[pid=40378][pname=Task-1]: Starting subsection save_bootvar
          +2: JEAUBIN-M-43JF: 2019-04-28T17:46:36: %LOG-6-INFO: %[pid=40453][pname=ChildLabor-3:3]: >>>> Begin child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr28_17:46:18.554146/TaskLog.Task-1:pid-40453
          +3: JEAUBIN-M-43JF: 2019-04-28T17:46:36: %GENIE-6-INFO: %[part=3.1/4][pid=40453][pname=ChildLabor-3:3]: +------------------------------------------------------------------------------+
          +4: JEAUBIN-M-43JF: 2019-04-28T17:46:36: %GENIE-6-INFO: %[part=3.2/4][pid=40453][pname=ChildLabor-3:3]: |             Check boot information to see if they are consistent             |
          +5: JEAUBIN-M-43JF: 2019-04-28T17:46:36: %GENIE-6-INFO: %[part=3.3/4][pid=40453][pname=ChildLabor-3:3]: |          and save bootvar to startup-config on device 'csr1000v-1'           |
          +6: JEAUBIN-M-43JF: 2019-04-28T17:46:36: %GENIE-6-INFO: %[part=3.4/4][pid=40453][pname=ChildLabor-3:3]: +------------------------------------------------------------------------------+
          +7: JEAUBIN-M-43JF: 2019-04-28T17:46:36: %UNICON-6-INFO: %[pid=40453][pname=ChildLabor-3:3]: +++ csr1000v-1: config +++
          +config term
          +Enter configuration commands, one per line.  End with CNTL/Z.
          +csr1000v-1(config)#config-register 0x2102
          +csr1000v-1(config)#end
          +csr1000v-1#
          +11: JEAUBIN-M-43JF: 2019-04-28T17:46:37: %UNICON-6-INFO: %[pid=40453][pname=ChildLabor-3:3]: +++ csr1000v-1: executing command 'copy running-config nvram:startup-config' +++
          +copy running-config nvram:startup-config
          +Destination filename [startup-config]? 
          +Building configuration...
          +[OK]
          +csr1000v-1#
          +18: JEAUBIN-M-43JF: 2019-04-28T17:46:38: %UNICON-6-INFO: %[pid=40453][pname=ChildLabor-3:3]: +++ csr1000v-1: executing command 'write memory' +++
          +write memory
          +Building configuration...
          +[OK]
          +csr1000v-1#
          +23: JEAUBIN-M-43JF: 2019-04-28T17:46:40: %LOG-6-INFO: %[pid=40453][pname=ChildLabor-3:3]: <<<< End child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr28_17:46:18.554146/TaskLog.Task-1:pid-40453
          +2: JEAUBIN-M-43JF: 2019-04-28T17:46:36: %LOG-6-INFO: %[pid=40454][pname=ChildLabor-3:4]: >>>> Begin child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr28_17:46:18.554146/TaskLog.Task-1:pid-40454
          +3: JEAUBIN-M-43JF: 2019-04-28T17:46:36: %GENIE-6-INFO: %[part=3.1/4][pid=40454][pname=ChildLabor-3:4]: +------------------------------------------------------------------------------+
          +4: JEAUBIN-M-43JF: 2019-04-28T17:46:36: %GENIE-6-INFO: %[part=3.2/4][pid=40454][pname=ChildLabor-3:4]: |             Check boot information to see if they are consistent             |
          +5: JEAUBIN-M-43JF: 2019-04-28T17:46:36: %GENIE-6-INFO: %[part=3.3/4][pid=40454][pname=ChildLabor-3:4]: |           and save bootvar to startup-config on device 'nx-osv-1'            |
          +6: JEAUBIN-M-43JF: 2019-04-28T17:46:36: %GENIE-6-INFO: %[part=3.4/4][pid=40454][pname=ChildLabor-3:4]: +------------------------------------------------------------------------------+
          +7: JEAUBIN-M-43JF: 2019-04-28T17:46:36: %UNICON-6-INFO: %[pid=40454][pname=ChildLabor-3:4]: +++ nx-osv-1: executing command 'copy running-config startup-config' +++
          +copy running-config startup-config
          +
          +
          +[#                                       ]   1%
          +[#                                       ]   2%
          +[##                                      ]   3%
          +[##                                      ]   4%
          +[###                                     ]   5%
          +[###                                     ]   7%
          +[####                                    ]   8%
          +[####                                    ]   9%
          +[#####                                   ]  10%
          +[#####                                   ]  11%
          +[######                                  ]  13%
          +[######                                  ]  14%
          +[#######                                 ]  15%
          +[#######                                 ]  16%
          +[#######                                 ]  17%
          +[########                                ]  19%
          +[#########                               ]  20%
          +[#########                               ]  21%
          +[#########                               ]  22%
          +[##########                              ]  23%
          +[###########                             ]  25%
          +[###########                             ]  26%
          +[###########                             ]  27%
          +[############                            ]  28%
          +[############                            ]  29%
          +[#############                           ]  30%
          +[#############                           ]  32%
          +[##############                          ]  33%
          +[##############                          ]  34%
          +[###############                         ]  35%
          +[###############                         ]  36%
          +[################                        ]  38%
          +[################                        ]  39%
          +[#################                       ]  40%
          +[#################                       ]  41%
          +[#################                       ]  42%
          +[##################                      ]  44%
          +[###################                     ]  45%
          +[###################                     ]  46%
          +[###################                     ]  47%
          +[####################                    ]  48%
          +[#####################                   ]  50%
          +[#####################                   ]  51%
          +[#####################                   ]  52%
          +[######################                  ]  53%
          +[######################                  ]  54%
          +[#######################                 ]  55%
          +[#######################                 ]  57%
          +[########################                ]  58%
          +[########################                ]  59%
          +[#########################               ]  60%
          +[#########################               ]  61%
          +[##########################              ]  63%
          +[##########################              ]  64%
          +[###########################             ]  65%
          +[###########################             ]  66%
          +[###########################             ]  67%
          +[############################            ]  69%
          +[#############################           ]  70%
          +[#############################           ]  71%
          +[#############################           ]  72%
          +[##############################          ]  73%
          +[###############################         ]  75%
          +[###############################         ]  76%
          +[###############################         ]  77%
          +[################################        ]  78%
          +[################################        ]  79%
          +[#################################       ]  80%
          +[#################################       ]  82%
          +[##################################      ]  83%
          +[##################################      ]  84%
          +[###################################     ]  85%
          +[###################################     ]  86%
          +[####################################    ]  88%
          +[####################################    ]  89%
          +[#####################################   ]  90%
          +[#####################################   ]  91%
          +[#####################################   ]  92%
          +[######################################  ]  94%
          +[####################################### ]  95%
          +[####################################### ]  96%
          +[####################################### ]  97%
          +[########################################]  98%
          +[########################################] 100%
          +Copy complete.
          +
          +nx-osv-1# 
          +148: JEAUBIN-M-43JF: 2019-04-28T17:46:45: %LOG-6-INFO: %[pid=40454][pname=ChildLabor-3:4]: <<<< End child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr28_17:46:18.554146/TaskLog.Task-1:pid-40454
          +117: JEAUBIN-M-43JF: 2019-04-28T17:46:46: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: +========================================================================================+
          +118: JEAUBIN-M-43JF: 2019-04-28T17:46:46: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: | Summary                                                                                |
          +119: JEAUBIN-M-43JF: 2019-04-28T17:46:46: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: +========================================================================================+
          +120: JEAUBIN-M-43JF: 2019-04-28T17:46:46: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: | * Summary for device: csr1000v-1                                                       |
          +121: JEAUBIN-M-43JF: 2019-04-28T17:46:46: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: |----------------------------------------------------------------------------------------|
          +122: JEAUBIN-M-43JF: 2019-04-28T17:46:46: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: |     - Successfully saved boot variable                                                 |
          +123: JEAUBIN-M-43JF: 2019-04-28T17:46:46: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: |========================================================================================|
          +124: JEAUBIN-M-43JF: 2019-04-28T17:46:46: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: | * Summary for device: nx-osv-1                                                         |
          +125: JEAUBIN-M-43JF: 2019-04-28T17:46:46: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: |----------------------------------------------------------------------------------------|
          +126: JEAUBIN-M-43JF: 2019-04-28T17:46:46: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: |     - Successfully saved boot variable                                                 |
          +127: JEAUBIN-M-43JF: 2019-04-28T17:46:46: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: |========================================================================================|
          +128: JEAUBIN-M-43JF: 2019-04-28T17:46:46: %AETEST-6-INFO: %[pid=40378][pname=Task-1]: The result of subsection save_bootvar is => PASSED
          +
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + learn_system_defaults + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:00 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          129: JEAUBIN-M-43JF: 2019-04-28T17:46:46: %AETEST-6-INFO: %[pid=40378][pname=Task-1]: Starting subsection learn_system_defaults
          +130: JEAUBIN-M-43JF: 2019-04-28T17:46:46: %UNICON-6-INFO: %[pid=40378][pname=Task-1]: +++ csr1000v-1: executing command 'dir' +++
          +dir
          +Directory of bootflash:/
          +
          +   11  drwx            16384  Jul 18 2018 07:49:17 +00:00  lost+found
          +325121  drwx             4096  Apr 23 2019 16:50:38 +00:00  .installer
          +   12  -rw-        392479704  Jul 18 2018 07:50:04 +00:00  csr1000v-mono-universalk9.16.09.01.SPA.pkg
          +   13  -rw-         40201438  Jul 18 2018 07:50:05 +00:00  csr1000v-rpboot.16.09.01.SPA.pkg
          +   14  -rw-             1941  Jul 18 2018 07:50:05 +00:00  packages.conf
          +105665  drwx             4096  Apr 23 2019 16:46:35 +00:00  core
          +146305  drwx             4096  Apr 23 2019 16:57:36 +00:00  .prst_sync
          +154433  drwx             4096  Jul 18 2018 07:51:06 +00:00  .rollback_timer
          +138177  drwx            12288  Apr 29 2019 00:45:12 +00:00  tracelogs
          +398273  drwx             4096  Jul 18 2018 07:52:07 +00:00  .dbpersist
          +203201  drwx             4096  Jul 18 2018 07:51:17 +00:00  virtual-instance
          +   15  -rw-               30  Apr 23 2019 16:57:31 +00:00  throughput_monitor_params
          +   16  -rw-            12973  Apr 23 2019 17:00:34 +00:00  cvac.log
          +   17  -rw-              157  Apr 23 2019 17:00:40 +00:00  csrlxc-cfg.log
          +406401  drwx             4096  Jul 18 2018 07:52:00 +00:00  onep
          +   18  -rw-                1   Apr 9 2019 00:49:45 +00:00  .cvac_version
          +   19  -rw-               16   Apr 9 2019 00:49:45 +00:00  ovf-env.xml.md5
          +   20  -rw-               34   Apr 9 2019 00:54:45 +00:00  pnp-tech-time
          +   21  -rw-            54686   Apr 9 2019 00:54:46 +00:00  pnp-tech-discovery-summary
          +   22  -rw-           183217  Apr 23 2019 16:43:19 +00:00  crashinfo_RP_00_00_20190423-163950-UTC
          +
          +7897796608 bytes total (6982643712 bytes free)
          +csr1000v-1#
          +134: JEAUBIN-M-43JF: 2019-04-28T17:46:46: %GENIE-6-INFO: %[pid=40378][pname=Task-1]: Default directory on 'csr1000v-1' is 'bootflash:'
          +135: JEAUBIN-M-43JF: 2019-04-28T17:46:46: %UNICON-6-INFO: %[pid=40378][pname=Task-1]: +++ nx-osv-1: executing command 'dir' +++
          +dir
          +
          +       4096    Feb 25 20:49:04 2016  .patch/
          +      11608    Apr 18 15:25:18 2019  201904181121-run.cfg
          +      16384    Feb 25 20:44:49 2016  lost+found/
          +       4096    Feb 26 10:11:16 2016  scripts/
          +   33615360    Feb 11 13:19:49 2016  titanium-d1-kickstart.7.3.0.D1.1.bin
          +  139230420    Feb 11 13:19:50 2016  titanium-d1.7.3.0.D1.1.bin
          +       4096    Feb 25 20:49:07 2016  virtual-instance/
          +
          +Usage for bootflash://
          +  369971200 bytes used
          + 2839990272 bytes free
          + 3209961472 bytes total
          +
          +nx-osv-1# 
          +138: JEAUBIN-M-43JF: 2019-04-28T17:46:46: %GENIE-6-INFO: %[pid=40378][pname=Task-1]: Default directory on 'nx-osv-1' is 'bootflash:'
          +139: JEAUBIN-M-43JF: 2019-04-28T17:46:46: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: +====================================================================================================================================================+
          +140: JEAUBIN-M-43JF: 2019-04-28T17:46:46: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: | Summary                                                                                                                                            |
          +141: JEAUBIN-M-43JF: 2019-04-28T17:46:46: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: +====================================================================================================================================================+
          +142: JEAUBIN-M-43JF: 2019-04-28T17:46:46: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: | * Summary for device: csr1000v-1                                                                                                                   |
          +143: JEAUBIN-M-43JF: 2019-04-28T17:46:46: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +144: JEAUBIN-M-43JF: 2019-04-28T17:46:46: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: |     - Successfully learnt system default directroy                                                                                                 |
          +145: JEAUBIN-M-43JF: 2019-04-28T17:46:46: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: |====================================================================================================================================================|
          +146: JEAUBIN-M-43JF: 2019-04-28T17:46:46: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: | * Summary for device: nx-osv-1                                                                                                                     |
          +147: JEAUBIN-M-43JF: 2019-04-28T17:46:46: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +148: JEAUBIN-M-43JF: 2019-04-28T17:46:46: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: |     - Successfully learnt system default directroy                                                                                                 |
          +149: JEAUBIN-M-43JF: 2019-04-28T17:46:46: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: |====================================================================================================================================================|
          +150: JEAUBIN-M-43JF: 2019-04-28T17:46:46: %AETEST-6-INFO: %[pid=40378][pname=Task-1]: The result of subsection learn_system_defaults is => PASSED
          +151: JEAUBIN-M-43JF: 2019-04-28T17:46:
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + initialize_traffic + + Description + + +
        + expand_more + expand_less +
        + SKIPPED + 0:00:00 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          151: JEAUBIN-M-43JF: 2019-04-28T17:46:46: %AETEST-6-INFO: %[pid=40378][pname=Task-1]: Starting subsection initialize_traffic
          +152: JEAUBIN-M-43JF: 2019-04-28T17:46:46: %GENIE-6-INFO: %[pid=40378][pname=Task-1]: Connect to traffic generator device and configure/start traffic
          +153: JEAUBIN-M-43JF: 2019-04-28T17:46:46: %GENIE-6-INFO: %[pid=40378][pname=Task-1]: For more information visit Genie traffic section http://wwwin-pyats.cisco.com/cisco-shared/genie/latest/harness/user/ixia.html#common-setup-initialize-traffic
          +154: JEAUBIN-M-43JF: 2019-04-28T17:46:46: %AETEST-6-INFO: %[pid=40378][pname=Task-1]: Skipped reason: Traffic generator devices not found in testbed YAML
          +155: JEAUBIN-M-43JF: 2019-04-28T17:46:46: %AETEST-6-INFO: %[pid=40378][pname=Task-1]: The result of subsection initialize_traffic is => SKIPPED
          +
          +
          +
        • +
        +
        +
      • + + +
      +
      +
    • + + +
    • +
      + + arrow_drop_down + TriggerDemoShutNoShutBgp.uut + + +
      + expand_more + expand_less +
      + PASSED + 0:00:03 +
      +
      + + + +
        + + + + +
      • +
        + + arrow_drop_down + prerequisites + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:00 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          160: JEAUBIN-M-43JF: 2019-04-28T17:46:48: %AETEST-6-INFO: %[pid=40378][pname=Task-1]: Starting section prerequisites
          +161: JEAUBIN-M-43JF: 2019-04-28T17:46:48: %UNICON-6-INFO: %[pid=40378][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          +show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Process ID                 : 8610
          +BGP Protocol Started, reason:  : configuration
          +BGP Protocol Tag               : 65000
          +BGP Protocol State             : Running
          +BGP MMODE                      : Not Initialized
          +BGP Memory State               : OK
          +BGP asformat                   : asplain
          +
          +BGP attributes information
          +Number of attribute entries    : 2
          +HWM of attribute entries       : 2
          +Bytes used by entries          : 200
          +Entries pending delete         : 0
          +HWM of entries pending delete  : 0
          +BGP paths per attribute HWM    : 1
          +BGP AS path entries            : 0
          +Bytes used by AS path entries  : 0
          +
          +Information regarding configured VRFs:
          +
          +BGP Information for VRF default
          +VRF Id                         : 1
          +VRF state                      : UP
          +Router-ID                      : 10.2.2.2
          +Configured Router-ID           : 10.2.2.2
          +Confed-ID                      : 0
          +Cluster-ID                     : 0.0.0.0
          +No. of configured peers        : 1
          +No. of pending config peers    : 0
          +No. of established peers       : 1
          +VRF RD                         : Not configured
          +
          +    Information for address family IPv4 Unicast in VRF default
          +    Table Id                   : 1
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    1          1               2          2          1          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +    Information for address family IPv6 Unicast in VRF default
          +    Table Id                   : 80000001
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    0          0               0          0          0          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +nx-osv-1# 
          +167: JEAUBIN-M-43JF: 2019-04-28T17:46:48: %AETEST-6-INFO: %[pid=40378][pname=Task-1]: The result of section prerequisites is => PASSED
          +168: JEAUBIN-M-43JF: 2019-04-28T17:46:48: %AETEST-6-INFO: %[pid=40
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + shut + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:01 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          168: JEAUBIN-M-43JF: 2019-04-28T17:46:48: %AETEST-6-INFO: %[pid=40378][pname=Task-1]: Starting section shut
          +169: JEAUBIN-M-43JF: 2019-04-28T17:46:48: %UNICON-6-INFO: %[pid=40378][pname=Task-1]: +++ nx-osv-1: config +++
          +config term
          +
          +Enter configuration commands, one per line.  End with CNTL/Z.
          +
          +nx-osv-1(config)# router bgp 65000
          +
          +
          +nx-osv-1(config-router)# shutdown
          +
          +
          +nx-osv-1(config-router)# end
          +
          +
          +nx-osv-1# 
          +174: JEAUBIN-M-43JF: 2019-04-28T17:46:49: %AETEST-6-INFO: %[pid=40378][pname=Task-1]: The result of section shut is => PASSED
          +175: 
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + verify + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:00 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          175: JEAUBIN-M-43JF: 2019-04-28T17:46:49: %AETEST-6-INFO: %[pid=40378][pname=Task-1]: Starting section verify
          +176: JEAUBIN-M-43JF: 2019-04-28T17:46:49: %UNICON-6-INFO: %[pid=40378][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          +show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Process ID                 : 8610
          +BGP Protocol Started, reason:  : configuration
          +BGP Protocol Tag               : 65000
          +BGP Protocol State             : Shutdown
          +BGP MMODE                      : Not Initialized
          +BGP Memory State               : OK
          +BGP asformat                   : asplain
          +
          +BGP attributes information
          +Number of attribute entries    : 2
          +HWM of attribute entries       : 2
          +Bytes used by entries          : 200
          +Entries pending delete         : 0
          +HWM of entries pending delete  : 0
          +BGP paths per attribute HWM    : 1
          +BGP AS path entries            : 0
          +Bytes used by AS path entries  : 0
          +
          +Information regarding configured VRFs:
          +
          +BGP Information for VRF default
          +VRF Id                         : 1
          +VRF state                      : UP
          +Router-ID                      : 10.2.2.2
          +Configured Router-ID           : 10.2.2.2
          +Confed-ID                      : 0
          +Cluster-ID                     : 0.0.0.0
          +No. of configured peers        : 1
          +No. of pending config peers    : 0
          +No. of established peers       : 0
          +VRF RD                         : Not configured
          +
          +    Information for address family IPv4 Unicast in VRF default
          +    Table Id                   : 1
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    1          0               2          2          1          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +    Information for address family IPv6 Unicast in VRF default
          +    Table Id                   : 80000001
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    0          0               0          0          0          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +nx-osv-1# 
          +180: JEAUBIN-M-43JF: 2019-04-28T17:46:49: %AETEST-6-INFO: %[pid=40378][pname=Task-1]: The result of section verify is => PASSED
          +181: JEAUBIN-M-43JF: 2019-04-28T17:46:50: %AETEST-6-INFO: %[pid=40
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + unshut + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:01 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          181: JEAUBIN-M-43JF: 2019-04-28T17:46:50: %AETEST-6-INFO: %[pid=40378][pname=Task-1]: Starting section unshut
          +182: JEAUBIN-M-43JF: 2019-04-28T17:46:50: %UNICON-6-INFO: %[pid=40378][pname=Task-1]: +++ nx-osv-1: config +++
          +config term
          +
          +Enter configuration commands, one per line.  End with CNTL/Z.
          +
          +nx-osv-1(config)# router bgp 65000
          +
          +
          +nx-osv-1(config-router)# no shutdown
          +
          +
          +nx-osv-1(config-router)# end
          +
          +
          +nx-osv-1# 
          +187: JEAUBIN-M-43JF: 2019-04-28T17:46:51: %AETEST-6-INFO: %[pid=40378][pname=Task-1]: The result of section unshut is => PASSED
          +188: 
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + verify_recover + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:00 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          188: JEAUBIN-M-43JF: 2019-04-28T17:46:51: %AETEST-6-INFO: %[pid=40378][pname=Task-1]: Starting section verify_recover
          +189: JEAUBIN-M-43JF: 2019-04-28T17:46:51: %UNICON-6-INFO: %[pid=40378][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          +show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Process ID                 : 8610
          +BGP Protocol Started, reason:  : configuration
          +BGP Protocol Tag               : 65000
          +BGP Protocol State             : Running
          +BGP MMODE                      : Not Initialized
          +BGP Memory State               : OK
          +BGP asformat                   : asplain
          +
          +BGP attributes information
          +Number of attribute entries    : 2
          +HWM of attribute entries       : 2
          +Bytes used by entries          : 200
          +Entries pending delete         : 0
          +HWM of entries pending delete  : 0
          +BGP paths per attribute HWM    : 1
          +BGP AS path entries            : 0
          +Bytes used by AS path entries  : 0
          +
          +Information regarding configured VRFs:
          +
          +BGP Information for VRF default
          +VRF Id                         : 1
          +VRF state                      : UP
          +Router-ID                      : 10.2.2.2
          +Configured Router-ID           : 10.2.2.2
          +Confed-ID                      : 0
          +Cluster-ID                     : 0.0.0.0
          +No. of configured peers        : 1
          +No. of pending config peers    : 0
          +No. of established peers       : 0
          +VRF RD                         : Not configured
          +
          +    Information for address family IPv4 Unicast in VRF default
          +    Table Id                   : 1
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    1          0               2          2          1          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +    Information for address family IPv6 Unicast in VRF default
          +    Table Id                   : 80000001
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    0          0               0          0          0          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +nx-osv-1# 
          +193: JEAUBIN-M-43JF: 2019-04-28T17:46:51: %AETEST-6-INFO: %[pid=40378][pname=Task-1]: The result of section verify_recover is => PASSED
          +194: JEAUBIN-M-43JF: 2019-04-28T17:46:51: %AETEST-6-INFO: %[pid=40
          +
          +
        • +
        +
        +
      • + + +
      +
      +
    • + + +
    • +
      + + arrow_drop_down + commonCleanup + + +
      + expand_more + expand_less +
      + PASSED + 0:00:01 +
      +
      + + + +
        + + + + +
      • +
        + + arrow_drop_down + verify_configuration_snapshot + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:01 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          196: JEAUBIN-M-43JF: 2019-04-28T17:46:51: %AETEST-6-INFO: %[pid=40378][pname=Task-1]: Starting subsection verify_configuration_snapshot
          +197: JEAUBIN-M-43JF: 2019-04-28T17:46:51: %GENIE-6-INFO: %[pid=40378][pname=Task-1]: Verify if the devices' configuration has been modified within the run. A new snapshot is taken and is compared with the one taken in Common Setup
          +198: JEAUBIN-M-43JF: 2019-04-28T17:46:51: %GENIE-6-INFO: %[pid=40378][pname=Task-1]: For more information visit Genie check_config section http://wwwin-pyats.cisco.com/cisco-shared/genie/latest/harness/user/gettingstarted.html#check-config
          +2: JEAUBIN-M-43JF: 2019-04-28T17:46:51: %LOG-6-INFO: %[pid=40493][pname=ChildLabor-3:5]: >>>> Begin child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr28_17:46:18.554146/TaskLog.Task-1:pid-40493
          +3: JEAUBIN-M-43JF: 2019-04-28T17:46:51: %UNICON-6-INFO: %[pid=40493][pname=ChildLabor-3:5]: +++ csr1000v-1: executing command 'show running-config' +++
          +show running-config
          +Building configuration...
          +
          +Current configuration : 4219 bytes
          +!
          +! Last configuration change at 00:46:26 UTC Mon Apr 29 2019
          +!
          +version 16.9
          +service config
          +service timestamps debug datetime msec
          +service timestamps log datetime msec
          +platform qfp utilization monitor load 80
          +no platform punt-keepalive disable-kernel-core
          +platform console serial
          +!
          +hostname csr1000v-1
          +!
          +boot-start-marker
          +boot-end-marker
          +!
          +!
          +no logging console
          +enable secret 5 $1$wlDY$aYpdGzmHlBCznQBCYZX/q0
          +!
          +no aaa new-model
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +ip admission watch-list expiry-time 0
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +subscriber templating
          +! 
          +! 
          +! 
          +! 
          +!
          +multilink bundle-name authenticated
          +!
          +!
          +!
          +!
          +!
          +crypto pki trustpoint TP-self-signed-1664596352
          + enrollment selfsigned
          + subject-name cn=IOS-Self-Signed-Certificate-1664596352
          + revocation-check none
          + rsakeypair TP-self-signed-1664596352
          +!
          +!
          +crypto pki certificate chain TP-self-signed-1664596352
          + certificate self-signed 01
          +  30820330 30820218 A0030201 02020101 300D0609 2A864886 F70D0101 05050030 
          +  31312F30 2D060355 04031326 494F532D 53656C66 2D536967 6E65642D 43657274 
          +  69666963 6174652D 31363634 35393633 3532301E 170D3139 30343039 30303530 
          +  30335A17 0D333030 31303130 30303030 305A3031 312F302D 06035504 03132649 
          +  4F532D53 656C662D 5369676E 65642D43 65727469 66696361 74652D31 36363435 
          +  39363335 32308201 22300D06 092A8648 86F70D01 01010500 0382010F 00308201 
          +  0A028201 01009251 9249BF1E CAEB9073 0EE0254F 13AFC868 50B488E0 537408FD 
          +  27011BAA 346D19DA 70656043 4F7785F0 6679CC26 744BF77B 4E67A312 4D08F243 
          +  559E28A0 DEC217DD B48FE7F2 67BF339F 125E17EB FED1B10F 9E6EE7B5 C250C85A 
          +  A939DE1E DDC830F8 89230BA1 DB106783 8B09A777 7A92D388 03015F80 1AC7FC41 
          +  8BBAA19B 04600DCC F9D6A266 235B989D 6B864C35 8888BE4F 4817B4C4 B53C1FB5 
          +  CA53D93E 96BC900D CFF18777 FFF66D5E 3A46D6E3 DE6DE5F4 5151A66C 1382933A 
          +  2A46407E 53FBA2B1 141EA839 37B34B95 E60D31AC 496128CC E2A645A4 C9F42BE8 
          +  493A5748 4F1D0D5E 949312DF DFCAD602 B49025EF B3828CA0 08708BFD 150DF77A 
          +  4E22B257 6EC50203 010001A3 53305130 0F060355 1D130101 FF040530 030101FF 
          +  301F0603 551D2304 18301680 1434CE87 BC30C852 D663D826 E068BACB B500AC89 
          +  92301D06 03551D0E 04160414 34CE87BC 30C852D6 63D826E0 68BACBB5 00AC8992 
          +  300D0609 2A864886 F70D0101 05050003 82010100 4A426F44 7A22F137 615ABF5F 
          +  4B595C5B 03483695 BCE4041C 766D1273 219E3257 618DBCBE 260FD6F7 44CA69B4 
          +  467B77A3 0032C6A2 D401423E E780E18F A498EE6C FB5162EF 91422C4A 51B52384 
          +  0595C987 80FD4FBA 4EFE8227 76C6522E 02C0F548 0A1C3F20 7C176D4B C2458EEB 
          +  6B437FFE B3DEA4D4 7105CFC4 F83B5A51 9A4F43C5 8DC14533 4A5D0AE3 4269294E 
          +  2FBB8563 8A806EBE 0545F028 4C0B32ED A7840E4A 8F4FFF1D 894AD9FD 8C958C97 
          +  8DD917D5 3CBC3399 C481D57F 144571B1 ADC3B2B5 E6990255 600B5E2D 28D9719F 
          +  0091B2D7 6C988EFA 8627AE88 BAEA521A D46E09ED 5A692525 A77157B5 90A97B84 
          +  94BF8540 1C1FF02C B3848B50 2E68DEA6 DD1488C8
          +  	quit
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +license udi pid CSR1000V sn 9P34NU3ZQ4L
          +no license smart enable
          +diagnostic bootup level minimal
          +!
          +spanning-tree extend system-id
          +!
          +!
          +!
          +username cisco privilege 15 secret 5 $1$Hxh.$djLU5CFb2av38EBH6WO8a/
          +!
          +redundancy
          +!
          +!
          +!
          +!
          +!
          +!
          +! 
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +! 
          +! 
          +!
          +!
          +interface Loopback0
          + ip address 10.1.1.1 255.255.255.255
          + ip ospf 1 area 0
          +!
          +interface Loopback1
          + ip address 10.11.11.11 255.255.255.255
          +!
          +interface GigabitEthernet1
          + ip address dhcp
          + negotiation auto
          + no mop enabled
          + no mop sysid
          +!
          +interface GigabitEthernet2
          + ip address 10.0.1.1 255.255.255.0
          + ip ospf 1 area 0
          + negotiation auto
          + no mop enabled
          + no mop sysid
          +!
          +interface GigabitEthernet3
          + ip address 10.0.2.1 255.255.255.0
          + ip ospf 1 area 0
          + negotiation auto
          + no mop enabled
          + no mop sysid
          +!
          +router ospf 1
          + router-id 10.1.1.1
          +!
          +router bgp 65000
          + bgp router-id 10.1.1.1
          + bgp log-neighbor-changes
          + no bgp default ipv4-unicast
          + neighbor 10.2.2.2 remote-as 65000
          + neighbor 10.2.2.2 update-source Loopback0
          + !
          + address-family ipv4
          +  network 10.11.11.11 mask 255.255.255.255
          +  neighbor 10.2.2.2 activate
          + exit-address-family
          +!
          +!
          +virtual-service csr_mgmt
          +!
          +ip forward-protocol nd
          +ip http server
          +ip http authentication local
          +ip http secure-server
          +ip http client source-interface GigabitEthernet1
          +!
          +!
          +!
          +!
          +!
          +!
          +control-plane
          +!
          +!
          +!
          +!
          +!
          +!
          +line con 0
          + exec-timeout 0 0
          + stopbits 1
          +line vty 0
          + login
          +line vty 1
          + login
          + length 20
          +line vty 2 4
          + login
          +!
          +!
          +!
          +!
          +!
          +!
          +end
          +
          +csr1000v-1#
          +17: JEAUBIN-M-43JF: 2019-04-28T17:46:52: %LOG-6-INFO: %[pid=40493][pname=ChildLabor-3:5]: <<<< End child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr28_17:46:18.554146/TaskLog.Task-1:pid-40493
          +2: JEAUBIN-M-43JF: 2019-04-28T17:46:51: %LOG-6-INFO: %[pid=40494][pname=ChildLabor-3:6]: >>>> Begin child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr28_17:46:18.554146/TaskLog.Task-1:pid-40494
          +3: JEAUBIN-M-43JF: 2019-04-28T17:46:51: %UNICON-6-INFO: %[pid=40494][pname=ChildLabor-3:6]: +++ nx-osv-1: executing command 'show running-config' +++
          +show running-config
          +
          +
          +!Command: show running-config
          +!Time: Mon Apr 29 00:52:30 2019
          +
          +version 7.3(0)D1(1)
          +power redundancy-mode redundant
          +license grace-period
          +
          +hostname nx-osv-1
          +vdc nx-osv-1 id 1
          +  limit-resource module-type m1 m1xl m2xl f2e 
          +  allocate interface Ethernet2/1-48
          +  allocate interface Ethernet3/1-48
          +  allocate interface Ethernet4/1-48
          +  limit-resource vlan minimum 16 maximum 4094
          +  limit-resource vrf minimum 2 maximum 4096
          +  limit-resource port-channel minimum 0 maximum 768
          +  limit-resource u4route-mem minimum 96 maximum 96
          +  limit-resource u6route-mem minimum 24 maximum 24
          +  limit-resource m4route-mem minimum 58 maximum 58
          +  limit-resource m6route-mem minimum 8 maximum 8
          +
          +feature ospf
          +feature bgp
          +
          +username admin password 5 $5$Otc7T0NC$K.ulnSZnSyXLrTGNBdtLgZJXEa8EeNx.BrdZ98XyK2C  role network-admin
          +no password strength-check
          +ip domain-lookup
          +vlan dot1Q tag native
          +system default switchport
          +system jumbomtu 0
          +no logging event trunk-status enable
          +copp profile strict
          +snmp-server user admin auth md5 0x328945d53e05e8e7207f8c20b142f0b7 priv 0x328945d53e05e8e7207f8c20b142f0b7 localizedkey engineID 128:0:0:9:3:0:0:0:0:0:0
          +rmon event 1 log description FATAL(1) owner PMON@FATAL
          +rmon event 2 log description CRITICAL(2) owner PMON@CRITICAL
          +rmon event 3 log description ERROR(3) owner PMON@ERROR
          +rmon event 4 log description WARNING(4) owner PMON@WARNING
          +rmon event 5 log description INFORMATION(5) owner PMON@INFO
          +snmp-server enable traps link
          +snmp-server enable traps link cisco-xcvr-mon-status-chg
          +ntp server 216.239.35.0 prefer
          +
          +vlan 1
          +
          +vrf context management
          +
          +interface mgmt0
          +  vrf member management
          +
          +interface Ethernet2/1
          +  no switchport
          +  mac-address 0000.0000.002f
          +  ip address 10.0.1.2/24
          +  ip router ospf 1 area 0.0.0.0
          +  no shutdown
          +
          +interface Ethernet2/2
          +  no switchport
          +  mac-address 0000.0000.002f
          +  ip address 10.0.2.2/24
          +  ip router ospf 1 area 0.0.0.0
          +  no shutdown
          +
          +interface Ethernet2/3
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/4
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/5
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/6
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/7
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/8
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/9
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/10
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/11
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/12
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/13
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/14
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/15
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/16
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/17
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/18
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/19
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/20
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/21
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/22
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/23
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/24
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/25
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/26
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/27
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/28
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/29
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/30
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/31
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/32
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/33
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/34
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/35
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/36
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/37
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/38
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/39
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/40
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/41
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/42
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/43
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/44
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/45
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/46
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/47
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/48
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet3/1
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/2
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/3
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/4
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/5
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/6
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/7
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/8
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/9
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/10
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/11
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/12
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/13
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/14
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/15
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/16
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/17
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/18
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/19
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/20
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/21
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/22
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/23
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/24
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/25
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/26
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/27
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/28
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/29
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/30
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/31
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/32
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/33
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/34
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/35
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/36
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/37
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/38
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/39
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/40
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/41
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/42
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/43
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/44
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/45
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/46
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/47
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/48
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet4/1
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/2
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/3
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/4
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/5
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/6
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/7
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/8
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/9
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/10
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/11
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/12
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/13
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/14
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/15
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/16
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/17
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/18
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/19
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/20
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/21
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/22
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/23
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/24
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/25
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/26
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/27
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/28
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/29
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/30
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/31
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/32
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/33
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/34
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/35
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/36
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/37
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/38
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/39
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/40
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/41
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/42
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/43
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/44
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/45
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/46
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/47
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/48
          +  switchport
          +  no shutdown
          +
          +interface loopback0
          +  ip address 10.2.2.2/32
          +  ip router ospf 1 area 0.0.0.0
          +
          +interface loopback1
          +  ip address 10.22.22.22/32
          +line console
          +  exec-timeout 0
          +  terminal width  511
          +line vty
          +boot kickstart bootflash:/titanium-d1-kickstart.7.3.0.D1.1.bin
          +boot system bootflash:/titanium-d1.7.3.0.D1.1.bin 
          +router ospf 1
          +  router-id 10.2.2.2
          +router bgp 65000
          +  router-id 10.2.2.2
          +  address-family ipv4 unicast
          +    network 10.22.22.22/32
          +  neighbor 10.1.1.1
          +    remote-as 65000
          +    update-source loopback0
          +    address-family ipv4 unicast
          +no logging console
          +
          +
          +
          +nx-osv-1# 
          +103: JEAUBIN-M-43JF: 2019-04-28T17:46:52: %LOG-6-INFO: %[pid=40494][pname=ChildLabor-3:6]: <<<< End child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr28_17:46:18.554146/TaskLog.Task-1:pid-40494
          +199: JEAUBIN-M-43JF: 2019-04-28T17:46:52: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: +====================================================================================================================================================+
          +200: JEAUBIN-M-43JF: 2019-04-28T17:46:52: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: | Check Post configuration Summary                                                                                                                   |
          +201: JEAUBIN-M-43JF: 2019-04-28T17:46:52: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: +====================================================================================================================================================+
          +202: JEAUBIN-M-43JF: 2019-04-28T17:46:52: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: | * Summary for device: csr1000v-1                                                                                                                   |
          +203: JEAUBIN-M-43JF: 2019-04-28T17:46:52: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: |     - Comparison between original configuration taken at common setup and OPS object snapshots are equal                                           |
          +204: JEAUBIN-M-43JF: 2019-04-28T17:46:52: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: |****************************************************************************************************************************************************|
          +205: JEAUBIN-M-43JF: 2019-04-28T17:46:52: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: | * Summary for device: nx-osv-1                                                                                                                     |
          +206: JEAUBIN-M-43JF: 2019-04-28T17:46:52: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: |     - Comparison between original configuration taken at common setup and OPS object snapshots are equal                                           |
          +207: JEAUBIN-M-43JF: 2019-04-28T17:46:52: %ROOT-6-INFO: %[pid=40378][pname=Task-1]: |****************************************************************************************************************************************************|
          +208: JEAUBIN-M-43JF: 2019-04-28T17:46:52: %GENIE-6-INFO: %[pid=40378][pname=Task-1]: 
          +
          +209: JEAUBIN-M-43JF: 2019-04-28T17:46:52: %AETEST-6-INFO: %[pid=40378][pname=Task-1]: The result of subsection verify_configuration_snapshot is => PASSED
          +
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + stop_traffic + + Description + + +
        + expand_more + expand_less +
        + SKIPPED + 0:00:00 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          210: JEAUBIN-M-43JF: 2019-04-28T17:46:52: %AETEST-6-INFO: %[pid=40378][pname=Task-1]: Starting subsection stop_traffic
          +211: JEAUBIN-M-43JF: 2019-04-28T17:46:52: %GENIE-6-INFO: %[pid=40378][pname=Task-1]: Stop protocols and traffic on traffic generator
          +212: JEAUBIN-M-43JF: 2019-04-28T17:46:52: %GENIE-6-INFO: %[pid=40378][pname=Task-1]: For more information visit Genie traffic section http://wwwin-pyats.cisco.com/cisco-shared/genie/latest/harness/user/ixia.html#common-cleanup-stop-traffic
          +213: JEAUBIN-M-43JF: 2019-04-28T17:46:52: %AETEST-6-INFO: %[pid=40378][pname=Task-1]: Skipped reason: Traffic generator devices not found in testbed YAML
          +214: JEAUBIN-M-43JF: 2019-04-28T17:46:52: %AETEST-6-INFO: %[pid=40378][pname=Task-1]: The result of subsection stop_traffic is => SKIPPED
          +
          +
          +
        • +
        +
        +
      • + + +
      +
      +
    • + +
    +
    +
  • + + +
+
+
+
+ + +
+ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/3-Automate/output/TaksLog2.html/TaskLog.html b/3-Automate/output/TaksLog2.html/TaskLog.html new file mode 100644 index 0000000..a36fa0f --- /dev/null +++ b/3-Automate/output/TaksLog2.html/TaskLog.html @@ -0,0 +1,4580 @@ + + + + + LogViewer + + + + + + + + job + + + + +
+ + + +
+
+
+
+
+
    + +
  • +
    + arrow_drop_down +
    Overview
    +
    +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Job Name:job
    Start Time:2019-04-28T17:53:10
    End Time:2019-04-28T17:53:53
    Submitter:jeaubin
    Run Time:0:00:42
    Testbed:ma_new_tb
    +
    +
    +
    +
    +
    +
    +
  • + + + + + +
  • + + +
    + + arrow_drop_down +
    Task-1: genie_testscript.py
    arrow_drop_down + + +
    + expand_more + expand_less +
    +
    +
    + + + + +
      + + +
    • +
      + + arrow_drop_down + commonSetup + + +
      + expand_more + expand_less +
      + PASSED + 0:00:17 +
      +
      + + + +
        + + + + +
      • +
        + + arrow_drop_down + connect + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:04 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          16: JEAUBIN-M-43JF: 2019-04-28T17:53:20: %AETEST-6-INFO: %[pid=42091][pname=Task-1]: Starting subsection connect
          +17: JEAUBIN-M-43JF: 2019-04-28T17:53:20: %GENIE-6-INFO: %[pid=42091][pname=Task-1]: Connect to all the devices described in the 'Mapping Datafile' and 'Testbed file': csr1000v-1, nx-osv-1
          +18: JEAUBIN-M-43JF: 2019-04-28T17:53:20: %GENIE-6-INFO: %[pid=42091][pname=Task-1]: For more information visit Genie connection section documentation: http://wwwin-pyats.cisco.com/cisco-shared/genie/latest/harness/user/gettingstarted.html#set-up
          +
          +19: JEAUBIN-M-43JF: 2019-04-28T17:53:20: %UNICON-6-INFO: %[pid=42091][pname=Task-1]: +++ csr1000v-1 logfile /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr28_17:53:09.131068/csr1000v-1-cli-1556499200.log +++
          +20: JEAUBIN-M-43JF: 2019-04-28T17:53:20: %UNICON-6-INFO: %[pid=42091][pname=Task-1]: +++ Unicon plugin iosxe +++
          +21: JEAUBIN-M-43JF: 2019-04-28T17:53:20: %UNICON-6-INFO: %[pid=42091][pname=Task-1]: +++ connection to spawn: telnet 172.25.192.90 17000, id: 4450764336 +++
          +22: JEAUBIN-M-43JF: 2019-04-28T17:53:20: %UNICON-6-INFO: %[pid=42091][pname=Task-1]: connection to csr1000v-1
          +Trying 172.25.192.90...
          +Connected to asg-virl-ubuntu.cisco.com.
          +Escape character is '^]'.
          +
          +csr1000v-1#
          +26: JEAUBIN-M-43JF: 2019-04-28T17:53:21: %UNICON-6-INFO: %[pid=42091][pname=Task-1]: +++ initializing handle +++
          +27: JEAUBIN-M-43JF: 2019-04-28T17:53:21: %UNICON-6-INFO: %[pid=42091][pname=Task-1]: +++ csr1000v-1: executing command 'term length 0' +++
          +term length 0
          +csr1000v-1#
          +29: JEAUBIN-M-43JF: 2019-04-28T17:53:21: %UNICON-6-INFO: %[pid=42091][pname=Task-1]: +++ csr1000v-1: executing command 'term width 0' +++
          +term width 0
          +csr1000v-1#
          +31: JEAUBIN-M-43JF: 2019-04-28T17:53:21: %UNICON-6-INFO: %[pid=42091][pname=Task-1]: +++ csr1000v-1: config +++
          +config term
          +Enter configuration commands, one per line.  End with CNTL/Z.
          +csr1000v-1(config)#no logging console
          +csr1000v-1(config)#line console 0
          +csr1000v-1(config-line)#exec-timeout 0
          +csr1000v-1(config-line)#end
          +csr1000v-1#
          +37: JEAUBIN-M-43JF: 2019-04-28T17:53:22: %GENIE-6-INFO: %[pid=42091][pname=Task-1]: 
          +38: JEAUBIN-M-43JF: 2019-04-28T17:53:22: %GENIE-6-INFO: %[part=38.1/3][pid=42091][pname=Task-1]: +------------------------------------------------------------------------------+
          +39: JEAUBIN-M-43JF: 2019-04-28T17:53:22: %GENIE-6-INFO: %[part=38.2/3][pid=42091][pname=Task-1]: |             Identifying device 'csr1000v-1' management interface             |
          +40: JEAUBIN-M-43JF: 2019-04-28T17:53:22: %GENIE-6-INFO: %[part=38.3/3][pid=42091][pname=Task-1]: +------------------------------------------------------------------------------+
          +41: JEAUBIN-M-43JF: 2019-04-28T17:53:22: %UNICON-6-INFO: %[pid=42091][pname=Task-1]: +++ csr1000v-1: executing command 'show ip interface brief | include 172.25.192.90' +++
          +show ip interface brief | include 172.25.192.90
          +csr1000v-1#
          +43: JEAUBIN-M-43JF: 2019-04-28T17:53:22: %GENIE-6-INFO: %[pid=42091][pname=Task-1]: 
          +44: JEAUBIN-M-43JF: 2019-04-28T17:53:22: %GENIE-6-INFO: %[pid=42091][pname=Task-1]: Device 'csr1000v-1' does not have a management interface configured which could be found
          +45: JEAUBIN-M-43JF: 2019-04-28T17:53:22: %UNICON-6-INFO: %[pid=42091][pname=Task-1]: +++ nx-osv-1 logfile /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr28_17:53:09.131068/nx-osv-1-cli-1556499202.log +++
          +46: JEAUBIN-M-43JF: 2019-04-28T17:53:22: %UNICON-6-INFO: %[pid=42091][pname=Task-1]: +++ Unicon plugin nxos +++
          +47: JEAUBIN-M-43JF: 2019-04-28T17:53:22: %UNICON-6-INFO: %[pid=42091][pname=Task-1]: +++ connection to spawn: telnet 172.25.192.90 17002, id: 4450949552 +++
          +48: JEAUBIN-M-43JF: 2019-04-28T17:53:22: %UNICON-6-INFO: %[pid=42091][pname=Task-1]: connection to nx-osv-1
          +Trying 172.25.192.90...
          +Connected to asg-virl-ubuntu.cisco.com.
          +Escape character is '^]'.
          +
          +
          +
          +nx-osv-1# 
          +52: JEAUBIN-M-43JF: 2019-04-28T17:53:23: %UNICON-6-INFO: %[pid=42091][pname=Task-1]: +++ initializing handle +++
          +53: JEAUBIN-M-43JF: 2019-04-28T17:53:23: %UNICON-6-INFO: %[pid=42091][pname=Task-1]: +++ nx-osv-1: executing command 'term length 0' +++
          +term length 0
          +
          +
          +nx-osv-1# 
          +55: JEAUBIN-M-43JF: 2019-04-28T17:53:23: %UNICON-6-INFO: %[pid=42091][pname=Task-1]: +++ nx-osv-1: executing command 'term width 511' +++
          +term width 511
          +
          +
          +nx-osv-1# 
          +57: JEAUBIN-M-43JF: 2019-04-28T17:53:23: %UNICON-6-INFO: %[pid=42091][pname=Task-1]: +++ nx-osv-1: executing command 'terminal session-timeout 0' +++
          +terminal session-timeout 0
          +
          +
          +nx-osv-1# 
          +59: JEAUBIN-M-43JF: 2019-04-28T17:53:23: %UNICON-6-INFO: %[pid=42091][pname=Task-1]: +++ nx-osv-1: config +++
          +config term
          +
          +Enter configuration commands, one per line.  End with CNTL/Z.
          +
          +nx-osv-1(config)# no logging console
          +
          +
          +nx-osv-1(config)# line console
          +
          +
          +nx-osv-1(config-console)# exec-timeout 0
          +
          +
          +nx-osv-1(config-console)# terminal width 511
          +
          +
          +nx-osv-1(config-console)# end
          +
          +
          +nx-osv-1# 
          +66: JEAUBIN-M-43JF: 2019-04-28T17:53:24: %GENIE-6-INFO: %[pid=42091][pname=Task-1]: 
          +67: JEAUBIN-M-43JF: 2019-04-28T17:53:24: %GENIE-6-INFO: %[part=67.1/3][pid=42091][pname=Task-1]: +------------------------------------------------------------------------------+
          +68: JEAUBIN-M-43JF: 2019-04-28T17:53:24: %GENIE-6-INFO: %[part=67.2/3][pid=42091][pname=Task-1]: |              Identifying device 'nx-osv-1' management interface              |
          +69: JEAUBIN-M-43JF: 2019-04-28T17:53:24: %GENIE-6-INFO: %[part=67.3/3][pid=42091][pname=Task-1]: +------------------------------------------------------------------------------+
          +70: JEAUBIN-M-43JF: 2019-04-28T17:53:24: %UNICON-6-INFO: %[pid=42091][pname=Task-1]: +++ nx-osv-1: executing command 'show ip interface brief vrf all | include 172.25.192.90' +++
          +show ip interface brief vrf all | include 172.25.192.90
          +
          +
          +nx-osv-1# 
          +72: JEAUBIN-M-43JF: 2019-04-28T17:53:24: %GENIE-6-INFO: %[pid=42091][pname=Task-1]: 
          +73: JEAUBIN-M-43JF: 2019-04-28T17:53:24: %GENIE-6-INFO: %[pid=42091][pname=Task-1]: Device 'nx-osv-1' does not have a management interface configured which could be found
          +74: JEAUBIN-M-43JF: 2019-04-28T17:53:24: %GENIE-6-INFO: %[pid=42091][pname=Task-1]: 
          +
          +75: JEAUBIN-M-43JF: 2019-04-28T17:53:24: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: +====================================================================================================================================================+
          +76: JEAUBIN-M-43JF: 2019-04-28T17:53:24: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: | Connection Summary                                                                                                                                 |
          +77: JEAUBIN-M-43JF: 2019-04-28T17:53:24: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: +====================================================================================================================================================+
          +78: JEAUBIN-M-43JF: 2019-04-28T17:53:24: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: | * Summary for device: csr1000v-1                                                                                                                   |
          +79: JEAUBIN-M-43JF: 2019-04-28T17:53:24: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +80: JEAUBIN-M-43JF: 2019-04-28T17:53:24: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: |     - Connected with alias 'cli' using connection 'a'                                                                                              |
          +81: JEAUBIN-M-43JF: 2019-04-28T17:53:24: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: |====================================================================================================================================================|
          +82: JEAUBIN-M-43JF: 2019-04-28T17:53:24: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: | * Summary for device: nx-osv-1                                                                                                                     |
          +83: JEAUBIN-M-43JF: 2019-04-28T17:53:24: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +84: JEAUBIN-M-43JF: 2019-04-28T17:53:24: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: |     - Connected with alias 'cli' using connection 'cli'                                                                                            |
          +85: JEAUBIN-M-43JF: 2019-04-28T17:53:24: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: |====================================================================================================================================================|
          +86: JEAUBIN-M-43JF: 2019-04-28T17:53:24: %GENIE-6-INFO: %[part=86.1/2][pid=42091][pname=Task-1]: 
          +87: JEAUBIN-M-43JF: 2019-04-28T17:53:24: %GENIE-6-INFO: %[part=86.2/2][pid=42091][pname=Task-1]: Information about devices and connections can be found in the Testbed file and Mapping datafile
          +88: JEAUBIN-M-43JF: 2019-04-28T17:53:24: %AETEST-6-INFO: %[pid=42091][pname=Task-1]: The result of subsection connect is => PASSED
          +89: JEAUBIN-M-43JF: 2019-04-
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + configure + + Description + + +
        + expand_more + expand_less +
        + SKIPPED + 0:00:00 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          89: JEAUBIN-M-43JF: 2019-04-28T17:53:24: %AETEST-6-INFO: %[pid=42091][pname=Task-1]: Starting subsection configure
          +90: JEAUBIN-M-43JF: 2019-04-28T17:53:24: %GENIE-6-INFO: %[pid=42091][pname=Task-1]: Configure each device with the configuration provided in the 'Config datafile'
          +91: JEAUBIN-M-43JF: 2019-04-28T17:53:24: %GENIE-6-INFO: %[pid=42091][pname=Task-1]: For more information visit Genie configure section http://wwwin-pyats.cisco.com/cisco-shared/genie/latest/harness/user/gettingstarted.html#configuration
          +92: JEAUBIN-M-43JF: 2019-04-28T17:53:24: %ROOT-6-INFO: %[pid=42091][pname=Task-1]:    +====================================================================================================================================================+
          +93: JEAUBIN-M-43JF: 2019-04-28T17:53:24: %ROOT-6-INFO: %[pid=42091][pname=Task-1]:    | Configuration Summary                                                                                                                              |
          +94: JEAUBIN-M-43JF: 2019-04-28T17:53:24: %ROOT-6-INFO: %[pid=42091][pname=Task-1]:    +====================================================================================================================================================+
          +95: JEAUBIN-M-43JF: 2019-04-28T17:53:24: %ROOT-4-WARNING: %[pid=42091][pname=Task-1]: |     - No configuration to apply on any device                                                                                                      |
          +96: JEAUBIN-M-43JF: 2019-04-28T17:53:24: %ROOT-6-INFO: %[pid=42091][pname=Task-1]:    |====================================================================================================================================================|
          +97: JEAUBIN-M-43JF: 2019-04-28T17:53:24: %GENIE-6-INFO: %[pid=42091][pname=Task-1]: 
          +
          +98: JEAUBIN-M-43JF: 2019-04-28T17:53:24: %AETEST-6-INFO: %[pid=42091][pname=Task-1]: Skipped reason: No configuration to be applied on any device
          +99: JEAUBIN-M-43JF: 2019-04-28T17:53:24: %AETEST-6-INFO: %[pid=42091][pname=Task-1]: The result of subsection configure is => SKIPPED
          +
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + configuration_snapshot + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:01 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          100: JEAUBIN-M-43JF: 2019-04-28T17:53:24: %AETEST-6-INFO: %[pid=42091][pname=Task-1]: Starting subsection configuration_snapshot
          +101: JEAUBIN-M-43JF: 2019-04-28T17:53:24: %GENIE-6-INFO: %[pid=42091][pname=Task-1]: Take a snapshot of the configuration of each device. In the Common Cleanup, the same process will be done to make sure no extra configuration remains on the devices
          +102: JEAUBIN-M-43JF: 2019-04-28T17:53:24: %GENIE-6-INFO: %[pid=42091][pname=Task-1]: For more information visit Genie check_config section http://wwwin-pyats.cisco.com/cisco-shared/genie/latest/harness/user/gettingstarted.html#check-config
          +2: JEAUBIN-M-43JF: 2019-04-28T17:53:24: %LOG-6-INFO: %[pid=42141][pname=ChildLabor-3:1]: >>>> Begin child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr28_17:53:09.131068/TaskLog.Task-1:pid-42141
          +3: JEAUBIN-M-43JF: 2019-04-28T17:53:24: %UNICON-6-INFO: %[pid=42141][pname=ChildLabor-3:1]: +++ csr1000v-1: executing command 'show running-config' +++
          +show running-config
          +Building configuration...
          +
          +Current configuration : 4219 bytes
          +!
          +! Last configuration change at 00:53:11 UTC Mon Apr 29 2019
          +!
          +version 16.9
          +service config
          +service timestamps debug datetime msec
          +service timestamps log datetime msec
          +platform qfp utilization monitor load 80
          +no platform punt-keepalive disable-kernel-core
          +platform console serial
          +!
          +hostname csr1000v-1
          +!
          +boot-start-marker
          +boot-end-marker
          +!
          +!
          +no logging console
          +enable secret 5 $1$wlDY$aYpdGzmHlBCznQBCYZX/q0
          +!
          +no aaa new-model
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +ip admission watch-list expiry-time 0
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +subscriber templating
          +! 
          +! 
          +! 
          +! 
          +!
          +multilink bundle-name authenticated
          +!
          +!
          +!
          +!
          +!
          +crypto pki trustpoint TP-self-signed-1664596352
          + enrollment selfsigned
          + subject-name cn=IOS-Self-Signed-Certificate-1664596352
          + revocation-check none
          + rsakeypair TP-self-signed-1664596352
          +!
          +!
          +crypto pki certificate chain TP-self-signed-1664596352
          + certificate self-signed 01
          +  30820330 30820218 A0030201 02020101 300D0609 2A864886 F70D0101 05050030 
          +  31312F30 2D060355 04031326 494F532D 53656C66 2D536967 6E65642D 43657274 
          +  69666963 6174652D 31363634 35393633 3532301E 170D3139 30343039 30303530 
          +  30335A17 0D333030 31303130 30303030 305A3031 312F302D 06035504 03132649 
          +  4F532D53 656C662D 5369676E 65642D43 65727469 66696361 74652D31 36363435 
          +  39363335 32308201 22300D06 092A8648 86F70D01 01010500 0382010F 00308201 
          +  0A028201 01009251 9249BF1E CAEB9073 0EE0254F 13AFC868 50B488E0 537408FD 
          +  27011BAA 346D19DA 70656043 4F7785F0 6679CC26 744BF77B 4E67A312 4D08F243 
          +  559E28A0 DEC217DD B48FE7F2 67BF339F 125E17EB FED1B10F 9E6EE7B5 C250C85A 
          +  A939DE1E DDC830F8 89230BA1 DB106783 8B09A777 7A92D388 03015F80 1AC7FC41 
          +  8BBAA19B 04600DCC F9D6A266 235B989D 6B864C35 8888BE4F 4817B4C4 B53C1FB5 
          +  CA53D93E 96BC900D CFF18777 FFF66D5E 3A46D6E3 DE6DE5F4 5151A66C 1382933A 
          +  2A46407E 53FBA2B1 141EA839 37B34B95 E60D31AC 496128CC E2A645A4 C9F42BE8 
          +  493A5748 4F1D0D5E 949312DF DFCAD602 B49025EF B3828CA0 08708BFD 150DF77A 
          +  4E22B257 6EC50203 010001A3 53305130 0F060355 1D130101 FF040530 030101FF 
          +  301F0603 551D2304 18301680 1434CE87 BC30C852 D663D826 E068BACB B500AC89 
          +  92301D06 03551D0E 04160414 34CE87BC 30C852D6 63D826E0 68BACBB5 00AC8992 
          +  300D0609 2A864886 F70D0101 05050003 82010100 4A426F44 7A22F137 615ABF5F 
          +  4B595C5B 03483695 BCE4041C 766D1273 219E3257 618DBCBE 260FD6F7 44CA69B4 
          +  467B77A3 0032C6A2 D401423E E780E18F A498EE6C FB5162EF 91422C4A 51B52384 
          +  0595C987 80FD4FBA 4EFE8227 76C6522E 02C0F548 0A1C3F20 7C176D4B C2458EEB 
          +  6B437FFE B3DEA4D4 7105CFC4 F83B5A51 9A4F43C5 8DC14533 4A5D0AE3 4269294E 
          +  2FBB8563 8A806EBE 0545F028 4C0B32ED A7840E4A 8F4FFF1D 894AD9FD 8C958C97 
          +  8DD917D5 3CBC3399 C481D57F 144571B1 ADC3B2B5 E6990255 600B5E2D 28D9719F 
          +  0091B2D7 6C988EFA 8627AE88 BAEA521A D46E09ED 5A692525 A77157B5 90A97B84 
          +  94BF8540 1C1FF02C B3848B50 2E68DEA6 DD1488C8
          +  	quit
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +license udi pid CSR1000V sn 9P34NU3ZQ4L
          +no license smart enable
          +diagnostic bootup level minimal
          +!
          +spanning-tree extend system-id
          +!
          +!
          +!
          +username cisco privilege 15 secret 5 $1$Hxh.$djLU5CFb2av38EBH6WO8a/
          +!
          +redundancy
          +!
          +!
          +!
          +!
          +!
          +!
          +! 
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +! 
          +! 
          +!
          +!
          +interface Loopback0
          + ip address 10.1.1.1 255.255.255.255
          + ip ospf 1 area 0
          +!
          +interface Loopback1
          + ip address 10.11.11.11 255.255.255.255
          +!
          +interface GigabitEthernet1
          + ip address dhcp
          + negotiation auto
          + no mop enabled
          + no mop sysid
          +!
          +interface GigabitEthernet2
          + ip address 10.0.1.1 255.255.255.0
          + ip ospf 1 area 0
          + negotiation auto
          + no mop enabled
          + no mop sysid
          +!
          +interface GigabitEthernet3
          + ip address 10.0.2.1 255.255.255.0
          + ip ospf 1 area 0
          + negotiation auto
          + no mop enabled
          + no mop sysid
          +!
          +router ospf 1
          + router-id 10.1.1.1
          +!
          +router bgp 65000
          + bgp router-id 10.1.1.1
          + bgp log-neighbor-changes
          + no bgp default ipv4-unicast
          + neighbor 10.2.2.2 remote-as 65000
          + neighbor 10.2.2.2 update-source Loopback0
          + !
          + address-family ipv4
          +  network 10.11.11.11 mask 255.255.255.255
          +  neighbor 10.2.2.2 activate
          + exit-address-family
          +!
          +!
          +virtual-service csr_mgmt
          +!
          +ip forward-protocol nd
          +ip http server
          +ip http authentication local
          +ip http secure-server
          +ip http client source-interface GigabitEthernet1
          +!
          +!
          +!
          +!
          +!
          +!
          +control-plane
          +!
          +!
          +!
          +!
          +!
          +!
          +line con 0
          + exec-timeout 0 0
          + stopbits 1
          +line vty 0
          + login
          +line vty 1
          + login
          + length 20
          +line vty 2 4
          + login
          +!
          +!
          +!
          +!
          +!
          +!
          +end
          +
          +csr1000v-1#
          +10: JEAUBIN-M-43JF: 2019-04-28T17:53:24: %LOG-6-INFO: %[pid=42141][pname=ChildLabor-3:1]: <<<< End child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr28_17:53:09.131068/TaskLog.Task-1:pid-42141
          +2: JEAUBIN-M-43JF: 2019-04-28T17:53:24: %LOG-6-INFO: %[pid=42142][pname=ChildLabor-3:2]: >>>> Begin child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr28_17:53:09.131068/TaskLog.Task-1:pid-42142
          +3: JEAUBIN-M-43JF: 2019-04-28T17:53:24: %UNICON-6-INFO: %[pid=42142][pname=ChildLabor-3:2]: +++ nx-osv-1: executing command 'show running-config' +++
          +show running-config
          +
          +
          +!Command: show running-config
          +!Time: Mon Apr 29 00:59:02 2019
          +
          +version 7.3(0)D1(1)
          +power redundancy-mode redundant
          +license grace-period
          +
          +hostname nx-osv-1
          +vdc nx-osv-1 id 1
          +  limit-resource module-type m1 m1xl m2xl f2e 
          +  allocate interface Ethernet2/1-48
          +  allocate interface Ethernet3/1-48
          +  allocate interface Ethernet4/1-48
          +  limit-resource vlan minimum 16 maximum 4094
          +  limit-resource vrf minimum 2 maximum 4096
          +  limit-resource port-channel minimum 0 maximum 768
          +  limit-resource u4route-mem minimum 96 maximum 96
          +  limit-resource u6route-mem minimum 24 maximum 24
          +  limit-resource m4route-mem minimum 58 maximum 58
          +  limit-resource m6route-mem minimum 8 maximum 8
          +
          +feature ospf
          +feature bgp
          +
          +username admin password 5 $5$Otc7T0NC$K.ulnSZnSyXLrTGNBdtLgZJXEa8EeNx.BrdZ98XyK2C  role network-admin
          +no password strength-check
          +ip domain-lookup
          +vlan dot1Q tag native
          +system default switchport
          +system jumbomtu 0
          +no logging event trunk-status enable
          +copp profile strict
          +snmp-server user admin auth md5 0x328945d53e05e8e7207f8c20b142f0b7 priv 0x328945d53e05e8e7207f8c20b142f0b7 localizedkey engineID 128:0:0:9:3:0:0:0:0:0:0
          +rmon event 1 log description FATAL(1) owner PMON@FATAL
          +rmon event 2 log description CRITICAL(2) owner PMON@CRITICAL
          +rmon event 3 log description ERROR(3) owner PMON@ERROR
          +rmon event 4 log description WARNING(4) owner PMON@WARNING
          +rmon event 5 log description INFORMATION(5) owner PMON@INFO
          +snmp-server enable traps link
          +snmp-server enable traps link cisco-xcvr-mon-status-chg
          +ntp server 216.239.35.0 prefer
          +
          +vlan 1
          +
          +vrf context management
          +
          +interface mgmt0
          +  vrf member management
          +
          +interface Ethernet2/1
          +  no switchport
          +  mac-address 0000.0000.002f
          +  ip address 10.0.1.2/24
          +  ip router ospf 1 area 0.0.0.0
          +  no shutdown
          +
          +interface Ethernet2/2
          +  no switchport
          +  mac-address 0000.0000.002f
          +  ip address 10.0.2.2/24
          +  ip router ospf 1 area 0.0.0.0
          +  no shutdown
          +
          +interface Ethernet2/3
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/4
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/5
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/6
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/7
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/8
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/9
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/10
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/11
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/12
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/13
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/14
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/15
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/16
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/17
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/18
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/19
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/20
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/21
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/22
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/23
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/24
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/25
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/26
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/27
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/28
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/29
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/30
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/31
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/32
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/33
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/34
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/35
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/36
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/37
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/38
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/39
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/40
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/41
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/42
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/43
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/44
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/45
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/46
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/47
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/48
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet3/1
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/2
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/3
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/4
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/5
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/6
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/7
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/8
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/9
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/10
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/11
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/12
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/13
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/14
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/15
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/16
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/17
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/18
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/19
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/20
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/21
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/22
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/23
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/24
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/25
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/26
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/27
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/28
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/29
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/30
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/31
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/32
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/33
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/34
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/35
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/36
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/37
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/38
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/39
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/40
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/41
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/42
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/43
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/44
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/45
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/46
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/47
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/48
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet4/1
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/2
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/3
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/4
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/5
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/6
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/7
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/8
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/9
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/10
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/11
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/12
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/13
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/14
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/15
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/16
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/17
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/18
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/19
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/20
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/21
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/22
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/23
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/24
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/25
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/26
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/27
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/28
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/29
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/30
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/31
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/32
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/33
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/34
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/35
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/36
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/37
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/38
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/39
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/40
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/41
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/42
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/43
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/44
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/45
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/46
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/47
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/48
          +  switchport
          +  no shutdown
          +
          +interface loopback0
          +  ip address 10.2.2.2/32
          +  ip router ospf 1 area 0.0.0.0
          +
          +interface loopback1
          +  ip address 10.22.22.22/32
          +line console
          +  exec-timeout 0
          +  terminal width  511
          +line vty
          +boot kickstart bootflash:/titanium-d1-kickstart.7.3.0.D1.1.bin
          +boot system bootflash:/titanium-d1.7.3.0.D1.1.bin 
          +router ospf 1
          +  router-id 10.2.2.2
          +router bgp 65000
          +  router-id 10.2.2.2
          +  address-family ipv4 unicast
          +    network 10.22.22.22/32
          +  neighbor 10.1.1.1
          +    remote-as 65000
          +    update-source loopback0
          +    address-family ipv4 unicast
          +no logging console
          +
          +
          +
          +nx-osv-1# 
          +48: JEAUBIN-M-43JF: 2019-04-28T17:53:25: %LOG-6-INFO: %[pid=42142][pname=ChildLabor-3:2]: <<<< End child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr28_17:53:09.131068/TaskLog.Task-1:pid-42142
          +103: JEAUBIN-M-43JF: 2019-04-28T17:53:25: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: +====================================================================================================================================================+
          +104: JEAUBIN-M-43JF: 2019-04-28T17:53:25: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: | Check config Summary                                                                                                                               |
          +105: JEAUBIN-M-43JF: 2019-04-28T17:53:25: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: +====================================================================================================================================================+
          +106: JEAUBIN-M-43JF: 2019-04-28T17:53:25: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: | * Summary for device: csr1000v-1                                                                                                                   |
          +107: JEAUBIN-M-43JF: 2019-04-28T17:53:25: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +108: JEAUBIN-M-43JF: 2019-04-28T17:53:25: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: |     - Successfully saved configuration snapshot                                                                                                    |
          +109: JEAUBIN-M-43JF: 2019-04-28T17:53:25: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: |====================================================================================================================================================|
          +110: JEAUBIN-M-43JF: 2019-04-28T17:53:25: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: | * Summary for device: nx-osv-1                                                                                                                     |
          +111: JEAUBIN-M-43JF: 2019-04-28T17:53:25: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +112: JEAUBIN-M-43JF: 2019-04-28T17:53:25: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: |     - Successfully saved configuration snapshot                                                                                                    |
          +113: JEAUBIN-M-43JF: 2019-04-28T17:53:25: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: |====================================================================================================================================================|
          +114: JEAUBIN-M-43JF: 2019-04-28T17:53:25: %GENIE-6-INFO: %[pid=42091][pname=Task-1]: 
          +
          +115: JEAUBIN-M-43JF: 2019-04-28T17:53:25: %AETEST-6-INFO: %[pid=42091][pname=Task-1]: The result of subsection configuration_snapshot is => PASSED
          +
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + save_bootvar + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:11 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          116: JEAUBIN-M-43JF: 2019-04-28T17:53:25: %AETEST-6-INFO: %[pid=42091][pname=Task-1]: Starting subsection save_bootvar
          +2: JEAUBIN-M-43JF: 2019-04-28T17:53:25: %LOG-6-INFO: %[pid=42146][pname=ChildLabor-3:3]: >>>> Begin child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr28_17:53:09.131068/TaskLog.Task-1:pid-42146
          +3: JEAUBIN-M-43JF: 2019-04-28T17:53:25: %GENIE-6-INFO: %[part=3.1/4][pid=42146][pname=ChildLabor-3:3]: +------------------------------------------------------------------------------+
          +4: JEAUBIN-M-43JF: 2019-04-28T17:53:25: %GENIE-6-INFO: %[part=3.2/4][pid=42146][pname=ChildLabor-3:3]: |             Check boot information to see if they are consistent             |
          +5: JEAUBIN-M-43JF: 2019-04-28T17:53:25: %GENIE-6-INFO: %[part=3.3/4][pid=42146][pname=ChildLabor-3:3]: |          and save bootvar to startup-config on device 'csr1000v-1'           |
          +6: JEAUBIN-M-43JF: 2019-04-28T17:53:25: %GENIE-6-INFO: %[part=3.4/4][pid=42146][pname=ChildLabor-3:3]: +------------------------------------------------------------------------------+
          +7: JEAUBIN-M-43JF: 2019-04-28T17:53:26: %UNICON-6-INFO: %[pid=42146][pname=ChildLabor-3:3]: +++ csr1000v-1: config +++
          +config term
          +Enter configuration commands, one per line.  End with CNTL/Z.
          +csr1000v-1(config)#config-register 0x2102
          +csr1000v-1(config)#end
          +csr1000v-1#
          +11: JEAUBIN-M-43JF: 2019-04-28T17:53:26: %UNICON-6-INFO: %[pid=42146][pname=ChildLabor-3:3]: +++ csr1000v-1: executing command 'copy running-config nvram:startup-config' +++
          +copy running-config nvram:startup-config
          +Destination filename [startup-config]? 
          +Building configuration...
          +[OK]
          +csr1000v-1#
          +18: JEAUBIN-M-43JF: 2019-04-28T17:53:28: %UNICON-6-INFO: %[pid=42146][pname=ChildLabor-3:3]: +++ csr1000v-1: executing command 'write memory' +++
          +write memory
          +Building configuration...
          +[OK]
          +csr1000v-1#
          +23: JEAUBIN-M-43JF: 2019-04-28T17:53:30: %LOG-6-INFO: %[pid=42146][pname=ChildLabor-3:3]: <<<< End child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr28_17:53:09.131068/TaskLog.Task-1:pid-42146
          +2: JEAUBIN-M-43JF: 2019-04-28T17:53:25: %LOG-6-INFO: %[pid=42147][pname=ChildLabor-3:4]: >>>> Begin child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr28_17:53:09.131068/TaskLog.Task-1:pid-42147
          +3: JEAUBIN-M-43JF: 2019-04-28T17:53:25: %GENIE-6-INFO: %[part=3.1/4][pid=42147][pname=ChildLabor-3:4]: +------------------------------------------------------------------------------+
          +4: JEAUBIN-M-43JF: 2019-04-28T17:53:25: %GENIE-6-INFO: %[part=3.2/4][pid=42147][pname=ChildLabor-3:4]: |             Check boot information to see if they are consistent             |
          +5: JEAUBIN-M-43JF: 2019-04-28T17:53:25: %GENIE-6-INFO: %[part=3.3/4][pid=42147][pname=ChildLabor-3:4]: |           and save bootvar to startup-config on device 'nx-osv-1'            |
          +6: JEAUBIN-M-43JF: 2019-04-28T17:53:25: %GENIE-6-INFO: %[part=3.4/4][pid=42147][pname=ChildLabor-3:4]: +------------------------------------------------------------------------------+
          +7: JEAUBIN-M-43JF: 2019-04-28T17:53:26: %UNICON-6-INFO: %[pid=42147][pname=ChildLabor-3:4]: +++ nx-osv-1: executing command 'copy running-config startup-config' +++
          +copy running-config startup-config
          +
          +
          +[#                                       ]   1%
          +[#                                       ]   2%
          +[##                                      ]   3%
          +[##                                      ]   4%
          +[###                                     ]   5%
          +[###                                     ]   7%
          +[####                                    ]   8%
          +[####                                    ]   9%
          +[#####                                   ]  10%
          +[#####                                   ]  11%
          +[######                                  ]  13%
          +[######                                  ]  14%
          +[#######                                 ]  15%
          +[#######                                 ]  16%
          +[#######                                 ]  17%
          +[########                                ]  19%
          +[#########                               ]  20%
          +[#########                               ]  21%
          +[#########                               ]  22%
          +[##########                              ]  23%
          +[###########                             ]  25%
          +[###########                             ]  26%
          +[###########                             ]  27%
          +[############                            ]  28%
          +[############                            ]  29%
          +[#############                           ]  30%
          +[#############                           ]  32%
          +[##############                          ]  33%
          +[##############                          ]  34%
          +[###############                         ]  35%
          +[###############                         ]  36%
          +[################                        ]  38%
          +[################                        ]  39%
          +[#################                       ]  40%
          +[#################                       ]  41%
          +[#################                       ]  42%
          +[##################                      ]  44%
          +[###################                     ]  45%
          +[###################                     ]  46%
          +[###################                     ]  47%
          +[####################                    ]  48%
          +[#####################                   ]  50%
          +[#####################                   ]  51%
          +[#####################                   ]  52%
          +[######################                  ]  53%
          +[######################                  ]  54%
          +[#######################                 ]  55%
          +[#######################                 ]  57%
          +[########################                ]  58%
          +[########################                ]  59%
          +[#########################               ]  60%
          +[#########################               ]  61%
          +[##########################              ]  63%
          +[##########################              ]  64%
          +[###########################             ]  65%
          +[###########################             ]  66%
          +[###########################             ]  67%
          +[############################            ]  69%
          +[#############################           ]  70%
          +[#############################           ]  71%
          +[#############################           ]  72%
          +[##############################          ]  73%
          +[###############################         ]  75%
          +[###############################         ]  76%
          +[###############################         ]  77%
          +[################################        ]  78%
          +[################################        ]  79%
          +[#################################       ]  80%
          +[#################################       ]  82%
          +[##################################      ]  83%
          +[##################################      ]  84%
          +[###################################     ]  85%
          +[###################################     ]  86%
          +[####################################    ]  88%
          +[####################################    ]  89%
          +[#####################################   ]  90%
          +[#####################################   ]  91%
          +[#####################################   ]  92%
          +[######################################  ]  94%
          +[####################################### ]  95%
          +[####################################### ]  96%
          +[####################################### ]  97%
          +[########################################]  98%
          +[########################################] 100%
          +Copy complete.
          +
          +nx-osv-1# 
          +151: JEAUBIN-M-43JF: 2019-04-28T17:53:35: %LOG-6-INFO: %[pid=42147][pname=ChildLabor-3:4]: <<<< End child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr28_17:53:09.131068/TaskLog.Task-1:pid-42147
          +117: JEAUBIN-M-43JF: 2019-04-28T17:53:36: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: +========================================================================================+
          +118: JEAUBIN-M-43JF: 2019-04-28T17:53:36: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: | Summary                                                                                |
          +119: JEAUBIN-M-43JF: 2019-04-28T17:53:36: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: +========================================================================================+
          +120: JEAUBIN-M-43JF: 2019-04-28T17:53:36: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: | * Summary for device: csr1000v-1                                                       |
          +121: JEAUBIN-M-43JF: 2019-04-28T17:53:36: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: |----------------------------------------------------------------------------------------|
          +122: JEAUBIN-M-43JF: 2019-04-28T17:53:36: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: |     - Successfully saved boot variable                                                 |
          +123: JEAUBIN-M-43JF: 2019-04-28T17:53:36: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: |========================================================================================|
          +124: JEAUBIN-M-43JF: 2019-04-28T17:53:36: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: | * Summary for device: nx-osv-1                                                         |
          +125: JEAUBIN-M-43JF: 2019-04-28T17:53:36: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: |----------------------------------------------------------------------------------------|
          +126: JEAUBIN-M-43JF: 2019-04-28T17:53:36: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: |     - Successfully saved boot variable                                                 |
          +127: JEAUBIN-M-43JF: 2019-04-28T17:53:36: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: |========================================================================================|
          +128: JEAUBIN-M-43JF: 2019-04-28T17:53:36: %AETEST-6-INFO: %[pid=42091][pname=Task-1]: The result of subsection save_bootvar is => PASSED
          +
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + learn_system_defaults + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:01 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          129: JEAUBIN-M-43JF: 2019-04-28T17:53:36: %AETEST-6-INFO: %[pid=42091][pname=Task-1]: Starting subsection learn_system_defaults
          +130: JEAUBIN-M-43JF: 2019-04-28T17:53:36: %UNICON-6-INFO: %[pid=42091][pname=Task-1]: +++ csr1000v-1: executing command 'dir' +++
          +dir
          +Directory of bootflash:/
          +
          +   11  drwx            16384  Jul 18 2018 07:49:17 +00:00  lost+found
          +325121  drwx             4096  Apr 23 2019 16:50:38 +00:00  .installer
          +   12  -rw-        392479704  Jul 18 2018 07:50:04 +00:00  csr1000v-mono-universalk9.16.09.01.SPA.pkg
          +   13  -rw-         40201438  Jul 18 2018 07:50:05 +00:00  csr1000v-rpboot.16.09.01.SPA.pkg
          +   14  -rw-             1941  Jul 18 2018 07:50:05 +00:00  packages.conf
          +105665  drwx             4096  Apr 23 2019 16:46:35 +00:00  core
          +146305  drwx             4096  Apr 23 2019 16:57:36 +00:00  .prst_sync
          +154433  drwx             4096  Jul 18 2018 07:51:06 +00:00  .rollback_timer
          +138177  drwx            12288  Apr 29 2019 00:53:19 +00:00  tracelogs
          +398273  drwx             4096  Jul 18 2018 07:52:07 +00:00  .dbpersist
          +203201  drwx             4096  Jul 18 2018 07:51:17 +00:00  virtual-instance
          +   15  -rw-               30  Apr 23 2019 16:57:31 +00:00  throughput_monitor_params
          +   16  -rw-            12973  Apr 23 2019 17:00:34 +00:00  cvac.log
          +   17  -rw-              157  Apr 23 2019 17:00:40 +00:00  csrlxc-cfg.log
          +406401  drwx             4096  Jul 18 2018 07:52:00 +00:00  onep
          +   18  -rw-                1   Apr 9 2019 00:49:45 +00:00  .cvac_version
          +   19  -rw-               16   Apr 9 2019 00:49:45 +00:00  ovf-env.xml.md5
          +   20  -rw-               34   Apr 9 2019 00:54:45 +00:00  pnp-tech-time
          +   21  -rw-            54686   Apr 9 2019 00:54:46 +00:00  pnp-tech-discovery-summary
          +   22  -rw-           183217  Apr 23 2019 16:43:19 +00:00  crashinfo_RP_00_00_20190423-163950-UTC
          +
          +7897796608 bytes total (6982635520 bytes free)
          +csr1000v-1#
          +134: JEAUBIN-M-43JF: 2019-04-28T17:53:37: %GENIE-6-INFO: %[pid=42091][pname=Task-1]: Default directory on 'csr1000v-1' is 'bootflash:'
          +135: JEAUBIN-M-43JF: 2019-04-28T17:53:37: %UNICON-6-INFO: %[pid=42091][pname=Task-1]: +++ nx-osv-1: executing command 'dir' +++
          +dir
          +
          +       4096    Feb 25 20:49:04 2016  .patch/
          +      11608    Apr 18 15:25:18 2019  201904181121-run.cfg
          +      16384    Feb 25 20:44:49 2016  lost+found/
          +       4096    Feb 26 10:11:16 2016  scripts/
          +   33615360    Feb 11 13:19:49 2016  titanium-d1-kickstart.7.3.0.D1.1.bin
          +  139230420    Feb 11 13:19:50 2016  titanium-d1.7.3.0.D1.1.bin
          +       4096    Feb 25 20:49:07 2016  virtual-instance/
          +
          +Usage for bootflash://
          +  369971200 bytes used
          + 2839990272 bytes free
          + 3209961472 bytes total
          +
          +nx-osv-1# 
          +138: JEAUBIN-M-43JF: 2019-04-28T17:53:37: %GENIE-6-INFO: %[pid=42091][pname=Task-1]: Default directory on 'nx-osv-1' is 'bootflash:'
          +139: JEAUBIN-M-43JF: 2019-04-28T17:53:37: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: +====================================================================================================================================================+
          +140: JEAUBIN-M-43JF: 2019-04-28T17:53:37: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: | Summary                                                                                                                                            |
          +141: JEAUBIN-M-43JF: 2019-04-28T17:53:37: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: +====================================================================================================================================================+
          +142: JEAUBIN-M-43JF: 2019-04-28T17:53:37: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: | * Summary for device: csr1000v-1                                                                                                                   |
          +143: JEAUBIN-M-43JF: 2019-04-28T17:53:37: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +144: JEAUBIN-M-43JF: 2019-04-28T17:53:37: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: |     - Successfully learnt system default directroy                                                                                                 |
          +145: JEAUBIN-M-43JF: 2019-04-28T17:53:37: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: |====================================================================================================================================================|
          +146: JEAUBIN-M-43JF: 2019-04-28T17:53:37: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: | * Summary for device: nx-osv-1                                                                                                                     |
          +147: JEAUBIN-M-43JF: 2019-04-28T17:53:37: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +148: JEAUBIN-M-43JF: 2019-04-28T17:53:37: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: |     - Successfully learnt system default directroy                                                                                                 |
          +149: JEAUBIN-M-43JF: 2019-04-28T17:53:37: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: |====================================================================================================================================================|
          +150: JEAUBIN-M-43JF: 2019-04-28T17:53:37: %AETEST-6-INFO: %[pid=42091][pname=Task-1]: The result of subsection learn_system_defaults is => PASSED
          +151: JEAUBIN-M-43JF: 2019-04-28T17:53:
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + initialize_traffic + + Description + + +
        + expand_more + expand_less +
        + SKIPPED + 0:00:00 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          151: JEAUBIN-M-43JF: 2019-04-28T17:53:37: %AETEST-6-INFO: %[pid=42091][pname=Task-1]: Starting subsection initialize_traffic
          +152: JEAUBIN-M-43JF: 2019-04-28T17:53:37: %GENIE-6-INFO: %[pid=42091][pname=Task-1]: Connect to traffic generator device and configure/start traffic
          +153: JEAUBIN-M-43JF: 2019-04-28T17:53:37: %GENIE-6-INFO: %[pid=42091][pname=Task-1]: For more information visit Genie traffic section http://wwwin-pyats.cisco.com/cisco-shared/genie/latest/harness/user/ixia.html#common-setup-initialize-traffic
          +154: JEAUBIN-M-43JF: 2019-04-28T17:53:37: %AETEST-6-INFO: %[pid=42091][pname=Task-1]: Skipped reason: Traffic generator devices not found in testbed YAML
          +155: JEAUBIN-M-43JF: 2019-04-28T17:53:37: %AETEST-6-INFO: %[pid=42091][pname=Task-1]: The result of subsection initialize_traffic is => SKIPPED
          +
          +
          +
        • +
        +
        +
      • + + +
      +
      +
    • + + +
    • +
      + + arrow_drop_down + Verify_BgpProcessVrfAll.uut.1 + + +
      + expand_more + expand_less +
      + PASSED + 0:00:00 +
      +
      + + + +
        + + + + +
      • +
        + + arrow_drop_down + verify + + +
        + expand_more + expand_less +
        + PASSED + 0:00:00 +
        +
        + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          160: JEAUBIN-M-43JF: 2019-04-28T17:53:38: %AETEST-6-INFO: %[pid=42091][pname=Task-1]: Starting section verify
          +161: JEAUBIN-M-43JF: 2019-04-28T17:53:38: %GENIE-6-INFO: %[part=161.1/3][pid=42091][pname=Task-1]: +------------------------------------------------------------------------------+
          +162: JEAUBIN-M-43JF: 2019-04-28T17:53:38: %GENIE-6-INFO: %[part=161.2/3][pid=42091][pname=Task-1]: |                             1 out of 30 attempt                              |
          +163: JEAUBIN-M-43JF: 2019-04-28T17:53:38: %GENIE-6-INFO: %[part=161.3/3][pid=42091][pname=Task-1]: +------------------------------------------------------------------------------+
          +164: JEAUBIN-M-43JF: 2019-04-28T17:53:38: %UNICON-6-INFO: %[pid=42091][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          +show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Process ID                 : 8610
          +BGP Protocol Started, reason:  : configuration
          +BGP Protocol Tag               : 65000
          +BGP Protocol State             : Running
          +BGP MMODE                      : Not Initialized
          +BGP Memory State               : OK
          +BGP asformat                   : asplain
          +
          +BGP attributes information
          +Number of attribute entries    : 2
          +HWM of attribute entries       : 2
          +Bytes used by entries          : 200
          +Entries pending delete         : 0
          +HWM of entries pending delete  : 0
          +BGP paths per attribute HWM    : 1
          +BGP AS path entries            : 0
          +Bytes used by AS path entries  : 0
          +
          +Information regarding configured VRFs:
          +
          +BGP Information for VRF default
          +VRF Id                         : 1
          +VRF state                      : UP
          +Router-ID                      : 10.2.2.2
          +Configured Router-ID           : 10.2.2.2
          +Confed-ID                      : 0
          +Cluster-ID                     : 0.0.0.0
          +No. of configured peers        : 1
          +No. of pending config peers    : 0
          +No. of established peers       : 1
          +VRF RD                         : Not configured
          +
          +    Information for address family IPv4 Unicast in VRF default
          +    Table Id                   : 1
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    1          1               2          2          1          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +    Information for address family IPv6 Unicast in VRF default
          +    Table Id                   : 80000001
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    0          0               0          0          0          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +nx-osv-1# 
          +168: JEAUBIN-M-43JF: 2019-04-28T17:53:38: %GENIE-6-INFO: %[pid=42091][pname=Task-1]: Saving initial snapshot of this command - To be used for comparing in future verification
          +169: JEAUBIN-M-43JF: 2019-04-28T17:53:38: %AETEST-6-INFO: %[pid=42091][pname=Task-1]: The result of section verify is => PASSED
          +170: JEAUBIN-M-43JF: 2019-04-28T17:53:38: %AETEST-6-INFO: %[pid=42
          +
          +
        • +
        +
        +
      • + + +
      +
      +
    • + + +
    • +
      + + arrow_drop_down + TriggerDemoShutNoShutBgp.uut + + +
      + expand_more + expand_less +
      + PASSED + 0:00:01 +
      +
      + + + +
        + + + + +
      • +
        + + arrow_drop_down + prerequisites + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:00 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          172: JEAUBIN-M-43JF: 2019-04-28T17:53:38: %AETEST-6-INFO: %[pid=42091][pname=Task-1]: Starting section prerequisites
          +173: JEAUBIN-M-43JF: 2019-04-28T17:53:38: %UNICON-6-INFO: %[pid=42091][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          +show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Process ID                 : 8610
          +BGP Protocol Started, reason:  : configuration
          +BGP Protocol Tag               : 65000
          +BGP Protocol State             : Running
          +BGP MMODE                      : Not Initialized
          +BGP Memory State               : OK
          +BGP asformat                   : asplain
          +
          +BGP attributes information
          +Number of attribute entries    : 2
          +HWM of attribute entries       : 2
          +Bytes used by entries          : 200
          +Entries pending delete         : 0
          +HWM of entries pending delete  : 0
          +BGP paths per attribute HWM    : 1
          +BGP AS path entries            : 0
          +Bytes used by AS path entries  : 0
          +
          +Information regarding configured VRFs:
          +
          +BGP Information for VRF default
          +VRF Id                         : 1
          +VRF state                      : UP
          +Router-ID                      : 10.2.2.2
          +Configured Router-ID           : 10.2.2.2
          +Confed-ID                      : 0
          +Cluster-ID                     : 0.0.0.0
          +No. of configured peers        : 1
          +No. of pending config peers    : 0
          +No. of established peers       : 1
          +VRF RD                         : Not configured
          +
          +    Information for address family IPv4 Unicast in VRF default
          +    Table Id                   : 1
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    1          1               2          2          1          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +    Information for address family IPv6 Unicast in VRF default
          +    Table Id                   : 80000001
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    0          0               0          0          0          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +nx-osv-1# 
          +177: JEAUBIN-M-43JF: 2019-04-28T17:53:38: %AETEST-6-INFO: %[pid=42091][pname=Task-1]: The result of section prerequisites is => PASSED
          +178: JEAUBIN-M-43JF: 2019-04-28T17:53:38: %AETEST-6-INFO: %[pid=42
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + shut + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:01 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          178: JEAUBIN-M-43JF: 2019-04-28T17:53:38: %AETEST-6-INFO: %[pid=42091][pname=Task-1]: Starting section shut
          +179: JEAUBIN-M-43JF: 2019-04-28T17:53:38: %UNICON-6-INFO: %[pid=42091][pname=Task-1]: +++ nx-osv-1: config +++
          +config term
          +
          +Enter configuration commands, one per line.  End with CNTL/Z.
          +
          +nx-osv-1(config)# router bgp 65000
          +
          +
          +nx-osv-1(config-router)# shutdown
          +
          +
          +nx-osv-1(config-router)# end
          +
          +
          +nx-osv-1# 
          +184: JEAUBIN-M-43JF: 2019-04-28T17:53:39: %AETEST-6-INFO: %[pid=42091][pname=Task-1]: The result of section shut is => PASSED
          +185: 
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + verify + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:00 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          185: JEAUBIN-M-43JF: 2019-04-28T17:53:39: %AETEST-6-INFO: %[pid=42091][pname=Task-1]: Starting section verify
          +186: JEAUBIN-M-43JF: 2019-04-28T17:53:39: %UNICON-6-INFO: %[pid=42091][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          +show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Process ID                 : 8610
          +BGP Protocol Started, reason:  : configuration
          +BGP Protocol Tag               : 65000
          +BGP Protocol State             : Shutdown
          +BGP MMODE                      : Not Initialized
          +BGP Memory State               : OK
          +BGP asformat                   : asplain
          +
          +BGP attributes information
          +Number of attribute entries    : 2
          +HWM of attribute entries       : 2
          +Bytes used by entries          : 200
          +Entries pending delete         : 0
          +HWM of entries pending delete  : 0
          +BGP paths per attribute HWM    : 1
          +BGP AS path entries            : 0
          +Bytes used by AS path entries  : 0
          +
          +Information regarding configured VRFs:
          +
          +BGP Information for VRF default
          +VRF Id                         : 1
          +VRF state                      : UP
          +Router-ID                      : 10.2.2.2
          +Configured Router-ID           : 10.2.2.2
          +Confed-ID                      : 0
          +Cluster-ID                     : 0.0.0.0
          +No. of configured peers        : 1
          +No. of pending config peers    : 0
          +No. of established peers       : 0
          +VRF RD                         : Not configured
          +
          +    Information for address family IPv4 Unicast in VRF default
          +    Table Id                   : 1
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    1          0               2          2          1          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +    Information for address family IPv6 Unicast in VRF default
          +    Table Id                   : 80000001
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    0          0               0          0          0          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +nx-osv-1# 
          +190: JEAUBIN-M-43JF: 2019-04-28T17:53:39: %AETEST-6-INFO: %[pid=42091][pname=Task-1]: The result of section verify is => PASSED
          +191: JEAUBIN-M-43JF: 2019-04-28T17:53:39: %AETEST-6-INFO: %[pid=42
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + unshut + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:00 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          191: JEAUBIN-M-43JF: 2019-04-28T17:53:39: %AETEST-6-INFO: %[pid=42091][pname=Task-1]: Starting section unshut
          +192: JEAUBIN-M-43JF: 2019-04-28T17:53:39: %UNICON-6-INFO: %[pid=42091][pname=Task-1]: +++ nx-osv-1: config +++
          +config term
          +
          +Enter configuration commands, one per line.  End with CNTL/Z.
          +
          +nx-osv-1(config)# router bgp 65000
          +
          +
          +nx-osv-1(config-router)# no shutdown
          +
          +
          +nx-osv-1(config-router)# end
          +
          +
          +nx-osv-1# 
          +199: JEAUBIN-M-43JF: 2019-04-28T17:53:39: %AETEST-6-INFO: %[pid=42091][pname=Task-1]: The result of section unshut is => PASSED
          +200: 
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + verify_recover + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:00 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          200: JEAUBIN-M-43JF: 2019-04-28T17:53:39: %AETEST-6-INFO: %[pid=42091][pname=Task-1]: Starting section verify_recover
          +201: JEAUBIN-M-43JF: 2019-04-28T17:53:39: %UNICON-6-INFO: %[pid=42091][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          +show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Process ID                 : 8610
          +BGP Protocol Started, reason:  : configuration
          +BGP Protocol Tag               : 65000
          +BGP Protocol State             : Running
          +BGP MMODE                      : Not Initialized
          +BGP Memory State               : OK
          +BGP asformat                   : asplain
          +
          +BGP attributes information
          +Number of attribute entries    : 2
          +HWM of attribute entries       : 2
          +Bytes used by entries          : 200
          +Entries pending delete         : 0
          +HWM of entries pending delete  : 0
          +BGP paths per attribute HWM    : 1
          +BGP AS path entries            : 0
          +Bytes used by AS path entries  : 0
          +
          +Information regarding configured VRFs:
          +
          +BGP Information for VRF default
          +VRF Id                         : 1
          +VRF state                      : UP
          +Router-ID                      : 10.2.2.2
          +Configured Router-ID           : 10.2.2.2
          +Confed-ID                      : 0
          +Cluster-ID                     : 0.0.0.0
          +No. of configured peers        : 1
          +No. of pending config peers    : 0
          +No. of established peers       : 0
          +VRF RD                         : Not configured
          +
          +    Information for address family IPv4 Unicast in VRF default
          +    Table Id                   : 1
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    1          0               2          2          1          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +    Information for address family IPv6 Unicast in VRF default
          +    Table Id                   : 80000001
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    0          0               0          0          0          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +nx-osv-1# 
          +205: JEAUBIN-M-43JF: 2019-04-28T17:53:39: %AETEST-6-INFO: %[pid=42091][pname=Task-1]: The result of section verify_recover is => PASSED
          +206: JEAUBIN-M-43JF: 2019-04-28T17:53:39: %AETEST-6-INFO: %[pid=42
          +
          +
        • +
        +
        +
      • + + +
      +
      +
    • + + +
    • +
      + + arrow_drop_down + Verify_BgpProcessVrfAll.uut.2 + + +
      + expand_more + expand_less +
      + PASSED + 0:00:10 +
      +
      + + + +
        + + + + +
      • +
        + + arrow_drop_down + verify + + +
        + expand_more + expand_less +
        + PASSED + 0:00:10 +
        +
        + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          208: JEAUBIN-M-43JF: 2019-04-28T17:53:40: %AETEST-6-INFO: %[pid=42091][pname=Task-1]: Starting section verify
          +209: JEAUBIN-M-43JF: 2019-04-28T17:53:40: %GENIE-6-INFO: %[part=209.1/3][pid=42091][pname=Task-1]: +------------------------------------------------------------------------------+
          +210: JEAUBIN-M-43JF: 2019-04-28T17:53:40: %GENIE-6-INFO: %[part=209.2/3][pid=42091][pname=Task-1]: |                             1 out of 30 attempt                              |
          +211: JEAUBIN-M-43JF: 2019-04-28T17:53:40: %GENIE-6-INFO: %[part=209.3/3][pid=42091][pname=Task-1]: +------------------------------------------------------------------------------+
          +212: JEAUBIN-M-43JF: 2019-04-28T17:53:40: %UNICON-6-INFO: %[pid=42091][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          +show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Process ID                 : 8610
          +BGP Protocol Started, reason:  : configuration
          +BGP Protocol Tag               : 65000
          +BGP Protocol State             : Running
          +BGP MMODE                      : Not Initialized
          +BGP Memory State               : OK
          +BGP asformat                   : asplain
          +
          +BGP attributes information
          +Number of attribute entries    : 2
          +HWM of attribute entries       : 2
          +Bytes used by entries          : 200
          +Entries pending delete         : 0
          +HWM of entries pending delete  : 0
          +BGP paths per attribute HWM    : 1
          +BGP AS path entries            : 0
          +Bytes used by AS path entries  : 0
          +
          +Information regarding configured VRFs:
          +
          +BGP Information for VRF default
          +VRF Id                         : 1
          +VRF state                      : UP
          +Router-ID                      : 10.2.2.2
          +Configured Router-ID           : 10.2.2.2
          +Confed-ID                      : 0
          +Cluster-ID                     : 0.0.0.0
          +No. of configured peers        : 1
          +No. of pending config peers    : 0
          +No. of established peers       : 0
          +VRF RD                         : Not configured
          +
          +    Information for address family IPv4 Unicast in VRF default
          +    Table Id                   : 1
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    1          0               2          2          1          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +    Information for address family IPv6 Unicast in VRF default
          +    Table Id                   : 80000001
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    0          0               0          0          0          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +nx-osv-1# 
          +216: JEAUBIN-M-43JF: 2019-04-28T17:53:40: %GENIE-6-INFO: %[part=216.1/2][pid=42091][pname=Task-1]: Comparing current snapshot to initial snapshot
          +217: JEAUBIN-M-43JF: 2019-04-28T17:53:40: %GENIE-6-INFO: %[part=216.2/2][pid=42091][pname=Task-1]: Excluding these keys ['bgp_pid', 'hwm_attr_entries', 'bgp_protocol_started_reason', 'aggregate_label', 'bgp_paths_per_hwm_attr', 'bytes_used', 'num_attr_entries', 'router_id', 'paths', 'routes']
          +218: JEAUBIN-M-43JF: 2019-04-28T17:53:40: %GENIE-3-ERROR: %[pid=42091][pname=Task-1]: Retaking snapshot for the verification as the comparison with original one failed
          +219: JEAUBIN-M-43JF: 2019-04-28T17:53:50: %GENIE-6-INFO: %[part=219.1/3][pid=42091][pname=Task-1]: +------------------------------------------------------------------------------+
          +220: JEAUBIN-M-43JF: 2019-04-28T17:53:50: %GENIE-6-INFO: %[part=219.2/3][pid=42091][pname=Task-1]: |                             2 out of 30 attempt                              |
          +221: JEAUBIN-M-43JF: 2019-04-28T17:53:50: %GENIE-6-INFO: %[part=219.3/3][pid=42091][pname=Task-1]: +------------------------------------------------------------------------------+
          +222: JEAUBIN-M-43JF: 2019-04-28T17:53:50: %UNICON-6-INFO: %[pid=42091][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          +show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Process ID                 : 8610
          +BGP Protocol Started, reason:  : configuration
          +BGP Protocol Tag               : 65000
          +BGP Protocol State             : Running
          +BGP MMODE                      : Not Initialized
          +BGP Memory State               : OK
          +BGP asformat                   : asplain
          +
          +BGP attributes information
          +Number of attribute entries    : 2
          +HWM of attribute entries       : 2
          +Bytes used by entries          : 200
          +Entries pending delete         : 0
          +HWM of entries pending delete  : 0
          +BGP paths per attribute HWM    : 1
          +BGP AS path entries            : 0
          +Bytes used by AS path entries  : 0
          +
          +Information regarding configured VRFs:
          +
          +BGP Information for VRF default
          +VRF Id                         : 1
          +VRF state                      : UP
          +Router-ID                      : 10.2.2.2
          +Configured Router-ID           : 10.2.2.2
          +Confed-ID                      : 0
          +Cluster-ID                     : 0.0.0.0
          +No. of configured peers        : 1
          +No. of pending config peers    : 0
          +No. of established peers       : 1
          +VRF RD                         : Not configured
          +
          +    Information for address family IPv4 Unicast in VRF default
          +    Table Id                   : 1
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    1          1               2          2          1          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +    Information for address family IPv6 Unicast in VRF default
          +    Table Id                   : 80000001
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    0          0               0          0          0          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +nx-osv-1# 
          +226: JEAUBIN-M-43JF: 2019-04-28T17:53:50: %GENIE-6-INFO: %[part=226.1/2][pid=42091][pname=Task-1]: Comparing current snapshot to initial snapshot
          +227: JEAUBIN-M-43JF: 2019-04-28T17:53:50: %GENIE-6-INFO: %[part=226.2/2][pid=42091][pname=Task-1]: Excluding these keys ['bgp_pid', 'hwm_attr_entries', 'bgp_protocol_started_reason', 'aggregate_label', 'bgp_paths_per_hwm_attr', 'bytes_used', 'num_attr_entries', 'router_id', 'paths', 'routes']
          +228: JEAUBIN-M-43JF: 2019-04-28T17:53:50: %GENIE-6-INFO: %[pid=42091][pname=Task-1]: Snapshot is same as initial snapshot
          +229: JEAUBIN-M-43JF: 2019-04-28T17:53:50: %AETEST-6-INFO: %[pid=42091][pname=Task-1]: The result of section verify is => PASSED
          +230: JEAUBIN-M-43JF: 2019-04-28T17:53:50: %AETEST-6-INFO: %[pid=42091][pname=Task-1]: The result of testcase Verify_BgpProcessVrfAll
          +
          +
        • +
        +
        +
      • + + +
      +
      +
    • + + +
    • +
      + + arrow_drop_down + commonCleanup + + +
      + expand_more + expand_less +
      + PASSED + 0:00:02 +
      +
      + + + +
        + + + + +
      • +
        + + arrow_drop_down + verify_configuration_snapshot + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:01 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          232: JEAUBIN-M-43JF: 2019-04-28T17:53:50: %AETEST-6-INFO: %[pid=42091][pname=Task-1]: Starting subsection verify_configuration_snapshot
          +233: JEAUBIN-M-43JF: 2019-04-28T17:53:50: %GENIE-6-INFO: %[pid=42091][pname=Task-1]: Verify if the devices' configuration has been modified within the run. A new snapshot is taken and is compared with the one taken in Common Setup
          +234: JEAUBIN-M-43JF: 2019-04-28T17:53:50: %GENIE-6-INFO: %[pid=42091][pname=Task-1]: For more information visit Genie check_config section http://wwwin-pyats.cisco.com/cisco-shared/genie/latest/harness/user/gettingstarted.html#check-config
          +2: JEAUBIN-M-43JF: 2019-04-28T17:53:50: %LOG-6-INFO: %[pid=42273][pname=ChildLabor-3:5]: >>>> Begin child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr28_17:53:09.131068/TaskLog.Task-1:pid-42273
          +3: JEAUBIN-M-43JF: 2019-04-28T17:53:50: %UNICON-6-INFO: %[pid=42273][pname=ChildLabor-3:5]: +++ csr1000v-1: executing command 'show running-config' +++
          +show running-config
          +Building configuration...
          +
          +Current configuration : 4219 bytes
          +!
          +! Last configuration change at 00:53:15 UTC Mon Apr 29 2019
          +!
          +version 16.9
          +service config
          +service timestamps debug datetime msec
          +service timestamps log datetime msec
          +platform qfp utilization monitor load 80
          +no platform punt-keepalive disable-kernel-core
          +platform console serial
          +!
          +hostname csr1000v-1
          +!
          +boot-start-marker
          +boot-end-marker
          +!
          +!
          +no logging console
          +enable secret 5 $1$wlDY$aYpdGzmHlBCznQBCYZX/q0
          +!
          +no aaa new-model
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +ip admission watch-list expiry-time 0
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +subscriber templating
          +! 
          +! 
          +! 
          +! 
          +!
          +multilink bundle-name authenticated
          +!
          +!
          +!
          +!
          +!
          +crypto pki trustpoint TP-self-signed-1664596352
          + enrollment selfsigned
          + subject-name cn=IOS-Self-Signed-Certificate-1664596352
          + revocation-check none
          + rsakeypair TP-self-signed-1664596352
          +!
          +!
          +crypto pki certificate chain TP-self-signed-1664596352
          + certificate self-signed 01
          +  30820330 30820218 A0030201 02020101 300D0609 2A864886 F70D0101 05050030 
          +  31312F30 2D060355 04031326 494F532D 53656C66 2D536967 6E65642D 43657274 
          +  69666963 6174652D 31363634 35393633 3532301E 170D3139 30343039 30303530 
          +  30335A17 0D333030 31303130 30303030 305A3031 312F302D 06035504 03132649 
          +  4F532D53 656C662D 5369676E 65642D43 65727469 66696361 74652D31 36363435 
          +  39363335 32308201 22300D06 092A8648 86F70D01 01010500 0382010F 00308201 
          +  0A028201 01009251 9249BF1E CAEB9073 0EE0254F 13AFC868 50B488E0 537408FD 
          +  27011BAA 346D19DA 70656043 4F7785F0 6679CC26 744BF77B 4E67A312 4D08F243 
          +  559E28A0 DEC217DD B48FE7F2 67BF339F 125E17EB FED1B10F 9E6EE7B5 C250C85A 
          +  A939DE1E DDC830F8 89230BA1 DB106783 8B09A777 7A92D388 03015F80 1AC7FC41 
          +  8BBAA19B 04600DCC F9D6A266 235B989D 6B864C35 8888BE4F 4817B4C4 B53C1FB5 
          +  CA53D93E 96BC900D CFF18777 FFF66D5E 3A46D6E3 DE6DE5F4 5151A66C 1382933A 
          +  2A46407E 53FBA2B1 141EA839 37B34B95 E60D31AC 496128CC E2A645A4 C9F42BE8 
          +  493A5748 4F1D0D5E 949312DF DFCAD602 B49025EF B3828CA0 08708BFD 150DF77A 
          +  4E22B257 6EC50203 010001A3 53305130 0F060355 1D130101 FF040530 030101FF 
          +  301F0603 551D2304 18301680 1434CE87 BC30C852 D663D826 E068BACB B500AC89 
          +  92301D06 03551D0E 04160414 34CE87BC 30C852D6 63D826E0 68BACBB5 00AC8992 
          +  300D0609 2A864886 F70D0101 05050003 82010100 4A426F44 7A22F137 615ABF5F 
          +  4B595C5B 03483695 BCE4041C 766D1273 219E3257 618DBCBE 260FD6F7 44CA69B4 
          +  467B77A3 0032C6A2 D401423E E780E18F A498EE6C FB5162EF 91422C4A 51B52384 
          +  0595C987 80FD4FBA 4EFE8227 76C6522E 02C0F548 0A1C3F20 7C176D4B C2458EEB 
          +  6B437FFE B3DEA4D4 7105CFC4 F83B5A51 9A4F43C5 8DC14533 4A5D0AE3 4269294E 
          +  2FBB8563 8A806EBE 0545F028 4C0B32ED A7840E4A 8F4FFF1D 894AD9FD 8C958C97 
          +  8DD917D5 3CBC3399 C481D57F 144571B1 ADC3B2B5 E6990255 600B5E2D 28D9719F 
          +  0091B2D7 6C988EFA 8627AE88 BAEA521A D46E09ED 5A692525 A77157B5 90A97B84 
          +  94BF8540 1C1FF02C B3848B50 2E68DEA6 DD1488C8
          +  	quit
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +license udi pid CSR1000V sn 9P34NU3ZQ4L
          +no license smart enable
          +diagnostic bootup level minimal
          +!
          +spanning-tree extend system-id
          +!
          +!
          +!
          +username cisco privilege 15 secret 5 $1$Hxh.$djLU5CFb2av38EBH6WO8a/
          +!
          +redundancy
          +!
          +!
          +!
          +!
          +!
          +!
          +! 
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +! 
          +! 
          +!
          +!
          +interface Loopback0
          + ip address 10.1.1.1 255.255.255.255
          + ip ospf 1 area 0
          +!
          +interface Loopback1
          + ip address 10.11.11.11 255.255.255.255
          +!
          +interface GigabitEthernet1
          + ip address dhcp
          + negotiation auto
          + no mop enabled
          + no mop sysid
          +!
          +interface GigabitEthernet2
          + ip address 10.0.1.1 255.255.255.0
          + ip ospf 1 area 0
          + negotiation auto
          + no mop enabled
          + no mop sysid
          +!
          +interface GigabitEthernet3
          + ip address 10.0.2.1 255.255.255.0
          + ip ospf 1 area 0
          + negotiation auto
          + no mop enabled
          + no mop sysid
          +!
          +router ospf 1
          + router-id 10.1.1.1
          +!
          +router bgp 65000
          + bgp router-id 10.1.1.1
          + bgp log-neighbor-changes
          + no bgp default ipv4-unicast
          + neighbor 10.2.2.2 remote-as 65000
          + neighbor 10.2.2.2 update-source Loopback0
          + !
          + address-family ipv4
          +  network 10.11.11.11 mask 255.255.255.255
          +  neighbor 10.2.2.2 activate
          + exit-address-family
          +!
          +!
          +virtual-service csr_mgmt
          +!
          +ip forward-protocol nd
          +ip http server
          +ip http authentication local
          +ip http secure-server
          +ip http client source-interface GigabitEthernet1
          +!
          +!
          +!
          +!
          +!
          +!
          +control-plane
          +!
          +!
          +!
          +!
          +!
          +!
          +line con 0
          + exec-timeout 0 0
          + stopbits 1
          +line vty 0
          + login
          +line vty 1
          + login
          + length 20
          +line vty 2 4
          + login
          +!
          +!
          +!
          +!
          +!
          +!
          +end
          +
          +csr1000v-1#
          +29: JEAUBIN-M-43JF: 2019-04-28T17:53:51: %LOG-6-INFO: %[pid=42273][pname=ChildLabor-3:5]: <<<< End child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr28_17:53:09.131068/TaskLog.Task-1:pid-42273
          +2: JEAUBIN-M-43JF: 2019-04-28T17:53:50: %LOG-6-INFO: %[pid=42274][pname=ChildLabor-3:6]: >>>> Begin child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr28_17:53:09.131068/TaskLog.Task-1:pid-42274
          +3: JEAUBIN-M-43JF: 2019-04-28T17:53:50: %UNICON-6-INFO: %[pid=42274][pname=ChildLabor-3:6]: +++ nx-osv-1: executing command 'show running-config' +++
          +show running-config
          +
          +
          +!Command: show running-config
          +!Time: Mon Apr 29 00:59:29 2019
          +
          +version 7.3(0)D1(1)
          +power redundancy-mode redundant
          +license grace-period
          +
          +hostname nx-osv-1
          +vdc nx-osv-1 id 1
          +  limit-resource module-type m1 m1xl m2xl f2e 
          +  allocate interface Ethernet2/1-48
          +  allocate interface Ethernet3/1-48
          +  allocate interface Ethernet4/1-48
          +  limit-resource vlan minimum 16 maximum 4094
          +  limit-resource vrf minimum 2 maximum 4096
          +  limit-resource port-channel minimum 0 maximum 768
          +  limit-resource u4route-mem minimum 96 maximum 96
          +  limit-resource u6route-mem minimum 24 maximum 24
          +  limit-resource m4route-mem minimum 58 maximum 58
          +  limit-resource m6route-mem minimum 8 maximum 8
          +
          +feature ospf
          +feature bgp
          +
          +username admin password 5 $5$Otc7T0NC$K.ulnSZnSyXLrTGNBdtLgZJXEa8EeNx.BrdZ98XyK2C  role network-admin
          +no password strength-check
          +ip domain-lookup
          +vlan dot1Q tag native
          +system default switchport
          +system jumbomtu 0
          +no logging event trunk-status enable
          +copp profile strict
          +snmp-server user admin auth md5 0x328945d53e05e8e7207f8c20b142f0b7 priv 0x328945d53e05e8e7207f8c20b142f0b7 localizedkey engineID 128:0:0:9:3:0:0:0:0:0:0
          +rmon event 1 log description FATAL(1) owner PMON@FATAL
          +rmon event 2 log description CRITICAL(2) owner PMON@CRITICAL
          +rmon event 3 log description ERROR(3) owner PMON@ERROR
          +rmon event 4 log description WARNING(4) owner PMON@WARNING
          +rmon event 5 log description INFORMATION(5) owner PMON@INFO
          +snmp-server enable traps link
          +snmp-server enable traps link cisco-xcvr-mon-status-chg
          +ntp server 216.239.35.0 prefer
          +
          +vlan 1
          +
          +vrf context management
          +
          +interface mgmt0
          +  vrf member management
          +
          +interface Ethernet2/1
          +  no switchport
          +  mac-address 0000.0000.002f
          +  ip address 10.0.1.2/24
          +  ip router ospf 1 area 0.0.0.0
          +  no shutdown
          +
          +interface Ethernet2/2
          +  no switchport
          +  mac-address 0000.0000.002f
          +  ip address 10.0.2.2/24
          +  ip router ospf 1 area 0.0.0.0
          +  no shutdown
          +
          +interface Ethernet2/3
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/4
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/5
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/6
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/7
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/8
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/9
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/10
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/11
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/12
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/13
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/14
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/15
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/16
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/17
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/18
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/19
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/20
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/21
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/22
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/23
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/24
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/25
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/26
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/27
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/28
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/29
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/30
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/31
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/32
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/33
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/34
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/35
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/36
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/37
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/38
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/39
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/40
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/41
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/42
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/43
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/44
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/45
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/46
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/47
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/48
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet3/1
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/2
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/3
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/4
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/5
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/6
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/7
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/8
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/9
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/10
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/11
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/12
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/13
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/14
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/15
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/16
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/17
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/18
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/19
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/20
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/21
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/22
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/23
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/24
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/25
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/26
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/27
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/28
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/29
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/30
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/31
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/32
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/33
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/34
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/35
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/36
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/37
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/38
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/39
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/40
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/41
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/42
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/43
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/44
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/45
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/46
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/47
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/48
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet4/1
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/2
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/3
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/4
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/5
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/6
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/7
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/8
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/9
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/10
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/11
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/12
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/13
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/14
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/15
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/16
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/17
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/18
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/19
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/20
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/21
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/22
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/23
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/24
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/25
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/26
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/27
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/28
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/29
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/30
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/31
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/32
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/33
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/34
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/35
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/36
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/37
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/38
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/39
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/40
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/41
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/42
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/43
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/44
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/45
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/46
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/47
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/48
          +  switchport
          +  no shutdown
          +
          +interface loopback0
          +  ip address 10.2.2.2/32
          +  ip router ospf 1 area 0.0.0.0
          +
          +interface loopback1
          +  ip address 10.22.22.22/32
          +line console
          +  exec-timeout 0
          +  terminal width  511
          +line vty
          +boot kickstart bootflash:/titanium-d1-kickstart.7.3.0.D1.1.bin
          +boot system bootflash:/titanium-d1.7.3.0.D1.1.bin 
          +router ospf 1
          +  router-id 10.2.2.2
          +router bgp 65000
          +  router-id 10.2.2.2
          +  address-family ipv4 unicast
          +    network 10.22.22.22/32
          +  neighbor 10.1.1.1
          +    remote-as 65000
          +    update-source loopback0
          +    address-family ipv4 unicast
          +no logging console
          +
          +
          +
          +nx-osv-1# 
          +58: JEAUBIN-M-43JF: 2019-04-28T17:53:51: %LOG-6-INFO: %[pid=42274][pname=ChildLabor-3:6]: <<<< End child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr28_17:53:09.131068/TaskLog.Task-1:pid-42274
          +235: JEAUBIN-M-43JF: 2019-04-28T17:53:51: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: +====================================================================================================================================================+
          +236: JEAUBIN-M-43JF: 2019-04-28T17:53:51: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: | Check Post configuration Summary                                                                                                                   |
          +237: JEAUBIN-M-43JF: 2019-04-28T17:53:51: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: +====================================================================================================================================================+
          +238: JEAUBIN-M-43JF: 2019-04-28T17:53:51: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: | * Summary for device: csr1000v-1                                                                                                                   |
          +239: JEAUBIN-M-43JF: 2019-04-28T17:53:51: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: |     - Comparison between original configuration taken at common setup and OPS object snapshots are equal                                           |
          +240: JEAUBIN-M-43JF: 2019-04-28T17:53:51: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: |****************************************************************************************************************************************************|
          +241: JEAUBIN-M-43JF: 2019-04-28T17:53:51: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: | * Summary for device: nx-osv-1                                                                                                                     |
          +242: JEAUBIN-M-43JF: 2019-04-28T17:53:51: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: |     - Comparison between original configuration taken at common setup and OPS object snapshots are equal                                           |
          +243: JEAUBIN-M-43JF: 2019-04-28T17:53:51: %ROOT-6-INFO: %[pid=42091][pname=Task-1]: |****************************************************************************************************************************************************|
          +244: JEAUBIN-M-43JF: 2019-04-28T17:53:51: %GENIE-6-INFO: %[pid=42091][pname=Task-1]: 
          +
          +245: JEAUBIN-M-43JF: 2019-04-28T17:53:51: %AETEST-6-INFO: %[pid=42091][pname=Task-1]: The result of subsection verify_configuration_snapshot is => PASSED
          +
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + stop_traffic + + Description + + +
        + expand_more + expand_less +
        + SKIPPED + 0:00:01 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          246: JEAUBIN-M-43JF: 2019-04-28T17:53:51: %AETEST-6-INFO: %[pid=42091][pname=Task-1]: Starting subsection stop_traffic
          +247: JEAUBIN-M-43JF: 2019-04-28T17:53:51: %GENIE-6-INFO: %[pid=42091][pname=Task-1]: Stop protocols and traffic on traffic generator
          +248: JEAUBIN-M-43JF: 2019-04-28T17:53:51: %GENIE-6-INFO: %[pid=42091][pname=Task-1]: For more information visit Genie traffic section http://wwwin-pyats.cisco.com/cisco-shared/genie/latest/harness/user/ixia.html#common-cleanup-stop-traffic
          +249: JEAUBIN-M-43JF: 2019-04-28T17:53:51: %AETEST-6-INFO: %[pid=42091][pname=Task-1]: Skipped reason: Traffic generator devices not found in testbed YAML
          +250: JEAUBIN-M-43JF: 2019-04-28T17:53:51: %AETEST-6-INFO: %[pid=42091][pname=Task-1]: The result of subsection stop_traffic is => SKIPPED
          +
          +
          +
        • +
        +
        +
      • + + +
      +
      +
    • + +
    +
    +
  • + + +
+
+
+
+ + +
+ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/3-Automate/output/TaksLog3.html/TaskLog.html b/3-Automate/output/TaksLog3.html/TaskLog.html new file mode 100644 index 0000000..61d0ed3 --- /dev/null +++ b/3-Automate/output/TaksLog3.html/TaskLog.html @@ -0,0 +1,5567 @@ + + + + + LogViewer + + + + + + + + job + + + + +
+ + + +
+
+
+
+
+
    + +
  • +
    + arrow_drop_down +
    Overview
    +
    +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Job Name:job
    Start Time:2019-04-28T17:54:24
    End Time:2019-04-28T17:55:10
    Submitter:jeaubin
    Run Time:0:00:45
    Testbed:ma_new_tb
    +
    +
    +
    +
    +
    +
    +
  • + + + + + +
  • + + +
    + + arrow_drop_down +
    Task-1: genie_testscript.py
    arrow_drop_down + + +
    + expand_more + expand_less +
    +
    +
    + + + + +
      + + +
    • +
      + + arrow_drop_down + commonSetup + + +
      + expand_more + expand_less +
      + PASSED + 0:00:17 +
      +
      + + + +
        + + + + +
      • +
        + + arrow_drop_down + connect + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:04 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          16: JEAUBIN-M-43JF: 2019-04-28T17:54:32: %AETEST-6-INFO: %[pid=42444][pname=Task-1]: Starting subsection connect
          +17: JEAUBIN-M-43JF: 2019-04-28T17:54:32: %GENIE-6-INFO: %[pid=42444][pname=Task-1]: Connect to all the devices described in the 'Mapping Datafile' and 'Testbed file': nx-osv-1, csr1000v-1
          +18: JEAUBIN-M-43JF: 2019-04-28T17:54:32: %GENIE-6-INFO: %[pid=42444][pname=Task-1]: For more information visit Genie connection section documentation: http://wwwin-pyats.cisco.com/cisco-shared/genie/latest/harness/user/gettingstarted.html#set-up
          +
          +19: JEAUBIN-M-43JF: 2019-04-28T17:54:32: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1 logfile /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr28_17:54:23.204811/nx-osv-1-cli-1556499272.log +++
          +20: JEAUBIN-M-43JF: 2019-04-28T17:54:32: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ Unicon plugin nxos +++
          +21: JEAUBIN-M-43JF: 2019-04-28T17:54:32: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ connection to spawn: telnet 172.25.192.90 17002, id: 4688234872 +++
          +22: JEAUBIN-M-43JF: 2019-04-28T17:54:32: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: connection to nx-osv-1
          +Trying 172.25.192.90...
          +Connected to asg-virl-ubuntu.cisco.com.
          +Escape character is '^]'.
          +
          +
          +
          +nx-osv-1# 
          +25: JEAUBIN-M-43JF: 2019-04-28T17:54:32: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ initializing handle +++
          +26: JEAUBIN-M-43JF: 2019-04-28T17:54:32: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'term length 0' +++
          +term length 0
          +
          +
          +nx-osv-1# 
          +28: JEAUBIN-M-43JF: 2019-04-28T17:54:33: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'term width 511' +++
          +term width 511
          +
          +
          +nx-osv-1# 
          +30: JEAUBIN-M-43JF: 2019-04-28T17:54:33: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'terminal session-timeout 0' +++
          +terminal session-timeout 0
          +
          +
          +nx-osv-1# 
          +32: JEAUBIN-M-43JF: 2019-04-28T17:54:33: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: config +++
          +config term
          +
          +Enter configuration commands, one per line.  End with CNTL/Z.
          +
          +nx-osv-1(config)# no logging console
          +
          +
          +nx-osv-1(config)# line console
          +
          +
          +nx-osv-1(config-console)# exec-timeout 0
          +
          +
          +nx-osv-1(config-console)# terminal width 511
          +
          +
          +nx-osv-1(config-console)# end
          +
          +
          +nx-osv-1# 
          +39: JEAUBIN-M-43JF: 2019-04-28T17:54:34: %GENIE-6-INFO: %[pid=42444][pname=Task-1]: 
          +40: JEAUBIN-M-43JF: 2019-04-28T17:54:34: %GENIE-6-INFO: %[part=40.1/3][pid=42444][pname=Task-1]: +------------------------------------------------------------------------------+
          +41: JEAUBIN-M-43JF: 2019-04-28T17:54:34: %GENIE-6-INFO: %[part=40.2/3][pid=42444][pname=Task-1]: |              Identifying device 'nx-osv-1' management interface              |
          +42: JEAUBIN-M-43JF: 2019-04-28T17:54:34: %GENIE-6-INFO: %[part=40.3/3][pid=42444][pname=Task-1]: +------------------------------------------------------------------------------+
          +43: JEAUBIN-M-43JF: 2019-04-28T17:54:34: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'show ip interface brief vrf all | include 172.25.192.90' +++
          +show ip interface brief vrf all | include 172.25.192.90
          +
          +
          +nx-osv-1# 
          +45: JEAUBIN-M-43JF: 2019-04-28T17:54:34: %GENIE-6-INFO: %[pid=42444][pname=Task-1]: 
          +46: JEAUBIN-M-43JF: 2019-04-28T17:54:34: %GENIE-6-INFO: %[pid=42444][pname=Task-1]: Device 'nx-osv-1' does not have a management interface configured which could be found
          +47: JEAUBIN-M-43JF: 2019-04-28T17:54:34: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ csr1000v-1 logfile /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr28_17:54:23.204811/csr1000v-1-cli-1556499274.log +++
          +48: JEAUBIN-M-43JF: 2019-04-28T17:54:34: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ Unicon plugin iosxe +++
          +49: JEAUBIN-M-43JF: 2019-04-28T17:54:34: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ connection to spawn: telnet 172.25.192.90 17000, id: 4688539600 +++
          +50: JEAUBIN-M-43JF: 2019-04-28T17:54:34: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: connection to csr1000v-1
          +Trying 172.25.192.90...
          +Connected to asg-virl-ubuntu.cisco.com.
          +Escape character is '^]'.
          +
          +csr1000v-1#
          +53: JEAUBIN-M-43JF: 2019-04-28T17:54:35: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ initializing handle +++
          +54: JEAUBIN-M-43JF: 2019-04-28T17:54:35: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ csr1000v-1: executing command 'term length 0' +++
          +term length 0
          +csr1000v-1#
          +56: JEAUBIN-M-43JF: 2019-04-28T17:54:35: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ csr1000v-1: executing command 'term width 0' +++
          +term width 0
          +csr1000v-1#
          +58: JEAUBIN-M-43JF: 2019-04-28T17:54:35: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ csr1000v-1: config +++
          +config term
          +Enter configuration commands, one per line.  End with CNTL/Z.
          +csr1000v-1(config)#no logging console
          +csr1000v-1(config)#line console 0
          +csr1000v-1(config-line)#exec-timeout 0
          +csr1000v-1(config-line)#end
          +csr1000v-1#
          +64: JEAUBIN-M-43JF: 2019-04-28T17:54:36: %GENIE-6-INFO: %[pid=42444][pname=Task-1]: 
          +65: JEAUBIN-M-43JF: 2019-04-28T17:54:36: %GENIE-6-INFO: %[part=65.1/3][pid=42444][pname=Task-1]: +------------------------------------------------------------------------------+
          +66: JEAUBIN-M-43JF: 2019-04-28T17:54:36: %GENIE-6-INFO: %[part=65.2/3][pid=42444][pname=Task-1]: |             Identifying device 'csr1000v-1' management interface             |
          +67: JEAUBIN-M-43JF: 2019-04-28T17:54:36: %GENIE-6-INFO: %[part=65.3/3][pid=42444][pname=Task-1]: +------------------------------------------------------------------------------+
          +68: JEAUBIN-M-43JF: 2019-04-28T17:54:36: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ csr1000v-1: executing command 'show ip interface brief | include 172.25.192.90' +++
          +show ip interface brief | include 172.25.192.90
          +csr1000v-1#
          +70: JEAUBIN-M-43JF: 2019-04-28T17:54:36: %GENIE-6-INFO: %[pid=42444][pname=Task-1]: 
          +71: JEAUBIN-M-43JF: 2019-04-28T17:54:36: %GENIE-6-INFO: %[pid=42444][pname=Task-1]: Device 'csr1000v-1' does not have a management interface configured which could be found
          +72: JEAUBIN-M-43JF: 2019-04-28T17:54:36: %GENIE-6-INFO: %[pid=42444][pname=Task-1]: 
          +
          +73: JEAUBIN-M-43JF: 2019-04-28T17:54:36: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: +====================================================================================================================================================+
          +74: JEAUBIN-M-43JF: 2019-04-28T17:54:36: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: | Connection Summary                                                                                                                                 |
          +75: JEAUBIN-M-43JF: 2019-04-28T17:54:36: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: +====================================================================================================================================================+
          +76: JEAUBIN-M-43JF: 2019-04-28T17:54:36: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: | * Summary for device: csr1000v-1                                                                                                                   |
          +77: JEAUBIN-M-43JF: 2019-04-28T17:54:36: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +78: JEAUBIN-M-43JF: 2019-04-28T17:54:36: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |     - Connected with alias 'cli' using connection 'a'                                                                                              |
          +79: JEAUBIN-M-43JF: 2019-04-28T17:54:36: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |====================================================================================================================================================|
          +80: JEAUBIN-M-43JF: 2019-04-28T17:54:36: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: | * Summary for device: nx-osv-1                                                                                                                     |
          +81: JEAUBIN-M-43JF: 2019-04-28T17:54:36: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +82: JEAUBIN-M-43JF: 2019-04-28T17:54:36: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |     - Connected with alias 'cli' using connection 'cli'                                                                                            |
          +83: JEAUBIN-M-43JF: 2019-04-28T17:54:36: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |====================================================================================================================================================|
          +84: JEAUBIN-M-43JF: 2019-04-28T17:54:36: %GENIE-6-INFO: %[part=84.1/2][pid=42444][pname=Task-1]: 
          +85: JEAUBIN-M-43JF: 2019-04-28T17:54:36: %GENIE-6-INFO: %[part=84.2/2][pid=42444][pname=Task-1]: Information about devices and connections can be found in the Testbed file and Mapping datafile
          +86: JEAUBIN-M-43JF: 2019-04-28T17:54:36: %AETEST-6-INFO: %[pid=42444][pname=Task-1]: The result of subsection connect is => PASSED
          +87: JEAUBIN-M-43JF: 2019-04-
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + configure + + Description + + +
        + expand_more + expand_less +
        + SKIPPED + 0:00:00 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          87: JEAUBIN-M-43JF: 2019-04-28T17:54:36: %AETEST-6-INFO: %[pid=42444][pname=Task-1]: Starting subsection configure
          +88: JEAUBIN-M-43JF: 2019-04-28T17:54:36: %GENIE-6-INFO: %[pid=42444][pname=Task-1]: Configure each device with the configuration provided in the 'Config datafile'
          +89: JEAUBIN-M-43JF: 2019-04-28T17:54:36: %GENIE-6-INFO: %[pid=42444][pname=Task-1]: For more information visit Genie configure section http://wwwin-pyats.cisco.com/cisco-shared/genie/latest/harness/user/gettingstarted.html#configuration
          +90: JEAUBIN-M-43JF: 2019-04-28T17:54:36: %ROOT-6-INFO: %[pid=42444][pname=Task-1]:    +====================================================================================================================================================+
          +91: JEAUBIN-M-43JF: 2019-04-28T17:54:36: %ROOT-6-INFO: %[pid=42444][pname=Task-1]:    | Configuration Summary                                                                                                                              |
          +92: JEAUBIN-M-43JF: 2019-04-28T17:54:36: %ROOT-6-INFO: %[pid=42444][pname=Task-1]:    +====================================================================================================================================================+
          +93: JEAUBIN-M-43JF: 2019-04-28T17:54:36: %ROOT-4-WARNING: %[pid=42444][pname=Task-1]: |     - No configuration to apply on any device                                                                                                      |
          +94: JEAUBIN-M-43JF: 2019-04-28T17:54:36: %ROOT-6-INFO: %[pid=42444][pname=Task-1]:    |====================================================================================================================================================|
          +95: JEAUBIN-M-43JF: 2019-04-28T17:54:36: %GENIE-6-INFO: %[pid=42444][pname=Task-1]: 
          +
          +96: JEAUBIN-M-43JF: 2019-04-28T17:54:36: %AETEST-6-INFO: %[pid=42444][pname=Task-1]: Skipped reason: No configuration to be applied on any device
          +97: JEAUBIN-M-43JF: 2019-04-28T17:54:36: %AETEST-6-INFO: %[pid=42444][pname=Task-1]: The result of subsection configure is => SKIPPED
          +
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + configuration_snapshot + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:01 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          98: JEAUBIN-M-43JF: 2019-04-28T17:54:36: %AETEST-6-INFO: %[pid=42444][pname=Task-1]: Starting subsection configuration_snapshot
          +99: JEAUBIN-M-43JF: 2019-04-28T17:54:36: %GENIE-6-INFO: %[pid=42444][pname=Task-1]: Take a snapshot of the configuration of each device. In the Common Cleanup, the same process will be done to make sure no extra configuration remains on the devices
          +100: JEAUBIN-M-43JF: 2019-04-28T17:54:36: %GENIE-6-INFO: %[pid=42444][pname=Task-1]: For more information visit Genie check_config section http://wwwin-pyats.cisco.com/cisco-shared/genie/latest/harness/user/gettingstarted.html#check-config
          +2: JEAUBIN-M-43JF: 2019-04-28T17:54:36: %LOG-6-INFO: %[pid=42533][pname=ChildLabor-3:1]: >>>> Begin child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr28_17:54:23.204811/TaskLog.Task-1:pid-42533
          +3: JEAUBIN-M-43JF: 2019-04-28T17:54:36: %UNICON-6-INFO: %[pid=42533][pname=ChildLabor-3:1]: +++ csr1000v-1: executing command 'show running-config' +++
          +show running-config
          +Building configuration...
          +
          +Current configuration : 4219 bytes
          +!
          +! Last configuration change at 00:54:25 UTC Mon Apr 29 2019
          +!
          +version 16.9
          +service config
          +service timestamps debug datetime msec
          +service timestamps log datetime msec
          +platform qfp utilization monitor load 80
          +no platform punt-keepalive disable-kernel-core
          +platform console serial
          +!
          +hostname csr1000v-1
          +!
          +boot-start-marker
          +boot-end-marker
          +!
          +!
          +no logging console
          +enable secret 5 $1$wlDY$aYpdGzmHlBCznQBCYZX/q0
          +!
          +no aaa new-model
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +ip admission watch-list expiry-time 0
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +subscriber templating
          +! 
          +! 
          +! 
          +! 
          +!
          +multilink bundle-name authenticated
          +!
          +!
          +!
          +!
          +!
          +crypto pki trustpoint TP-self-signed-1664596352
          + enrollment selfsigned
          + subject-name cn=IOS-Self-Signed-Certificate-1664596352
          + revocation-check none
          + rsakeypair TP-self-signed-1664596352
          +!
          +!
          +crypto pki certificate chain TP-self-signed-1664596352
          + certificate self-signed 01
          +  30820330 30820218 A0030201 02020101 300D0609 2A864886 F70D0101 05050030 
          +  31312F30 2D060355 04031326 494F532D 53656C66 2D536967 6E65642D 43657274 
          +  69666963 6174652D 31363634 35393633 3532301E 170D3139 30343039 30303530 
          +  30335A17 0D333030 31303130 30303030 305A3031 312F302D 06035504 03132649 
          +  4F532D53 656C662D 5369676E 65642D43 65727469 66696361 74652D31 36363435 
          +  39363335 32308201 22300D06 092A8648 86F70D01 01010500 0382010F 00308201 
          +  0A028201 01009251 9249BF1E CAEB9073 0EE0254F 13AFC868 50B488E0 537408FD 
          +  27011BAA 346D19DA 70656043 4F7785F0 6679CC26 744BF77B 4E67A312 4D08F243 
          +  559E28A0 DEC217DD B48FE7F2 67BF339F 125E17EB FED1B10F 9E6EE7B5 C250C85A 
          +  A939DE1E DDC830F8 89230BA1 DB106783 8B09A777 7A92D388 03015F80 1AC7FC41 
          +  8BBAA19B 04600DCC F9D6A266 235B989D 6B864C35 8888BE4F 4817B4C4 B53C1FB5 
          +  CA53D93E 96BC900D CFF18777 FFF66D5E 3A46D6E3 DE6DE5F4 5151A66C 1382933A 
          +  2A46407E 53FBA2B1 141EA839 37B34B95 E60D31AC 496128CC E2A645A4 C9F42BE8 
          +  493A5748 4F1D0D5E 949312DF DFCAD602 B49025EF B3828CA0 08708BFD 150DF77A 
          +  4E22B257 6EC50203 010001A3 53305130 0F060355 1D130101 FF040530 030101FF 
          +  301F0603 551D2304 18301680 1434CE87 BC30C852 D663D826 E068BACB B500AC89 
          +  92301D06 03551D0E 04160414 34CE87BC 30C852D6 63D826E0 68BACBB5 00AC8992 
          +  300D0609 2A864886 F70D0101 05050003 82010100 4A426F44 7A22F137 615ABF5F 
          +  4B595C5B 03483695 BCE4041C 766D1273 219E3257 618DBCBE 260FD6F7 44CA69B4 
          +  467B77A3 0032C6A2 D401423E E780E18F A498EE6C FB5162EF 91422C4A 51B52384 
          +  0595C987 80FD4FBA 4EFE8227 76C6522E 02C0F548 0A1C3F20 7C176D4B C2458EEB 
          +  6B437FFE B3DEA4D4 7105CFC4 F83B5A51 9A4F43C5 8DC14533 4A5D0AE3 4269294E 
          +  2FBB8563 8A806EBE 0545F028 4C0B32ED A7840E4A 8F4FFF1D 894AD9FD 8C958C97 
          +  8DD917D5 3CBC3399 C481D57F 144571B1 ADC3B2B5 E6990255 600B5E2D 28D9719F 
          +  0091B2D7 6C988EFA 8627AE88 BAEA521A D46E09ED 5A692525 A77157B5 90A97B84 
          +  94BF8540 1C1FF02C B3848B50 2E68DEA6 DD1488C8
          +  	quit
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +license udi pid CSR1000V sn 9P34NU3ZQ4L
          +no license smart enable
          +diagnostic bootup level minimal
          +!
          +spanning-tree extend system-id
          +!
          +!
          +!
          +username cisco privilege 15 secret 5 $1$Hxh.$djLU5CFb2av38EBH6WO8a/
          +!
          +redundancy
          +!
          +!
          +!
          +!
          +!
          +!
          +! 
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +! 
          +! 
          +!
          +!
          +interface Loopback0
          + ip address 10.1.1.1 255.255.255.255
          + ip ospf 1 area 0
          +!
          +interface Loopback1
          + ip address 10.11.11.11 255.255.255.255
          +!
          +interface GigabitEthernet1
          + ip address dhcp
          + negotiation auto
          + no mop enabled
          + no mop sysid
          +!
          +interface GigabitEthernet2
          + ip address 10.0.1.1 255.255.255.0
          + ip ospf 1 area 0
          + negotiation auto
          + no mop enabled
          + no mop sysid
          +!
          +interface GigabitEthernet3
          + ip address 10.0.2.1 255.255.255.0
          + ip ospf 1 area 0
          + negotiation auto
          + no mop enabled
          + no mop sysid
          +!
          +router ospf 1
          + router-id 10.1.1.1
          +!
          +router bgp 65000
          + bgp router-id 10.1.1.1
          + bgp log-neighbor-changes
          + no bgp default ipv4-unicast
          + neighbor 10.2.2.2 remote-as 65000
          + neighbor 10.2.2.2 update-source Loopback0
          + !
          + address-family ipv4
          +  network 10.11.11.11 mask 255.255.255.255
          +  neighbor 10.2.2.2 activate
          + exit-address-family
          +!
          +!
          +virtual-service csr_mgmt
          +!
          +ip forward-protocol nd
          +ip http server
          +ip http authentication local
          +ip http secure-server
          +ip http client source-interface GigabitEthernet1
          +!
          +!
          +!
          +!
          +!
          +!
          +control-plane
          +!
          +!
          +!
          +!
          +!
          +!
          +line con 0
          + exec-timeout 0 0
          + stopbits 1
          +line vty 0
          + login
          +line vty 1
          + login
          + length 20
          +line vty 2 4
          + login
          +!
          +!
          +!
          +!
          +!
          +!
          +end
          +
          +csr1000v-1#
          +10: JEAUBIN-M-43JF: 2019-04-28T17:54:36: %LOG-6-INFO: %[pid=42533][pname=ChildLabor-3:1]: <<<< End child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr28_17:54:23.204811/TaskLog.Task-1:pid-42533
          +2: JEAUBIN-M-43JF: 2019-04-28T17:54:36: %LOG-6-INFO: %[pid=42534][pname=ChildLabor-3:2]: >>>> Begin child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr28_17:54:23.204811/TaskLog.Task-1:pid-42534
          +3: JEAUBIN-M-43JF: 2019-04-28T17:54:36: %UNICON-6-INFO: %[pid=42534][pname=ChildLabor-3:2]: +++ nx-osv-1: executing command 'show running-config' +++
          +show running-config
          +
          +
          +!Command: show running-config
          +!Time: Mon Apr 29 01:00:14 2019
          +
          +version 7.3(0)D1(1)
          +power redundancy-mode redundant
          +license grace-period
          +
          +hostname nx-osv-1
          +vdc nx-osv-1 id 1
          +  limit-resource module-type m1 m1xl m2xl f2e 
          +  allocate interface Ethernet2/1-48
          +  allocate interface Ethernet3/1-48
          +  allocate interface Ethernet4/1-48
          +  limit-resource vlan minimum 16 maximum 4094
          +  limit-resource vrf minimum 2 maximum 4096
          +  limit-resource port-channel minimum 0 maximum 768
          +  limit-resource u4route-mem minimum 96 maximum 96
          +  limit-resource u6route-mem minimum 24 maximum 24
          +  limit-resource m4route-mem minimum 58 maximum 58
          +  limit-resource m6route-mem minimum 8 maximum 8
          +
          +feature ospf
          +feature bgp
          +
          +username admin password 5 $5$Otc7T0NC$K.ulnSZnSyXLrTGNBdtLgZJXEa8EeNx.BrdZ98XyK2C  role network-admin
          +no password strength-check
          +ip domain-lookup
          +vlan dot1Q tag native
          +system default switchport
          +system jumbomtu 0
          +no logging event trunk-status enable
          +copp profile strict
          +snmp-server user admin auth md5 0x328945d53e05e8e7207f8c20b142f0b7 priv 0x328945d53e05e8e7207f8c20b142f0b7 localizedkey engineID 128:0:0:9:3:0:0:0:0:0:0
          +rmon event 1 log description FATAL(1) owner PMON@FATAL
          +rmon event 2 log description CRITICAL(2) owner PMON@CRITICAL
          +rmon event 3 log description ERROR(3) owner PMON@ERROR
          +rmon event 4 log description WARNING(4) owner PMON@WARNING
          +rmon event 5 log description INFORMATION(5) owner PMON@INFO
          +snmp-server enable traps link
          +snmp-server enable traps link cisco-xcvr-mon-status-chg
          +ntp server 216.239.35.0 prefer
          +
          +vlan 1
          +
          +vrf context management
          +
          +interface mgmt0
          +  vrf member management
          +
          +interface Ethernet2/1
          +  no switchport
          +  mac-address 0000.0000.002f
          +  ip address 10.0.1.2/24
          +  ip router ospf 1 area 0.0.0.0
          +  no shutdown
          +
          +interface Ethernet2/2
          +  no switchport
          +  mac-address 0000.0000.002f
          +  ip address 10.0.2.2/24
          +  ip router ospf 1 area 0.0.0.0
          +  no shutdown
          +
          +interface Ethernet2/3
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/4
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/5
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/6
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/7
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/8
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/9
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/10
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/11
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/12
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/13
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/14
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/15
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/16
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/17
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/18
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/19
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/20
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/21
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/22
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/23
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/24
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/25
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/26
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/27
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/28
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/29
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/30
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/31
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/32
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/33
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/34
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/35
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/36
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/37
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/38
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/39
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/40
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/41
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/42
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/43
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/44
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/45
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/46
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/47
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/48
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet3/1
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/2
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/3
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/4
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/5
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/6
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/7
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/8
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/9
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/10
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/11
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/12
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/13
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/14
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/15
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/16
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/17
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/18
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/19
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/20
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/21
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/22
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/23
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/24
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/25
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/26
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/27
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/28
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/29
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/30
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/31
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/32
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/33
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/34
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/35
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/36
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/37
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/38
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/39
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/40
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/41
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/42
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/43
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/44
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/45
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/46
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/47
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/48
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet4/1
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/2
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/3
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/4
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/5
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/6
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/7
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/8
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/9
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/10
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/11
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/12
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/13
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/14
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/15
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/16
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/17
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/18
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/19
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/20
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/21
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/22
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/23
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/24
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/25
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/26
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/27
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/28
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/29
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/30
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/31
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/32
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/33
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/34
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/35
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/36
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/37
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/38
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/39
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/40
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/41
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/42
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/43
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/44
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/45
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/46
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/47
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/48
          +  switchport
          +  no shutdown
          +
          +interface loopback0
          +  ip address 10.2.2.2/32
          +  ip router ospf 1 area 0.0.0.0
          +
          +interface loopback1
          +  ip address 10.22.22.22/32
          +line console
          +  exec-timeout 0
          +  terminal width  511
          +line vty
          +boot kickstart bootflash:/titanium-d1-kickstart.7.3.0.D1.1.bin
          +boot system bootflash:/titanium-d1.7.3.0.D1.1.bin 
          +router ospf 1
          +  router-id 10.2.2.2
          +router bgp 65000
          +  router-id 10.2.2.2
          +  address-family ipv4 unicast
          +    network 10.22.22.22/32
          +  neighbor 10.1.1.1
          +    remote-as 65000
          +    update-source loopback0
          +    address-family ipv4 unicast
          +no logging console
          +
          +
          +
          +nx-osv-1# 
          +81: JEAUBIN-M-43JF: 2019-04-28T17:54:36: %LOG-6-INFO: %[pid=42534][pname=ChildLabor-3:2]: <<<< End child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr28_17:54:23.204811/TaskLog.Task-1:pid-42534
          +101: JEAUBIN-M-43JF: 2019-04-28T17:54:37: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: +====================================================================================================================================================+
          +102: JEAUBIN-M-43JF: 2019-04-28T17:54:37: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: | Check config Summary                                                                                                                               |
          +103: JEAUBIN-M-43JF: 2019-04-28T17:54:37: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: +====================================================================================================================================================+
          +104: JEAUBIN-M-43JF: 2019-04-28T17:54:37: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: | * Summary for device: nx-osv-1                                                                                                                     |
          +105: JEAUBIN-M-43JF: 2019-04-28T17:54:37: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +106: JEAUBIN-M-43JF: 2019-04-28T17:54:37: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |     - Successfully saved configuration snapshot                                                                                                    |
          +107: JEAUBIN-M-43JF: 2019-04-28T17:54:37: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |====================================================================================================================================================|
          +108: JEAUBIN-M-43JF: 2019-04-28T17:54:37: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: | * Summary for device: csr1000v-1                                                                                                                   |
          +109: JEAUBIN-M-43JF: 2019-04-28T17:54:37: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +110: JEAUBIN-M-43JF: 2019-04-28T17:54:37: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |     - Successfully saved configuration snapshot                                                                                                    |
          +111: JEAUBIN-M-43JF: 2019-04-28T17:54:37: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |====================================================================================================================================================|
          +112: JEAUBIN-M-43JF: 2019-04-28T17:54:37: %GENIE-6-INFO: %[pid=42444][pname=Task-1]: 
          +
          +113: JEAUBIN-M-43JF: 2019-04-28T17:54:37: %AETEST-6-INFO: %[pid=42444][pname=Task-1]: The result of subsection configuration_snapshot is => PASSED
          +
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + save_bootvar + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:10 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          114: JEAUBIN-M-43JF: 2019-04-28T17:54:37: %AETEST-6-INFO: %[pid=42444][pname=Task-1]: Starting subsection save_bootvar
          +2: JEAUBIN-M-43JF: 2019-04-28T17:54:37: %LOG-6-INFO: %[pid=42536][pname=ChildLabor-3:4]: >>>> Begin child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr28_17:54:23.204811/TaskLog.Task-1:pid-42536
          +3: JEAUBIN-M-43JF: 2019-04-28T17:54:37: %GENIE-6-INFO: %[part=3.1/4][pid=42536][pname=ChildLabor-3:4]: +------------------------------------------------------------------------------+
          +4: JEAUBIN-M-43JF: 2019-04-28T17:54:37: %GENIE-6-INFO: %[part=3.2/4][pid=42536][pname=ChildLabor-3:4]: |             Check boot information to see if they are consistent             |
          +5: JEAUBIN-M-43JF: 2019-04-28T17:54:37: %GENIE-6-INFO: %[part=3.3/4][pid=42536][pname=ChildLabor-3:4]: |          and save bootvar to startup-config on device 'csr1000v-1'           |
          +6: JEAUBIN-M-43JF: 2019-04-28T17:54:37: %GENIE-6-INFO: %[part=3.4/4][pid=42536][pname=ChildLabor-3:4]: +------------------------------------------------------------------------------+
          +7: JEAUBIN-M-43JF: 2019-04-28T17:54:38: %UNICON-6-INFO: %[pid=42536][pname=ChildLabor-3:4]: +++ csr1000v-1: config +++
          +config term
          +Enter configuration commands, one per line.  End with CNTL/Z.
          +csr1000v-1(config)#config-register 0x2102
          +csr1000v-1(config)#end
          +csr1000v-1#
          +11: JEAUBIN-M-43JF: 2019-04-28T17:54:38: %UNICON-6-INFO: %[pid=42536][pname=ChildLabor-3:4]: +++ csr1000v-1: executing command 'copy running-config nvram:startup-config' +++
          +copy running-config nvram:startup-config
          +Destination filename [startup-config]? 
          +Building configuration...
          +[OK]
          +csr1000v-1#
          +17: JEAUBIN-M-43JF: 2019-04-28T17:54:40: %UNICON-6-INFO: %[pid=42536][pname=ChildLabor-3:4]: +++ csr1000v-1: executing command 'write memory' +++
          +write memory
          +Building configuration...
          +[OK]
          +csr1000v-1#
          +22: JEAUBIN-M-43JF: 2019-04-28T17:54:42: %LOG-6-INFO: %[pid=42536][pname=ChildLabor-3:4]: <<<< End child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr28_17:54:23.204811/TaskLog.Task-1:pid-42536
          +2: JEAUBIN-M-43JF: 2019-04-28T17:54:37: %LOG-6-INFO: %[pid=42535][pname=ChildLabor-3:3]: >>>> Begin child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr28_17:54:23.204811/TaskLog.Task-1:pid-42535
          +3: JEAUBIN-M-43JF: 2019-04-28T17:54:37: %GENIE-6-INFO: %[part=3.1/4][pid=42535][pname=ChildLabor-3:3]: +------------------------------------------------------------------------------+
          +4: JEAUBIN-M-43JF: 2019-04-28T17:54:37: %GENIE-6-INFO: %[part=3.2/4][pid=42535][pname=ChildLabor-3:3]: |             Check boot information to see if they are consistent             |
          +5: JEAUBIN-M-43JF: 2019-04-28T17:54:37: %GENIE-6-INFO: %[part=3.3/4][pid=42535][pname=ChildLabor-3:3]: |           and save bootvar to startup-config on device 'nx-osv-1'            |
          +6: JEAUBIN-M-43JF: 2019-04-28T17:54:37: %GENIE-6-INFO: %[part=3.4/4][pid=42535][pname=ChildLabor-3:3]: +------------------------------------------------------------------------------+
          +7: JEAUBIN-M-43JF: 2019-04-28T17:54:38: %UNICON-6-INFO: %[pid=42535][pname=ChildLabor-3:3]: +++ nx-osv-1: executing command 'copy running-config startup-config' +++
          +copy running-config startup-config
          +
          +
          +[#                                       ]   1%
          +[#                                       ]   2%
          +[##                                      ]   3%
          +[##                                      ]   4%
          +[###                                     ]   5%
          +[###                                     ]   7%
          +[####                                    ]   8%
          +[####                                    ]   9%
          +[#####                                   ]  10%
          +[#####                                   ]  11%
          +[######                                  ]  13%
          +[######                                  ]  14%
          +[#######                                 ]  15%
          +[#######                                 ]  16%
          +[#######                                 ]  17%
          +[########                                ]  19%
          +[#########                               ]  20%
          +[#########                               ]  21%
          +[#########                               ]  22%
          +[##########                              ]  23%
          +[###########                             ]  25%
          +[###########                             ]  26%
          +[###########                             ]  27%
          +[############                            ]  28%
          +[############                            ]  29%
          +[#############                           ]  30%
          +[#############                           ]  32%
          +[##############                          ]  33%
          +[##############                          ]  34%
          +[###############                         ]  35%
          +[###############                         ]  36%
          +[################                        ]  38%
          +[################                        ]  39%
          +[#################                       ]  40%
          +[#################                       ]  41%
          +[#################                       ]  42%
          +[##################                      ]  44%
          +[###################                     ]  45%
          +[###################                     ]  46%
          +[###################                     ]  47%
          +[####################                    ]  48%
          +[#####################                   ]  50%
          +[#####################                   ]  51%
          +[#####################                   ]  52%
          +[######################                  ]  53%
          +[######################                  ]  54%
          +[#######################                 ]  55%
          +[#######################                 ]  57%
          +[########################                ]  58%
          +[########################                ]  59%
          +[#########################               ]  60%
          +[#########################               ]  61%
          +[##########################              ]  63%
          +[##########################              ]  64%
          +[###########################             ]  65%
          +[###########################             ]  66%
          +[###########################             ]  67%
          +[############################            ]  69%
          +[#############################           ]  70%
          +[#############################           ]  71%
          +[#############################           ]  72%
          +[##############################          ]  73%
          +[###############################         ]  75%
          +[###############################         ]  76%
          +[###############################         ]  77%
          +[################################        ]  78%
          +[################################        ]  79%
          +[#################################       ]  80%
          +[#################################       ]  82%
          +[##################################      ]  83%
          +[##################################      ]  84%
          +[###################################     ]  85%
          +[###################################     ]  86%
          +[####################################    ]  88%
          +[####################################    ]  89%
          +[#####################################   ]  90%
          +[#####################################   ]  91%
          +[#####################################   ]  92%
          +[######################################  ]  94%
          +[####################################### ]  95%
          +[####################################### ]  96%
          +[####################################### ]  97%
          +[########################################]  98%
          +[########################################] 100%
          +Copy complete.
          +
          +nx-osv-1# 
          +151: JEAUBIN-M-43JF: 2019-04-28T17:54:47: %LOG-6-INFO: %[pid=42535][pname=ChildLabor-3:3]: <<<< End child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr28_17:54:23.204811/TaskLog.Task-1:pid-42535
          +115: JEAUBIN-M-43JF: 2019-04-28T17:54:47: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: +========================================================================================+
          +116: JEAUBIN-M-43JF: 2019-04-28T17:54:47: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: | Summary                                                                                |
          +117: JEAUBIN-M-43JF: 2019-04-28T17:54:47: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: +========================================================================================+
          +118: JEAUBIN-M-43JF: 2019-04-28T17:54:47: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: | * Summary for device: nx-osv-1                                                         |
          +119: JEAUBIN-M-43JF: 2019-04-28T17:54:47: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |----------------------------------------------------------------------------------------|
          +120: JEAUBIN-M-43JF: 2019-04-28T17:54:47: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |     - Successfully saved boot variable                                                 |
          +121: JEAUBIN-M-43JF: 2019-04-28T17:54:47: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |========================================================================================|
          +122: JEAUBIN-M-43JF: 2019-04-28T17:54:47: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: | * Summary for device: csr1000v-1                                                       |
          +123: JEAUBIN-M-43JF: 2019-04-28T17:54:47: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |----------------------------------------------------------------------------------------|
          +124: JEAUBIN-M-43JF: 2019-04-28T17:54:47: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |     - Successfully saved boot variable                                                 |
          +125: JEAUBIN-M-43JF: 2019-04-28T17:54:47: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |========================================================================================|
          +126: JEAUBIN-M-43JF: 2019-04-28T17:54:47: %AETEST-6-INFO: %[pid=42444][pname=Task-1]: The result of subsection save_bootvar is => PASSED
          +
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + learn_system_defaults + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:02 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          127: JEAUBIN-M-43JF: 2019-04-28T17:54:47: %AETEST-6-INFO: %[pid=42444][pname=Task-1]: Starting subsection learn_system_defaults
          +128: JEAUBIN-M-43JF: 2019-04-28T17:54:48: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'dir' +++
          +dir
          +
          +       4096    Feb 25 20:49:04 2016  .patch/
          +      11608    Apr 18 15:25:18 2019  201904181121-run.cfg
          +      16384    Feb 25 20:44:49 2016  lost+found/
          +       4096    Feb 26 10:11:16 2016  scripts/
          +   33615360    Feb 11 13:19:49 2016  titanium-d1-kickstart.7.3.0.D1.1.bin
          +  139230420    Feb 11 13:19:50 2016  titanium-d1.7.3.0.D1.1.bin
          +       4096    Feb 25 20:49:07 2016  virtual-instance/
          +
          +Usage for bootflash://
          +  369971200 bytes used
          + 2839990272 bytes free
          + 3209961472 bytes total
          +
          +nx-osv-1# 
          +131: JEAUBIN-M-43JF: 2019-04-28T17:54:48: %GENIE-6-INFO: %[pid=42444][pname=Task-1]: Default directory on 'nx-osv-1' is 'bootflash:'
          +132: JEAUBIN-M-43JF: 2019-04-28T17:54:49: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ csr1000v-1: executing command 'dir' +++
          +dir
          +Directory of bootflash:/
          +
          +   11  drwx            16384  Jul 18 2018 07:49:17 +00:00  lost+found
          +325121  drwx             4096  Apr 23 2019 16:50:38 +00:00  .installer
          +   12  -rw-        392479704  Jul 18 2018 07:50:04 +00:00  csr1000v-mono-universalk9.16.09.01.SPA.pkg
          +   13  -rw-         40201438  Jul 18 2018 07:50:05 +00:00  csr1000v-rpboot.16.09.01.SPA.pkg
          +   14  -rw-             1941  Jul 18 2018 07:50:05 +00:00  packages.conf
          +105665  drwx             4096  Apr 23 2019 16:46:35 +00:00  core
          +146305  drwx             4096  Apr 23 2019 16:57:36 +00:00  .prst_sync
          +154433  drwx             4096  Jul 18 2018 07:51:06 +00:00  .rollback_timer
          +138177  drwx            12288  Apr 29 2019 00:53:19 +00:00  tracelogs
          +398273  drwx             4096  Jul 18 2018 07:52:07 +00:00  .dbpersist
          +203201  drwx             4096  Jul 18 2018 07:51:17 +00:00  virtual-instance
          +   15  -rw-               30  Apr 23 2019 16:57:31 +00:00  throughput_monitor_params
          +   16  -rw-            12973  Apr 23 2019 17:00:34 +00:00  cvac.log
          +   17  -rw-              157  Apr 23 2019 17:00:40 +00:00  csrlxc-cfg.log
          +406401  drwx             4096  Jul 18 2018 07:52:00 +00:00  onep
          +   18  -rw-                1   Apr 9 2019 00:49:45 +00:00  .cvac_version
          +   19  -rw-               16   Apr 9 2019 00:49:45 +00:00  ovf-env.xml.md5
          +   20  -rw-               34   Apr 9 2019 00:54:45 +00:00  pnp-tech-time
          +   21  -rw-            54686   Apr 9 2019 00:54:46 +00:00  pnp-tech-discovery-summary
          +   22  -rw-           183217  Apr 23 2019 16:43:19 +00:00  crashinfo_RP_00_00_20190423-163950-UTC
          +
          +7897796608 bytes total (6982635520 bytes free)
          +csr1000v-1#
          +136: JEAUBIN-M-43JF: 2019-04-28T17:54:49: %GENIE-6-INFO: %[pid=42444][pname=Task-1]: Default directory on 'csr1000v-1' is 'bootflash:'
          +137: JEAUBIN-M-43JF: 2019-04-28T17:54:49: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: +====================================================================================================================================================+
          +138: JEAUBIN-M-43JF: 2019-04-28T17:54:49: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: | Summary                                                                                                                                            |
          +139: JEAUBIN-M-43JF: 2019-04-28T17:54:49: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: +====================================================================================================================================================+
          +140: JEAUBIN-M-43JF: 2019-04-28T17:54:49: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: | * Summary for device: nx-osv-1                                                                                                                     |
          +141: JEAUBIN-M-43JF: 2019-04-28T17:54:49: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +142: JEAUBIN-M-43JF: 2019-04-28T17:54:49: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |     - Successfully learnt system default directroy                                                                                                 |
          +143: JEAUBIN-M-43JF: 2019-04-28T17:54:49: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |====================================================================================================================================================|
          +144: JEAUBIN-M-43JF: 2019-04-28T17:54:49: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: | * Summary for device: csr1000v-1                                                                                                                   |
          +145: JEAUBIN-M-43JF: 2019-04-28T17:54:49: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +146: JEAUBIN-M-43JF: 2019-04-28T17:54:49: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |     - Successfully learnt system default directroy                                                                                                 |
          +147: JEAUBIN-M-43JF: 2019-04-28T17:54:49: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |====================================================================================================================================================|
          +148: JEAUBIN-M-43JF: 2019-04-28T17:54:49: %AETEST-6-INFO: %[pid=42444][pname=Task-1]: The result of subsection learn_system_defaults is => PASSED
          +149: JEAUBIN-M-43JF: 2019-04-28T17:54:
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + initialize_traffic + + Description + + +
        + expand_more + expand_less +
        + SKIPPED + 0:00:00 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          149: JEAUBIN-M-43JF: 2019-04-28T17:54:49: %AETEST-6-INFO: %[pid=42444][pname=Task-1]: Starting subsection initialize_traffic
          +150: JEAUBIN-M-43JF: 2019-04-28T17:54:49: %GENIE-6-INFO: %[pid=42444][pname=Task-1]: Connect to traffic generator device and configure/start traffic
          +151: JEAUBIN-M-43JF: 2019-04-28T17:54:49: %GENIE-6-INFO: %[pid=42444][pname=Task-1]: For more information visit Genie traffic section http://wwwin-pyats.cisco.com/cisco-shared/genie/latest/harness/user/ixia.html#common-setup-initialize-traffic
          +152: JEAUBIN-M-43JF: 2019-04-28T17:54:49: %AETEST-6-INFO: %[pid=42444][pname=Task-1]: Skipped reason: Traffic generator devices not found in testbed YAML
          +153: JEAUBIN-M-43JF: 2019-04-28T17:54:49: %AETEST-6-INFO: %[pid=42444][pname=Task-1]: The result of subsection initialize_traffic is => SKIPPED
          +
          +
          +
        • +
        +
        +
      • + + +
      +
      +
    • + + +
    • +
      + + arrow_drop_down + Verify_Bgp.uut.1 + + +
      + expand_more + expand_less +
      + PASSED + 0:00:02 +
      +
      + + + +
        + + + + +
      • +
        + + arrow_drop_down + verify + + +
        + expand_more + expand_less +
        + PASSED + 0:00:02 +
        +
        + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          158: JEAUBIN-M-43JF: 2019-04-28T17:54:49: %AETEST-6-INFO: %[pid=42444][pname=Task-1]: Starting section verify
          +159: JEAUBIN-M-43JF: 2019-04-28T17:54:49: %GENIE-6-INFO: %[part=159.1/3][pid=42444][pname=Task-1]: +------------------------------------------------------------------------------+
          +160: JEAUBIN-M-43JF: 2019-04-28T17:54:49: %GENIE-6-INFO: %[part=159.2/3][pid=42444][pname=Task-1]: |                              1 out of 5 attempt                              |
          +161: JEAUBIN-M-43JF: 2019-04-28T17:54:49: %GENIE-6-INFO: %[part=159.3/3][pid=42444][pname=Task-1]: +------------------------------------------------------------------------------+
          +162: JEAUBIN-M-43JF: 2019-04-28T17:54:49: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          +show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Process ID                 : 8610
          +BGP Protocol Started, reason:  : configuration
          +BGP Protocol Tag               : 65000
          +BGP Protocol State             : Running
          +BGP MMODE                      : Not Initialized
          +BGP Memory State               : OK
          +BGP asformat                   : asplain
          +
          +BGP attributes information
          +Number of attribute entries    : 2
          +HWM of attribute entries       : 2
          +Bytes used by entries          : 200
          +Entries pending delete         : 0
          +HWM of entries pending delete  : 0
          +BGP paths per attribute HWM    : 1
          +BGP AS path entries            : 0
          +Bytes used by AS path entries  : 0
          +
          +Information regarding configured VRFs:
          +
          +BGP Information for VRF default
          +VRF Id                         : 1
          +VRF state                      : UP
          +Router-ID                      : 10.2.2.2
          +Configured Router-ID           : 10.2.2.2
          +Confed-ID                      : 0
          +Cluster-ID                     : 0.0.0.0
          +No. of configured peers        : 1
          +No. of pending config peers    : 0
          +No. of established peers       : 1
          +VRF RD                         : Not configured
          +
          +    Information for address family IPv4 Unicast in VRF default
          +    Table Id                   : 1
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    1          1               2          2          1          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +    Information for address family IPv6 Unicast in VRF default
          +    Table Id                   : 80000001
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    0          0               0          0          0          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +nx-osv-1# 
          +166: JEAUBIN-M-43JF: 2019-04-28T17:54:49: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-session' +++
          +show running-config | inc peer-session
          +
          +
          +nx-osv-1# 
          +170: JEAUBIN-M-43JF: 2019-04-28T17:54:49: %GENIE-6-INFO: %[part=170.1/2][pid=42444][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>
          +171: JEAUBIN-M-43JF: 2019-04-28T17:54:49: %GENIE-6-INFO: %[part=170.2/2][pid=42444][pname=Task-1]: Parser Output is empty
          +172: JEAUBIN-M-43JF: 2019-04-28T17:54:49: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-policy' +++
          +show running-config | inc peer-policy
          +
          +
          +nx-osv-1# 
          +175: JEAUBIN-M-43JF: 2019-04-28T17:54:50: %GENIE-6-INFO: %[part=175.1/2][pid=42444][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>
          +176: JEAUBIN-M-43JF: 2019-04-28T17:54:50: %GENIE-6-INFO: %[part=175.2/2][pid=42444][pname=Task-1]: Parser Output is empty
          +177: JEAUBIN-M-43JF: 2019-04-28T17:54:50: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all dampening parameters' +++
          +show bgp vrf all all dampening parameters
          +
          +
          +nx-osv-1# 
          +179: JEAUBIN-M-43JF: 2019-04-28T17:54:50: %GENIE-6-INFO: %[part=179.1/2][pid=42444][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>
          +180: JEAUBIN-M-43JF: 2019-04-28T17:54:50: %GENIE-6-INFO: %[part=179.2/2][pid=42444][pname=Task-1]: Parser Output is empty
          +181: JEAUBIN-M-43JF: 2019-04-28T17:54:50: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all nexthop-database' +++
          +show bgp vrf all all nexthop-database
          +
          +
          +Next Hop table for VRF default, address family IPv4 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +
          +Nexthop: 0.0.0.0, Flags: 0x2, Refcount: 1, IGP cost: 0
          +IGP Route type: 0, IGP preference: 0
          +Nexthop is not-attached local unreachable not-labeled
          +Nexthop last resolved: never, using 0.0.0.0/0
          +Metric next advertise: Never
          +RNH epoch: 0
          +
          +Nexthop: 10.1.1.1, Flags: 0x1, Refcount: 1, IGP cost: 41
          +IGP Route type: 0, IGP preference: 110
          +Attached nexthop: 10.0.2.1, Interface: Ethernet2/2
          +Attached nexthop: 10.0.1.1, Interface: Ethernet2/1
          +Nexthop is not-attached not-local reachable not-labeled
          +Nexthop last resolved: 00:09:18, using 10.1.1.1/32
          +Metric next advertise: Never
          +RNH epoch: 1
          +IPv6 Next-hop table
          +
          +Next Hop table for VRF default, address family IPv6 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +IPv6 Next-hop table
          +
          +nx-osv-1# 
          +184: JEAUBIN-M-43JF: 2019-04-28T17:54:50: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'show routing vrf all' +++
          +show routing vrf all
          +
          +IP Route Table for VRF "default"
          +'*' denotes best ucast next-hop
          +'**' denotes best mcast next-hop
          +'[x/y]' denotes [preference/metric]
          +'%<string>' in via output denotes VRF <string>
          +
          +10.0.1.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w6d, direct
          +10.0.1.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w6d, local
          +10.0.2.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w6d, direct
          +10.0.2.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w6d, local
          +10.1.1.1/32, ubest/mbest: 2/0
          +    *via 10.0.1.1, Eth2/1, [110/41], 5d07h, ospf-1, intra
          +    *via 10.0.2.1, Eth2/2, [110/41], 5d07h, ospf-1, intra
          +10.2.2.2/32, ubest/mbest: 2/0, attached
          +    *via 10.2.2.2, Lo0, [0/0], 2w6d, local
          +    *via 10.2.2.2, Lo0, [0/0], 2w6d, direct
          +10.11.11.11/32, ubest/mbest: 1/0
          +    *via 10.1.1.1, [200/0], 00:01:00, bgp-65000, internal, tag 65000, 
          +10.22.22.22/32, ubest/mbest: 2/0, attached
          +    *via 10.22.22.22, Lo1, [0/0], 2w6d, local
          +    *via 10.22.22.22, Lo1, [0/0], 2w6d, direct
          +
          +nx-osv-1# 
          +187: JEAUBIN-M-43JF: 2019-04-28T17:54:50: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all' +++
          +show bgp vrf all all
          +
          +BGP routing table information for VRF default, address family IPv4 Unicast
          +BGP table version is 363, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +nx-osv-1# 
          +190: JEAUBIN-M-43JF: 2019-04-28T17:54:50: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'show vrf' +++
          +show vrf
          +
          +VRF-Name                           VRF-ID State   Reason                        
          +default                                 1 Up      --                            
          +management                              2 Up      --                            
          +
          +nx-osv-1# 
          +193: JEAUBIN-M-43JF: 2019-04-28T17:54:50: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors' +++
          +show bgp vrf default all neighbors
          +
          +BGP neighbor is 10.1.1.1,  remote AS 65000, ibgp link, Peer index 1
          +  BGP version 4, remote router ID 10.1.1.1
          +  BGP state = Established, up for 00:01:00
          +  Using loopback0 as update source for this peer
          +  Last read 00:00:02, hold time = 180, keepalive interval is 60 seconds
          +  Last written 00:00:59, keepalive timer expiry due 0.617138
          +  Received 31951 messages, 1 notifications, 0 bytes in queue
          +  Sent 29205 messages, 109 notifications, 0 bytes in queue
          +  Connections established 110, dropped 109
          +  Last reset by us 00:01:12, due to administratively shutdown
          +  Last reset by peer never, due to No error
          +
          +  Neighbor capabilities:
          +  Dynamic capability: advertised (mp, refresh, gr) 
          +  Dynamic capability (old): advertised 
          +  Route refresh capability (new): advertised received 
          +  Route refresh capability (old): advertised received 
          +  4-Byte AS capability: advertised received 
          +  Address family IPv4 Unicast: advertised received 
          +  Graceful Restart capability: advertised 
          +
          +  Graceful Restart Parameters:
          +  Address families advertised to peer:
          +    IPv4 Unicast  
          +  Address families received from peer:
          +  Forwarding state preserved by peer for:
          +  Restart time advertised to peer: 120 seconds
          +  Stale time for routes advertised by peer: 300 seconds
          +  Extended Next Hop Encoding Capability: advertised 
          +
          +  Message statistics:
          +                              Sent               Rcvd
          +  Opens:                       111                110  
          +  Notifications:               109                  1  
          +  Updates:                     232                220  
          +  Keepalives:                28753              31620  
          +  Route Refresh:                 0                  0  
          +  Capability:                    0                  0  
          +  Total:                     29205              31951  
          +  Total bytes:              554702             607380  
          +  Bytes in queue:                0                  0  
          +
          +  For address family: IPv4 Unicast
          +  BGP table version 363, neighbor version 363
          +  1 accepted paths consume 80 bytes of memory
          +  1 sent paths
          +  Third-party Nexthop will not be computed.
          +
          +  Local host: 10.2.2.2, Local port: 179
          +  Foreign host: 10.1.1.1, Foreign port: 46439
          +  fd = 60
          +
          +
          +nx-osv-1# 
          +197: JEAUBIN-M-43JF: 2019-04-28T17:54:51: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf management all neighbors' +++
          +show bgp vrf management all neighbors
          +
          +Unknown vrf management
          +
          +nx-osv-1# 
          +199: JEAUBIN-M-43JF: 2019-04-28T17:54:51: %GENIE-6-INFO: %[part=199.1/2][pid=42444][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>
          +200: JEAUBIN-M-43JF: 2019-04-28T17:54:51: %GENIE-6-INFO: %[part=199.2/2][pid=42444][pname=Task-1]: Parser Output is empty
          +201: JEAUBIN-M-43JF: 2019-04-28T17:54:51: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all summary' +++
          +show bgp vrf all all summary
          +
          +BGP summary information for VRF default, address family IPv4 Unicast
          +BGP router identifier 10.2.2.2, local AS number 65000
          +BGP table version is 363, IPv4 Unicast config peers 1, capable peers 1
          +2 network entries and 2 paths using 288 bytes of memory
          +BGP attribute entries [2/288], BGP AS path entries [0/0]
          +BGP community entries [0/0], BGP clusterlist entries [0/0]
          +
          +Neighbor        V    AS MsgRcvd MsgSent   TblVer  InQ OutQ Up/Down  State/PfxRcd
          +10.1.1.1        4 65000   31951   29205      363    0    0 00:01:00 1         
          +
          +BGP summary information for VRF default, address family IPv6 Unicast
          +
          +nx-osv-1# 
          +204: JEAUBIN-M-43JF: 2019-04-28T17:54:51: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 advertised-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 advertised-routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 363, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +208: JEAUBIN-M-43JF: 2019-04-28T17:54:51: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 363, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +212: JEAUBIN-M-43JF: 2019-04-28T17:54:51: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 received-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 received-routes
          +
          +
          +Inbound soft reconfiguration for IPv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MDT not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN VPLS not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN EVPN not enabled on 10.1.1.1
          +
          +nx-osv-1# 
          +215: JEAUBIN-M-43JF: 2019-04-28T17:54:51: %GENIE-6-INFO: %[part=215.1/2][pid=42444][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>
          +216: JEAUBIN-M-43JF: 2019-04-28T17:54:51: %GENIE-6-INFO: %[part=215.2/2][pid=42444][pname=Task-1]: Parser Output is empty
          +217: JEAUBIN-M-43JF: 2019-04-28T17:54:51: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: +====================================================================================================================================================+
          +218: JEAUBIN-M-43JF: 2019-04-28T17:54:51: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: | Commands for learning feature 'Bgp'                                                                                                                |
          +219: JEAUBIN-M-43JF: 2019-04-28T17:54:51: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: +====================================================================================================================================================+
          +220: JEAUBIN-M-43JF: 2019-04-28T17:54:51: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: | - Parsed commands                                                                                                                                  |
          +221: JEAUBIN-M-43JF: 2019-04-28T17:54:51: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +222: JEAUBIN-M-43JF: 2019-04-28T17:54:51: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpProcessVrfAll'>                                                                              |
          +223: JEAUBIN-M-43JF: 2019-04-28T17:54:51: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllNextHopDatabase'>                                                                   |
          +224: JEAUBIN-M-43JF: 2019-04-28T17:54:51: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_routing.ShowRoutingVrfAll'>                                                                             |
          +225: JEAUBIN-M-43JF: 2019-04-28T17:54:51: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAll'>                                                                                  |
          +226: JEAUBIN-M-43JF: 2019-04-28T17:54:51: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_vrf.ShowVrf'>                                                                                           |
          +227: JEAUBIN-M-43JF: 2019-04-28T17:54:51: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'default'}                                              |
          +228: JEAUBIN-M-43JF: 2019-04-28T17:54:51: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllSummary'>                                                                           |
          +229: JEAUBIN-M-43JF: 2019-04-28T17:54:51: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsAdvertisedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}        |
          +230: JEAUBIN-M-43JF: 2019-04-28T17:54:51: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}                  |
          +231: JEAUBIN-M-43JF: 2019-04-28T17:54:51: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |====================================================================================================================================================|
          +232: JEAUBIN-M-43JF: 2019-04-28T17:54:51: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: | - Commands with empty output                                                                                                                       |
          +233: JEAUBIN-M-43JF: 2019-04-28T17:54:51: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +234: JEAUBIN-M-43JF: 2019-04-28T17:54:51: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>                                                                                |
          +235: JEAUBIN-M-43JF: 2019-04-28T17:54:51: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>                                                                                 |
          +236: JEAUBIN-M-43JF: 2019-04-28T17:54:51: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>                                                               |
          +237: JEAUBIN-M-43JF: 2019-04-28T17:54:51: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'management'}                                           |
          +238: JEAUBIN-M-43JF: 2019-04-28T17:54:51: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}          |
          +239: JEAUBIN-M-43JF: 2019-04-28T17:54:51: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |====================================================================================================================================================|
          +240: JEAUBIN-M-43JF: 2019-04-28T17:54:51: %GENIE-6-INFO: %[pid=42444][pname=Task-1]: Saving initial snapshot of this command - To be used for comparing in future verification
          +241: JEAUBIN-M-43JF: 2019-04-28T17:54:51: %AETEST-6-INFO: %[pid=42444][pname=Task-1]: The result of section verify is => PASSED
          +242: JEAUBIN-M-43JF: 2019-04-28T17:54:51: %AETEST-6-INFO: %[pid=42444][pname=Task-1]: The result of testcase Verify_Bgp.uut.1 is => PASSED
          +243: JEAUBIN-M-43JF: 2019-04-28T17:54:51: %AETEST-6-INFO: %[pid=42444][pname=Task-1]: Starting testcase TriggerDemoShutNoShutBgp.uut
          +244: JEAUBIN-M-43JF: 2019-04-28T17:54:51: %
          +
          +
        • +
        +
        +
      • + + +
      +
      +
    • + + +
    • +
      + + arrow_drop_down + TriggerDemoShutNoShutBgp.uut + + +
      + expand_more + expand_less +
      + PASSED + 0:00:02 +
      +
      + + + +
        + + + + +
      • +
        + + arrow_drop_down + prerequisites + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:01 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          244: JEAUBIN-M-43JF: 2019-04-28T17:54:51: %AETEST-6-INFO: %[pid=42444][pname=Task-1]: Starting section prerequisites
          +245: JEAUBIN-M-43JF: 2019-04-28T17:54:51: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          +show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Process ID                 : 8610
          +BGP Protocol Started, reason:  : configuration
          +BGP Protocol Tag               : 65000
          +BGP Protocol State             : Running
          +BGP MMODE                      : Not Initialized
          +BGP Memory State               : OK
          +BGP asformat                   : asplain
          +
          +BGP attributes information
          +Number of attribute entries    : 2
          +HWM of attribute entries       : 2
          +Bytes used by entries          : 200
          +Entries pending delete         : 0
          +HWM of entries pending delete  : 0
          +BGP paths per attribute HWM    : 1
          +BGP AS path entries            : 0
          +Bytes used by AS path entries  : 0
          +
          +Information regarding configured VRFs:
          +
          +BGP Information for VRF default
          +VRF Id                         : 1
          +VRF state                      : UP
          +Router-ID                      : 10.2.2.2
          +Configured Router-ID           : 10.2.2.2
          +Confed-ID                      : 0
          +Cluster-ID                     : 0.0.0.0
          +No. of configured peers        : 1
          +No. of pending config peers    : 0
          +No. of established peers       : 1
          +VRF RD                         : Not configured
          +
          +    Information for address family IPv4 Unicast in VRF default
          +    Table Id                   : 1
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    1          1               2          2          1          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +    Information for address family IPv6 Unicast in VRF default
          +    Table Id                   : 80000001
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    0          0               0          0          0          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +nx-osv-1# 
          +249: JEAUBIN-M-43JF: 2019-04-28T17:54:52: %AETEST-6-INFO: %[pid=42444][pname=Task-1]: The result of section prerequisites is => PASSED
          +250: JEAUBIN-M-43JF: 2019-04-28T17:54:52: %AETEST-6-INFO: %[pid=42
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + shut + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:00 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          250: JEAUBIN-M-43JF: 2019-04-28T17:54:52: %AETEST-6-INFO: %[pid=42444][pname=Task-1]: Starting section shut
          +251: JEAUBIN-M-43JF: 2019-04-28T17:54:52: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: config +++
          +config term
          +
          +Enter configuration commands, one per line.  End with CNTL/Z.
          +
          +nx-osv-1(config)# router bgp 65000
          +
          +
          +nx-osv-1(config-router)# shutdown
          +
          +
          +nx-osv-1(config-router)# end
          +
          +
          +nx-osv-1# 
          +256: JEAUBIN-M-43JF: 2019-04-28T17:54:52: %AETEST-6-INFO: %[pid=42444][pname=Task-1]: The result of section shut is => PASSED
          +257: 
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + verify + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:00 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          257: JEAUBIN-M-43JF: 2019-04-28T17:54:52: %AETEST-6-INFO: %[pid=42444][pname=Task-1]: Starting section verify
          +258: JEAUBIN-M-43JF: 2019-04-28T17:54:52: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          +show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Process ID                 : 8610
          +BGP Protocol Started, reason:  : configuration
          +BGP Protocol Tag               : 65000
          +BGP Protocol State             : Shutdown
          +BGP MMODE                      : Not Initialized
          +BGP Memory State               : OK
          +BGP asformat                   : asplain
          +
          +BGP attributes information
          +Number of attribute entries    : 2
          +HWM of attribute entries       : 2
          +Bytes used by entries          : 200
          +Entries pending delete         : 0
          +HWM of entries pending delete  : 0
          +BGP paths per attribute HWM    : 1
          +BGP AS path entries            : 0
          +Bytes used by AS path entries  : 0
          +
          +Information regarding configured VRFs:
          +
          +BGP Information for VRF default
          +VRF Id                         : 1
          +VRF state                      : UP
          +Router-ID                      : 10.2.2.2
          +Configured Router-ID           : 10.2.2.2
          +Confed-ID                      : 0
          +Cluster-ID                     : 0.0.0.0
          +No. of configured peers        : 1
          +No. of pending config peers    : 0
          +No. of established peers       : 0
          +VRF RD                         : Not configured
          +
          +    Information for address family IPv4 Unicast in VRF default
          +    Table Id                   : 1
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    1          0               2          2          1          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +    Information for address family IPv6 Unicast in VRF default
          +    Table Id                   : 80000001
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    0          0               0          0          0          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +nx-osv-1# 
          +262: JEAUBIN-M-43JF: 2019-04-28T17:54:52: %AETEST-6-INFO: %[pid=42444][pname=Task-1]: The result of section verify is => PASSED
          +263: JEAUBIN-M-43JF: 2019-04-28T17:54:52: %AETEST-6-INFO: %[pid=42
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + unshut + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:01 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          263: JEAUBIN-M-43JF: 2019-04-28T17:54:52: %AETEST-6-INFO: %[pid=42444][pname=Task-1]: Starting section unshut
          +264: JEAUBIN-M-43JF: 2019-04-28T17:54:52: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: config +++
          +config term
          +
          +Enter configuration commands, one per line.  End with CNTL/Z.
          +
          +nx-osv-1(config)# router bgp 65000
          +
          +
          +nx-osv-1(config-router)# no shutdown
          +
          +
          +nx-osv-1(config-router)# end
          +
          +
          +nx-osv-1# 
          +269: JEAUBIN-M-43JF: 2019-04-28T17:54:53: %AETEST-6-INFO: %[pid=42444][pname=Task-1]: The result of section unshut is => PASSED
          +270: 
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + verify_recover + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:00 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          270: JEAUBIN-M-43JF: 2019-04-28T17:54:53: %AETEST-6-INFO: %[pid=42444][pname=Task-1]: Starting section verify_recover
          +271: JEAUBIN-M-43JF: 2019-04-28T17:54:53: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          +show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Process ID                 : 8610
          +BGP Protocol Started, reason:  : configuration
          +BGP Protocol Tag               : 65000
          +BGP Protocol State             : Running
          +BGP MMODE                      : Not Initialized
          +BGP Memory State               : OK
          +BGP asformat                   : asplain
          +
          +BGP attributes information
          +Number of attribute entries    : 2
          +HWM of attribute entries       : 2
          +Bytes used by entries          : 200
          +Entries pending delete         : 0
          +HWM of entries pending delete  : 0
          +BGP paths per attribute HWM    : 1
          +BGP AS path entries            : 0
          +Bytes used by AS path entries  : 0
          +
          +Information regarding configured VRFs:
          +
          +BGP Information for VRF default
          +VRF Id                         : 1
          +VRF state                      : UP
          +Router-ID                      : 10.2.2.2
          +Configured Router-ID           : 10.2.2.2
          +Confed-ID                      : 0
          +Cluster-ID                     : 0.0.0.0
          +No. of configured peers        : 1
          +No. of pending config peers    : 0
          +No. of established peers       : 0
          +VRF RD                         : Not configured
          +
          +    Information for address family IPv4 Unicast in VRF default
          +    Table Id                   : 1
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    1          0               2          2          1          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +    Information for address family IPv6 Unicast in VRF default
          +    Table Id                   : 80000001
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    0          0               0          0          0          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +nx-osv-1# 
          +275: JEAUBIN-M-43JF: 2019-04-28T17:54:53: %AETEST-6-INFO: %[pid=42444][pname=Task-1]: The result of section verify_recover is => PASSED
          +276: JEAUBIN-M-43JF: 2019-04-28T17:54:53: %AETEST-6-INFO: %[pid=42
          +
          +
        • +
        +
        +
      • + + +
      +
      +
    • + + +
    • +
      + + arrow_drop_down + Verify_Bgp.uut.2 + + +
      + expand_more + expand_less +
      + PASSED + 0:00:15 +
      +
      + + + +
        + + + + +
      • +
        + + arrow_drop_down + verify + + +
        + expand_more + expand_less +
        + PASSED + 0:00:15 +
        +
        + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          278: JEAUBIN-M-43JF: 2019-04-28T17:54:53: %AETEST-6-INFO: %[pid=42444][pname=Task-1]: Starting section verify
          +279: JEAUBIN-M-43JF: 2019-04-28T17:54:53: %GENIE-6-INFO: %[part=279.1/3][pid=42444][pname=Task-1]: +------------------------------------------------------------------------------+
          +280: JEAUBIN-M-43JF: 2019-04-28T17:54:53: %GENIE-6-INFO: %[part=279.2/3][pid=42444][pname=Task-1]: |                              1 out of 5 attempt                              |
          +281: JEAUBIN-M-43JF: 2019-04-28T17:54:53: %GENIE-6-INFO: %[part=279.3/3][pid=42444][pname=Task-1]: +------------------------------------------------------------------------------+
          +282: JEAUBIN-M-43JF: 2019-04-28T17:54:53: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          +show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Process ID                 : 8610
          +BGP Protocol Started, reason:  : configuration
          +BGP Protocol Tag               : 65000
          +BGP Protocol State             : Running
          +BGP MMODE                      : Not Initialized
          +BGP Memory State               : OK
          +BGP asformat                   : asplain
          +
          +BGP attributes information
          +Number of attribute entries    : 2
          +HWM of attribute entries       : 2
          +Bytes used by entries          : 200
          +Entries pending delete         : 0
          +HWM of entries pending delete  : 0
          +BGP paths per attribute HWM    : 1
          +BGP AS path entries            : 0
          +Bytes used by AS path entries  : 0
          +
          +Information regarding configured VRFs:
          +
          +BGP Information for VRF default
          +VRF Id                         : 1
          +VRF state                      : UP
          +Router-ID                      : 10.2.2.2
          +Configured Router-ID           : 10.2.2.2
          +Confed-ID                      : 0
          +Cluster-ID                     : 0.0.0.0
          +No. of configured peers        : 1
          +No. of pending config peers    : 0
          +No. of established peers       : 0
          +VRF RD                         : Not configured
          +
          +    Information for address family IPv4 Unicast in VRF default
          +    Table Id                   : 1
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    1          0               2          2          1          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +    Information for address family IPv6 Unicast in VRF default
          +    Table Id                   : 80000001
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    0          0               0          0          0          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +nx-osv-1# 
          +286: JEAUBIN-M-43JF: 2019-04-28T17:54:53: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-session' +++
          +show running-config | inc peer-session
          +
          +
          +nx-osv-1# 
          +290: JEAUBIN-M-43JF: 2019-04-28T17:54:53: %GENIE-6-INFO: %[part=290.1/2][pid=42444][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>
          +291: JEAUBIN-M-43JF: 2019-04-28T17:54:53: %GENIE-6-INFO: %[part=290.2/2][pid=42444][pname=Task-1]: Parser Output is empty
          +292: JEAUBIN-M-43JF: 2019-04-28T17:54:53: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-policy' +++
          +show running-config | inc peer-policy
          +
          +
          +nx-osv-1# 
          +295: JEAUBIN-M-43JF: 2019-04-28T17:54:54: %GENIE-6-INFO: %[part=295.1/2][pid=42444][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>
          +296: JEAUBIN-M-43JF: 2019-04-28T17:54:54: %GENIE-6-INFO: %[part=295.2/2][pid=42444][pname=Task-1]: Parser Output is empty
          +297: JEAUBIN-M-43JF: 2019-04-28T17:54:54: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all dampening parameters' +++
          +show bgp vrf all all dampening parameters
          +
          +
          +nx-osv-1# 
          +299: JEAUBIN-M-43JF: 2019-04-28T17:54:54: %GENIE-6-INFO: %[part=299.1/2][pid=42444][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>
          +300: JEAUBIN-M-43JF: 2019-04-28T17:54:54: %GENIE-6-INFO: %[part=299.2/2][pid=42444][pname=Task-1]: Parser Output is empty
          +301: JEAUBIN-M-43JF: 2019-04-28T17:54:54: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all nexthop-database' +++
          +show bgp vrf all all nexthop-database
          +
          +
          +Next Hop table for VRF default, address family IPv4 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +
          +Nexthop: 0.0.0.0, Flags: 0x2, Refcount: 1, IGP cost: 0
          +IGP Route type: 0, IGP preference: 0
          +Nexthop is not-attached local unreachable not-labeled
          +Nexthop last resolved: never, using 0.0.0.0/0
          +Metric next advertise: Never
          +RNH epoch: 0
          +
          +Nexthop: 10.1.1.1, Flags: 0x1, Refcount: 1, IGP cost: 41
          +IGP Route type: 0, IGP preference: 110
          +Attached nexthop: 10.0.2.1, Interface: Ethernet2/2
          +Attached nexthop: 10.0.1.1, Interface: Ethernet2/1
          +Nexthop is not-attached not-local reachable not-labeled
          +Nexthop last resolved: 00:09:22, using 10.1.1.1/32
          +Metric next advertise: Never
          +RNH epoch: 1
          +IPv6 Next-hop table
          +
          +Next Hop table for VRF default, address family IPv6 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +IPv6 Next-hop table
          +
          +nx-osv-1# 
          +304: JEAUBIN-M-43JF: 2019-04-28T17:54:54: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'show routing vrf all' +++
          +show routing vrf all
          +
          +IP Route Table for VRF "default"
          +'*' denotes best ucast next-hop
          +'**' denotes best mcast next-hop
          +'[x/y]' denotes [preference/metric]
          +'%<string>' in via output denotes VRF <string>
          +
          +10.0.1.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w6d, direct
          +10.0.1.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w6d, local
          +10.0.2.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w6d, direct
          +10.0.2.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w6d, local
          +10.1.1.1/32, ubest/mbest: 2/0
          +    *via 10.0.1.1, Eth2/1, [110/41], 5d07h, ospf-1, intra
          +    *via 10.0.2.1, Eth2/2, [110/41], 5d07h, ospf-1, intra
          +10.2.2.2/32, ubest/mbest: 2/0, attached
          +    *via 10.2.2.2, Lo0, [0/0], 2w6d, local
          +    *via 10.2.2.2, Lo0, [0/0], 2w6d, direct
          +10.11.11.11/32, ubest/mbest: 1/0
          +    *via 10.1.1.1, [200/0], 00:01:04, bgp-65000, internal, tag 65000, 
          +10.22.22.22/32, ubest/mbest: 2/0, attached
          +    *via 10.22.22.22, Lo1, [0/0], 2w6d, local
          +    *via 10.22.22.22, Lo1, [0/0], 2w6d, direct
          +
          +nx-osv-1# 
          +307: JEAUBIN-M-43JF: 2019-04-28T17:54:54: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all' +++
          +show bgp vrf all all
          +
          +BGP routing table information for VRF default, address family IPv4 Unicast
          +BGP table version is 363, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +nx-osv-1# 
          +310: JEAUBIN-M-43JF: 2019-04-28T17:54:54: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'show vrf' +++
          +show vrf
          +
          +VRF-Name                           VRF-ID State   Reason                        
          +default                                 1 Up      --                            
          +management                              2 Up      --                            
          +
          +nx-osv-1# 
          +312: JEAUBIN-M-43JF: 2019-04-28T17:54:54: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors' +++
          +show bgp vrf default all neighbors
          +
          +BGP neighbor is 10.1.1.1,  remote AS 65000, ibgp link, Peer index 1
          +  BGP version 4, remote router ID 10.1.1.1
          +  BGP state = Closing, down for 00:00:02
          +  Using loopback0 as update source for this peer
          +  Last read 00:00:06, hold time = 180, keepalive interval is 60 seconds
          +  Last written 00:00:02, keepalive timer not running
          +  Received 31951 messages, 1 notifications, 0 bytes in queue
          +  Sent 29207 messages, 110 notifications, 0 bytes in queue
          +  Connections established 110, dropped 110
          +  Last reset by us 00:00:02, due to administratively shutdown
          +  Last reset by peer never, due to No error
          +
          +  Message statistics:
          +                              Sent               Rcvd
          +  Opens:                       111                110  
          +  Notifications:               110                  1  
          +  Updates:                     232                220  
          +  Keepalives:                28754              31620  
          +  Route Refresh:                 0                  0  
          +  Capability:                    0                  0  
          +  Total:                     29207              31951  
          +  Total bytes:              554742             607380  
          +  Bytes in queue:                0                  0  
          +
          +  For address family: IPv4 Unicast
          +  BGP table version 363, neighbor version 0
          +  0 accepted paths consume 0 bytes of memory
          +  0 sent paths
          +  Third-party Nexthop will not be computed.
          +
          +  No established BGP session with peer
          +
          +
          +nx-osv-1# 
          +316: JEAUBIN-M-43JF: 2019-04-28T17:54:55: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf management all neighbors' +++
          +show bgp vrf management all neighbors
          +
          +Unknown vrf management
          +
          +nx-osv-1# 
          +318: JEAUBIN-M-43JF: 2019-04-28T17:54:55: %GENIE-6-INFO: %[part=318.1/2][pid=42444][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>
          +319: JEAUBIN-M-43JF: 2019-04-28T17:54:55: %GENIE-6-INFO: %[part=318.2/2][pid=42444][pname=Task-1]: Parser Output is empty
          +320: JEAUBIN-M-43JF: 2019-04-28T17:54:55: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all summary' +++
          +show bgp vrf all all summary
          +
          +BGP summary information for VRF default, address family IPv4 Unicast
          +BGP router identifier 10.2.2.2, local AS number 65000
          +BGP table version is 363, IPv4 Unicast config peers 1, capable peers 0
          +2 network entries and 2 paths using 288 bytes of memory
          +BGP attribute entries [2/288], BGP AS path entries [0/0]
          +BGP community entries [0/0], BGP clusterlist entries [0/0]
          +
          +Neighbor        V    AS MsgRcvd MsgSent   TblVer  InQ OutQ Up/Down  State/PfxRcd
          +10.1.1.1        4 65000   31951   29207        0    0    0 00:00:02 Closing  
          +
          +BGP summary information for VRF default, address family IPv6 Unicast
          +
          +nx-osv-1# 
          +323: JEAUBIN-M-43JF: 2019-04-28T17:54:55: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 advertised-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 advertised-routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 363, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +327: JEAUBIN-M-43JF: 2019-04-28T17:54:55: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 364, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +x i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +331: JEAUBIN-M-43JF: 2019-04-28T17:54:55: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 received-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 received-routes
          +
          +
          +Inbound soft reconfiguration for IPv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MDT not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN VPLS not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN EVPN not enabled on 10.1.1.1
          +
          +nx-osv-1# 
          +334: JEAUBIN-M-43JF: 2019-04-28T17:54:55: %GENIE-6-INFO: %[part=334.1/2][pid=42444][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>
          +335: JEAUBIN-M-43JF: 2019-04-28T17:54:55: %GENIE-6-INFO: %[part=334.2/2][pid=42444][pname=Task-1]: Parser Output is empty
          +336: JEAUBIN-M-43JF: 2019-04-28T17:54:55: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: +====================================================================================================================================================+
          +337: JEAUBIN-M-43JF: 2019-04-28T17:54:55: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: | Commands for learning feature 'Bgp'                                                                                                                |
          +338: JEAUBIN-M-43JF: 2019-04-28T17:54:55: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: +====================================================================================================================================================+
          +339: JEAUBIN-M-43JF: 2019-04-28T17:54:55: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: | - Parsed commands                                                                                                                                  |
          +340: JEAUBIN-M-43JF: 2019-04-28T17:54:55: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +341: JEAUBIN-M-43JF: 2019-04-28T17:54:55: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpProcessVrfAll'>                                                                              |
          +342: JEAUBIN-M-43JF: 2019-04-28T17:54:55: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllNextHopDatabase'>                                                                   |
          +343: JEAUBIN-M-43JF: 2019-04-28T17:54:55: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_routing.ShowRoutingVrfAll'>                                                                             |
          +344: JEAUBIN-M-43JF: 2019-04-28T17:54:55: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAll'>                                                                                  |
          +345: JEAUBIN-M-43JF: 2019-04-28T17:54:55: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_vrf.ShowVrf'>                                                                                           |
          +346: JEAUBIN-M-43JF: 2019-04-28T17:54:55: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'default'}                                              |
          +347: JEAUBIN-M-43JF: 2019-04-28T17:54:55: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllSummary'>                                                                           |
          +348: JEAUBIN-M-43JF: 2019-04-28T17:54:55: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsAdvertisedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}        |
          +349: JEAUBIN-M-43JF: 2019-04-28T17:54:55: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}                  |
          +350: JEAUBIN-M-43JF: 2019-04-28T17:54:55: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |====================================================================================================================================================|
          +351: JEAUBIN-M-43JF: 2019-04-28T17:54:55: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: | - Commands with empty output                                                                                                                       |
          +352: JEAUBIN-M-43JF: 2019-04-28T17:54:55: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +353: JEAUBIN-M-43JF: 2019-04-28T17:54:55: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>                                                                                |
          +354: JEAUBIN-M-43JF: 2019-04-28T17:54:55: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>                                                                                 |
          +355: JEAUBIN-M-43JF: 2019-04-28T17:54:55: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>                                                               |
          +356: JEAUBIN-M-43JF: 2019-04-28T17:54:55: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'management'}                                           |
          +357: JEAUBIN-M-43JF: 2019-04-28T17:54:55: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}          |
          +358: JEAUBIN-M-43JF: 2019-04-28T17:54:55: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |====================================================================================================================================================|
          +359: JEAUBIN-M-43JF: 2019-04-28T17:54:55: %GENIE-6-INFO: %[part=359.1/2][pid=42444][pname=Task-1]: Comparing current snapshot to initial snapshot
          +360: JEAUBIN-M-43JF: 2019-04-28T17:54:55: %GENIE-6-INFO: %[part=359.2/2][pid=42444][pname=Task-1]: Excluding these keys ['if_handle', 'keepalives', 'last_reset', 'reset_reason', 'foreign_port', 'local_port', 'msg_rcvd', 'msg_sent', 'up_down', 'bgp_table_version', 'routing_table_version', 'tbl_ver', 'table_version', 'memory_usage', 'updates', 'mss', 'total', 'total_bytes', 'up_time', 'bgp_negotiated_keepalive_timers', 'hold_time', 'keepalive_interval', 'sent', 'received', 'status_codes', 'holdtime', 'router_id', 'connections_dropped', 'connections_established', 'advertised', 'prefixes', 'routes', 'state_pfxrcd']
          +361: JEAUBIN-M-43JF: 2019-04-28T17:54:55: %GENIE-3-ERROR: %[pid=42444][pname=Task-1]: Retaking snapshot for the verification as the comparison with original one failed
          +362: JEAUBIN-M-43JF: 2019-04-28T17:55:05: %GENIE-6-INFO: %[part=362.1/3][pid=42444][pname=Task-1]: +------------------------------------------------------------------------------+
          +363: JEAUBIN-M-43JF: 2019-04-28T17:55:05: %GENIE-6-INFO: %[part=362.2/3][pid=42444][pname=Task-1]: |                              2 out of 5 attempt                              |
          +364: JEAUBIN-M-43JF: 2019-04-28T17:55:05: %GENIE-6-INFO: %[part=362.3/3][pid=42444][pname=Task-1]: +------------------------------------------------------------------------------+
          +365: JEAUBIN-M-43JF: 2019-04-28T17:55:05: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          +show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Process ID                 : 8610
          +BGP Protocol Started, reason:  : configuration
          +BGP Protocol Tag               : 65000
          +BGP Protocol State             : Running
          +BGP MMODE                      : Not Initialized
          +BGP Memory State               : OK
          +BGP asformat                   : asplain
          +
          +BGP attributes information
          +Number of attribute entries    : 2
          +HWM of attribute entries       : 2
          +Bytes used by entries          : 200
          +Entries pending delete         : 0
          +HWM of entries pending delete  : 0
          +BGP paths per attribute HWM    : 1
          +BGP AS path entries            : 0
          +Bytes used by AS path entries  : 0
          +
          +Information regarding configured VRFs:
          +
          +BGP Information for VRF default
          +VRF Id                         : 1
          +VRF state                      : UP
          +Router-ID                      : 10.2.2.2
          +Configured Router-ID           : 10.2.2.2
          +Confed-ID                      : 0
          +Cluster-ID                     : 0.0.0.0
          +No. of configured peers        : 1
          +No. of pending config peers    : 0
          +No. of established peers       : 1
          +VRF RD                         : Not configured
          +
          +    Information for address family IPv4 Unicast in VRF default
          +    Table Id                   : 1
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    1          1               2          2          1          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +    Information for address family IPv6 Unicast in VRF default
          +    Table Id                   : 80000001
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    0          0               0          0          0          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +nx-osv-1# 
          +369: JEAUBIN-M-43JF: 2019-04-28T17:55:05: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-session' +++
          +show running-config | inc peer-session
          +
          +
          +nx-osv-1# 
          +373: JEAUBIN-M-43JF: 2019-04-28T17:55:06: %GENIE-6-INFO: %[part=373.1/2][pid=42444][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>
          +374: JEAUBIN-M-43JF: 2019-04-28T17:55:06: %GENIE-6-INFO: %[part=373.2/2][pid=42444][pname=Task-1]: Parser Output is empty
          +375: JEAUBIN-M-43JF: 2019-04-28T17:55:06: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-policy' +++
          +show running-config | inc peer-policy
          +
          +
          +nx-osv-1# 
          +379: JEAUBIN-M-43JF: 2019-04-28T17:55:06: %GENIE-6-INFO: %[part=379.1/2][pid=42444][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>
          +380: JEAUBIN-M-43JF: 2019-04-28T17:55:06: %GENIE-6-INFO: %[part=379.2/2][pid=42444][pname=Task-1]: Parser Output is empty
          +381: JEAUBIN-M-43JF: 2019-04-28T17:55:06: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all dampening parameters' +++
          +show bgp vrf all all dampening parameters
          +
          +
          +nx-osv-1# 
          +383: JEAUBIN-M-43JF: 2019-04-28T17:55:06: %GENIE-6-INFO: %[part=383.1/2][pid=42444][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>
          +384: JEAUBIN-M-43JF: 2019-04-28T17:55:06: %GENIE-6-INFO: %[part=383.2/2][pid=42444][pname=Task-1]: Parser Output is empty
          +385: JEAUBIN-M-43JF: 2019-04-28T17:55:06: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all nexthop-database' +++
          +show bgp vrf all all nexthop-database
          +
          +
          +Next Hop table for VRF default, address family IPv4 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +
          +Nexthop: 0.0.0.0, Flags: 0x2, Refcount: 1, IGP cost: 0
          +IGP Route type: 0, IGP preference: 0
          +Nexthop is not-attached local unreachable not-labeled
          +Nexthop last resolved: never, using 0.0.0.0/0
          +Metric next advertise: Never
          +RNH epoch: 0
          +
          +Nexthop: 10.1.1.1, Flags: 0x1, Refcount: 1, IGP cost: 41
          +IGP Route type: 0, IGP preference: 110
          +Attached nexthop: 10.0.2.1, Interface: Ethernet2/2
          +Attached nexthop: 10.0.1.1, Interface: Ethernet2/1
          +Nexthop is not-attached not-local reachable not-labeled
          +Nexthop last resolved: 00:09:34, using 10.1.1.1/32
          +Metric next advertise: Never
          +RNH epoch: 1
          +IPv6 Next-hop table
          +
          +Next Hop table for VRF default, address family IPv6 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +IPv6 Next-hop table
          +
          +nx-osv-1# 
          +388: JEAUBIN-M-43JF: 2019-04-28T17:55:06: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'show routing vrf all' +++
          +show routing vrf all
          +
          +IP Route Table for VRF "default"
          +'*' denotes best ucast next-hop
          +'**' denotes best mcast next-hop
          +'[x/y]' denotes [preference/metric]
          +'%<string>' in via output denotes VRF <string>
          +
          +10.0.1.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w6d, direct
          +10.0.1.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w6d, local
          +10.0.2.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w6d, direct
          +10.0.2.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w6d, local
          +10.1.1.1/32, ubest/mbest: 2/0
          +    *via 10.0.1.1, Eth2/1, [110/41], 5d07h, ospf-1, intra
          +    *via 10.0.2.1, Eth2/2, [110/41], 5d07h, ospf-1, intra
          +10.2.2.2/32, ubest/mbest: 2/0, attached
          +    *via 10.2.2.2, Lo0, [0/0], 2w6d, local
          +    *via 10.2.2.2, Lo0, [0/0], 2w6d, direct
          +10.11.11.11/32, ubest/mbest: 1/0
          +    *via 10.1.1.1, [200/0], 00:00:03, bgp-65000, internal, tag 65000, 
          +10.22.22.22/32, ubest/mbest: 2/0, attached
          +    *via 10.22.22.22, Lo1, [0/0], 2w6d, local
          +    *via 10.22.22.22, Lo1, [0/0], 2w6d, direct
          +
          +nx-osv-1# 
          +391: JEAUBIN-M-43JF: 2019-04-28T17:55:06: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all' +++
          +show bgp vrf all all
          +
          +BGP routing table information for VRF default, address family IPv4 Unicast
          +BGP table version is 366, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +nx-osv-1# 
          +394: JEAUBIN-M-43JF: 2019-04-28T17:55:06: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'show vrf' +++
          +show vrf
          +
          +VRF-Name                           VRF-ID State   Reason                        
          +default                                 1 Up      --                            
          +management                              2 Up      --                            
          +
          +nx-osv-1# 
          +397: JEAUBIN-M-43JF: 2019-04-28T17:55:07: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors' +++
          +show bgp vrf default all neighbors
          +
          +BGP neighbor is 10.1.1.1,  remote AS 65000, ibgp link, Peer index 1
          +  BGP version 4, remote router ID 10.1.1.1
          +  BGP state = Established, up for 00:00:04
          +  Using loopback0 as update source for this peer
          +  Last read 00:00:03, hold time = 180, keepalive interval is 60 seconds
          +  Last written 00:00:03, keepalive timer expiry due 00:00:56
          +  Received 31956 messages, 1 notifications, 0 bytes in queue
          +  Sent 29212 messages, 110 notifications, 0 bytes in queue
          +  Connections established 111, dropped 110
          +  Last reset by us 00:00:14, due to administratively shutdown
          +  Last reset by peer never, due to No error
          +
          +  Neighbor capabilities:
          +  Dynamic capability: advertised (mp, refresh, gr) 
          +  Dynamic capability (old): advertised 
          +  Route refresh capability (new): advertised received 
          +  Route refresh capability (old): advertised received 
          +  4-Byte AS capability: advertised received 
          +  Address family IPv4 Unicast: advertised received 
          +  Graceful Restart capability: advertised 
          +
          +  Graceful Restart Parameters:
          +  Address families advertised to peer:
          +    IPv4 Unicast  
          +  Address families received from peer:
          +  Forwarding state preserved by peer for:
          +  Restart time advertised to peer: 120 seconds
          +  Stale time for routes advertised by peer: 300 seconds
          +  Extended Next Hop Encoding Capability: advertised 
          +
          +  Message statistics:
          +                              Sent               Rcvd
          +  Opens:                       112                111  
          +  Notifications:               110                  1  
          +  Updates:                     234                222  
          +  Keepalives:                28756              31622  
          +  Route Refresh:                 0                  0  
          +  Capability:                    0                  0  
          +  Total:                     29212              31956  
          +  Total bytes:              554833             607478  
          +  Bytes in queue:                0                  0  
          +
          +  For address family: IPv4 Unicast
          +  BGP table version 366, neighbor version 366
          +  1 accepted paths consume 80 bytes of memory
          +  1 sent paths
          +  Third-party Nexthop will not be computed.
          +
          +  Local host: 10.2.2.2, Local port: 12984
          +  Foreign host: 10.1.1.1, Foreign port: 179
          +  fd = 60
          +
          +
          +nx-osv-1# 
          +401: JEAUBIN-M-43JF: 2019-04-28T17:55:07: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf management all neighbors' +++
          +show bgp vrf management all neighbors
          +
          +Unknown vrf management
          +
          +nx-osv-1# 
          +403: JEAUBIN-M-43JF: 2019-04-28T17:55:07: %GENIE-6-INFO: %[part=403.1/2][pid=42444][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>
          +404: JEAUBIN-M-43JF: 2019-04-28T17:55:07: %GENIE-6-INFO: %[part=403.2/2][pid=42444][pname=Task-1]: Parser Output is empty
          +405: JEAUBIN-M-43JF: 2019-04-28T17:55:07: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all summary' +++
          +show bgp vrf all all summary
          +
          +BGP summary information for VRF default, address family IPv4 Unicast
          +BGP router identifier 10.2.2.2, local AS number 65000
          +BGP table version is 366, IPv4 Unicast config peers 1, capable peers 1
          +2 network entries and 2 paths using 288 bytes of memory
          +BGP attribute entries [2/288], BGP AS path entries [0/0]
          +BGP community entries [0/0], BGP clusterlist entries [0/0]
          +
          +Neighbor        V    AS MsgRcvd MsgSent   TblVer  InQ OutQ Up/Down  State/PfxRcd
          +10.1.1.1        4 65000   31956   29212      366    0    0 00:00:04 1         
          +
          +BGP summary information for VRF default, address family IPv6 Unicast
          +
          +nx-osv-1# 
          +408: JEAUBIN-M-43JF: 2019-04-28T17:55:07: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 advertised-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 advertised-routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 366, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +412: JEAUBIN-M-43JF: 2019-04-28T17:55:07: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 366, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +416: JEAUBIN-M-43JF: 2019-04-28T17:55:07: %UNICON-6-INFO: %[pid=42444][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 received-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 received-routes
          +
          +
          +Inbound soft reconfiguration for IPv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MDT not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN VPLS not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN EVPN not enabled on 10.1.1.1
          +
          +nx-osv-1# 
          +419: JEAUBIN-M-43JF: 2019-04-28T17:55:07: %GENIE-6-INFO: %[part=419.1/2][pid=42444][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>
          +420: JEAUBIN-M-43JF: 2019-04-28T17:55:07: %GENIE-6-INFO: %[part=419.2/2][pid=42444][pname=Task-1]: Parser Output is empty
          +421: JEAUBIN-M-43JF: 2019-04-28T17:55:07: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: +====================================================================================================================================================+
          +422: JEAUBIN-M-43JF: 2019-04-28T17:55:07: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: | Commands for learning feature 'Bgp'                                                                                                                |
          +423: JEAUBIN-M-43JF: 2019-04-28T17:55:07: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: +====================================================================================================================================================+
          +424: JEAUBIN-M-43JF: 2019-04-28T17:55:07: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: | - Parsed commands                                                                                                                                  |
          +425: JEAUBIN-M-43JF: 2019-04-28T17:55:07: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +426: JEAUBIN-M-43JF: 2019-04-28T17:55:07: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpProcessVrfAll'>                                                                              |
          +427: JEAUBIN-M-43JF: 2019-04-28T17:55:07: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllNextHopDatabase'>                                                                   |
          +428: JEAUBIN-M-43JF: 2019-04-28T17:55:07: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_routing.ShowRoutingVrfAll'>                                                                             |
          +429: JEAUBIN-M-43JF: 2019-04-28T17:55:07: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAll'>                                                                                  |
          +430: JEAUBIN-M-43JF: 2019-04-28T17:55:07: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_vrf.ShowVrf'>                                                                                           |
          +431: JEAUBIN-M-43JF: 2019-04-28T17:55:07: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'default'}                                              |
          +432: JEAUBIN-M-43JF: 2019-04-28T17:55:07: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllSummary'>                                                                           |
          +433: JEAUBIN-M-43JF: 2019-04-28T17:55:08: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsAdvertisedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}        |
          +434: JEAUBIN-M-43JF: 2019-04-28T17:55:08: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}                  |
          +435: JEAUBIN-M-43JF: 2019-04-28T17:55:08: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |====================================================================================================================================================|
          +436: JEAUBIN-M-43JF: 2019-04-28T17:55:08: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: | - Commands with empty output                                                                                                                       |
          +437: JEAUBIN-M-43JF: 2019-04-28T17:55:08: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +438: JEAUBIN-M-43JF: 2019-04-28T17:55:08: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>                                                                                |
          +439: JEAUBIN-M-43JF: 2019-04-28T17:55:08: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>                                                                                 |
          +440: JEAUBIN-M-43JF: 2019-04-28T17:55:08: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>                                                               |
          +441: JEAUBIN-M-43JF: 2019-04-28T17:55:08: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'management'}                                           |
          +442: JEAUBIN-M-43JF: 2019-04-28T17:55:08: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}          |
          +443: JEAUBIN-M-43JF: 2019-04-28T17:55:08: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |====================================================================================================================================================|
          +444: JEAUBIN-M-43JF: 2019-04-28T17:55:08: %GENIE-6-INFO: %[part=444.1/2][pid=42444][pname=Task-1]: Comparing current snapshot to initial snapshot
          +445: JEAUBIN-M-43JF: 2019-04-28T17:55:08: %GENIE-6-INFO: %[part=444.2/2][pid=42444][pname=Task-1]: Excluding these keys ['if_handle', 'keepalives', 'last_reset', 'reset_reason', 'foreign_port', 'local_port', 'msg_rcvd', 'msg_sent', 'up_down', 'bgp_table_version', 'routing_table_version', 'tbl_ver', 'table_version', 'memory_usage', 'updates', 'mss', 'total', 'total_bytes', 'up_time', 'bgp_negotiated_keepalive_timers', 'hold_time', 'keepalive_interval', 'sent', 'received', 'status_codes', 'holdtime', 'router_id', 'connections_dropped', 'connections_established', 'advertised', 'prefixes', 'routes', 'state_pfxrcd']
          +446: JEAUBIN-M-43JF: 2019-04-28T17:55:08: %GENIE-6-INFO: %[pid=42444][pname=Task-1]: Snapshot is same as initial snapshot
          +447: JEAUBIN-M-43JF: 2019-04-28T17:55:08: %AETEST-6-INFO: %[pid=42444][pname=Task-1]: The result of section verify is => PASSED
          +448: JEAUBIN-M-43JF: 2019-04-28T17:55:08: %AETEST-6-INFO: %[pid=42444][pname=Task-1]: The result of testcase Verify_Bgp.uut.2 is => PASSED
          +449: JEAUBIN-M-43JF: 2019-04-28T17:55:08: %AETEST-6-INFO: %[pid=42444][pname=Task-1]: Starting common cleanup
          +450: JEAUBIN-M-43JF: 2019-04-28T17:55:08: %AETEST-6-INFO: %[pid=42444][pname=Task-1]: Starting subsection verify_configuration_snapshot
          +451: JEAUBIN-M-43JF: 2019-04-28T17:55:08: %GENIE-6-INFO: %[pid=42444][pname=Task-1]: Verify if the devices' configuration has been modified within the run. A new snapshot is taken and is compared with the one taken in Common 
          +
          +
        • +
        +
        +
      • + + +
      +
      +
    • + + +
    • +
      + + arrow_drop_down + commonCleanup + + +
      + expand_more + expand_less +
      + PASSED + 0:00:01 +
      +
      + + + +
        + + + + +
      • +
        + + arrow_drop_down + verify_configuration_snapshot + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:01 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          450: JEAUBIN-M-43JF: 2019-04-28T17:55:08: %AETEST-6-INFO: %[pid=42444][pname=Task-1]: Starting subsection verify_configuration_snapshot
          +451: JEAUBIN-M-43JF: 2019-04-28T17:55:08: %GENIE-6-INFO: %[pid=42444][pname=Task-1]: Verify if the devices' configuration has been modified within the run. A new snapshot is taken and is compared with the one taken in Common Setup
          +452: JEAUBIN-M-43JF: 2019-04-28T17:55:08: %GENIE-6-INFO: %[pid=42444][pname=Task-1]: For more information visit Genie check_config section http://wwwin-pyats.cisco.com/cisco-shared/genie/latest/harness/user/gettingstarted.html#check-config
          +2: JEAUBIN-M-43JF: 2019-04-28T17:55:08: %LOG-6-INFO: %[pid=42600][pname=ChildLabor-3:5]: >>>> Begin child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr28_17:54:23.204811/TaskLog.Task-1:pid-42600
          +3: JEAUBIN-M-43JF: 2019-04-28T17:55:08: %UNICON-6-INFO: %[pid=42600][pname=ChildLabor-3:5]: +++ csr1000v-1: executing command 'show running-config' +++
          +show running-config
          +Building configuration...
          +
          +Current configuration : 4219 bytes
          +!
          +! Last configuration change at 00:54:27 UTC Mon Apr 29 2019
          +!
          +version 16.9
          +service config
          +service timestamps debug datetime msec
          +service timestamps log datetime msec
          +platform qfp utilization monitor load 80
          +no platform punt-keepalive disable-kernel-core
          +platform console serial
          +!
          +hostname csr1000v-1
          +!
          +boot-start-marker
          +boot-end-marker
          +!
          +!
          +no logging console
          +enable secret 5 $1$wlDY$aYpdGzmHlBCznQBCYZX/q0
          +!
          +no aaa new-model
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +ip admission watch-list expiry-time 0
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +subscriber templating
          +! 
          +! 
          +! 
          +! 
          +!
          +multilink bundle-name authenticated
          +!
          +!
          +!
          +!
          +!
          +crypto pki trustpoint TP-self-signed-1664596352
          + enrollment selfsigned
          + subject-name cn=IOS-Self-Signed-Certificate-1664596352
          + revocation-check none
          + rsakeypair TP-self-signed-1664596352
          +!
          +!
          +crypto pki certificate chain TP-self-signed-1664596352
          + certificate self-signed 01
          +  30820330 30820218 A0030201 02020101 300D0609 2A864886 F70D0101 05050030 
          +  31312F30 2D060355 04031326 494F532D 53656C66 2D536967 6E65642D 43657274 
          +  69666963 6174652D 31363634 35393633 3532301E 170D3139 30343039 30303530 
          +  30335A17 0D333030 31303130 30303030 305A3031 312F302D 06035504 03132649 
          +  4F532D53 656C662D 5369676E 65642D43 65727469 66696361 74652D31 36363435 
          +  39363335 32308201 22300D06 092A8648 86F70D01 01010500 0382010F 00308201 
          +  0A028201 01009251 9249BF1E CAEB9073 0EE0254F 13AFC868 50B488E0 537408FD 
          +  27011BAA 346D19DA 70656043 4F7785F0 6679CC26 744BF77B 4E67A312 4D08F243 
          +  559E28A0 DEC217DD B48FE7F2 67BF339F 125E17EB FED1B10F 9E6EE7B5 C250C85A 
          +  A939DE1E DDC830F8 89230BA1 DB106783 8B09A777 7A92D388 03015F80 1AC7FC41 
          +  8BBAA19B 04600DCC F9D6A266 235B989D 6B864C35 8888BE4F 4817B4C4 B53C1FB5 
          +  CA53D93E 96BC900D CFF18777 FFF66D5E 3A46D6E3 DE6DE5F4 5151A66C 1382933A 
          +  2A46407E 53FBA2B1 141EA839 37B34B95 E60D31AC 496128CC E2A645A4 C9F42BE8 
          +  493A5748 4F1D0D5E 949312DF DFCAD602 B49025EF B3828CA0 08708BFD 150DF77A 
          +  4E22B257 6EC50203 010001A3 53305130 0F060355 1D130101 FF040530 030101FF 
          +  301F0603 551D2304 18301680 1434CE87 BC30C852 D663D826 E068BACB B500AC89 
          +  92301D06 03551D0E 04160414 34CE87BC 30C852D6 63D826E0 68BACBB5 00AC8992 
          +  300D0609 2A864886 F70D0101 05050003 82010100 4A426F44 7A22F137 615ABF5F 
          +  4B595C5B 03483695 BCE4041C 766D1273 219E3257 618DBCBE 260FD6F7 44CA69B4 
          +  467B77A3 0032C6A2 D401423E E780E18F A498EE6C FB5162EF 91422C4A 51B52384 
          +  0595C987 80FD4FBA 4EFE8227 76C6522E 02C0F548 0A1C3F20 7C176D4B C2458EEB 
          +  6B437FFE B3DEA4D4 7105CFC4 F83B5A51 9A4F43C5 8DC14533 4A5D0AE3 4269294E 
          +  2FBB8563 8A806EBE 0545F028 4C0B32ED A7840E4A 8F4FFF1D 894AD9FD 8C958C97 
          +  8DD917D5 3CBC3399 C481D57F 144571B1 ADC3B2B5 E6990255 600B5E2D 28D9719F 
          +  0091B2D7 6C988EFA 8627AE88 BAEA521A D46E09ED 5A692525 A77157B5 90A97B84 
          +  94BF8540 1C1FF02C B3848B50 2E68DEA6 DD1488C8
          +  	quit
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +license udi pid CSR1000V sn 9P34NU3ZQ4L
          +no license smart enable
          +diagnostic bootup level minimal
          +!
          +spanning-tree extend system-id
          +!
          +!
          +!
          +username cisco privilege 15 secret 5 $1$Hxh.$djLU5CFb2av38EBH6WO8a/
          +!
          +redundancy
          +!
          +!
          +!
          +!
          +!
          +!
          +! 
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +! 
          +! 
          +!
          +!
          +interface Loopback0
          + ip address 10.1.1.1 255.255.255.255
          + ip ospf 1 area 0
          +!
          +interface Loopback1
          + ip address 10.11.11.11 255.255.255.255
          +!
          +interface GigabitEthernet1
          + ip address dhcp
          + negotiation auto
          + no mop enabled
          + no mop sysid
          +!
          +interface GigabitEthernet2
          + ip address 10.0.1.1 255.255.255.0
          + ip ospf 1 area 0
          + negotiation auto
          + no mop enabled
          + no mop sysid
          +!
          +interface GigabitEthernet3
          + ip address 10.0.2.1 255.255.255.0
          + ip ospf 1 area 0
          + negotiation auto
          + no mop enabled
          + no mop sysid
          +!
          +router ospf 1
          + router-id 10.1.1.1
          +!
          +router bgp 65000
          + bgp router-id 10.1.1.1
          + bgp log-neighbor-changes
          + no bgp default ipv4-unicast
          + neighbor 10.2.2.2 remote-as 65000
          + neighbor 10.2.2.2 update-source Loopback0
          + !
          + address-family ipv4
          +  network 10.11.11.11 mask 255.255.255.255
          +  neighbor 10.2.2.2 activate
          + exit-address-family
          +!
          +!
          +virtual-service csr_mgmt
          +!
          +ip forward-protocol nd
          +ip http server
          +ip http authentication local
          +ip http secure-server
          +ip http client source-interface GigabitEthernet1
          +!
          +!
          +!
          +!
          +!
          +!
          +control-plane
          +!
          +!
          +!
          +!
          +!
          +!
          +line con 0
          + exec-timeout 0 0
          + stopbits 1
          +line vty 0
          + login
          +line vty 1
          + login
          + length 20
          +line vty 2 4
          + login
          +!
          +!
          +!
          +!
          +!
          +!
          +end
          +
          +csr1000v-1#
          +15: JEAUBIN-M-43JF: 2019-04-28T17:55:08: %LOG-6-INFO: %[pid=42600][pname=ChildLabor-3:5]: <<<< End child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr28_17:54:23.204811/TaskLog.Task-1:pid-42600
          +2: JEAUBIN-M-43JF: 2019-04-28T17:55:08: %LOG-6-INFO: %[pid=42601][pname=ChildLabor-3:6]: >>>> Begin child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr28_17:54:23.204811/TaskLog.Task-1:pid-42601
          +3: JEAUBIN-M-43JF: 2019-04-28T17:55:08: %UNICON-6-INFO: %[pid=42601][pname=ChildLabor-3:6]: +++ nx-osv-1: executing command 'show running-config' +++
          +show running-config
          +
          +
          +!Command: show running-config
          +!Time: Mon Apr 29 01:00:46 2019
          +
          +version 7.3(0)D1(1)
          +power redundancy-mode redundant
          +license grace-period
          +
          +hostname nx-osv-1
          +vdc nx-osv-1 id 1
          +  limit-resource module-type m1 m1xl m2xl f2e 
          +  allocate interface Ethernet2/1-48
          +  allocate interface Ethernet3/1-48
          +  allocate interface Ethernet4/1-48
          +  limit-resource vlan minimum 16 maximum 4094
          +  limit-resource vrf minimum 2 maximum 4096
          +  limit-resource port-channel minimum 0 maximum 768
          +  limit-resource u4route-mem minimum 96 maximum 96
          +  limit-resource u6route-mem minimum 24 maximum 24
          +  limit-resource m4route-mem minimum 58 maximum 58
          +  limit-resource m6route-mem minimum 8 maximum 8
          +
          +feature ospf
          +feature bgp
          +
          +username admin password 5 $5$Otc7T0NC$K.ulnSZnSyXLrTGNBdtLgZJXEa8EeNx.BrdZ98XyK2C  role network-admin
          +no password strength-check
          +ip domain-lookup
          +vlan dot1Q tag native
          +system default switchport
          +system jumbomtu 0
          +no logging event trunk-status enable
          +copp profile strict
          +snmp-server user admin auth md5 0x328945d53e05e8e7207f8c20b142f0b7 priv 0x328945d53e05e8e7207f8c20b142f0b7 localizedkey engineID 128:0:0:9:3:0:0:0:0:0:0
          +rmon event 1 log description FATAL(1) owner PMON@FATAL
          +rmon event 2 log description CRITICAL(2) owner PMON@CRITICAL
          +rmon event 3 log description ERROR(3) owner PMON@ERROR
          +rmon event 4 log description WARNING(4) owner PMON@WARNING
          +rmon event 5 log description INFORMATION(5) owner PMON@INFO
          +snmp-server enable traps link
          +snmp-server enable traps link cisco-xcvr-mon-status-chg
          +ntp server 216.239.35.0 prefer
          +
          +vlan 1
          +
          +vrf context management
          +
          +interface mgmt0
          +  vrf member management
          +
          +interface Ethernet2/1
          +  no switchport
          +  mac-address 0000.0000.002f
          +  ip address 10.0.1.2/24
          +  ip router ospf 1 area 0.0.0.0
          +  no shutdown
          +
          +interface Ethernet2/2
          +  no switchport
          +  mac-address 0000.0000.002f
          +  ip address 10.0.2.2/24
          +  ip router ospf 1 area 0.0.0.0
          +  no shutdown
          +
          +interface Ethernet2/3
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/4
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/5
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/6
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/7
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/8
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/9
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/10
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/11
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/12
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/13
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/14
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/15
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/16
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/17
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/18
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/19
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/20
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/21
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/22
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/23
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/24
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/25
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/26
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/27
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/28
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/29
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/30
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/31
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/32
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/33
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/34
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/35
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/36
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/37
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/38
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/39
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/40
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/41
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/42
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/43
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/44
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/45
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/46
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/47
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/48
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet3/1
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/2
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/3
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/4
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/5
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/6
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/7
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/8
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/9
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/10
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/11
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/12
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/13
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/14
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/15
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/16
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/17
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/18
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/19
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/20
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/21
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/22
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/23
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/24
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/25
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/26
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/27
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/28
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/29
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/30
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/31
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/32
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/33
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/34
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/35
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/36
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/37
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/38
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/39
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/40
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/41
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/42
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/43
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/44
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/45
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/46
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/47
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/48
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet4/1
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/2
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/3
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/4
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/5
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/6
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/7
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/8
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/9
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/10
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/11
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/12
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/13
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/14
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/15
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/16
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/17
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/18
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/19
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/20
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/21
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/22
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/23
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/24
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/25
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/26
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/27
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/28
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/29
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/30
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/31
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/32
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/33
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/34
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/35
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/36
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/37
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/38
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/39
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/40
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/41
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/42
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/43
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/44
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/45
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/46
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/47
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/48
          +  switchport
          +  no shutdown
          +
          +interface loopback0
          +  ip address 10.2.2.2/32
          +  ip router ospf 1 area 0.0.0.0
          +
          +interface loopback1
          +  ip address 10.22.22.22/32
          +line console
          +  exec-timeout 0
          +  terminal width  511
          +line vty
          +boot kickstart bootflash:/titanium-d1-kickstart.7.3.0.D1.1.bin
          +boot system bootflash:/titanium-d1.7.3.0.D1.1.bin 
          +router ospf 1
          +  router-id 10.2.2.2
          +router bgp 65000
          +  router-id 10.2.2.2
          +  address-family ipv4 unicast
          +    network 10.22.22.22/32
          +  neighbor 10.1.1.1
          +    remote-as 65000
          +    update-source loopback0
          +    address-family ipv4 unicast
          +no logging console
          +
          +
          +
          +nx-osv-1# 
          +41: JEAUBIN-M-43JF: 2019-04-28T17:55:08: %LOG-6-INFO: %[pid=42601][pname=ChildLabor-3:6]: <<<< End child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr28_17:54:23.204811/TaskLog.Task-1:pid-42601
          +453: JEAUBIN-M-43JF: 2019-04-28T17:55:09: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: +====================================================================================================================================================+
          +454: JEAUBIN-M-43JF: 2019-04-28T17:55:09: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: | Check Post configuration Summary                                                                                                                   |
          +455: JEAUBIN-M-43JF: 2019-04-28T17:55:09: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: +====================================================================================================================================================+
          +456: JEAUBIN-M-43JF: 2019-04-28T17:55:09: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: | * Summary for device: csr1000v-1                                                                                                                   |
          +457: JEAUBIN-M-43JF: 2019-04-28T17:55:09: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |     - Comparison between original configuration taken at common setup and OPS object snapshots are equal                                           |
          +458: JEAUBIN-M-43JF: 2019-04-28T17:55:09: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |****************************************************************************************************************************************************|
          +459: JEAUBIN-M-43JF: 2019-04-28T17:55:09: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: | * Summary for device: nx-osv-1                                                                                                                     |
          +460: JEAUBIN-M-43JF: 2019-04-28T17:55:09: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |     - Comparison between original configuration taken at common setup and OPS object snapshots are equal                                           |
          +461: JEAUBIN-M-43JF: 2019-04-28T17:55:09: %ROOT-6-INFO: %[pid=42444][pname=Task-1]: |****************************************************************************************************************************************************|
          +462: JEAUBIN-M-43JF: 2019-04-28T17:55:09: %GENIE-6-INFO: %[pid=42444][pname=Task-1]: 
          +
          +463: JEAUBIN-M-43JF: 2019-04-28T17:55:09: %AETEST-6-INFO: %[pid=42444][pname=Task-1]: The result of subsection verify_configuration_snapshot is => PASSED
          +
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + stop_traffic + + Description + + +
        + expand_more + expand_less +
        + SKIPPED + 0:00:00 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          464: JEAUBIN-M-43JF: 2019-04-28T17:55:09: %AETEST-6-INFO: %[pid=42444][pname=Task-1]: Starting subsection stop_traffic
          +465: JEAUBIN-M-43JF: 2019-04-28T17:55:09: %GENIE-6-INFO: %[pid=42444][pname=Task-1]: Stop protocols and traffic on traffic generator
          +466: JEAUBIN-M-43JF: 2019-04-28T17:55:09: %GENIE-6-INFO: %[pid=42444][pname=Task-1]: For more information visit Genie traffic section http://wwwin-pyats.cisco.com/cisco-shared/genie/latest/harness/user/ixia.html#common-cleanup-stop-traffic
          +467: JEAUBIN-M-43JF: 2019-04-28T17:55:09: %AETEST-6-INFO: %[pid=42444][pname=Task-1]: Skipped reason: Traffic generator devices not found in testbed YAML
          +468: JEAUBIN-M-43JF: 2019-04-28T17:55:09: %AETEST-6-INFO: %[pid=42444][pname=Task-1]: The result of subsection stop_traffic is => SKIPPED
          +
          +
          +
        • +
        +
        +
      • + + +
      +
      +
    • + +
    +
    +
  • + + +
+
+
+
+ + +
+ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/3-Automate/run/TaskLog.html b/3-Automate/run/TaskLog.html new file mode 100644 index 0000000..f05cda1 --- /dev/null +++ b/3-Automate/run/TaskLog.html @@ -0,0 +1,16564 @@ + + + + + LogViewer + + + + + + + + job + + + + +
+ + + +
+
+
+
+
+
    + +
  • +
    + arrow_drop_down +
    Overview
    +
    +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Job Name:job
    Start Time:2019-04-24T15:18:03
    End Time:2019-04-24T15:20:47
    Submitter:jeaubin
    Run Time:0:02:43
    Testbed:ma_new_tb
    +
    +
    +
    +
    +
    +
    +
  • + + + + + +
  • + + +
    + + arrow_drop_down +
    Task-1: genie_testscript.py
    arrow_drop_down + + +
    + expand_more + expand_less +
    +
    +
    + + + + +
      + + +
    • +
      + + arrow_drop_down + commonSetup + + +
      + expand_more + expand_less +
      + PASSED + 0:00:20 +
      +
      + + + +
        + + + + +
      • +
        + + arrow_drop_down + connect + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:05 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          16: JEAUBIN-M-43JF: 2019-04-24T15:18:13: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting subsection connect
          +17: JEAUBIN-M-43JF: 2019-04-24T15:18:13: %GENIE-6-INFO: %[pid=23936][pname=Task-1]: Connect to all the devices described in the 'Mapping Datafile' and 'Testbed file': csr1000v-1, nx-osv-1
          +18: JEAUBIN-M-43JF: 2019-04-24T15:18:13: %GENIE-6-INFO: %[pid=23936][pname=Task-1]: For more information visit Genie connection section documentation: http://wwwin-pyats.cisco.com/cisco-shared/genie/latest/harness/user/gettingstarted.html#set-up
          +
          +19: JEAUBIN-M-43JF: 2019-04-24T15:18:13: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ csr1000v-1 logfile /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr24_15:18:02.606904/csr1000v-1-cli-1556133493.log +++
          +20: JEAUBIN-M-43JF: 2019-04-24T15:18:13: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ Unicon plugin iosxe +++
          +21: JEAUBIN-M-43JF: 2019-04-24T15:18:13: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ connection to spawn: telnet 172.25.192.90 17000, id: 4637304592 +++
          +22: JEAUBIN-M-43JF: 2019-04-24T15:18:13: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: connection to csr1000v-1
          +Trying 172.25.192.90...
          +Connected to asg-virl-ubuntu.cisco.com.
          +Escape character is '^]'.
          +
          +csr1000v-1#
          +27: JEAUBIN-M-43JF: 2019-04-24T15:18:14: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ initializing handle +++
          +28: JEAUBIN-M-43JF: 2019-04-24T15:18:14: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ csr1000v-1: executing command 'term length 0' +++
          +term length 0
          +csr1000v-1#
          +31: JEAUBIN-M-43JF: 2019-04-24T15:18:14: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ csr1000v-1: executing command 'term width 0' +++
          +term width 0
          +csr1000v-1#
          +34: JEAUBIN-M-43JF: 2019-04-24T15:18:14: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ csr1000v-1: config +++
          +config term
          +Enter configuration commands, one per line.  End with CNTL/Z.
          +csr1000v-1(config)#no logging console
          +csr1000v-1(config)#line console 0
          +csr1000v-1(config-line)#exec-timeout 0
          +csr1000v-1(config-line)#end
          +csr1000v-1#
          +45: JEAUBIN-M-43JF: 2019-04-24T15:18:15: %GENIE-6-INFO: %[pid=23936][pname=Task-1]: 
          +46: JEAUBIN-M-43JF: 2019-04-24T15:18:15: %GENIE-6-INFO: %[part=46.1/3][pid=23936][pname=Task-1]: +------------------------------------------------------------------------------+
          +47: JEAUBIN-M-43JF: 2019-04-24T15:18:15: %GENIE-6-INFO: %[part=46.2/3][pid=23936][pname=Task-1]: |             Identifying device 'csr1000v-1' management interface             |
          +48: JEAUBIN-M-43JF: 2019-04-24T15:18:15: %GENIE-6-INFO: %[part=46.3/3][pid=23936][pname=Task-1]: +------------------------------------------------------------------------------+
          +49: JEAUBIN-M-43JF: 2019-04-24T15:18:15: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ csr1000v-1: executing command 'show ip interface brief | include 172.25.192.90' +++
          +show ip interface brief | include 172.25.192.90
          +csr1000v-1#
          +52: JEAUBIN-M-43JF: 2019-04-24T15:18:15: %GENIE-6-INFO: %[pid=23936][pname=Task-1]: 
          +53: JEAUBIN-M-43JF: 2019-04-24T15:18:15: %GENIE-6-INFO: %[pid=23936][pname=Task-1]: Device 'csr1000v-1' does not have a management interface configured which could be found
          +54: JEAUBIN-M-43JF: 2019-04-24T15:18:15: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1 logfile /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr24_15:18:02.606904/nx-osv-1-cli-1556133495.log +++
          +55: JEAUBIN-M-43JF: 2019-04-24T15:18:15: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ Unicon plugin nxos +++
          +56: JEAUBIN-M-43JF: 2019-04-24T15:18:15: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ connection to spawn: telnet 172.25.192.90 17002, id: 4637351216 +++
          +57: JEAUBIN-M-43JF: 2019-04-24T15:18:15: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: connection to nx-osv-1
          +Trying 172.25.192.90...
          +Connected to asg-virl-ubuntu.cisco.com.
          +Escape character is '^]'.
          +
          +
          +
          +nx-osv-1# 
          +62: JEAUBIN-M-43JF: 2019-04-24T15:18:16: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ initializing handle +++
          +63: JEAUBIN-M-43JF: 2019-04-24T15:18:16: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'term length 0' +++
          +term length 0
          +
          +
          +nx-osv-1# 
          +66: JEAUBIN-M-43JF: 2019-04-24T15:18:16: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'term width 511' +++
          +term width 511
          +
          +
          +nx-osv-1# 
          +69: JEAUBIN-M-43JF: 2019-04-24T15:18:16: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'terminal session-timeout 0' +++
          +terminal session-timeout 0
          +
          +
          +nx-osv-1# 
          +72: JEAUBIN-M-43JF: 2019-04-24T15:18:17: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: config +++
          +config term
          +
          +Enter configuration commands, one per line.  End with CNTL/Z.
          +
          +nx-osv-1(config)# no logging console
          +
          +
          +nx-osv-1(config)# line console
          +
          +
          +nx-osv-1(config-console)# exec-timeout 0
          +
          +
          +nx-osv-1(config-console)# terminal width 511
          +
          +
          +nx-osv-1(config-console)# end
          +
          +
          +nx-osv-1# 
          +85: JEAUBIN-M-43JF: 2019-04-24T15:18:18: %GENIE-6-INFO: %[pid=23936][pname=Task-1]: 
          +86: JEAUBIN-M-43JF: 2019-04-24T15:18:18: %GENIE-6-INFO: %[part=86.1/3][pid=23936][pname=Task-1]: +------------------------------------------------------------------------------+
          +87: JEAUBIN-M-43JF: 2019-04-24T15:18:18: %GENIE-6-INFO: %[part=86.2/3][pid=23936][pname=Task-1]: |              Identifying device 'nx-osv-1' management interface              |
          +88: JEAUBIN-M-43JF: 2019-04-24T15:18:18: %GENIE-6-INFO: %[part=86.3/3][pid=23936][pname=Task-1]: +------------------------------------------------------------------------------+
          +89: JEAUBIN-M-43JF: 2019-04-24T15:18:18: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show ip interface brief vrf all | include 172.25.192.90' +++
          +show ip interface brief vrf all | include 172.25.192.90
          +
          +
          +nx-osv-1# 
          +92: JEAUBIN-M-43JF: 2019-04-24T15:18:18: %GENIE-6-INFO: %[pid=23936][pname=Task-1]: 
          +93: JEAUBIN-M-43JF: 2019-04-24T15:18:18: %GENIE-6-INFO: %[pid=23936][pname=Task-1]: Device 'nx-osv-1' does not have a management interface configured which could be found
          +94: JEAUBIN-M-43JF: 2019-04-24T15:18:18: %GENIE-6-INFO: %[pid=23936][pname=Task-1]: 
          +
          +95: JEAUBIN-M-43JF: 2019-04-24T15:18:18: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +96: JEAUBIN-M-43JF: 2019-04-24T15:18:18: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | Connection Summary                                                                                                                                 |
          +97: JEAUBIN-M-43JF: 2019-04-24T15:18:18: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +98: JEAUBIN-M-43JF: 2019-04-24T15:18:18: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | * Summary for device: csr1000v-1                                                                                                                   |
          +99: JEAUBIN-M-43JF: 2019-04-24T15:18:18: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +100: JEAUBIN-M-43JF: 2019-04-24T15:18:18: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |     - Connected with alias 'cli' using connection 'a'                                                                                              |
          +101: JEAUBIN-M-43JF: 2019-04-24T15:18:18: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +102: JEAUBIN-M-43JF: 2019-04-24T15:18:18: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | * Summary for device: nx-osv-1                                                                                                                     |
          +103: JEAUBIN-M-43JF: 2019-04-24T15:18:18: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +104: JEAUBIN-M-43JF: 2019-04-24T15:18:18: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |     - Connected with alias 'cli' using connection 'cli'                                                                                            |
          +105: JEAUBIN-M-43JF: 2019-04-24T15:18:18: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +106: JEAUBIN-M-43JF: 2019-04-24T15:18:18: %GENIE-6-INFO: %[part=106.1/2][pid=23936][pname=Task-1]: 
          +107: JEAUBIN-M-43JF: 2019-04-24T15:18:18: %GENIE-6-INFO: %[part=106.2/2][pid=23936][pname=Task-1]: Information about devices and connections can be found in the Testbed file and Mapping datafile
          +108: JEAUBIN-M-43JF: 2019-04-24T15:18:18: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of subsection connect is => PASSED
          +109: JEAUBIN-M-43JF: 2019-04
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + configure + + Description + + +
        + expand_more + expand_less +
        + SKIPPED + 0:00:00 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          109: JEAUBIN-M-43JF: 2019-04-24T15:18:18: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting subsection configure
          +110: JEAUBIN-M-43JF: 2019-04-24T15:18:18: %GENIE-6-INFO: %[pid=23936][pname=Task-1]: Configure each device with the configuration provided in the 'Config datafile'
          +111: JEAUBIN-M-43JF: 2019-04-24T15:18:18: %GENIE-6-INFO: %[pid=23936][pname=Task-1]: For more information visit Genie configure section http://wwwin-pyats.cisco.com/cisco-shared/genie/latest/harness/user/gettingstarted.html#configuration
          +112: JEAUBIN-M-43JF: 2019-04-24T15:18:18: %ROOT-6-INFO: %[pid=23936][pname=Task-1]:    +====================================================================================================================================================+
          +113: JEAUBIN-M-43JF: 2019-04-24T15:18:18: %ROOT-6-INFO: %[pid=23936][pname=Task-1]:    | Configuration Summary                                                                                                                              |
          +114: JEAUBIN-M-43JF: 2019-04-24T15:18:18: %ROOT-6-INFO: %[pid=23936][pname=Task-1]:    +====================================================================================================================================================+
          +115: JEAUBIN-M-43JF: 2019-04-24T15:18:18: %ROOT-4-WARNING: %[pid=23936][pname=Task-1]: |     - No configuration to apply on any device                                                                                                      |
          +116: JEAUBIN-M-43JF: 2019-04-24T15:18:18: %ROOT-6-INFO: %[pid=23936][pname=Task-1]:    |====================================================================================================================================================|
          +117: JEAUBIN-M-43JF: 2019-04-24T15:18:18: %GENIE-6-INFO: %[pid=23936][pname=Task-1]: 
          +
          +118: JEAUBIN-M-43JF: 2019-04-24T15:18:18: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Skipped reason: No configuration to be applied on any device
          +119: JEAUBIN-M-43JF: 2019-04-24T15:18:18: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of subsection configure is => SKIPPED
          +
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + configuration_snapshot + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:01 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          120: JEAUBIN-M-43JF: 2019-04-24T15:18:18: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting subsection configuration_snapshot
          +121: JEAUBIN-M-43JF: 2019-04-24T15:18:18: %GENIE-6-INFO: %[pid=23936][pname=Task-1]: Take a snapshot of the configuration of each device. In the Common Cleanup, the same process will be done to make sure no extra configuration remains on the devices
          +122: JEAUBIN-M-43JF: 2019-04-24T15:18:18: %GENIE-6-INFO: %[pid=23936][pname=Task-1]: For more information visit Genie check_config section http://wwwin-pyats.cisco.com/cisco-shared/genie/latest/harness/user/gettingstarted.html#check-config
          +2: JEAUBIN-M-43JF: 2019-04-24T15:18:18: %LOG-6-INFO: %[pid=24036][pname=ChildLabor-3:2]: >>>> Begin child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr24_15:18:02.606904/TaskLog.Task-1:pid-24036
          +3: JEAUBIN-M-43JF: 2019-04-24T15:18:18: %UNICON-6-INFO: %[pid=24036][pname=ChildLabor-3:2]: +++ nx-osv-1: executing command 'show running-config' +++
          +show running-config
          +
          +
          +!Command: show running-config
          +!Time: Wed Apr 24 19:23:56 2019
          +
          +version 7.3(0)D1(1)
          +power redundancy-mode redundant
          +license grace-period
          +
          +hostname nx-osv-1
          +vdc nx-osv-1 id 1
          +  limit-resource module-type m1 m1xl m2xl f2e 
          +  allocate interface Ethernet2/1-48
          +  allocate interface Ethernet3/1-48
          +  allocate interface Ethernet4/1-48
          +  limit-resource vlan minimum 16 maximum 4094
          +  limit-resource vrf minimum 2 maximum 4096
          +  limit-resource port-channel minimum 0 maximum 768
          +  limit-resource u4route-mem minimum 96 maximum 96
          +  limit-resource u6route-mem minimum 24 maximum 24
          +  limit-resource m4route-mem minimum 58 maximum 58
          +  limit-resource m6route-mem minimum 8 maximum 8
          +
          +feature ospf
          +feature bgp
          +
          +username admin password 5 $5$Otc7T0NC$K.ulnSZnSyXLrTGNBdtLgZJXEa8EeNx.BrdZ98XyK2C  role network-admin
          +no password strength-check
          +ip domain-lookup
          +vlan dot1Q tag native
          +system default switchport
          +system jumbomtu 0
          +no logging event trunk-status enable
          +copp profile strict
          +snmp-server user admin auth md5 0x328945d53e05e8e7207f8c20b142f0b7 priv 0x328945d53e05e8e7207f8c20b142f0b7 localizedkey engineID 128:0:0:9:3:0:0:0:0:0:0
          +rmon event 1 log description FATAL(1) owner PMON@FATAL
          +rmon event 2 log description CRITICAL(2) owner PMON@CRITICAL
          +rmon event 3 log description ERROR(3) owner PMON@ERROR
          +rmon event 4 log description WARNING(4) owner PMON@WARNING
          +rmon event 5 log description INFORMATION(5) owner PMON@INFO
          +snmp-server enable traps link
          +snmp-server enable traps link cisco-xcvr-mon-status-chg
          +ntp server 216.239.35.0 prefer
          +
          +vlan 1
          +
          +vrf context management
          +
          +interface mgmt0
          +  vrf member management
          +
          +interface Ethernet2/1
          +  no switchport
          +  mac-address 0000.0000.002f
          +  ip address 10.0.1.2/24
          +  ip router ospf 1 area 0.0.0.0
          +  no shutdown
          +
          +interface Ethernet2/2
          +  no switchport
          +  mac-address 0000.0000.002f
          +  ip address 10.0.2.2/24
          +  ip router ospf 1 area 0.0.0.0
          +  no shutdown
          +
          +interface Ethernet2/3
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/4
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/5
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/6
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/7
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/8
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/9
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/10
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/11
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/12
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/13
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/14
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/15
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/16
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/17
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/18
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/19
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/20
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/21
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/22
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/23
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/24
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/25
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/26
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/27
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/28
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/29
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/30
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/31
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/32
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/33
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/34
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/35
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/36
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/37
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/38
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/39
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/40
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/41
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/42
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/43
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/44
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/45
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/46
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/47
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/48
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet3/1
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/2
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/3
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/4
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/5
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/6
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/7
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/8
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/9
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/10
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/11
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/12
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/13
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/14
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/15
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/16
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/17
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/18
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/19
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/20
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/21
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/22
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/23
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/24
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/25
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/26
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/27
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/28
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/29
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/30
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/31
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/32
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/33
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/34
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/35
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/36
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/37
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/38
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/39
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/40
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/41
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/42
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/43
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/44
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/45
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/46
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/47
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/48
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet4/1
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/2
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/3
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/4
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/5
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/6
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/7
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/8
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/9
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/10
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/11
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/12
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/13
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/14
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/15
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/16
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/17
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/18
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/19
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/20
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/21
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/22
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/23
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/24
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/25
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/26
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/27
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/28
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/29
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/30
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/31
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/32
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/33
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/34
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/35
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/36
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/37
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/38
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/39
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/40
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/41
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/42
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/43
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/44
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/45
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/46
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/47
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/48
          +  switchport
          +  no shutdown
          +
          +interface loopback0
          +  ip address 10.2.2.2/32
          +  ip router ospf 1 area 0.0.0.0
          +
          +interface loopback1
          +  ip address 10.22.22.22/32
          +line console
          +  exec-timeout 0
          +  terminal width  511
          +line vty
          +boot kickstart bootflash:/titanium-d1-kickstart.7.3.0.D1.1.bin
          +boot system bootflash:/titanium-d1.7.3.0.D1.1.bin 
          +router ospf 1
          +  router-id 10.2.2.2
          +router bgp 65000
          +  router-id 10.2.2.2
          +  address-family ipv4 unicast
          +    network 10.22.22.22/32
          +  neighbor 10.1.1.1
          +    remote-as 65000
          +    update-source loopback0
          +    address-family ipv4 unicast
          +no logging console
          +
          +
          +
          +nx-osv-1# 
          +24: JEAUBIN-M-43JF: 2019-04-24T15:18:19: %LOG-6-INFO: %[pid=24036][pname=ChildLabor-3:2]: <<<< End child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr24_15:18:02.606904/TaskLog.Task-1:pid-24036
          +2: JEAUBIN-M-43JF: 2019-04-24T15:18:18: %LOG-6-INFO: %[pid=24035][pname=ChildLabor-3:1]: >>>> Begin child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr24_15:18:02.606904/TaskLog.Task-1:pid-24035
          +3: JEAUBIN-M-43JF: 2019-04-24T15:18:18: %UNICON-6-INFO: %[pid=24035][pname=ChildLabor-3:1]: +++ csr1000v-1: executing command 'show running-config' +++
          +show running-config
          +Building configuration...
          +
          +Current configuration : 4219 bytes
          +!
          +! Last configuration change at 19:18:09 UTC Wed Apr 24 2019
          +!
          +version 16.9
          +service config
          +service timestamps debug datetime msec
          +service timestamps log datetime msec
          +platform qfp utilization monitor load 80
          +no platform punt-keepalive disable-kernel-core
          +platform console serial
          +!
          +hostname csr1000v-1
          +!
          +boot-start-marker
          +boot-end-marker
          +!
          +!
          +no logging console
          +enable secret 5 $1$wlDY$aYpdGzmHlBCznQBCYZX/q0
          +!
          +no aaa new-model
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +ip admission watch-list expiry-time 0
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +subscriber templating
          +! 
          +! 
          +! 
          +! 
          +!
          +multilink bundle-name authenticated
          +!
          +!
          +!
          +!
          +!
          +crypto pki trustpoint TP-self-signed-1664596352
          + enrollment selfsigned
          + subject-name cn=IOS-Self-Signed-Certificate-1664596352
          + revocation-check none
          + rsakeypair TP-self-signed-1664596352
          +!
          +!
          +crypto pki certificate chain TP-self-signed-1664596352
          + certificate self-signed 01
          +  30820330 30820218 A0030201 02020101 300D0609 2A864886 F70D0101 05050030 
          +  31312F30 2D060355 04031326 494F532D 53656C66 2D536967 6E65642D 43657274 
          +  69666963 6174652D 31363634 35393633 3532301E 170D3139 30343039 30303530 
          +  30335A17 0D333030 31303130 30303030 305A3031 312F302D 06035504 03132649 
          +  4F532D53 656C662D 5369676E 65642D43 65727469 66696361 74652D31 36363435 
          +  39363335 32308201 22300D06 092A8648 86F70D01 01010500 0382010F 00308201 
          +  0A028201 01009251 9249BF1E CAEB9073 0EE0254F 13AFC868 50B488E0 537408FD 
          +  27011BAA 346D19DA 70656043 4F7785F0 6679CC26 744BF77B 4E67A312 4D08F243 
          +  559E28A0 DEC217DD B48FE7F2 67BF339F 125E17EB FED1B10F 9E6EE7B5 C250C85A 
          +  A939DE1E DDC830F8 89230BA1 DB106783 8B09A777 7A92D388 03015F80 1AC7FC41 
          +  8BBAA19B 04600DCC F9D6A266 235B989D 6B864C35 8888BE4F 4817B4C4 B53C1FB5 
          +  CA53D93E 96BC900D CFF18777 FFF66D5E 3A46D6E3 DE6DE5F4 5151A66C 1382933A 
          +  2A46407E 53FBA2B1 141EA839 37B34B95 E60D31AC 496128CC E2A645A4 C9F42BE8 
          +  493A5748 4F1D0D5E 949312DF DFCAD602 B49025EF B3828CA0 08708BFD 150DF77A 
          +  4E22B257 6EC50203 010001A3 53305130 0F060355 1D130101 FF040530 030101FF 
          +  301F0603 551D2304 18301680 1434CE87 BC30C852 D663D826 E068BACB B500AC89 
          +  92301D06 03551D0E 04160414 34CE87BC 30C852D6 63D826E0 68BACBB5 00AC8992 
          +  300D0609 2A864886 F70D0101 05050003 82010100 4A426F44 7A22F137 615ABF5F 
          +  4B595C5B 03483695 BCE4041C 766D1273 219E3257 618DBCBE 260FD6F7 44CA69B4 
          +  467B77A3 0032C6A2 D401423E E780E18F A498EE6C FB5162EF 91422C4A 51B52384 
          +  0595C987 80FD4FBA 4EFE8227 76C6522E 02C0F548 0A1C3F20 7C176D4B C2458EEB 
          +  6B437FFE B3DEA4D4 7105CFC4 F83B5A51 9A4F43C5 8DC14533 4A5D0AE3 4269294E 
          +  2FBB8563 8A806EBE 0545F028 4C0B32ED A7840E4A 8F4FFF1D 894AD9FD 8C958C97 
          +  8DD917D5 3CBC3399 C481D57F 144571B1 ADC3B2B5 E6990255 600B5E2D 28D9719F 
          +  0091B2D7 6C988EFA 8627AE88 BAEA521A D46E09ED 5A692525 A77157B5 90A97B84 
          +  94BF8540 1C1FF02C B3848B50 2E68DEA6 DD1488C8
          +  	quit
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +license udi pid CSR1000V sn 9P34NU3ZQ4L
          +no license smart enable
          +diagnostic bootup level minimal
          +!
          +spanning-tree extend system-id
          +!
          +!
          +!
          +username cisco privilege 15 secret 5 $1$Hxh.$djLU5CFb2av38EBH6WO8a/
          +!
          +redundancy
          +!
          +!
          +!
          +!
          +!
          +!
          +! 
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +! 
          +! 
          +!
          +!
          +interface Loopback0
          + ip address 10.1.1.1 255.255.255.255
          + ip ospf 1 area 0
          +!
          +interface Loopback1
          + ip address 10.11.11.11 255.255.255.255
          +!
          +interface GigabitEthernet1
          + ip address dhcp
          + negotiation auto
          + no mop enabled
          + no mop sysid
          +!
          +interface GigabitEthernet2
          + ip address 10.0.1.1 255.255.255.0
          + ip ospf 1 area 0
          + negotiation auto
          + no mop enabled
          + no mop sysid
          +!
          +interface GigabitEthernet3
          + ip address 10.0.2.1 255.255.255.0
          + ip ospf 1 area 0
          + negotiation auto
          + no mop enabled
          + no mop sysid
          +!
          +router ospf 1
          + router-id 10.1.1.1
          +!
          +router bgp 65000
          + bgp router-id 10.1.1.1
          + bgp log-neighbor-changes
          + no bgp default ipv4-unicast
          + neighbor 10.2.2.2 remote-as 65000
          + neighbor 10.2.2.2 update-source Loopback0
          + !
          + address-family ipv4
          +  network 10.11.11.11 mask 255.255.255.255
          +  neighbor 10.2.2.2 activate
          + exit-address-family
          +!
          +!
          +virtual-service csr_mgmt
          +!
          +ip forward-protocol nd
          +ip http server
          +ip http authentication local
          +ip http secure-server
          +ip http client source-interface GigabitEthernet1
          +!
          +!
          +!
          +!
          +!
          +!
          +control-plane
          +!
          +!
          +!
          +!
          +!
          +!
          +line con 0
          + exec-timeout 0 0
          + stopbits 1
          +line vty 0
          + login
          +line vty 1
          + login
          + length 20
          +line vty 2 4
          + login
          +!
          +!
          +!
          +!
          +!
          +!
          +end
          +
          +csr1000v-1#
          +12: JEAUBIN-M-43JF: 2019-04-24T15:18:19: %LOG-6-INFO: %[pid=24035][pname=ChildLabor-3:1]: <<<< End child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr24_15:18:02.606904/TaskLog.Task-1:pid-24035
          +123: JEAUBIN-M-43JF: 2019-04-24T15:18:19: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +124: JEAUBIN-M-43JF: 2019-04-24T15:18:19: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | Check config Summary                                                                                                                               |
          +125: JEAUBIN-M-43JF: 2019-04-24T15:18:19: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +126: JEAUBIN-M-43JF: 2019-04-24T15:18:19: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | * Summary for device: csr1000v-1                                                                                                                   |
          +127: JEAUBIN-M-43JF: 2019-04-24T15:18:19: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +128: JEAUBIN-M-43JF: 2019-04-24T15:18:19: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |     - Successfully saved configuration snapshot                                                                                                    |
          +129: JEAUBIN-M-43JF: 2019-04-24T15:18:19: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +130: JEAUBIN-M-43JF: 2019-04-24T15:18:19: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | * Summary for device: nx-osv-1                                                                                                                     |
          +131: JEAUBIN-M-43JF: 2019-04-24T15:18:19: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +132: JEAUBIN-M-43JF: 2019-04-24T15:18:19: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |     - Successfully saved configuration snapshot                                                                                                    |
          +133: JEAUBIN-M-43JF: 2019-04-24T15:18:19: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +134: JEAUBIN-M-43JF: 2019-04-24T15:18:19: %GENIE-6-INFO: %[pid=23936][pname=Task-1]: 
          +
          +135: JEAUBIN-M-43JF: 2019-04-24T15:18:19: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of subsection configuration_snapshot is => PASSED
          +
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + save_bootvar + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:13 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          136: JEAUBIN-M-43JF: 2019-04-24T15:18:19: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting subsection save_bootvar
          +2: JEAUBIN-M-43JF: 2019-04-24T15:18:19: %LOG-6-INFO: %[pid=24037][pname=ChildLabor-3:3]: >>>> Begin child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr24_15:18:02.606904/TaskLog.Task-1:pid-24037
          +3: JEAUBIN-M-43JF: 2019-04-24T15:18:19: %GENIE-6-INFO: %[part=3.1/4][pid=24037][pname=ChildLabor-3:3]: +------------------------------------------------------------------------------+
          +4: JEAUBIN-M-43JF: 2019-04-24T15:18:19: %GENIE-6-INFO: %[part=3.2/4][pid=24037][pname=ChildLabor-3:3]: |             Check boot information to see if they are consistent             |
          +5: JEAUBIN-M-43JF: 2019-04-24T15:18:19: %GENIE-6-INFO: %[part=3.3/4][pid=24037][pname=ChildLabor-3:3]: |          and save bootvar to startup-config on device 'csr1000v-1'           |
          +6: JEAUBIN-M-43JF: 2019-04-24T15:18:19: %GENIE-6-INFO: %[part=3.4/4][pid=24037][pname=ChildLabor-3:3]: +------------------------------------------------------------------------------+
          +7: JEAUBIN-M-43JF: 2019-04-24T15:18:20: %UNICON-6-INFO: %[pid=24037][pname=ChildLabor-3:3]: +++ csr1000v-1: config +++
          +config term
          +Enter configuration commands, one per line.  End with CNTL/Z.
          +csr1000v-1(config)#config-register 0x2102
          +csr1000v-1(config)#end
          +csr1000v-1#
          +13: JEAUBIN-M-43JF: 2019-04-24T15:18:20: %UNICON-6-INFO: %[pid=24037][pname=ChildLabor-3:3]: +++ csr1000v-1: executing command 'copy running-config nvram:startup-config' +++
          +copy running-config nvram:startup-config
          +Destination filename [startup-config]? 
          +Building configuration...
          +[OK]
          +csr1000v-1#
          +21: JEAUBIN-M-43JF: 2019-04-24T15:18:24: %UNICON-6-INFO: %[pid=24037][pname=ChildLabor-3:3]: +++ csr1000v-1: executing command 'write memory' +++
          +write memory
          +Building configuration...
          +[OK]
          +csr1000v-1#
          +28: JEAUBIN-M-43JF: 2019-04-24T15:18:26: %LOG-6-INFO: %[pid=24037][pname=ChildLabor-3:3]: <<<< End child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr24_15:18:02.606904/TaskLog.Task-1:pid-24037
          +2: JEAUBIN-M-43JF: 2019-04-24T15:18:19: %LOG-6-INFO: %[pid=24038][pname=ChildLabor-3:4]: >>>> Begin child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr24_15:18:02.606904/TaskLog.Task-1:pid-24038
          +3: JEAUBIN-M-43JF: 2019-04-24T15:18:19: %GENIE-6-INFO: %[part=3.1/4][pid=24038][pname=ChildLabor-3:4]: +------------------------------------------------------------------------------+
          +4: JEAUBIN-M-43JF: 2019-04-24T15:18:19: %GENIE-6-INFO: %[part=3.2/4][pid=24038][pname=ChildLabor-3:4]: |             Check boot information to see if they are consistent             |
          +5: JEAUBIN-M-43JF: 2019-04-24T15:18:19: %GENIE-6-INFO: %[part=3.3/4][pid=24038][pname=ChildLabor-3:4]: |           and save bootvar to startup-config on device 'nx-osv-1'            |
          +6: JEAUBIN-M-43JF: 2019-04-24T15:18:19: %GENIE-6-INFO: %[part=3.4/4][pid=24038][pname=ChildLabor-3:4]: +------------------------------------------------------------------------------+
          +7: JEAUBIN-M-43JF: 2019-04-24T15:18:20: %UNICON-6-INFO: %[pid=24038][pname=ChildLabor-3:4]: +++ nx-osv-1: executing command 'copy running-config startup-config' +++
          +copy running-config startup-config
          +
          +
          +[#                                       ]   1%
          +[#                                       ]   2%
          +[##                                      ]   3%
          +[##                                      ]   4%
          +[###                                     ]   5%
          +[###                                     ]   7%
          +[####                                    ]   8%
          +[####                                    ]   9%
          +[#####                                   ]  10%
          +[#####                                   ]  11%
          +[######                                  ]  13%
          +[######                                  ]  14%
          +[#######                                 ]  15%
          +[#######                                 ]  16%
          +[#######                                 ]  17%
          +[########                                ]  19%
          +[#########                               ]  20%
          +[#########                               ]  21%
          +[#########                               ]  22%
          +[##########                              ]  23%
          +[###########                             ]  25%
          +[###########                             ]  26%
          +[###########                             ]  27%
          +[############                            ]  28%
          +[############                            ]  29%
          +[#############                           ]  30%
          +[#############                           ]  32%
          +[##############                          ]  33%
          +[##############                          ]  34%
          +[###############                         ]  35%
          +[###############                         ]  36%
          +[################                        ]  38%
          +[################                        ]  39%
          +[#################                       ]  40%
          +[#################                       ]  41%
          +[#################                       ]  42%
          +[##################                      ]  44%
          +[###################                     ]  45%
          +[###################                     ]  46%
          +[###################                     ]  47%
          +[####################                    ]  48%
          +[#####################                   ]  50%
          +[#####################                   ]  51%
          +[#####################                   ]  52%
          +[######################                  ]  53%
          +[######################                  ]  54%
          +[#######################                 ]  55%
          +[#######################                 ]  57%
          +[########################                ]  58%
          +[########################                ]  59%
          +[#########################               ]  60%
          +[#########################               ]  61%
          +[##########################              ]  63%
          +[##########################              ]  64%
          +[###########################             ]  65%
          +[###########################             ]  66%
          +[###########################             ]  67%
          +[############################            ]  69%
          +[#############################           ]  70%
          +[#############################           ]  71%
          +[#############################           ]  72%
          +[##############################          ]  73%
          +[###############################         ]  75%
          +[###############################         ]  76%
          +[###############################         ]  77%
          +[################################        ]  78%
          +[################################        ]  79%
          +[#################################       ]  80%
          +[#################################       ]  82%
          +[##################################      ]  83%
          +[##################################      ]  84%
          +[###################################     ]  85%
          +[###################################     ]  86%
          +[####################################    ]  88%
          +[####################################    ]  89%
          +[#####################################   ]  90%
          +[#####################################   ]  91%
          +[#####################################   ]  92%
          +[######################################  ]  94%
          +[####################################### ]  95%
          +[####################################### ]  96%
          +[####################################### ]  97%
          +[########################################]  98%
          +[########################################] 100%
          +Copy complete.
          +
          +nx-osv-1# 
          +45: JEAUBIN-M-43JF: 2019-04-24T15:18:32: %LOG-6-INFO: %[pid=24038][pname=ChildLabor-3:4]: <<<< End child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr24_15:18:02.606904/TaskLog.Task-1:pid-24038
          +137: JEAUBIN-M-43JF: 2019-04-24T15:18:32: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +========================================================================================+
          +138: JEAUBIN-M-43JF: 2019-04-24T15:18:32: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | Summary                                                                                |
          +139: JEAUBIN-M-43JF: 2019-04-24T15:18:32: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +========================================================================================+
          +140: JEAUBIN-M-43JF: 2019-04-24T15:18:32: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | * Summary for device: csr1000v-1                                                       |
          +141: JEAUBIN-M-43JF: 2019-04-24T15:18:32: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------|
          +142: JEAUBIN-M-43JF: 2019-04-24T15:18:32: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |     - Successfully saved boot variable                                                 |
          +143: JEAUBIN-M-43JF: 2019-04-24T15:18:32: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |========================================================================================|
          +144: JEAUBIN-M-43JF: 2019-04-24T15:18:32: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | * Summary for device: nx-osv-1                                                         |
          +145: JEAUBIN-M-43JF: 2019-04-24T15:18:32: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------|
          +146: JEAUBIN-M-43JF: 2019-04-24T15:18:32: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |     - Successfully saved boot variable                                                 |
          +147: JEAUBIN-M-43JF: 2019-04-24T15:18:32: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |========================================================================================|
          +148: JEAUBIN-M-43JF: 2019-04-24T15:18:32: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of subsection save_bootvar is => PASSED
          +
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + learn_system_defaults + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:01 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          149: JEAUBIN-M-43JF: 2019-04-24T15:18:32: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting subsection learn_system_defaults
          +150: JEAUBIN-M-43JF: 2019-04-24T15:18:33: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ csr1000v-1: executing command 'dir' +++
          +dir
          +Directory of bootflash:/
          +
          +   11  drwx            16384  Jul 18 2018 07:49:17 +00:00  lost+found
          +325121  drwx             4096  Apr 23 2019 16:50:38 +00:00  .installer
          +   12  -rw-        392479704  Jul 18 2018 07:50:04 +00:00  csr1000v-mono-universalk9.16.09.01.SPA.pkg
          +   13  -rw-         40201438  Jul 18 2018 07:50:05 +00:00  csr1000v-rpboot.16.09.01.SPA.pkg
          +   14  -rw-             1941  Jul 18 2018 07:50:05 +00:00  packages.conf
          +105665  drwx             4096  Apr 23 2019 16:46:35 +00:00  core
          +146305  drwx             4096  Apr 23 2019 16:57:36 +00:00  .prst_sync
          +154433  drwx             4096  Jul 18 2018 07:51:06 +00:00  .rollback_timer
          +138177  drwx            12288  Apr 24 2019 19:18:17 +00:00  tracelogs
          +398273  drwx             4096  Jul 18 2018 07:52:07 +00:00  .dbpersist
          +203201  drwx             4096  Jul 18 2018 07:51:17 +00:00  virtual-instance
          +   15  -rw-               30  Apr 23 2019 16:57:31 +00:00  throughput_monitor_params
          +   16  -rw-            12973  Apr 23 2019 17:00:34 +00:00  cvac.log
          +   17  -rw-              157  Apr 23 2019 17:00:40 +00:00  csrlxc-cfg.log
          +406401  drwx             4096  Jul 18 2018 07:52:00 +00:00  onep
          +   18  -rw-                1   Apr 9 2019 00:49:45 +00:00  .cvac_version
          +   19  -rw-               16   Apr 9 2019 00:49:45 +00:00  ovf-env.xml.md5
          +   20  -rw-               34   Apr 9 2019 00:54:45 +00:00  pnp-tech-time
          +   21  -rw-            54686   Apr 9 2019 00:54:46 +00:00  pnp-tech-discovery-summary
          +   22  -rw-           183217  Apr 23 2019 16:43:19 +00:00  crashinfo_RP_00_00_20190423-163950-UTC
          +
          +7897796608 bytes total (6982893568 bytes free)
          +csr1000v-1#
          +154: JEAUBIN-M-43JF: 2019-04-24T15:18:33: %GENIE-6-INFO: %[pid=23936][pname=Task-1]: Default directory on 'csr1000v-1' is 'bootflash:'
          +155: JEAUBIN-M-43JF: 2019-04-24T15:18:33: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'dir' +++
          +dir
          +
          +       4096    Feb 25 20:49:04 2016  .patch/
          +      11608    Apr 18 15:25:18 2019  201904181121-run.cfg
          +      16384    Feb 25 20:44:49 2016  lost+found/
          +       4096    Feb 26 10:11:16 2016  scripts/
          +   33615360    Feb 11 13:19:49 2016  titanium-d1-kickstart.7.3.0.D1.1.bin
          +  139230420    Feb 11 13:19:50 2016  titanium-d1.7.3.0.D1.1.bin
          +       4096    Feb 25 20:49:07 2016  virtual-instance/
          +
          +Usage for bootflash://
          +  369971200 bytes used
          + 2839990272 bytes free
          + 3209961472 bytes total
          +
          +nx-osv-1# 
          +158: JEAUBIN-M-43JF: 2019-04-24T15:18:33: %GENIE-6-INFO: %[pid=23936][pname=Task-1]: Default directory on 'nx-osv-1' is 'bootflash:'
          +159: JEAUBIN-M-43JF: 2019-04-24T15:18:33: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +160: JEAUBIN-M-43JF: 2019-04-24T15:18:33: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | Summary                                                                                                                                            |
          +161: JEAUBIN-M-43JF: 2019-04-24T15:18:33: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +162: JEAUBIN-M-43JF: 2019-04-24T15:18:33: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | * Summary for device: csr1000v-1                                                                                                                   |
          +163: JEAUBIN-M-43JF: 2019-04-24T15:18:33: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +164: JEAUBIN-M-43JF: 2019-04-24T15:18:33: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |     - Successfully learnt system default directroy                                                                                                 |
          +165: JEAUBIN-M-43JF: 2019-04-24T15:18:33: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +166: JEAUBIN-M-43JF: 2019-04-24T15:18:33: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | * Summary for device: nx-osv-1                                                                                                                     |
          +167: JEAUBIN-M-43JF: 2019-04-24T15:18:33: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +168: JEAUBIN-M-43JF: 2019-04-24T15:18:33: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |     - Successfully learnt system default directroy                                                                                                 |
          +169: JEAUBIN-M-43JF: 2019-04-24T15:18:33: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +170: JEAUBIN-M-43JF: 2019-04-24T15:18:33: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of subsection learn_system_defaults is => PASSED
          +171: JEAUBIN-M-43JF: 2019-04-24T15:18:
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + initialize_traffic + + Description + + +
        + expand_more + expand_less +
        + SKIPPED + 0:00:00 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          171: JEAUBIN-M-43JF: 2019-04-24T15:18:33: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting subsection initialize_traffic
          +172: JEAUBIN-M-43JF: 2019-04-24T15:18:33: %GENIE-6-INFO: %[pid=23936][pname=Task-1]: Connect to traffic generator device and configure/start traffic
          +173: JEAUBIN-M-43JF: 2019-04-24T15:18:33: %GENIE-6-INFO: %[pid=23936][pname=Task-1]: For more information visit Genie traffic section http://wwwin-pyats.cisco.com/cisco-shared/genie/latest/harness/user/ixia.html#common-setup-initialize-traffic
          +174: JEAUBIN-M-43JF: 2019-04-24T15:18:33: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Skipped reason: Traffic generator devices not found in testbed YAML
          +175: JEAUBIN-M-43JF: 2019-04-24T15:18:33: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of subsection initialize_traffic is => SKIPPED
          +
          +
          +
        • +
        +
        +
      • + + +
      +
      +
    • + + +
    • +
      + + arrow_drop_down + Verify_Bgp.uut.1 + + +
      + expand_more + expand_less +
      + PASSED + 0:00:03 +
      +
      + + + +
        + + + + +
      • +
        + + arrow_drop_down + verify + + +
        + expand_more + expand_less +
        + PASSED + 0:00:03 +
        +
        + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          180: JEAUBIN-M-43JF: 2019-04-24T15:18:33: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section verify
          +181: JEAUBIN-M-43JF: 2019-04-24T15:18:33: %GENIE-6-INFO: %[part=181.1/3][pid=23936][pname=Task-1]: +------------------------------------------------------------------------------+
          +182: JEAUBIN-M-43JF: 2019-04-24T15:18:33: %GENIE-6-INFO: %[part=181.2/3][pid=23936][pname=Task-1]: |                              1 out of 5 attempt                              |
          +183: JEAUBIN-M-43JF: 2019-04-24T15:18:33: %GENIE-6-INFO: %[part=181.3/3][pid=23936][pname=Task-1]: +------------------------------------------------------------------------------+
          +184: JEAUBIN-M-43JF: 2019-04-24T15:18:33: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          +show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Process ID                 : 8610
          +BGP Protocol Started, reason:  : configuration
          +BGP Protocol Tag               : 65000
          +BGP Protocol State             : Running
          +BGP MMODE                      : Not Initialized
          +BGP Memory State               : OK
          +BGP asformat                   : asplain
          +
          +BGP attributes information
          +Number of attribute entries    : 2
          +HWM of attribute entries       : 2
          +Bytes used by entries          : 200
          +Entries pending delete         : 0
          +HWM of entries pending delete  : 0
          +BGP paths per attribute HWM    : 1
          +BGP AS path entries            : 0
          +Bytes used by AS path entries  : 0
          +
          +Information regarding configured VRFs:
          +
          +BGP Information for VRF default
          +VRF Id                         : 1
          +VRF state                      : UP
          +Router-ID                      : 10.2.2.2
          +Configured Router-ID           : 10.2.2.2
          +Confed-ID                      : 0
          +Cluster-ID                     : 0.0.0.0
          +No. of configured peers        : 1
          +No. of pending config peers    : 0
          +No. of established peers       : 1
          +VRF RD                         : Not configured
          +
          +    Information for address family IPv4 Unicast in VRF default
          +    Table Id                   : 1
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    1          1               2          2          1          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +    Information for address family IPv6 Unicast in VRF default
          +    Table Id                   : 80000001
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    0          0               0          0          0          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +nx-osv-1# 
          +188: JEAUBIN-M-43JF: 2019-04-24T15:18:34: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-session' +++
          +show running-config | inc peer-session
          +
          +
          +nx-osv-1# 
          +192: JEAUBIN-M-43JF: 2019-04-24T15:18:34: %GENIE-6-INFO: %[part=192.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>
          +193: JEAUBIN-M-43JF: 2019-04-24T15:18:34: %GENIE-6-INFO: %[part=192.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +194: JEAUBIN-M-43JF: 2019-04-24T15:18:34: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-policy' +++
          +show running-config | inc peer-policy
          +
          +
          +nx-osv-1# 
          +199: JEAUBIN-M-43JF: 2019-04-24T15:18:34: %GENIE-6-INFO: %[part=199.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>
          +200: JEAUBIN-M-43JF: 2019-04-24T15:18:34: %GENIE-6-INFO: %[part=199.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +201: JEAUBIN-M-43JF: 2019-04-24T15:18:34: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all dampening parameters' +++
          +show bgp vrf all all dampening parameters
          +
          +
          +nx-osv-1# 
          +204: JEAUBIN-M-43JF: 2019-04-24T15:18:34: %GENIE-6-INFO: %[part=204.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>
          +205: JEAUBIN-M-43JF: 2019-04-24T15:18:34: %GENIE-6-INFO: %[part=204.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +206: JEAUBIN-M-43JF: 2019-04-24T15:18:34: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all nexthop-database' +++
          +show bgp vrf all all nexthop-database
          +
          +
          +Next Hop table for VRF default, address family IPv4 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +
          +Nexthop: 0.0.0.0, Flags: 0x2, Refcount: 1, IGP cost: 0
          +IGP Route type: 0, IGP preference: 0
          +Nexthop is not-attached local unreachable not-labeled
          +Nexthop last resolved: never, using 0.0.0.0/0
          +Metric next advertise: Never
          +RNH epoch: 0
          +
          +Nexthop: 10.1.1.1, Flags: 0x1, Refcount: 1, IGP cost: 41
          +IGP Route type: 0, IGP preference: 110
          +Attached nexthop: 10.0.2.1, Interface: Ethernet2/2
          +Attached nexthop: 10.0.1.1, Interface: Ethernet2/1
          +Nexthop is not-attached not-local reachable not-labeled
          +Nexthop last resolved: 03:20:50, using 10.1.1.1/32
          +Metric next advertise: Never
          +RNH epoch: 1
          +IPv6 Next-hop table
          +
          +Next Hop table for VRF default, address family IPv6 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +IPv6 Next-hop table
          +
          +nx-osv-1# 
          +209: JEAUBIN-M-43JF: 2019-04-24T15:18:35: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show routing vrf all' +++
          +show routing vrf all
          +
          +IP Route Table for VRF "default"
          +'*' denotes best ucast next-hop
          +'**' denotes best mcast next-hop
          +'[x/y]' denotes [preference/metric]
          +'%<string>' in via output denotes VRF <string>
          +
          +10.0.1.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, direct
          +10.0.1.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, local
          +10.0.2.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, direct
          +10.0.2.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, local
          +10.1.1.1/32, ubest/mbest: 2/0
          +    *via 10.0.1.1, Eth2/1, [110/41], 1d02h, ospf-1, intra
          +    *via 10.0.2.1, Eth2/2, [110/41], 1d02h, ospf-1, intra
          +10.2.2.2/32, ubest/mbest: 2/0, attached
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, local
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, direct
          +10.11.11.11/32, ubest/mbest: 1/0
          +    *via 10.1.1.1, [200/0], 03:04:37, bgp-65000, internal, tag 65000, 
          +10.22.22.22/32, ubest/mbest: 2/0, attached
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, local
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, direct
          +
          +nx-osv-1# 
          +213: JEAUBIN-M-43JF: 2019-04-24T15:18:35: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all' +++
          +show bgp vrf all all
          +
          +BGP routing table information for VRF default, address family IPv4 Unicast
          +BGP table version is 148, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +nx-osv-1# 
          +216: JEAUBIN-M-43JF: 2019-04-24T15:18:35: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show vrf' +++
          +show vrf
          +
          +VRF-Name                           VRF-ID State   Reason                        
          +default                                 1 Up      --                            
          +management                              2 Up      --                            
          +
          +nx-osv-1# 
          +219: JEAUBIN-M-43JF: 2019-04-24T15:18:35: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf management all neighbors' +++
          +show bgp vrf management all neighbors
          +
          +Unknown vrf management
          +
          +nx-osv-1# 
          +222: JEAUBIN-M-43JF: 2019-04-24T15:18:35: %GENIE-6-INFO: %[part=222.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>
          +223: JEAUBIN-M-43JF: 2019-04-24T15:18:35: %GENIE-6-INFO: %[part=222.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +224: JEAUBIN-M-43JF: 2019-04-24T15:18:35: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors' +++
          +show bgp vrf default all neighbors
          +
          +BGP neighbor is 10.1.1.1,  remote AS 65000, ibgp link, Peer index 1
          +  BGP version 4, remote router ID 10.1.1.1
          +  BGP state = Established, up for 03:04:38
          +  Using loopback0 as update source for this peer
          +  Last read 00:00:20, hold time = 180, keepalive interval is 60 seconds
          +  Last written 00:00:35, keepalive timer expiry due 00:00:24
          +  Received 25154 messages, 1 notifications, 0 bytes in queue
          +  Sent 22946 messages, 44 notifications, 0 bytes in queue
          +  Connections established 45, dropped 44
          +  Last reset by us 03:04:48, due to administratively shutdown
          +  Last reset by peer never, due to No error
          +
          +  Neighbor capabilities:
          +  Dynamic capability: advertised (mp, refresh, gr) 
          +  Dynamic capability (old): advertised 
          +  Route refresh capability (new): advertised received 
          +  Route refresh capability (old): advertised received 
          +  4-Byte AS capability: advertised received 
          +  Address family IPv4 Unicast: advertised received 
          +  Graceful Restart capability: advertised 
          +
          +  Graceful Restart Parameters:
          +  Address families advertised to peer:
          +    IPv4 Unicast  
          +  Address families received from peer:
          +  Forwarding state preserved by peer for:
          +  Restart time advertised to peer: 120 seconds
          +  Stale time for routes advertised by peer: 300 seconds
          +  Extended Next Hop Encoding Capability: advertised 
          +
          +  Message statistics:
          +                              Sent               Rcvd
          +  Opens:                        46                 45  
          +  Notifications:                44                  1  
          +  Updates:                     102                 90  
          +  Keepalives:                22754              25018  
          +  Route Refresh:                 0                  0  
          +  Capability:                    0                  0  
          +  Total:                     22946              25154  
          +  Total bytes:              435911             478042  
          +  Bytes in queue:                0                  0  
          +
          +  For address family: IPv4 Unicast
          +  BGP table version 148, neighbor version 148
          +  1 accepted paths consume 80 bytes of memory
          +  1 sent paths
          +  Third-party Nexthop will not be computed.
          +
          +  Local host: 10.2.2.2, Local port: 179
          +  Foreign host: 10.1.1.1, Foreign port: 41017
          +  fd = 60
          +
          +
          +nx-osv-1# 
          +228: JEAUBIN-M-43JF: 2019-04-24T15:18:36: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all summary' +++
          +show bgp vrf all all summary
          +
          +BGP summary information for VRF default, address family IPv4 Unicast
          +BGP router identifier 10.2.2.2, local AS number 65000
          +BGP table version is 148, IPv4 Unicast config peers 1, capable peers 1
          +2 network entries and 2 paths using 288 bytes of memory
          +BGP attribute entries [2/288], BGP AS path entries [0/0]
          +BGP community entries [0/0], BGP clusterlist entries [0/0]
          +
          +Neighbor        V    AS MsgRcvd MsgSent   TblVer  InQ OutQ Up/Down  State/PfxRcd
          +10.1.1.1        4 65000   25154   22946      148    0    0 03:04:38 1         
          +
          +BGP summary information for VRF default, address family IPv6 Unicast
          +
          +nx-osv-1# 
          +231: JEAUBIN-M-43JF: 2019-04-24T15:18:36: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 advertised-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 advertised-routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 148, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +235: JEAUBIN-M-43JF: 2019-04-24T15:18:36: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 148, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +239: JEAUBIN-M-43JF: 2019-04-24T15:18:36: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 received-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 received-routes
          +
          +
          +Inbound soft reconfiguration for IPv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MDT not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN VPLS not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN EVPN not enabled on 10.1.1.1
          +
          +nx-osv-1#
          +242: JEAUBIN-M-43JF: 2019-04-24T15:18:36: %GENIE-6-INFO: %[part=242.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>
          +243: JEAUBIN-M-43JF: 2019-04-24T15:18:36: %GENIE-6-INFO: %[part=242.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +244: JEAUBIN-M-43JF: 2019-04-24T15:18:36: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +245: JEAUBIN-M-43JF: 2019-04-24T15:18:36: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | Commands for learning feature 'Bgp'                                                                                                                |
          +246: JEAUBIN-M-43JF: 2019-04-24T15:18:36: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +247: JEAUBIN-M-43JF: 2019-04-24T15:18:36: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Parsed commands                                                                                                                                  |
          +248: JEAUBIN-M-43JF: 2019-04-24T15:18:36: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +249: JEAUBIN-M-43JF: 2019-04-24T15:18:36: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpProcessVrfAll'>                                                                              |
          +250: JEAUBIN-M-43JF: 2019-04-24T15:18:36: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllNextHopDatabase'>                                                                   |
          +251: JEAUBIN-M-43JF: 2019-04-24T15:18:36: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_routing.ShowRoutingVrfAll'>                                                                             |
          +252: JEAUBIN-M-43JF: 2019-04-24T15:18:36: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAll'>                                                                                  |
          +253: JEAUBIN-M-43JF: 2019-04-24T15:18:36: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_vrf.ShowVrf'>                                                                                           |
          +254: JEAUBIN-M-43JF: 2019-04-24T15:18:36: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'default'}                                              |
          +255: JEAUBIN-M-43JF: 2019-04-24T15:18:36: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllSummary'>                                                                           |
          +256: JEAUBIN-M-43JF: 2019-04-24T15:18:36: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsAdvertisedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}        |
          +257: JEAUBIN-M-43JF: 2019-04-24T15:18:36: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}                  |
          +258: JEAUBIN-M-43JF: 2019-04-24T15:18:36: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +259: JEAUBIN-M-43JF: 2019-04-24T15:18:36: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Commands with empty output                                                                                                                       |
          +260: JEAUBIN-M-43JF: 2019-04-24T15:18:36: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +261: JEAUBIN-M-43JF: 2019-04-24T15:18:36: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>                                                                                |
          +262: JEAUBIN-M-43JF: 2019-04-24T15:18:36: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>                                                                                 |
          +263: JEAUBIN-M-43JF: 2019-04-24T15:18:36: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>                                                               |
          +264: JEAUBIN-M-43JF: 2019-04-24T15:18:36: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'management'}                                           |
          +265: JEAUBIN-M-43JF: 2019-04-24T15:18:36: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}          |
          +266: JEAUBIN-M-43JF: 2019-04-24T15:18:36: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +267: JEAUBIN-M-43JF: 2019-04-24T15:18:36: %GENIE-6-INFO: %[pid=23936][pname=Task-1]: Saving initial snapshot of this command - To be used for comparing in future verification
          +268: JEAUBIN-M-43JF: 2019-04-24T15:18:36: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of section verify is => PASSED
          +269: JEAUBIN-M-43JF: 2019-04-24T15:18:36: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of testcase Verify_Bgp.uut.1 is => PASSED
          +270: JEAUBIN-M-43JF: 2019-04-24T15:18:36: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting testcase TriggerDemoShutNoShutBgp.uut
          +271: JEAUBIN-M-43JF: 2019-04-24T15:18:36: %
          +
          +
        • +
        +
        +
      • + + +
      +
      +
    • + + +
    • +
      + + arrow_drop_down + TriggerDemoShutNoShutBgp.uut + + +
      + expand_more + expand_less +
      + PASSED + 0:00:03 +
      +
      + + + +
        + + + + +
      • +
        + + arrow_drop_down + prerequisites + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:01 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          271: JEAUBIN-M-43JF: 2019-04-24T15:18:36: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section prerequisites
          +272: JEAUBIN-M-43JF: 2019-04-24T15:18:36: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          + show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Process ID                 : 8610
          +BGP Protocol Started, reason:  : configuration
          +BGP Protocol Tag               : 65000
          +BGP Protocol State             : Running
          +BGP MMODE                      : Not Initialized
          +BGP Memory State               : OK
          +BGP asformat                   : asplain
          +
          +BGP attributes information
          +Number of attribute entries    : 2
          +HWM of attribute entries       : 2
          +Bytes used by entries          : 200
          +Entries pending delete         : 0
          +HWM of entries pending delete  : 0
          +BGP paths per attribute HWM    : 1
          +BGP AS path entries            : 0
          +Bytes used by AS path entries  : 0
          +
          +Information regarding configured VRFs:
          +
          +BGP Information for VRF default
          +VRF Id                         : 1
          +VRF state                      : UP
          +Router-ID                      : 10.2.2.2
          +Configured Router-ID           : 10.2.2.2
          +Confed-ID                      : 0
          +Cluster-ID                     : 0.0.0.0
          +No. of configured peers        : 1
          +No. of pending config peers    : 0
          +No. of established peers       : 1
          +VRF RD                         : Not configured
          +
          +    Information for address family IPv4 Unicast in VRF default
          +    Table Id                   : 1
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    1          1               2          2          1          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +    Information for address family IPv6 Unicast in VRF default
          +    Table Id                   : 80000001
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    0          0               0          0          0          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +nx-osv-1# 
          +276: JEAUBIN-M-43JF: 2019-04-24T15:18:37: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of section prerequisites is => PASSED
          +277: JEAUBIN-M-43JF: 2019-04-24T15:18:37: %AETEST-6-INFO: %[pid=23
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + shut + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:00 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          277: JEAUBIN-M-43JF: 2019-04-24T15:18:37: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section shut
          +278: JEAUBIN-M-43JF: 2019-04-24T15:18:37: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: config +++
          +config term
          +
          +Enter configuration commands, one per line.  End with CNTL/Z.
          +
          +nx-osv-1(config)# router bgp 65000
          +
          +
          +nx-osv-1(config-router)# shutdown
          +
          +
          +nx-osv-1(config-router)# end
          +
          +
          +nx-osv-1# 
          +287: JEAUBIN-M-43JF: 2019-04-24T15:18:37: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of section shut is => PASSED
          +288: 
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + verify + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:01 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          288: JEAUBIN-M-43JF: 2019-04-24T15:18:37: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section verify
          +289: JEAUBIN-M-43JF: 2019-04-24T15:18:37: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          +show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Process ID                 : 8610
          +BGP Protocol Started, reason:  : configuration
          +BGP Protocol Tag               : 65000
          +BGP Protocol State             : Shutdown
          +BGP MMODE                      : Not Initialized
          +BGP Memory State               : OK
          +BGP asformat                   : asplain
          +
          +BGP attributes information
          +Number of attribute entries    : 2
          +HWM of attribute entries       : 2
          +Bytes used by entries          : 200
          +Entries pending delete         : 0
          +HWM of entries pending delete  : 0
          +BGP paths per attribute HWM    : 1
          +BGP AS path entries            : 0
          +Bytes used by AS path entries  : 0
          +
          +Information regarding configured VRFs:
          +
          +BGP Information for VRF default
          +VRF Id                         : 1
          +VRF state                      : UP
          +Router-ID                      : 10.2.2.2
          +Configured Router-ID           : 10.2.2.2
          +Confed-ID                      : 0
          +Cluster-ID                     : 0.0.0.0
          +No. of configured peers        : 1
          +No. of pending config peers    : 0
          +No. of established peers       : 0
          +VRF RD                         : Not configured
          +
          +    Information for address family IPv4 Unicast in VRF default
          +    Table Id                   : 1
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    1          0               2          2          1          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +    Information for address family IPv6 Unicast in VRF default
          +    Table Id                   : 80000001
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    0          0               0          0          0          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +nx-osv-1# 
          +293: JEAUBIN-M-43JF: 2019-04-24T15:18:38: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of section verify is => PASSED
          +294: JEAUBIN-M-43JF: 2019-04-24T15:18:38: %AETEST-6-INFO: %[pid=23
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + unshut + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:00 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          294: JEAUBIN-M-43JF: 2019-04-24T15:18:38: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section unshut
          +295: JEAUBIN-M-43JF: 2019-04-24T15:18:38: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: config +++
          +config term
          +
          +Enter configuration commands, one per line.  End with CNTL/Z.
          +
          +nx-osv-1(config)# router bgp 65000
          +
          +
          +nx-osv-1(config-router)# no shutdown
          +
          +
          +nx-osv-1(config-router)# end
          +
          +
          +nx-osv-1# 
          +304: JEAUBIN-M-43JF: 2019-04-24T15:18:38: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of section unshut is => PASSED
          +305: 
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + verify_recover + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:00 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          305: JEAUBIN-M-43JF: 2019-04-24T15:18:38: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section verify_recover
          +306: JEAUBIN-M-43JF: 2019-04-24T15:18:38: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          +show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Process ID                 : 8610
          +BGP Protocol Started, reason:  : configuration
          +BGP Protocol Tag               : 65000
          +BGP Protocol State             : Running
          +BGP MMODE                      : Not Initialized
          +BGP Memory State               : OK
          +BGP asformat                   : asplain
          +
          +BGP attributes information
          +Number of attribute entries    : 2
          +HWM of attribute entries       : 2
          +Bytes used by entries          : 200
          +Entries pending delete         : 0
          +HWM of entries pending delete  : 0
          +BGP paths per attribute HWM    : 1
          +BGP AS path entries            : 0
          +Bytes used by AS path entries  : 0
          +
          +Information regarding configured VRFs:
          +
          +BGP Information for VRF default
          +VRF Id                         : 1
          +VRF state                      : UP
          +Router-ID                      : 10.2.2.2
          +Configured Router-ID           : 10.2.2.2
          +Confed-ID                      : 0
          +Cluster-ID                     : 0.0.0.0
          +No. of configured peers        : 1
          +No. of pending config peers    : 0
          +No. of established peers       : 0
          +VRF RD                         : Not configured
          +
          +    Information for address family IPv4 Unicast in VRF default
          +    Table Id                   : 1
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    1          0               2          2          1          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +    Information for address family IPv6 Unicast in VRF default
          +    Table Id                   : 80000001
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    0          0               0          0          0          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +nx-osv-1# 
          +310: JEAUBIN-M-43JF: 2019-04-24T15:18:38: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of section verify_recover is => PASSED
          +311: JEAUBIN-M-43JF: 2019-04-24T15:18:38: %AETEST-6-INFO: %[pid=23
          +
          +
        • +
        +
        +
      • + + +
      +
      +
    • + + +
    • +
      + + arrow_drop_down + Verify_Bgp.uut.2 + + +
      + expand_more + expand_less +
      + PASSED + 0:00:16 +
      +
      + + + +
        + + + + +
      • +
        + + arrow_drop_down + verify + + +
        + expand_more + expand_less +
        + PASSED + 0:00:16 +
        +
        + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          313: JEAUBIN-M-43JF: 2019-04-24T15:18:39: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section verify
          +314: JEAUBIN-M-43JF: 2019-04-24T15:18:39: %GENIE-6-INFO: %[part=314.1/3][pid=23936][pname=Task-1]: +------------------------------------------------------------------------------+
          +315: JEAUBIN-M-43JF: 2019-04-24T15:18:39: %GENIE-6-INFO: %[part=314.2/3][pid=23936][pname=Task-1]: |                              1 out of 5 attempt                              |
          +316: JEAUBIN-M-43JF: 2019-04-24T15:18:39: %GENIE-6-INFO: %[part=314.3/3][pid=23936][pname=Task-1]: +------------------------------------------------------------------------------+
          +317: JEAUBIN-M-43JF: 2019-04-24T15:18:39: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          +show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Process ID                 : 8610
          +BGP Protocol Started, reason:  : configuration
          +BGP Protocol Tag               : 65000
          +BGP Protocol State             : Running
          +BGP MMODE                      : Not Initialized
          +BGP Memory State               : OK
          +BGP asformat                   : asplain
          +
          +BGP attributes information
          +Number of attribute entries    : 2
          +HWM of attribute entries       : 2
          +Bytes used by entries          : 200
          +Entries pending delete         : 0
          +HWM of entries pending delete  : 0
          +BGP paths per attribute HWM    : 1
          +BGP AS path entries            : 0
          +Bytes used by AS path entries  : 0
          +
          +Information regarding configured VRFs:
          +
          +BGP Information for VRF default
          +VRF Id                         : 1
          +VRF state                      : UP
          +Router-ID                      : 10.2.2.2
          +Configured Router-ID           : 10.2.2.2
          +Confed-ID                      : 0
          +Cluster-ID                     : 0.0.0.0
          +No. of configured peers        : 1
          +No. of pending config peers    : 0
          +No. of established peers       : 0
          +VRF RD                         : Not configured
          +
          +    Information for address family IPv4 Unicast in VRF default
          +    Table Id                   : 1
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    1          0               2          2          1          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +    Information for address family IPv6 Unicast in VRF default
          +    Table Id                   : 80000001
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    0          0               0          0          0          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +nx-osv-1# 
          +321: JEAUBIN-M-43JF: 2019-04-24T15:18:39: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-session' +++
          +show running-config | inc peer-session
          +
          +
          +nx-osv-1# 
          +325: JEAUBIN-M-43JF: 2019-04-24T15:18:39: %GENIE-6-INFO: %[part=325.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>
          +326: JEAUBIN-M-43JF: 2019-04-24T15:18:39: %GENIE-6-INFO: %[part=325.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +327: JEAUBIN-M-43JF: 2019-04-24T15:18:39: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-policy' +++
          +show running-config | inc peer-policy
          +
          +
          +nx-osv-1# 
          +332: JEAUBIN-M-43JF: 2019-04-24T15:18:40: %GENIE-6-INFO: %[part=332.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>
          +333: JEAUBIN-M-43JF: 2019-04-24T15:18:40: %GENIE-6-INFO: %[part=332.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +334: JEAUBIN-M-43JF: 2019-04-24T15:18:40: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all dampening parameters' +++
          +show bgp vrf all all dampening parameters
          +
          +
          +nx-osv-1# 
          +336: JEAUBIN-M-43JF: 2019-04-24T15:18:40: %GENIE-6-INFO: %[part=336.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>
          +337: JEAUBIN-M-43JF: 2019-04-24T15:18:40: %GENIE-6-INFO: %[part=336.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +338: JEAUBIN-M-43JF: 2019-04-24T15:18:40: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all nexthop-database' +++
          +show bgp vrf all all nexthop-database
          +
          +
          +Next Hop table for VRF default, address family IPv4 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +
          +Nexthop: 0.0.0.0, Flags: 0x2, Refcount: 1, IGP cost: 0
          +IGP Route type: 0, IGP preference: 0
          +Nexthop is not-attached local unreachable not-labeled
          +Nexthop last resolved: never, using 0.0.0.0/0
          +Metric next advertise: Never
          +RNH epoch: 0
          +
          +Nexthop: 10.1.1.1, Flags: 0x1, Refcount: 1, IGP cost: 41
          +IGP Route type: 0, IGP preference: 110
          +Attached nexthop: 10.0.2.1, Interface: Ethernet2/2
          +Attached nexthop: 10.0.1.1, Interface: Ethernet2/1
          +Nexthop is not-attached not-local reachable not-labeled
          +Nexthop last resolved: 03:20:56, using 10.1.1.1/32
          +Metric next advertise: Never
          +RNH epoch: 1
          +IPv6 Next-hop table
          +
          +Next Hop table for VRF default, address family IPv6 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +IPv6 Next-hop table
          +
          +nx-osv-1# 
          +341: JEAUBIN-M-43JF: 2019-04-24T15:18:40: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show routing vrf all' +++
          +show routing vrf all
          +
          +IP Route Table for VRF "default"
          +'*' denotes best ucast next-hop
          +'**' denotes best mcast next-hop
          +'[x/y]' denotes [preference/metric]
          +'%<string>' in via output denotes VRF <string>
          +
          +10.0.1.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, direct
          +10.0.1.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, local
          +10.0.2.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, direct
          +10.0.2.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, local
          +10.1.1.1/32, ubest/mbest: 2/0
          +    *via 10.0.1.1, Eth2/1, [110/41], 1d02h, ospf-1, intra
          +    *via 10.0.2.1, Eth2/2, [110/41], 1d02h, ospf-1, intra
          +10.2.2.2/32, ubest/mbest: 2/0, attached
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, local
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, direct
          +10.22.22.22/32, ubest/mbest: 2/0, attached
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, local
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, direct
          +
          +nx-osv-1# 
          +344: JEAUBIN-M-43JF: 2019-04-24T15:18:40: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all' +++
          +show bgp vrf all all
          +
          +BGP routing table information for VRF default, address family IPv4 Unicast
          +BGP table version is 149, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +x i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +nx-osv-1# 
          +347: JEAUBIN-M-43JF: 2019-04-24T15:18:40: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show vrf' +++
          +show vrf
          +
          +VRF-Name                           VRF-ID State   Reason                        
          +default                                 1 Up      --                            
          +management                              2 Up      --                            
          +
          +nx-osv-1# 
          +350: JEAUBIN-M-43JF: 2019-04-24T15:18:41: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf management all neighbors' +++
          +show bgp vrf management all neighbors
          +
          +Unknown vrf management
          +
          +nx-osv-1# 
          +353: JEAUBIN-M-43JF: 2019-04-24T15:18:41: %GENIE-6-INFO: %[part=353.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>
          +354: JEAUBIN-M-43JF: 2019-04-24T15:18:41: %GENIE-6-INFO: %[part=353.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +355: JEAUBIN-M-43JF: 2019-04-24T15:18:41: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors' +++
          +show bgp vrf default all neighbors
          +
          +BGP neighbor is 10.1.1.1,  remote AS 65000, ibgp link, Peer index 1
          +  BGP version 4, remote router ID 10.1.1.1
          +  BGP state = Closing, down for 00:00:03
          +  Using loopback0 as update source for this peer
          +  Last read 00:00:26, hold time = 180, keepalive interval is 60 seconds
          +  Last written 00:00:03, keepalive timer not running
          +  Received 25154 messages, 1 notifications, 0 bytes in queue
          +  Sent 22947 messages, 45 notifications, 0 bytes in queue
          +  Connections established 45, dropped 45
          +  Last reset by us 00:00:03, due to administratively shutdown
          +  Last reset by peer never, due to No error
          +
          +  Message statistics:
          +                              Sent               Rcvd
          +  Opens:                        46                 45  
          +  Notifications:                45                  1  
          +  Updates:                     102                 90  
          +  Keepalives:                22754              25018  
          +  Route Refresh:                 0                  0  
          +  Capability:                    0                  0  
          +  Total:                     22947              25154  
          +  Total bytes:              435932             478042  
          +  Bytes in queue:                0                  0  
          +
          +  For address family: IPv4 Unicast
          +  BGP table version 149, neighbor version 0
          +  0 accepted paths consume 0 bytes of memory
          +  0 sent paths
          +  Third-party Nexthop will not be computed.
          +
          +  No established BGP session with peer
          +
          +
          +nx-osv-1# 
          +359: JEAUBIN-M-43JF: 2019-04-24T15:18:41: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all summary' +++
          +show bgp vrf all all summary
          +
          +BGP summary information for VRF default, address family IPv4 Unicast
          +BGP router identifier 10.2.2.2, local AS number 65000
          +BGP table version is 149, IPv4 Unicast config peers 1, capable peers 0
          +2 network entries and 2 paths using 288 bytes of memory
          +BGP attribute entries [2/288], BGP AS path entries [0/0]
          +BGP community entries [0/0], BGP clusterlist entries [0/0]
          +
          +Neighbor        V    AS MsgRcvd MsgSent   TblVer  InQ OutQ Up/Down  State/PfxRcd
          +10.1.1.1        4 65000   25154   22947        0    0    0 00:00:03 Closing  
          +
          +BGP summary information for VRF default, address family IPv6 Unicast
          +
          +nx-osv-1# 
          +362: JEAUBIN-M-43JF: 2019-04-24T15:18:41: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 advertised-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 advertised-routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 149, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +365: JEAUBIN-M-43JF: 2019-04-24T15:18:41: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 149, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +x i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +369: JEAUBIN-M-43JF: 2019-04-24T15:18:42: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 received-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 received-routes
          +
          +
          +Inbound soft reconfiguration for IPv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MDT not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN VPLS not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN EVPN not enabled on 10.1.1.1
          +
          +nx-osv-1#
          +372: JEAUBIN-M-43JF: 2019-04-24T15:18:42: %GENIE-6-INFO: %[part=372.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>
          +373: JEAUBIN-M-43JF: 2019-04-24T15:18:42: %GENIE-6-INFO: %[part=372.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +374: JEAUBIN-M-43JF: 2019-04-24T15:18:42: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +375: JEAUBIN-M-43JF: 2019-04-24T15:18:42: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | Commands for learning feature 'Bgp'                                                                                                                |
          +376: JEAUBIN-M-43JF: 2019-04-24T15:18:42: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +377: JEAUBIN-M-43JF: 2019-04-24T15:18:42: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Parsed commands                                                                                                                                  |
          +378: JEAUBIN-M-43JF: 2019-04-24T15:18:42: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +379: JEAUBIN-M-43JF: 2019-04-24T15:18:42: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpProcessVrfAll'>                                                                              |
          +380: JEAUBIN-M-43JF: 2019-04-24T15:18:42: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllNextHopDatabase'>                                                                   |
          +381: JEAUBIN-M-43JF: 2019-04-24T15:18:42: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_routing.ShowRoutingVrfAll'>                                                                             |
          +382: JEAUBIN-M-43JF: 2019-04-24T15:18:42: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAll'>                                                                                  |
          +383: JEAUBIN-M-43JF: 2019-04-24T15:18:42: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_vrf.ShowVrf'>                                                                                           |
          +384: JEAUBIN-M-43JF: 2019-04-24T15:18:42: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'default'}                                              |
          +385: JEAUBIN-M-43JF: 2019-04-24T15:18:42: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllSummary'>                                                                           |
          +386: JEAUBIN-M-43JF: 2019-04-24T15:18:42: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsAdvertisedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}        |
          +387: JEAUBIN-M-43JF: 2019-04-24T15:18:42: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}                  |
          +388: JEAUBIN-M-43JF: 2019-04-24T15:18:42: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +389: JEAUBIN-M-43JF: 2019-04-24T15:18:42: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Commands with empty output                                                                                                                       |
          +390: JEAUBIN-M-43JF: 2019-04-24T15:18:42: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +391: JEAUBIN-M-43JF: 2019-04-24T15:18:42: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>                                                                                |
          +392: JEAUBIN-M-43JF: 2019-04-24T15:18:42: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>                                                                                 |
          +393: JEAUBIN-M-43JF: 2019-04-24T15:18:42: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>                                                               |
          +394: JEAUBIN-M-43JF: 2019-04-24T15:18:42: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'management'}                                           |
          +395: JEAUBIN-M-43JF: 2019-04-24T15:18:42: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}          |
          +396: JEAUBIN-M-43JF: 2019-04-24T15:18:42: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +397: JEAUBIN-M-43JF: 2019-04-24T15:18:42: %GENIE-6-INFO: %[part=397.1/2][pid=23936][pname=Task-1]: Comparing current snapshot to initial snapshot
          +398: JEAUBIN-M-43JF: 2019-04-24T15:18:42: %GENIE-6-INFO: %[part=397.2/2][pid=23936][pname=Task-1]: Excluding these keys ['if_handle', 'keepalives', 'last_reset', 'reset_reason', 'foreign_port', 'local_port', 'msg_rcvd', 'msg_sent', 'up_down', 'bgp_table_version', 'routing_table_version', 'tbl_ver', 'table_version', 'memory_usage', 'updates', 'mss', 'total', 'total_bytes', 'up_time', 'bgp_negotiated_keepalive_timers', 'hold_time', 'keepalive_interval', 'sent', 'received', 'status_codes', 'holdtime', 'router_id', 'connections_dropped', 'connections_established', 'advertised', 'prefixes', 'routes', 'state_pfxrcd']
          +399: JEAUBIN-M-43JF: 2019-04-24T15:18:42: %GENIE-3-ERROR: %[pid=23936][pname=Task-1]: Retaking snapshot for the verification as the comparison with original one failed
          +400: JEAUBIN-M-43JF: 2019-04-24T15:18:52: %GENIE-6-INFO: %[part=400.1/3][pid=23936][pname=Task-1]: +------------------------------------------------------------------------------+
          +401: JEAUBIN-M-43JF: 2019-04-24T15:18:52: %GENIE-6-INFO: %[part=400.2/3][pid=23936][pname=Task-1]: |                              2 out of 5 attempt                              |
          +402: JEAUBIN-M-43JF: 2019-04-24T15:18:52: %GENIE-6-INFO: %[part=400.3/3][pid=23936][pname=Task-1]: +------------------------------------------------------------------------------+
          +403: JEAUBIN-M-43JF: 2019-04-24T15:18:52: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          + show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Process ID                 : 8610
          +BGP Protocol Started, reason:  : configuration
          +BGP Protocol Tag               : 65000
          +BGP Protocol State             : Running
          +BGP MMODE                      : Not Initialized
          +BGP Memory State               : OK
          +BGP asformat                   : asplain
          +
          +BGP attributes information
          +Number of attribute entries    : 2
          +HWM of attribute entries       : 2
          +Bytes used by entries          : 200
          +Entries pending delete         : 0
          +HWM of entries pending delete  : 0
          +BGP paths per attribute HWM    : 1
          +BGP AS path entries            : 0
          +Bytes used by AS path entries  : 0
          +
          +Information regarding configured VRFs:
          +
          +BGP Information for VRF default
          +VRF Id                         : 1
          +VRF state                      : UP
          +Router-ID                      : 10.2.2.2
          +Configured Router-ID           : 10.2.2.2
          +Confed-ID                      : 0
          +Cluster-ID                     : 0.0.0.0
          +No. of configured peers        : 1
          +No. of pending config peers    : 0
          +No. of established peers       : 1
          +VRF RD                         : Not configured
          +
          +    Information for address family IPv4 Unicast in VRF default
          +    Table Id                   : 1
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    1          1               2          2          1          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +    Information for address family IPv6 Unicast in VRF default
          +    Table Id                   : 80000001
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    0          0               0          0          0          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +nx-osv-1# 
          +407: JEAUBIN-M-43JF: 2019-04-24T15:18:52: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-session' +++
          +show running-config | inc peer-session
          +
          +
          +nx-osv-1# 
          +412: JEAUBIN-M-43JF: 2019-04-24T15:18:52: %GENIE-6-INFO: %[part=412.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>
          +413: JEAUBIN-M-43JF: 2019-04-24T15:18:52: %GENIE-6-INFO: %[part=412.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +414: JEAUBIN-M-43JF: 2019-04-24T15:18:52: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-policy' +++
          +show running-config | inc peer-policy
          +
          +
          +nx-osv-1# 
          +419: JEAUBIN-M-43JF: 2019-04-24T15:18:53: %GENIE-6-INFO: %[part=419.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>
          +420: JEAUBIN-M-43JF: 2019-04-24T15:18:53: %GENIE-6-INFO: %[part=419.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +421: JEAUBIN-M-43JF: 2019-04-24T15:18:53: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all dampening parameters' +++
          +show bgp vrf all all dampening parameters
          +
          +
          +nx-osv-1# 
          +424: JEAUBIN-M-43JF: 2019-04-24T15:18:53: %GENIE-6-INFO: %[part=424.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>
          +425: JEAUBIN-M-43JF: 2019-04-24T15:18:53: %GENIE-6-INFO: %[part=424.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +426: JEAUBIN-M-43JF: 2019-04-24T15:18:53: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all nexthop-database' +++
          +show bgp vrf all all nexthop-database
          +
          +
          +Next Hop table for VRF default, address family IPv4 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +
          +Nexthop: 0.0.0.0, Flags: 0x2, Refcount: 1, IGP cost: 0
          +IGP Route type: 0, IGP preference: 0
          +Nexthop is not-attached local unreachable not-labeled
          +Nexthop last resolved: never, using 0.0.0.0/0
          +Metric next advertise: Never
          +RNH epoch: 0
          +
          +Nexthop: 10.1.1.1, Flags: 0x1, Refcount: 1, IGP cost: 41
          +IGP Route type: 0, IGP preference: 110
          +Attached nexthop: 10.0.2.1, Interface: Ethernet2/2
          +Attached nexthop: 10.0.1.1, Interface: Ethernet2/1
          +Nexthop is not-attached not-local reachable not-labeled
          +Nexthop last resolved: 00:00:04, using 10.1.1.1/32
          +Metric next advertise: Never
          +RNH epoch: 1
          +IPv6 Next-hop table
          +
          +Next Hop table for VRF default, address family IPv6 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +IPv6 Next-hop table
          +
          +nx-osv-1# 
          +429: JEAUBIN-M-43JF: 2019-04-24T15:18:53: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show routing vrf all' +++
          +show routing vrf all
          +
          +IP Route Table for VRF "default"
          +'*' denotes best ucast next-hop
          +'**' denotes best mcast next-hop
          +'[x/y]' denotes [preference/metric]
          +'%<string>' in via output denotes VRF <string>
          +
          +10.0.1.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, direct
          +10.0.1.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, local
          +10.0.2.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, direct
          +10.0.2.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, local
          +10.1.1.1/32, ubest/mbest: 2/0
          +    *via 10.0.1.1, Eth2/1, [110/41], 1d02h, ospf-1, intra
          +    *via 10.0.2.1, Eth2/2, [110/41], 1d02h, ospf-1, intra
          +10.2.2.2/32, ubest/mbest: 2/0, attached
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, local
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, direct
          +10.11.11.11/32, ubest/mbest: 1/0
          +    *via 10.1.1.1, [200/0], 00:00:05, bgp-65000, internal, tag 65000, 
          +10.22.22.22/32, ubest/mbest: 2/0, attached
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, local
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, direct
          +
          +nx-osv-1# 
          +433: JEAUBIN-M-43JF: 2019-04-24T15:18:53: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all' +++
          +show bgp vrf all all
          +
          +BGP routing table information for VRF default, address family IPv4 Unicast
          +BGP table version is 152, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +nx-osv-1# 
          +436: JEAUBIN-M-43JF: 2019-04-24T15:18:54: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show vrf' +++
          +show vrf
          +
          +VRF-Name                           VRF-ID State   Reason                        
          +default                                 1 Up      --                            
          +management                              2 Up      --                            
          +
          +nx-osv-1# 
          +439: JEAUBIN-M-43JF: 2019-04-24T15:18:54: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf management all neighbors' +++
          +show bgp vrf management all neighbors
          +
          +Unknown vrf management
          +
          +nx-osv-1# 
          +442: JEAUBIN-M-43JF: 2019-04-24T15:18:54: %GENIE-6-INFO: %[part=442.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>
          +443: JEAUBIN-M-43JF: 2019-04-24T15:18:54: %GENIE-6-INFO: %[part=442.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +444: JEAUBIN-M-43JF: 2019-04-24T15:18:54: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors' +++
          +show bgp vrf default all neighbors
          +
          +BGP neighbor is 10.1.1.1,  remote AS 65000, ibgp link, Peer index 1
          +  BGP version 4, remote router ID 10.1.1.1
          +  BGP state = Established, up for 00:00:07
          +  Using loopback0 as update source for this peer
          +  Last read 00:00:06, hold time = 180, keepalive interval is 60 seconds
          +  Last written 00:00:06, keepalive timer expiry due 00:00:53
          +  Received 25159 messages, 1 notifications, 0 bytes in queue
          +  Sent 22952 messages, 45 notifications, 0 bytes in queue
          +  Connections established 46, dropped 45
          +  Last reset by us 00:00:16, due to administratively shutdown
          +  Last reset by peer never, due to No error
          +
          +  Neighbor capabilities:
          +  Dynamic capability: advertised (mp, refresh, gr) 
          +  Dynamic capability (old): advertised 
          +  Route refresh capability (new): advertised received 
          +  Route refresh capability (old): advertised received 
          +  4-Byte AS capability: advertised received 
          +  Address family IPv4 Unicast: advertised received 
          +  Graceful Restart capability: advertised 
          +
          +  Graceful Restart Parameters:
          +  Address families advertised to peer:
          +    IPv4 Unicast  
          +  Address families received from peer:
          +  Forwarding state preserved by peer for:
          +  Restart time advertised to peer: 120 seconds
          +  Stale time for routes advertised by peer: 300 seconds
          +  Extended Next Hop Encoding Capability: advertised 
          +
          +  Message statistics:
          +                              Sent               Rcvd
          +  Opens:                        47                 46  
          +  Notifications:                45                  1  
          +  Updates:                     104                 92  
          +  Keepalives:                22756              25020  
          +  Route Refresh:                 0                  0  
          +  Capability:                    0                  0  
          +  Total:                     22952              25159  
          +  Total bytes:              436023             478140  
          +  Bytes in queue:                0                  0  
          +
          +  For address family: IPv4 Unicast
          +  BGP table version 152, neighbor version 152
          +  1 accepted paths consume 80 bytes of memory
          +  1 sent paths
          +  Third-party Nexthop will not be computed.
          +
          +  Local host: 10.2.2.2, Local port: 179
          +  Foreign host: 10.1.1.1, Foreign port: 35790
          +  fd = 60
          +
          +
          +nx-osv-1# 
          +448: JEAUBIN-M-43JF: 2019-04-24T15:18:54: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all summary' +++
          +show bgp vrf all all summary
          +
          +BGP summary information for VRF default, address family IPv4 Unicast
          +BGP router identifier 10.2.2.2, local AS number 65000
          +BGP table version is 152, IPv4 Unicast config peers 1, capable peers 1
          +2 network entries and 2 paths using 288 bytes of memory
          +BGP attribute entries [2/288], BGP AS path entries [0/0]
          +BGP community entries [0/0], BGP clusterlist entries [0/0]
          +
          +Neighbor        V    AS MsgRcvd MsgSent   TblVer  InQ OutQ Up/Down  State/PfxRcd
          +10.1.1.1        4 65000   25159   22952      152    0    0 00:00:07 1         
          +
          +BGP summary information for VRF default, address family IPv6 Unicast
          +
          +nx-osv-1# 
          +451: JEAUBIN-M-43JF: 2019-04-24T15:18:54: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 advertised-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 advertised-routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 152, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +455: JEAUBIN-M-43JF: 2019-04-24T15:18:55: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 152, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +459: JEAUBIN-M-43JF: 2019-04-24T15:18:55: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 received-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 received-routes
          +
          +
          +Inbound soft reconfiguration for IPv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MDT not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN VPLS not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN EVPN not enabled on 10.1.1.1
          +
          +nx-osv-1#
          +462: JEAUBIN-M-43JF: 2019-04-24T15:18:55: %GENIE-6-INFO: %[part=462.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>
          +463: JEAUBIN-M-43JF: 2019-04-24T15:18:55: %GENIE-6-INFO: %[part=462.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +464: JEAUBIN-M-43JF: 2019-04-24T15:18:55: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +465: JEAUBIN-M-43JF: 2019-04-24T15:18:55: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | Commands for learning feature 'Bgp'                                                                                                                |
          +466: JEAUBIN-M-43JF: 2019-04-24T15:18:55: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +467: JEAUBIN-M-43JF: 2019-04-24T15:18:55: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Parsed commands                                                                                                                                  |
          +468: JEAUBIN-M-43JF: 2019-04-24T15:18:55: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +469: JEAUBIN-M-43JF: 2019-04-24T15:18:55: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpProcessVrfAll'>                                                                              |
          +470: JEAUBIN-M-43JF: 2019-04-24T15:18:55: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllNextHopDatabase'>                                                                   |
          +471: JEAUBIN-M-43JF: 2019-04-24T15:18:55: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_routing.ShowRoutingVrfAll'>                                                                             |
          +472: JEAUBIN-M-43JF: 2019-04-24T15:18:55: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAll'>                                                                                  |
          +473: JEAUBIN-M-43JF: 2019-04-24T15:18:55: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_vrf.ShowVrf'>                                                                                           |
          +474: JEAUBIN-M-43JF: 2019-04-24T15:18:55: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'default'}                                              |
          +475: JEAUBIN-M-43JF: 2019-04-24T15:18:55: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllSummary'>                                                                           |
          +476: JEAUBIN-M-43JF: 2019-04-24T15:18:55: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsAdvertisedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}        |
          +477: JEAUBIN-M-43JF: 2019-04-24T15:18:55: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}                  |
          +478: JEAUBIN-M-43JF: 2019-04-24T15:18:55: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +479: JEAUBIN-M-43JF: 2019-04-24T15:18:55: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Commands with empty output                                                                                                                       |
          +480: JEAUBIN-M-43JF: 2019-04-24T15:18:55: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +481: JEAUBIN-M-43JF: 2019-04-24T15:18:55: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>                                                                                |
          +482: JEAUBIN-M-43JF: 2019-04-24T15:18:55: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>                                                                                 |
          +483: JEAUBIN-M-43JF: 2019-04-24T15:18:55: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>                                                               |
          +484: JEAUBIN-M-43JF: 2019-04-24T15:18:55: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'management'}                                           |
          +485: JEAUBIN-M-43JF: 2019-04-24T15:18:55: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}          |
          +486: JEAUBIN-M-43JF: 2019-04-24T15:18:55: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +487: JEAUBIN-M-43JF: 2019-04-24T15:18:55: %GENIE-6-INFO: %[part=487.1/2][pid=23936][pname=Task-1]: Comparing current snapshot to initial snapshot
          +488: JEAUBIN-M-43JF: 2019-04-24T15:18:55: %GENIE-6-INFO: %[part=487.2/2][pid=23936][pname=Task-1]: Excluding these keys ['if_handle', 'keepalives', 'last_reset', 'reset_reason', 'foreign_port', 'local_port', 'msg_rcvd', 'msg_sent', 'up_down', 'bgp_table_version', 'routing_table_version', 'tbl_ver', 'table_version', 'memory_usage', 'updates', 'mss', 'total', 'total_bytes', 'up_time', 'bgp_negotiated_keepalive_timers', 'hold_time', 'keepalive_interval', 'sent', 'received', 'status_codes', 'holdtime', 'router_id', 'connections_dropped', 'connections_established', 'advertised', 'prefixes', 'routes', 'state_pfxrcd']
          +489: JEAUBIN-M-43JF: 2019-04-24T15:18:55: %GENIE-6-INFO: %[pid=23936][pname=Task-1]: Snapshot is same as initial snapshot
          +490: JEAUBIN-M-43JF: 2019-04-24T15:18:55: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of section verify is => PASSED
          +491: JEAUBIN-M-43JF: 2019-04-24T15:18:55: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of testcase Verify_Bgp.uut.2 is => PASSED
          +492: JEAUBIN-M-43JF: 2019-04-24T15:18:55: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting testcase TriggerDemoShutNoShutBgpV2.uut.1
          +493: JEAUBIN-M-43JF: 2019-04-24T15:18:55: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section prerequisites
          +494: JEAUBIN-M-43JF: 2019-04-24T15:18:55: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          + show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Process I
          +
          +
        • +
        +
        +
      • + + +
      +
      +
    • + + +
    • +
      + + arrow_drop_down + TriggerDemoShutNoShutBgpV2.uut.1 + + +
      + expand_more + expand_less +
      + PASSED + 0:00:11 +
      +
      + + + +
        + + + + +
      • +
        + + arrow_drop_down + prerequisites + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:03 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          493: JEAUBIN-M-43JF: 2019-04-24T15:18:55: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section prerequisites
          +494: JEAUBIN-M-43JF: 2019-04-24T15:18:55: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          + show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Process ID                 : 8610
          +BGP Protocol Started, reason:  : configuration
          +BGP Protocol Tag               : 65000
          +BGP Protocol State             : Running
          +BGP MMODE                      : Not Initialized
          +BGP Memory State               : OK
          +BGP asformat                   : asplain
          +
          +BGP attributes information
          +Number of attribute entries    : 2
          +HWM of attribute entries       : 2
          +Bytes used by entries          : 200
          +Entries pending delete         : 0
          +HWM of entries pending delete  : 0
          +BGP paths per attribute HWM    : 1
          +BGP AS path entries            : 0
          +Bytes used by AS path entries  : 0
          +
          +Information regarding configured VRFs:
          +
          +BGP Information for VRF default
          +VRF Id                         : 1
          +VRF state                      : UP
          +Router-ID                      : 10.2.2.2
          +Configured Router-ID           : 10.2.2.2
          +Confed-ID                      : 0
          +Cluster-ID                     : 0.0.0.0
          +No. of configured peers        : 1
          +No. of pending config peers    : 0
          +No. of established peers       : 1
          +VRF RD                         : Not configured
          +
          +    Information for address family IPv4 Unicast in VRF default
          +    Table Id                   : 1
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    1          1               2          2          1          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +    Information for address family IPv6 Unicast in VRF default
          +    Table Id                   : 80000001
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    0          0               0          0          0          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +nx-osv-1# 
          +498: JEAUBIN-M-43JF: 2019-04-24T15:18:55: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-session' +++
          +show running-config | inc peer-session
          +
          +
          +nx-osv-1# 
          +503: JEAUBIN-M-43JF: 2019-04-24T15:18:56: %GENIE-6-INFO: %[part=503.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>
          +504: JEAUBIN-M-43JF: 2019-04-24T15:18:56: %GENIE-6-INFO: %[part=503.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +505: JEAUBIN-M-43JF: 2019-04-24T15:18:56: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-policy' +++
          +show running-config | inc peer-policy
          +
          +
          +nx-osv-1# 
          +508: JEAUBIN-M-43JF: 2019-04-24T15:18:56: %GENIE-6-INFO: %[part=508.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>
          +509: JEAUBIN-M-43JF: 2019-04-24T15:18:56: %GENIE-6-INFO: %[part=508.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +510: JEAUBIN-M-43JF: 2019-04-24T15:18:56: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all dampening parameters' +++
          +show bgp vrf all all dampening parameters
          +
          +
          +nx-osv-1# 
          +513: JEAUBIN-M-43JF: 2019-04-24T15:18:56: %GENIE-6-INFO: %[part=513.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>
          +514: JEAUBIN-M-43JF: 2019-04-24T15:18:56: %GENIE-6-INFO: %[part=513.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +515: JEAUBIN-M-43JF: 2019-04-24T15:18:56: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all nexthop-database' +++
          +show bgp vrf all all nexthop-database
          +
          +
          +Next Hop table for VRF default, address family IPv4 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +
          +Nexthop: 0.0.0.0, Flags: 0x2, Refcount: 1, IGP cost: 0
          +IGP Route type: 0, IGP preference: 0
          +Nexthop is not-attached local unreachable not-labeled
          +Nexthop last resolved: never, using 0.0.0.0/0
          +Metric next advertise: Never
          +RNH epoch: 0
          +
          +Nexthop: 10.1.1.1, Flags: 0x1, Refcount: 1, IGP cost: 41
          +IGP Route type: 0, IGP preference: 110
          +Attached nexthop: 10.0.2.1, Interface: Ethernet2/2
          +Attached nexthop: 10.0.1.1, Interface: Ethernet2/1
          +Nexthop is not-attached not-local reachable not-labeled
          +Nexthop last resolved: 00:00:07, using 10.1.1.1/32
          +Metric next advertise: Never
          +RNH epoch: 1
          +IPv6 Next-hop table
          +
          +Next Hop table for VRF default, address family IPv6 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +IPv6 Next-hop table
          +
          +nx-osv-1# 
          +518: JEAUBIN-M-43JF: 2019-04-24T15:18:56: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show routing vrf all' +++
          +show routing vrf all
          +
          +IP Route Table for VRF "default"
          +'*' denotes best ucast next-hop
          +'**' denotes best mcast next-hop
          +'[x/y]' denotes [preference/metric]
          +'%<string>' in via output denotes VRF <string>
          +
          +10.0.1.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, direct
          +10.0.1.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, local
          +10.0.2.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, direct
          +10.0.2.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, local
          +10.1.1.1/32, ubest/mbest: 2/0
          +    *via 10.0.1.1, Eth2/1, [110/41], 1d02h, ospf-1, intra
          +    *via 10.0.2.1, Eth2/2, [110/41], 1d02h, ospf-1, intra
          +10.2.2.2/32, ubest/mbest: 2/0, attached
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, local
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, direct
          +10.11.11.11/32, ubest/mbest: 1/0
          +    *via 10.1.1.1, [200/0], 00:00:08, bgp-65000, internal, tag 65000, 
          +10.22.22.22/32, ubest/mbest: 2/0, attached
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, local
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, direct
          +
          +nx-osv-1# 
          +522: JEAUBIN-M-43JF: 2019-04-24T15:18:56: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all' +++
          +show bgp vrf all all
          +
          +BGP routing table information for VRF default, address family IPv4 Unicast
          +BGP table version is 152, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +nx-osv-1# 
          +525: JEAUBIN-M-43JF: 2019-04-24T15:18:57: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show vrf' +++
          +show vrf
          +
          +VRF-Name                           VRF-ID State   Reason                        
          +default                                 1 Up      --                            
          +management                              2 Up      --                            
          +
          +nx-osv-1# 
          +528: JEAUBIN-M-43JF: 2019-04-24T15:18:57: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf management all neighbors' +++
          +show bgp vrf management all neighbors
          +
          +Unknown vrf management
          +
          +nx-osv-1# 
          +531: JEAUBIN-M-43JF: 2019-04-24T15:18:57: %GENIE-6-INFO: %[part=531.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>
          +532: JEAUBIN-M-43JF: 2019-04-24T15:18:57: %GENIE-6-INFO: %[part=531.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +533: JEAUBIN-M-43JF: 2019-04-24T15:18:57: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors' +++
          +show bgp vrf default all neighbors
          +
          +BGP neighbor is 10.1.1.1,  remote AS 65000, ibgp link, Peer index 1
          +  BGP version 4, remote router ID 10.1.1.1
          +  BGP state = Established, up for 00:00:10
          +  Using loopback0 as update source for this peer
          +  Last read 00:00:09, hold time = 180, keepalive interval is 60 seconds
          +  Last written 00:00:09, keepalive timer expiry due 00:00:50
          +  Received 25159 messages, 1 notifications, 0 bytes in queue
          +  Sent 22952 messages, 45 notifications, 0 bytes in queue
          +  Connections established 46, dropped 45
          +  Last reset by us 00:00:19, due to administratively shutdown
          +  Last reset by peer never, due to No error
          +
          +  Neighbor capabilities:
          +  Dynamic capability: advertised (mp, refresh, gr) 
          +  Dynamic capability (old): advertised 
          +  Route refresh capability (new): advertised received 
          +  Route refresh capability (old): advertised received 
          +  4-Byte AS capability: advertised received 
          +  Address family IPv4 Unicast: advertised received 
          +  Graceful Restart capability: advertised 
          +
          +  Graceful Restart Parameters:
          +  Address families advertised to peer:
          +    IPv4 Unicast  
          +  Address families received from peer:
          +  Forwarding state preserved by peer for:
          +  Restart time advertised to peer: 120 seconds
          +  Stale time for routes advertised by peer: 300 seconds
          +  Extended Next Hop Encoding Capability: advertised 
          +
          +  Message statistics:
          +                              Sent               Rcvd
          +  Opens:                        47                 46  
          +  Notifications:                45                  1  
          +  Updates:                     104                 92  
          +  Keepalives:                22756              25020  
          +  Route Refresh:                 0                  0  
          +  Capability:                    0                  0  
          +  Total:                     22952              25159  
          +  Total bytes:              436023             478140  
          +  Bytes in queue:                0                  0  
          +
          +  For address family: IPv4 Unicast
          +  BGP table version 152, neighbor version 152
          +  1 accepted paths consume 80 bytes of memory
          +  1 sent paths
          +  Third-party Nexthop will not be computed.
          +
          +  Local host: 10.2.2.2, Local port: 179
          +  Foreign host: 10.1.1.1, Foreign port: 35790
          +  fd = 60
          +
          +
          +nx-osv-1# 
          +538: JEAUBIN-M-43JF: 2019-04-24T15:18:57: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all summary' +++
          +show bgp vrf all all summary
          +
          +BGP summary information for VRF default, address family IPv4 Unicast
          +BGP router identifier 10.2.2.2, local AS number 65000
          +BGP table version is 152, IPv4 Unicast config peers 1, capable peers 1
          +2 network entries and 2 paths using 288 bytes of memory
          +BGP attribute entries [2/288], BGP AS path entries [0/0]
          +BGP community entries [0/0], BGP clusterlist entries [0/0]
          +
          +Neighbor        V    AS MsgRcvd MsgSent   TblVer  InQ OutQ Up/Down  State/PfxRcd
          +10.1.1.1        4 65000   25159   22952      152    0    0 00:00:10 1         
          +
          +BGP summary information for VRF default, address family IPv6 Unicast
          +
          +nx-osv-1# 
          +541: JEAUBIN-M-43JF: 2019-04-24T15:18:57: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 advertised-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 advertised-routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 152, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +545: JEAUBIN-M-43JF: 2019-04-24T15:18:58: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 152, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +549: JEAUBIN-M-43JF: 2019-04-24T15:18:58: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 received-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 received-routes
          +
          +
          +Inbound soft reconfiguration for IPv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MDT not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN VPLS not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN EVPN not enabled on 10.1.1.1
          +
          +nx-osv-1#
          +552: JEAUBIN-M-43JF: 2019-04-24T15:18:58: %GENIE-6-INFO: %[part=552.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>
          +553: JEAUBIN-M-43JF: 2019-04-24T15:18:58: %GENIE-6-INFO: %[part=552.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +554: JEAUBIN-M-43JF: 2019-04-24T15:18:58: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +555: JEAUBIN-M-43JF: 2019-04-24T15:18:58: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | Commands for learning feature 'Bgp'                                                                                                                |
          +556: JEAUBIN-M-43JF: 2019-04-24T15:18:58: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +557: JEAUBIN-M-43JF: 2019-04-24T15:18:58: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Parsed commands                                                                                                                                  |
          +558: JEAUBIN-M-43JF: 2019-04-24T15:18:58: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +559: JEAUBIN-M-43JF: 2019-04-24T15:18:58: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpProcessVrfAll'>                                                                              |
          +560: JEAUBIN-M-43JF: 2019-04-24T15:18:58: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllNextHopDatabase'>                                                                   |
          +561: JEAUBIN-M-43JF: 2019-04-24T15:18:58: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_routing.ShowRoutingVrfAll'>                                                                             |
          +562: JEAUBIN-M-43JF: 2019-04-24T15:18:58: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAll'>                                                                                  |
          +563: JEAUBIN-M-43JF: 2019-04-24T15:18:58: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_vrf.ShowVrf'>                                                                                           |
          +564: JEAUBIN-M-43JF: 2019-04-24T15:18:58: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'default'}                                              |
          +565: JEAUBIN-M-43JF: 2019-04-24T15:18:58: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllSummary'>                                                                           |
          +566: JEAUBIN-M-43JF: 2019-04-24T15:18:58: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsAdvertisedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}        |
          +567: JEAUBIN-M-43JF: 2019-04-24T15:18:58: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}                  |
          +568: JEAUBIN-M-43JF: 2019-04-24T15:18:58: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +569: JEAUBIN-M-43JF: 2019-04-24T15:18:58: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Commands with empty output                                                                                                                       |
          +570: JEAUBIN-M-43JF: 2019-04-24T15:18:58: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +571: JEAUBIN-M-43JF: 2019-04-24T15:18:58: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>                                                                                |
          +572: JEAUBIN-M-43JF: 2019-04-24T15:18:58: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>                                                                                 |
          +573: JEAUBIN-M-43JF: 2019-04-24T15:18:58: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>                                                               |
          +574: JEAUBIN-M-43JF: 2019-04-24T15:18:58: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'management'}                                           |
          +575: JEAUBIN-M-43JF: 2019-04-24T15:18:58: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}          |
          +576: JEAUBIN-M-43JF: 2019-04-24T15:18:58: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +577: JEAUBIN-M-43JF: 2019-04-24T15:18:58: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of section prerequisites is => PASSED
          +578: JEAUBIN-M-43JF: 2019-04-24T15:18:58: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section shut
          +579: JEAUBIN-M-43JF: 2019-04-24T15:18:58: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: config +++
          + config term
          +
          +Enter configuration commands, one per line.  End with CNTL/Z.
          +
          +nx-osv-1(config)# r
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + shut + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:01 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          578: JEAUBIN-M-43JF: 2019-04-24T15:18:58: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section shut
          +579: JEAUBIN-M-43JF: 2019-04-24T15:18:58: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: config +++
          + config term
          +
          +Enter configuration commands, one per line.  End with CNTL/Z.
          +
          +nx-osv-1(config)# router bgp 65000
          +
          +
          +nx-osv-1(config-router)# shutdown
          +
          +
          +nx-osv-1(config-router)# end
          +
          +
          +nx-osv-1# 
          +588: JEAUBIN-M-43JF: 2019-04-24T15:18:59: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of section shut is => PASSED
          +589: 
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + verify + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:03 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          589: JEAUBIN-M-43JF: 2019-04-24T15:18:59: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section verify
          +590: JEAUBIN-M-43JF: 2019-04-24T15:18:59: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          +show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Process ID                 : 8610
          +BGP Protocol Started, reason:  : configuration
          +BGP Protocol Tag               : 65000
          +BGP Protocol State             : Shutdown
          +BGP MMODE                      : Not Initialized
          +BGP Memory State               : OK
          +BGP asformat                   : asplain
          +
          +BGP attributes information
          +Number of attribute entries    : 2
          +HWM of attribute entries       : 2
          +Bytes used by entries          : 200
          +Entries pending delete         : 0
          +HWM of entries pending delete  : 0
          +BGP paths per attribute HWM    : 1
          +BGP AS path entries            : 0
          +Bytes used by AS path entries  : 0
          +
          +Information regarding configured VRFs:
          +
          +BGP Information for VRF default
          +VRF Id                         : 1
          +VRF state                      : UP
          +Router-ID                      : 10.2.2.2
          +Configured Router-ID           : 10.2.2.2
          +Confed-ID                      : 0
          +Cluster-ID                     : 0.0.0.0
          +No. of configured peers        : 1
          +No. of pending config peers    : 0
          +No. of established peers       : 0
          +VRF RD                         : Not configured
          +
          +    Information for address family IPv4 Unicast in VRF default
          +    Table Id                   : 1
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    1          0               2          2          1          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +    Information for address family IPv6 Unicast in VRF default
          +    Table Id                   : 80000001
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    0          0               0          0          0          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +nx-osv-1# 
          +594: JEAUBIN-M-43JF: 2019-04-24T15:18:59: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-session' +++
          +show running-config | inc peer-session
          +
          +
          +nx-osv-1# 
          +599: JEAUBIN-M-43JF: 2019-04-24T15:18:59: %GENIE-6-INFO: %[part=599.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>
          +600: JEAUBIN-M-43JF: 2019-04-24T15:18:59: %GENIE-6-INFO: %[part=599.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +601: JEAUBIN-M-43JF: 2019-04-24T15:18:59: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-policy' +++
          +show running-config | inc peer-policy
          +
          +
          +nx-osv-1# 
          +605: JEAUBIN-M-43JF: 2019-04-24T15:18:59: %GENIE-6-INFO: %[part=605.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>
          +606: JEAUBIN-M-43JF: 2019-04-24T15:18:59: %GENIE-6-INFO: %[part=605.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +607: JEAUBIN-M-43JF: 2019-04-24T15:18:59: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all dampening parameters' +++
          +show bgp vrf all all dampening parameters
          +
          +
          +nx-osv-1# 
          +610: JEAUBIN-M-43JF: 2019-04-24T15:19:00: %GENIE-6-INFO: %[part=610.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>
          +611: JEAUBIN-M-43JF: 2019-04-24T15:19:00: %GENIE-6-INFO: %[part=610.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +612: JEAUBIN-M-43JF: 2019-04-24T15:19:00: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all nexthop-database' +++
          +show bgp vrf all all nexthop-database
          +
          +
          +Next Hop table for VRF default, address family IPv4 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +
          +Nexthop: 0.0.0.0, Flags: 0x2, Refcount: 1, IGP cost: 0
          +IGP Route type: 0, IGP preference: 0
          +Nexthop is not-attached local unreachable not-labeled
          +Nexthop last resolved: never, using 0.0.0.0/0
          +Metric next advertise: Never
          +RNH epoch: 0
          +
          +Nexthop: 10.1.1.1, Flags: 0x1, Refcount: 1, IGP cost: 41
          +IGP Route type: 0, IGP preference: 110
          +Attached nexthop: 10.0.2.1, Interface: Ethernet2/2
          +Attached nexthop: 10.0.1.1, Interface: Ethernet2/1
          +Nexthop is not-attached not-local reachable not-labeled
          +Nexthop last resolved: 00:00:11, using 10.1.1.1/32
          +Metric next advertise: Never
          +RNH epoch: 1
          +IPv6 Next-hop table
          +
          +Next Hop table for VRF default, address family IPv6 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +IPv6 Next-hop table
          +
          +nx-osv-1# 
          +615: JEAUBIN-M-43JF: 2019-04-24T15:19:00: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show routing vrf all' +++
          +show routing vrf all
          +
          +IP Route Table for VRF "default"
          +'*' denotes best ucast next-hop
          +'**' denotes best mcast next-hop
          +'[x/y]' denotes [preference/metric]
          +'%<string>' in via output denotes VRF <string>
          +
          +10.0.1.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, direct
          +10.0.1.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, local
          +10.0.2.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, direct
          +10.0.2.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, local
          +10.1.1.1/32, ubest/mbest: 2/0
          +    *via 10.0.1.1, Eth2/1, [110/41], 1d02h, ospf-1, intra
          +    *via 10.0.2.1, Eth2/2, [110/41], 1d02h, ospf-1, intra
          +10.2.2.2/32, ubest/mbest: 2/0, attached
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, local
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, direct
          +10.11.11.11/32, ubest/mbest: 1/0
          +    *via 10.1.1.1, [200/0], 00:00:12, bgp-65000, internal, tag 65000, 
          +10.22.22.22/32, ubest/mbest: 2/0, attached
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, local
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, direct
          +
          +nx-osv-1# 
          +619: JEAUBIN-M-43JF: 2019-04-24T15:19:00: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all' +++
          +show bgp vrf all all
          +
          +BGP routing table information for VRF default, address family IPv4 Unicast
          +BGP table version is 152, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +nx-osv-1# 
          +622: JEAUBIN-M-43JF: 2019-04-24T15:19:00: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show vrf' +++
          +show vrf
          +
          +VRF-Name                           VRF-ID State   Reason                        
          +default                                 1 Up      --                            
          +management                              2 Up      --                            
          +
          +nx-osv-1# 
          +625: JEAUBIN-M-43JF: 2019-04-24T15:19:00: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf management all neighbors' +++
          +show bgp vrf management all neighbors
          +
          +Unknown vrf management
          +
          +nx-osv-1# 
          +628: JEAUBIN-M-43JF: 2019-04-24T15:19:01: %GENIE-6-INFO: %[part=628.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>
          +629: JEAUBIN-M-43JF: 2019-04-24T15:19:01: %GENIE-6-INFO: %[part=628.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +630: JEAUBIN-M-43JF: 2019-04-24T15:19:01: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors' +++
          +show bgp vrf default all neighbors
          +
          +BGP neighbor is 10.1.1.1,  remote AS 65000, ibgp link, Peer index 1
          +  BGP version 4, remote router ID 10.1.1.1
          +  BGP state = Closing, down for 00:00:02
          +  Using loopback0 as update source for this peer
          +  Last read 00:00:13, hold time = 180, keepalive interval is 60 seconds
          +  Last written 00:00:02, keepalive timer not running
          +  Received 25159 messages, 1 notifications, 0 bytes in queue
          +  Sent 22953 messages, 46 notifications, 0 bytes in queue
          +  Connections established 46, dropped 46
          +  Last reset by us 00:00:02, due to administratively shutdown
          +  Last reset by peer never, due to No error
          +
          +  Message statistics:
          +                              Sent               Rcvd
          +  Opens:                        47                 46  
          +  Notifications:                46                  1  
          +  Updates:                     104                 92  
          +  Keepalives:                22756              25020  
          +  Route Refresh:                 0                  0  
          +  Capability:                    0                  0  
          +  Total:                     22953              25159  
          +  Total bytes:              436044             478140  
          +  Bytes in queue:                0                  0  
          +
          +  For address family: IPv4 Unicast
          +  BGP table version 152, neighbor version 0
          +  0 accepted paths consume 0 bytes of memory
          +  0 sent paths
          +  Third-party Nexthop will not be computed.
          +
          +  No established BGP session with peer
          +
          +
          +nx-osv-1# 
          +634: JEAUBIN-M-43JF: 2019-04-24T15:19:01: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all summary' +++
          +show bgp vrf all all summary
          +
          +BGP summary information for VRF default, address family IPv4 Unicast
          +BGP router identifier 10.2.2.2, local AS number 65000
          +BGP table version is 152, IPv4 Unicast config peers 1, capable peers 0
          +2 network entries and 2 paths using 288 bytes of memory
          +BGP attribute entries [2/288], BGP AS path entries [0/0]
          +BGP community entries [0/0], BGP clusterlist entries [0/0]
          +
          +Neighbor        V    AS MsgRcvd MsgSent   TblVer  InQ OutQ Up/Down  State/PfxRcd
          +10.1.1.1        4 65000   25159   22953        0    0    0 00:00:02 Closing  
          +
          +BGP summary information for VRF default, address family IPv6 Unicast
          +
          +nx-osv-1# 
          +637: JEAUBIN-M-43JF: 2019-04-24T15:19:01: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 advertised-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 advertised-routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 152, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +641: JEAUBIN-M-43JF: 2019-04-24T15:19:01: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 152, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +645: JEAUBIN-M-43JF: 2019-04-24T15:19:01: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 received-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 received-routes
          +
          +
          +Inbound soft reconfiguration for IPv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MDT not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN VPLS not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN EVPN not enabled on 10.1.1.1
          +
          +nx-osv-1#
          +648: JEAUBIN-M-43JF: 2019-04-24T15:19:02: %GENIE-6-INFO: %[part=648.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>
          +649: JEAUBIN-M-43JF: 2019-04-24T15:19:02: %GENIE-6-INFO: %[part=648.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +650: JEAUBIN-M-43JF: 2019-04-24T15:19:02: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +651: JEAUBIN-M-43JF: 2019-04-24T15:19:02: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | Commands for learning feature 'Bgp'                                                                                                                |
          +652: JEAUBIN-M-43JF: 2019-04-24T15:19:02: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +653: JEAUBIN-M-43JF: 2019-04-24T15:19:02: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Parsed commands                                                                                                                                  |
          +654: JEAUBIN-M-43JF: 2019-04-24T15:19:02: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +655: JEAUBIN-M-43JF: 2019-04-24T15:19:02: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpProcessVrfAll'>                                                                              |
          +656: JEAUBIN-M-43JF: 2019-04-24T15:19:02: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllNextHopDatabase'>                                                                   |
          +657: JEAUBIN-M-43JF: 2019-04-24T15:19:02: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_routing.ShowRoutingVrfAll'>                                                                             |
          +658: JEAUBIN-M-43JF: 2019-04-24T15:19:02: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAll'>                                                                                  |
          +659: JEAUBIN-M-43JF: 2019-04-24T15:19:02: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_vrf.ShowVrf'>                                                                                           |
          +660: JEAUBIN-M-43JF: 2019-04-24T15:19:02: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'default'}                                              |
          +661: JEAUBIN-M-43JF: 2019-04-24T15:19:02: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllSummary'>                                                                           |
          +662: JEAUBIN-M-43JF: 2019-04-24T15:19:02: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsAdvertisedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}        |
          +663: JEAUBIN-M-43JF: 2019-04-24T15:19:02: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}                  |
          +664: JEAUBIN-M-43JF: 2019-04-24T15:19:02: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +665: JEAUBIN-M-43JF: 2019-04-24T15:19:02: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Commands with empty output                                                                                                                       |
          +666: JEAUBIN-M-43JF: 2019-04-24T15:19:02: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +667: JEAUBIN-M-43JF: 2019-04-24T15:19:02: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>                                                                                |
          +668: JEAUBIN-M-43JF: 2019-04-24T15:19:02: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>                                                                                 |
          +669: JEAUBIN-M-43JF: 2019-04-24T15:19:02: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>                                                               |
          +670: JEAUBIN-M-43JF: 2019-04-24T15:19:02: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'management'}                                           |
          +671: JEAUBIN-M-43JF: 2019-04-24T15:19:02: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}          |
          +672: JEAUBIN-M-43JF: 2019-04-24T15:19:02: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +673: JEAUBIN-M-43JF: 2019-04-24T15:19:02: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of section verify is => PASSED
          +674: JEAUBIN-M-43JF: 2019-04-24T15:19:02: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section unshut
          +675: JEAUBIN-M-43JF: 2019-04-24T15:19:02: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: config +++
          + config term
          +
          +Enter configuration commands, one per line.  End with CNTL/Z
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + unshut + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:00 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          674: JEAUBIN-M-43JF: 2019-04-24T15:19:02: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section unshut
          +675: JEAUBIN-M-43JF: 2019-04-24T15:19:02: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: config +++
          + config term
          +
          +Enter configuration commands, one per line.  End with CNTL/Z.
          +
          +nx-osv-1(config)# router bgp 65000
          +
          +
          +nx-osv-1(config-router)# no shutdown
          +
          +
          +nx-osv-1(config-router)# end
          +
          +
          +nx-osv-1# 
          +684: JEAUBIN-M-43JF: 2019-04-24T15:19:02: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of section unshut is => PASSED
          +685: 
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + verify_recover + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:04 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          685: JEAUBIN-M-43JF: 2019-04-24T15:19:02: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section verify_recover
          +686: JEAUBIN-M-43JF: 2019-04-24T15:19:02: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          +show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Process ID                 : 8610
          +BGP Protocol Started, reason:  : configuration
          +BGP Protocol Tag               : 65000
          +BGP Protocol State             : Running
          +BGP MMODE                      : Not Initialized
          +BGP Memory State               : OK
          +BGP asformat                   : asplain
          +
          +BGP attributes information
          +Number of attribute entries    : 2
          +HWM of attribute entries       : 2
          +Bytes used by entries          : 200
          +Entries pending delete         : 0
          +HWM of entries pending delete  : 0
          +BGP paths per attribute HWM    : 1
          +BGP AS path entries            : 0
          +Bytes used by AS path entries  : 0
          +
          +Information regarding configured VRFs:
          +
          +BGP Information for VRF default
          +VRF Id                         : 1
          +VRF state                      : UP
          +Router-ID                      : 10.2.2.2
          +Configured Router-ID           : 10.2.2.2
          +Confed-ID                      : 0
          +Cluster-ID                     : 0.0.0.0
          +No. of configured peers        : 1
          +No. of pending config peers    : 0
          +No. of established peers       : 0
          +VRF RD                         : Not configured
          +
          +    Information for address family IPv4 Unicast in VRF default
          +    Table Id                   : 1
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    1          0               2          2          1          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +    Information for address family IPv6 Unicast in VRF default
          +    Table Id                   : 80000001
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    0          0               0          0          0          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +nx-osv-1# 
          +690: JEAUBIN-M-43JF: 2019-04-24T15:19:02: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-session' +++
          +show running-config | inc peer-session
          +
          +
          +nx-osv-1# 
          +695: JEAUBIN-M-43JF: 2019-04-24T15:19:03: %GENIE-6-INFO: %[part=695.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>
          +696: JEAUBIN-M-43JF: 2019-04-24T15:19:03: %GENIE-6-INFO: %[part=695.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +697: JEAUBIN-M-43JF: 2019-04-24T15:19:03: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-policy' +++
          +show running-config | inc peer-policy
          +
          +
          +nx-osv-1# 
          +702: JEAUBIN-M-43JF: 2019-04-24T15:19:04: %GENIE-6-INFO: %[part=702.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>
          +703: JEAUBIN-M-43JF: 2019-04-24T15:19:04: %GENIE-6-INFO: %[part=702.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +704: JEAUBIN-M-43JF: 2019-04-24T15:19:04: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all dampening parameters' +++
          +show bgp vrf all all dampening parameters
          +
          +
          +nx-osv-1# 
          +707: JEAUBIN-M-43JF: 2019-04-24T15:19:04: %GENIE-6-INFO: %[part=707.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>
          +708: JEAUBIN-M-43JF: 2019-04-24T15:19:04: %GENIE-6-INFO: %[part=707.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +709: JEAUBIN-M-43JF: 2019-04-24T15:19:04: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all nexthop-database' +++
          +show bgp vrf all all nexthop-database
          +
          +
          +Next Hop table for VRF default, address family IPv4 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +
          +Nexthop: 0.0.0.0, Flags: 0x2, Refcount: 1, IGP cost: 0
          +IGP Route type: 0, IGP preference: 0
          +Nexthop is not-attached local unreachable not-labeled
          +Nexthop last resolved: never, using 0.0.0.0/0
          +Metric next advertise: Never
          +RNH epoch: 0
          +
          +Nexthop: 10.1.1.1, Flags: 0x1, Refcount: 1, IGP cost: 41
          +IGP Route type: 0, IGP preference: 110
          +Attached nexthop: 10.0.2.1, Interface: Ethernet2/2
          +Attached nexthop: 10.0.1.1, Interface: Ethernet2/1
          +Nexthop is not-attached not-local reachable not-labeled
          +Nexthop last resolved: 00:00:15, using 10.1.1.1/32
          +Metric next advertise: Never
          +RNH epoch: 1
          +IPv6 Next-hop table
          +
          +Next Hop table for VRF default, address family IPv6 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +IPv6 Next-hop table
          +
          +nx-osv-1# 
          +712: JEAUBIN-M-43JF: 2019-04-24T15:19:04: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show routing vrf all' +++
          +show routing vrf all
          +
          +IP Route Table for VRF "default"
          +'*' denotes best ucast next-hop
          +'**' denotes best mcast next-hop
          +'[x/y]' denotes [preference/metric]
          +'%<string>' in via output denotes VRF <string>
          +
          +10.0.1.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, direct
          +10.0.1.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, local
          +10.0.2.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, direct
          +10.0.2.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, local
          +10.1.1.1/32, ubest/mbest: 2/0
          +    *via 10.0.1.1, Eth2/1, [110/41], 1d02h, ospf-1, intra
          +    *via 10.0.2.1, Eth2/2, [110/41], 1d02h, ospf-1, intra
          +10.2.2.2/32, ubest/mbest: 2/0, attached
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, local
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, direct
          +10.22.22.22/32, ubest/mbest: 2/0, attached
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, local
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, direct
          +
          +nx-osv-1# 
          +715: JEAUBIN-M-43JF: 2019-04-24T15:19:04: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all' +++
          +show bgp vrf all all
          +
          +BGP routing table information for VRF default, address family IPv4 Unicast
          +BGP table version is 153, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +x i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +nx-osv-1# 
          +718: JEAUBIN-M-43JF: 2019-04-24T15:19:04: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show vrf' +++
          +show vrf
          +
          +VRF-Name                           VRF-ID State   Reason                        
          +default                                 1 Up      --                            
          +management                              2 Up      --                            
          +
          +nx-osv-1# 
          +721: JEAUBIN-M-43JF: 2019-04-24T15:19:05: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf management all neighbors' +++
          +show bgp vrf management all neighbors
          +
          +Unknown vrf management
          +
          +nx-osv-1# 
          +724: JEAUBIN-M-43JF: 2019-04-24T15:19:05: %GENIE-6-INFO: %[part=724.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>
          +725: JEAUBIN-M-43JF: 2019-04-24T15:19:05: %GENIE-6-INFO: %[part=724.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +726: JEAUBIN-M-43JF: 2019-04-24T15:19:05: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors' +++
          +show bgp vrf default all neighbors
          +
          +BGP neighbor is 10.1.1.1,  remote AS 65000, ibgp link, Peer index 1
          +  BGP version 4, remote router ID 0.0.0.0
          +  BGP state = Idle, down for 00:00:06, retry in 00:00:05
          +  Using loopback0 as update source for this peer
          +  Last read never, hold time = 180, keepalive interval is 60 seconds
          +  Last written never, keepalive timer not running
          +  Received 25159 messages, 1 notifications, 0 bytes in queue
          +  Sent 22953 messages, 46 notifications, 0 bytes in queue
          +  Connections established 46, dropped 46
          +  Connection attempts 0
          +  Last reset by us 00:00:06, due to administratively shutdown
          +  Last reset by peer never, due to No error
          +
          +  Message statistics:
          +                              Sent               Rcvd
          +  Opens:                        47                 46  
          +  Notifications:                46                  1  
          +  Updates:                     104                 92  
          +  Keepalives:                22756              25020  
          +  Route Refresh:                 0                  0  
          +  Capability:                    0                  0  
          +  Total:                     22953              25159  
          +  Total bytes:              436044             478140  
          +  Bytes in queue:                0                  0  
          +
          +  For address family: IPv4 Unicast
          +  BGP table version 153, neighbor version 0
          +  0 accepted paths consume 0 bytes of memory
          +  0 sent paths
          +  Third-party Nexthop will not be computed.
          +
          +  No established BGP session with peer
          +
          +
          +nx-osv-1# 
          +730: JEAUBIN-M-43JF: 2019-04-24T15:19:05: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all summary' +++
          +show bgp vrf all all summary
          +
          +BGP summary information for VRF default, address family IPv4 Unicast
          +BGP router identifier 10.2.2.2, local AS number 65000
          +BGP table version is 153, IPv4 Unicast config peers 1, capable peers 0
          +2 network entries and 2 paths using 288 bytes of memory
          +BGP attribute entries [2/288], BGP AS path entries [0/0]
          +BGP community entries [0/0], BGP clusterlist entries [0/0]
          +
          +Neighbor        V    AS MsgRcvd MsgSent   TblVer  InQ OutQ Up/Down  State/PfxRcd
          +10.1.1.1        4 65000   25159   22953        0    0    0 00:00:06 Idle     
          +
          +BGP summary information for VRF default, address family IPv6 Unicast
          +
          +nx-osv-1# 
          +733: JEAUBIN-M-43JF: 2019-04-24T15:19:05: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 advertised-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 advertised-routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 153, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +737: JEAUBIN-M-43JF: 2019-04-24T15:19:05: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 153, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +x i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +741: JEAUBIN-M-43JF: 2019-04-24T15:19:06: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 received-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 received-routes
          +
          +
          +Inbound soft reconfiguration for IPv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MDT not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN VPLS not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN EVPN not enabled on 10.1.1.1
          +
          +nx-osv-1#
          +744: JEAUBIN-M-43JF: 2019-04-24T15:19:06: %GENIE-6-INFO: %[part=744.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>
          +745: JEAUBIN-M-43JF: 2019-04-24T15:19:06: %GENIE-6-INFO: %[part=744.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +746: JEAUBIN-M-43JF: 2019-04-24T15:19:06: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +747: JEAUBIN-M-43JF: 2019-04-24T15:19:06: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | Commands for learning feature 'Bgp'                                                                                                                |
          +748: JEAUBIN-M-43JF: 2019-04-24T15:19:06: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +749: JEAUBIN-M-43JF: 2019-04-24T15:19:06: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Parsed commands                                                                                                                                  |
          +750: JEAUBIN-M-43JF: 2019-04-24T15:19:06: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +751: JEAUBIN-M-43JF: 2019-04-24T15:19:06: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpProcessVrfAll'>                                                                              |
          +752: JEAUBIN-M-43JF: 2019-04-24T15:19:06: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllNextHopDatabase'>                                                                   |
          +753: JEAUBIN-M-43JF: 2019-04-24T15:19:06: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_routing.ShowRoutingVrfAll'>                                                                             |
          +754: JEAUBIN-M-43JF: 2019-04-24T15:19:06: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAll'>                                                                                  |
          +755: JEAUBIN-M-43JF: 2019-04-24T15:19:06: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_vrf.ShowVrf'>                                                                                           |
          +756: JEAUBIN-M-43JF: 2019-04-24T15:19:06: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'default'}                                              |
          +757: JEAUBIN-M-43JF: 2019-04-24T15:19:06: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllSummary'>                                                                           |
          +758: JEAUBIN-M-43JF: 2019-04-24T15:19:06: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsAdvertisedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}        |
          +759: JEAUBIN-M-43JF: 2019-04-24T15:19:06: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}                  |
          +760: JEAUBIN-M-43JF: 2019-04-24T15:19:06: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +761: JEAUBIN-M-43JF: 2019-04-24T15:19:06: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Commands with empty output                                                                                                                       |
          +762: JEAUBIN-M-43JF: 2019-04-24T15:19:06: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +763: JEAUBIN-M-43JF: 2019-04-24T15:19:06: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>                                                                                |
          +764: JEAUBIN-M-43JF: 2019-04-24T15:19:06: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>                                                                                 |
          +765: JEAUBIN-M-43JF: 2019-04-24T15:19:06: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>                                                               |
          +766: JEAUBIN-M-43JF: 2019-04-24T15:19:06: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'management'}                                           |
          +767: JEAUBIN-M-43JF: 2019-04-24T15:19:06: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}          |
          +768: JEAUBIN-M-43JF: 2019-04-24T15:19:06: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +769: JEAUBIN-M-43JF: 2019-04-24T15:19:06: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of section verify_recover is => PASSED
          +770: JEAUBIN-M-43JF: 2019-04-24T15:19:06: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of testcase TriggerDemoShutNoShutBgpV2.uut.1 is => PASSED
          +771: JEAUBIN-M-43JF: 2019-04-24T15:19:06: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting testcase Verify_Bgp.uut.3
          +772: JEAUBIN-M-43
          +
          +
        • +
        +
        +
      • + + +
      +
      +
    • + + +
    • +
      + + arrow_drop_down + Verify_Bgp.uut.3 + + +
      + expand_more + expand_less +
      + PASSED + 0:00:16 +
      +
      + + + +
        + + + + +
      • +
        + + arrow_drop_down + verify + + +
        + expand_more + expand_less +
        + PASSED + 0:00:16 +
        +
        + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          772: JEAUBIN-M-43JF: 2019-04-24T15:19:06: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section verify
          +773: JEAUBIN-M-43JF: 2019-04-24T15:19:06: %GENIE-6-INFO: %[part=773.1/3][pid=23936][pname=Task-1]: +------------------------------------------------------------------------------+
          +774: JEAUBIN-M-43JF: 2019-04-24T15:19:06: %GENIE-6-INFO: %[part=773.2/3][pid=23936][pname=Task-1]: |                              1 out of 5 attempt                              |
          +775: JEAUBIN-M-43JF: 2019-04-24T15:19:06: %GENIE-6-INFO: %[part=773.3/3][pid=23936][pname=Task-1]: +------------------------------------------------------------------------------+
          +776: JEAUBIN-M-43JF: 2019-04-24T15:19:06: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          + show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Process ID                 : 8610
          +BGP Protocol Started, reason:  : configuration
          +BGP Protocol Tag               : 65000
          +BGP Protocol State             : Running
          +BGP MMODE                      : Not Initialized
          +BGP Memory State               : OK
          +BGP asformat                   : asplain
          +
          +BGP attributes information
          +Number of attribute entries    : 2
          +HWM of attribute entries       : 2
          +Bytes used by entries          : 200
          +Entries pending delete         : 0
          +HWM of entries pending delete  : 0
          +BGP paths per attribute HWM    : 1
          +BGP AS path entries            : 0
          +Bytes used by AS path entries  : 0
          +
          +Information regarding configured VRFs:
          +
          +BGP Information for VRF default
          +VRF Id                         : 1
          +VRF state                      : UP
          +Router-ID                      : 10.2.2.2
          +Configured Router-ID           : 10.2.2.2
          +Confed-ID                      : 0
          +Cluster-ID                     : 0.0.0.0
          +No. of configured peers        : 1
          +No. of pending config peers    : 0
          +No. of established peers       : 0
          +VRF RD                         : Not configured
          +
          +    Information for address family IPv4 Unicast in VRF default
          +    Table Id                   : 1
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    1          0               2          2          1          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +    Information for address family IPv6 Unicast in VRF default
          +    Table Id                   : 80000001
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    0          0               0          0          0          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +nx-osv-1# 
          +780: JEAUBIN-M-43JF: 2019-04-24T15:19:06: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-session' +++
          +show running-config | inc peer-session
          +
          +
          +nx-osv-1# 
          +785: JEAUBIN-M-43JF: 2019-04-24T15:19:06: %GENIE-6-INFO: %[part=785.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>
          +786: JEAUBIN-M-43JF: 2019-04-24T15:19:06: %GENIE-6-INFO: %[part=785.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +787: JEAUBIN-M-43JF: 2019-04-24T15:19:06: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-policy' +++
          +show running-config | inc peer-policy
          +
          +
          +nx-osv-1# 
          +792: JEAUBIN-M-43JF: 2019-04-24T15:19:07: %GENIE-6-INFO: %[part=792.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>
          +793: JEAUBIN-M-43JF: 2019-04-24T15:19:07: %GENIE-6-INFO: %[part=792.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +794: JEAUBIN-M-43JF: 2019-04-24T15:19:07: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all dampening parameters' +++
          +show bgp vrf all all dampening parameters
          +
          +
          +nx-osv-1# 
          +797: JEAUBIN-M-43JF: 2019-04-24T15:19:07: %GENIE-6-INFO: %[part=797.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>
          +798: JEAUBIN-M-43JF: 2019-04-24T15:19:07: %GENIE-6-INFO: %[part=797.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +799: JEAUBIN-M-43JF: 2019-04-24T15:19:07: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all nexthop-database' +++
          +show bgp vrf all all nexthop-database
          +
          +
          +Next Hop table for VRF default, address family IPv4 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +
          +Nexthop: 0.0.0.0, Flags: 0x2, Refcount: 1, IGP cost: 0
          +IGP Route type: 0, IGP preference: 0
          +Nexthop is not-attached local unreachable not-labeled
          +Nexthop last resolved: never, using 0.0.0.0/0
          +Metric next advertise: Never
          +RNH epoch: 0
          +
          +Nexthop: 10.1.1.1, Flags: 0x1, Refcount: 1, IGP cost: 41
          +IGP Route type: 0, IGP preference: 110
          +Attached nexthop: 10.0.2.1, Interface: Ethernet2/2
          +Attached nexthop: 10.0.1.1, Interface: Ethernet2/1
          +Nexthop is not-attached not-local reachable not-labeled
          +Nexthop last resolved: 00:00:18, using 10.1.1.1/32
          +Metric next advertise: Never
          +RNH epoch: 1
          +IPv6 Next-hop table
          +
          +Next Hop table for VRF default, address family IPv6 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +IPv6 Next-hop table
          +
          +nx-osv-1# 
          +802: JEAUBIN-M-43JF: 2019-04-24T15:19:07: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show routing vrf all' +++
          +show routing vrf all
          +
          +IP Route Table for VRF "default"
          +'*' denotes best ucast next-hop
          +'**' denotes best mcast next-hop
          +'[x/y]' denotes [preference/metric]
          +'%<string>' in via output denotes VRF <string>
          +
          +10.0.1.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, direct
          +10.0.1.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, local
          +10.0.2.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, direct
          +10.0.2.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, local
          +10.1.1.1/32, ubest/mbest: 2/0
          +    *via 10.0.1.1, Eth2/1, [110/41], 1d02h, ospf-1, intra
          +    *via 10.0.2.1, Eth2/2, [110/41], 1d02h, ospf-1, intra
          +10.2.2.2/32, ubest/mbest: 2/0, attached
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, local
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, direct
          +10.22.22.22/32, ubest/mbest: 2/0, attached
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, local
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, direct
          +
          +nx-osv-1# 
          +805: JEAUBIN-M-43JF: 2019-04-24T15:19:07: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all' +++
          +show bgp vrf all all
          +
          +BGP routing table information for VRF default, address family IPv4 Unicast
          +BGP table version is 153, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +x i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +nx-osv-1# 
          +808: JEAUBIN-M-43JF: 2019-04-24T15:19:08: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show vrf' +++
          +show vrf
          +
          +VRF-Name                           VRF-ID State   Reason                        
          +default                                 1 Up      --                            
          +management                              2 Up      --                            
          +
          +nx-osv-1# 
          +811: JEAUBIN-M-43JF: 2019-04-24T15:19:08: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf management all neighbors' +++
          +show bgp vrf management all neighbors
          +
          +Unknown vrf management
          +
          +nx-osv-1# 
          +814: JEAUBIN-M-43JF: 2019-04-24T15:19:08: %GENIE-6-INFO: %[part=814.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>
          +815: JEAUBIN-M-43JF: 2019-04-24T15:19:08: %GENIE-6-INFO: %[part=814.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +816: JEAUBIN-M-43JF: 2019-04-24T15:19:08: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors' +++
          +show bgp vrf default all neighbors
          +
          +BGP neighbor is 10.1.1.1,  remote AS 65000, ibgp link, Peer index 1
          +  BGP version 4, remote router ID 0.0.0.0
          +  BGP state = Idle, down for 00:00:09, retry in 00:00:02
          +  Using loopback0 as update source for this peer
          +  Last read never, hold time = 180, keepalive interval is 60 seconds
          +  Last written never, keepalive timer not running
          +  Received 25159 messages, 1 notifications, 0 bytes in queue
          +  Sent 22953 messages, 46 notifications, 0 bytes in queue
          +  Connections established 46, dropped 46
          +  Connection attempts 0
          +  Last reset by us 00:00:09, due to administratively shutdown
          +  Last reset by peer never, due to No error
          +
          +  Message statistics:
          +                              Sent               Rcvd
          +  Opens:                        47                 46  
          +  Notifications:                46                  1  
          +  Updates:                     104                 92  
          +  Keepalives:                22756              25020  
          +  Route Refresh:                 0                  0  
          +  Capability:                    0                  0  
          +  Total:                     22953              25159  
          +  Total bytes:              436044             478140  
          +  Bytes in queue:                0                  0  
          +
          +  For address family: IPv4 Unicast
          +  BGP table version 153, neighbor version 0
          +  0 accepted paths consume 0 bytes of memory
          +  0 sent paths
          +  Third-party Nexthop will not be computed.
          +
          +  No established BGP session with peer
          +
          +
          +nx-osv-1# 
          +820: JEAUBIN-M-43JF: 2019-04-24T15:19:08: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all summary' +++
          +show bgp vrf all all summary
          +
          +BGP summary information for VRF default, address family IPv4 Unicast
          +BGP router identifier 10.2.2.2, local AS number 65000
          +BGP table version is 153, IPv4 Unicast config peers 1, capable peers 0
          +1 network entries and 1 paths using 144 bytes of memory
          +BGP attribute entries [1/144], BGP AS path entries [0/0]
          +BGP community entries [0/0], BGP clusterlist entries [0/0]
          +
          +Neighbor        V    AS MsgRcvd MsgSent   TblVer  InQ OutQ Up/Down  State/PfxRcd
          +10.1.1.1        4 65000   25159   22953        0    0    0 00:00:09 Idle     
          +
          +BGP summary information for VRF default, address family IPv6 Unicast
          +
          +nx-osv-1# 
          +823: JEAUBIN-M-43JF: 2019-04-24T15:19:08: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 advertised-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 advertised-routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 153, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +827: JEAUBIN-M-43JF: 2019-04-24T15:19:09: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 153, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +831: JEAUBIN-M-43JF: 2019-04-24T15:19:09: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 received-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 received-routes
          +
          +
          +Inbound soft reconfiguration for IPv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MDT not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN VPLS not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN EVPN not enabled on 10.1.1.1
          +
          +nx-osv-1#
          +834: JEAUBIN-M-43JF: 2019-04-24T15:19:09: %GENIE-6-INFO: %[part=834.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>
          +835: JEAUBIN-M-43JF: 2019-04-24T15:19:09: %GENIE-6-INFO: %[part=834.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +836: JEAUBIN-M-43JF: 2019-04-24T15:19:09: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +837: JEAUBIN-M-43JF: 2019-04-24T15:19:09: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | Commands for learning feature 'Bgp'                                                                                                                |
          +838: JEAUBIN-M-43JF: 2019-04-24T15:19:09: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +839: JEAUBIN-M-43JF: 2019-04-24T15:19:09: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Parsed commands                                                                                                                                  |
          +840: JEAUBIN-M-43JF: 2019-04-24T15:19:09: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +841: JEAUBIN-M-43JF: 2019-04-24T15:19:09: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpProcessVrfAll'>                                                                              |
          +842: JEAUBIN-M-43JF: 2019-04-24T15:19:09: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllNextHopDatabase'>                                                                   |
          +843: JEAUBIN-M-43JF: 2019-04-24T15:19:09: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_routing.ShowRoutingVrfAll'>                                                                             |
          +844: JEAUBIN-M-43JF: 2019-04-24T15:19:09: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAll'>                                                                                  |
          +845: JEAUBIN-M-43JF: 2019-04-24T15:19:09: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_vrf.ShowVrf'>                                                                                           |
          +846: JEAUBIN-M-43JF: 2019-04-24T15:19:09: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'default'}                                              |
          +847: JEAUBIN-M-43JF: 2019-04-24T15:19:09: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllSummary'>                                                                           |
          +848: JEAUBIN-M-43JF: 2019-04-24T15:19:09: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsAdvertisedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}        |
          +849: JEAUBIN-M-43JF: 2019-04-24T15:19:09: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}                  |
          +850: JEAUBIN-M-43JF: 2019-04-24T15:19:09: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +851: JEAUBIN-M-43JF: 2019-04-24T15:19:09: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Commands with empty output                                                                                                                       |
          +852: JEAUBIN-M-43JF: 2019-04-24T15:19:09: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +853: JEAUBIN-M-43JF: 2019-04-24T15:19:09: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>                                                                                |
          +854: JEAUBIN-M-43JF: 2019-04-24T15:19:09: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>                                                                                 |
          +855: JEAUBIN-M-43JF: 2019-04-24T15:19:09: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>                                                               |
          +856: JEAUBIN-M-43JF: 2019-04-24T15:19:09: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'management'}                                           |
          +857: JEAUBIN-M-43JF: 2019-04-24T15:19:09: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}          |
          +858: JEAUBIN-M-43JF: 2019-04-24T15:19:09: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +859: JEAUBIN-M-43JF: 2019-04-24T15:19:09: %GENIE-6-INFO: %[part=859.1/2][pid=23936][pname=Task-1]: Comparing current snapshot to initial snapshot
          +860: JEAUBIN-M-43JF: 2019-04-24T15:19:09: %GENIE-6-INFO: %[part=859.2/2][pid=23936][pname=Task-1]: Excluding these keys ['if_handle', 'keepalives', 'last_reset', 'reset_reason', 'foreign_port', 'local_port', 'msg_rcvd', 'msg_sent', 'up_down', 'bgp_table_version', 'routing_table_version', 'tbl_ver', 'table_version', 'memory_usage', 'updates', 'mss', 'total', 'total_bytes', 'up_time', 'bgp_negotiated_keepalive_timers', 'hold_time', 'keepalive_interval', 'sent', 'received', 'status_codes', 'holdtime', 'router_id', 'connections_dropped', 'connections_established', 'advertised', 'prefixes', 'routes', 'state_pfxrcd']
          +861: JEAUBIN-M-43JF: 2019-04-24T15:19:09: %GENIE-3-ERROR: %[pid=23936][pname=Task-1]: Retaking snapshot for the verification as the comparison with original one failed
          +862: JEAUBIN-M-43JF: 2019-04-24T15:19:19: %GENIE-6-INFO: %[part=862.1/3][pid=23936][pname=Task-1]: +------------------------------------------------------------------------------+
          +863: JEAUBIN-M-43JF: 2019-04-24T15:19:19: %GENIE-6-INFO: %[part=862.2/3][pid=23936][pname=Task-1]: |                              2 out of 5 attempt                              |
          +864: JEAUBIN-M-43JF: 2019-04-24T15:19:19: %GENIE-6-INFO: %[part=862.3/3][pid=23936][pname=Task-1]: +------------------------------------------------------------------------------+
          +865: JEAUBIN-M-43JF: 2019-04-24T15:19:19: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          + show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Process ID                 : 8610
          +BGP Protocol Started, reason:  : configuration
          +BGP Protocol Tag               : 65000
          +BGP Protocol State             : Running
          +BGP MMODE                      : Not Initialized
          +BGP Memory State               : OK
          +BGP asformat                   : asplain
          +
          +BGP attributes information
          +Number of attribute entries    : 2
          +HWM of attribute entries       : 2
          +Bytes used by entries          : 200
          +Entries pending delete         : 0
          +HWM of entries pending delete  : 0
          +BGP paths per attribute HWM    : 1
          +BGP AS path entries            : 0
          +Bytes used by AS path entries  : 0
          +
          +Information regarding configured VRFs:
          +
          +BGP Information for VRF default
          +VRF Id                         : 1
          +VRF state                      : UP
          +Router-ID                      : 10.2.2.2
          +Configured Router-ID           : 10.2.2.2
          +Confed-ID                      : 0
          +Cluster-ID                     : 0.0.0.0
          +No. of configured peers        : 1
          +No. of pending config peers    : 0
          +No. of established peers       : 1
          +VRF RD                         : Not configured
          +
          +    Information for address family IPv4 Unicast in VRF default
          +    Table Id                   : 1
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    1          1               2          2          1          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +    Information for address family IPv6 Unicast in VRF default
          +    Table Id                   : 80000001
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    0          0               0          0          0          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +nx-osv-1# 
          +870: JEAUBIN-M-43JF: 2019-04-24T15:19:19: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-session' +++
          +show running-config | inc peer-session
          +
          +
          +nx-osv-1# 
          +875: JEAUBIN-M-43JF: 2019-04-24T15:19:20: %GENIE-6-INFO: %[part=875.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>
          +876: JEAUBIN-M-43JF: 2019-04-24T15:19:20: %GENIE-6-INFO: %[part=875.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +877: JEAUBIN-M-43JF: 2019-04-24T15:19:20: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-policy' +++
          +show running-config | inc peer-policy
          +
          +
          +nx-osv-1# 
          +882: JEAUBIN-M-43JF: 2019-04-24T15:19:20: %GENIE-6-INFO: %[part=882.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>
          +883: JEAUBIN-M-43JF: 2019-04-24T15:19:20: %GENIE-6-INFO: %[part=882.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +884: JEAUBIN-M-43JF: 2019-04-24T15:19:20: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all dampening parameters' +++
          +show bgp vrf all all dampening parameters
          +
          +
          +nx-osv-1# 
          +887: JEAUBIN-M-43JF: 2019-04-24T15:19:20: %GENIE-6-INFO: %[part=887.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>
          +888: JEAUBIN-M-43JF: 2019-04-24T15:19:20: %GENIE-6-INFO: %[part=887.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +889: JEAUBIN-M-43JF: 2019-04-24T15:19:20: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all nexthop-database' +++
          +show bgp vrf all all nexthop-database
          +
          +
          +Next Hop table for VRF default, address family IPv4 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +
          +Nexthop: 0.0.0.0, Flags: 0x2, Refcount: 1, IGP cost: 0
          +IGP Route type: 0, IGP preference: 0
          +Nexthop is not-attached local unreachable not-labeled
          +Nexthop last resolved: never, using 0.0.0.0/0
          +Metric next advertise: Never
          +RNH epoch: 0
          +
          +Nexthop: 10.1.1.1, Flags: 0x1, Refcount: 1, IGP cost: 41
          +IGP Route type: 0, IGP preference: 110
          +Attached nexthop: 10.0.2.1, Interface: Ethernet2/2
          +Attached nexthop: 10.0.1.1, Interface: Ethernet2/1
          +Nexthop is not-attached not-local reachable not-labeled
          +Nexthop last resolved: 00:00:01, using 10.1.1.1/32
          +Metric next advertise: Never
          +RNH epoch: 1
          +IPv6 Next-hop table
          +
          +Next Hop table for VRF default, address family IPv6 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +IPv6 Next-hop table
          +
          +nx-osv-1# 
          +892: JEAUBIN-M-43JF: 2019-04-24T15:19:20: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show routing vrf all' +++
          +show routing vrf all
          +
          +IP Route Table for VRF "default"
          +'*' denotes best ucast next-hop
          +'**' denotes best mcast next-hop
          +'[x/y]' denotes [preference/metric]
          +'%<string>' in via output denotes VRF <string>
          +
          +10.0.1.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, direct
          +10.0.1.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, local
          +10.0.2.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, direct
          +10.0.2.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, local
          +10.1.1.1/32, ubest/mbest: 2/0
          +    *via 10.0.1.1, Eth2/1, [110/41], 1d02h, ospf-1, intra
          +    *via 10.0.2.1, Eth2/2, [110/41], 1d02h, ospf-1, intra
          +10.2.2.2/32, ubest/mbest: 2/0, attached
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, local
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, direct
          +10.11.11.11/32, ubest/mbest: 1/0
          +    *via 10.1.1.1, [200/0], 00:00:02, bgp-65000, internal, tag 65000, 
          +10.22.22.22/32, ubest/mbest: 2/0, attached
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, local
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, direct
          +
          +nx-osv-1# 
          +896: JEAUBIN-M-43JF: 2019-04-24T15:19:21: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all' +++
          +show bgp vrf all all
          +
          +BGP routing table information for VRF default, address family IPv4 Unicast
          +BGP table version is 156, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +nx-osv-1# 
          +899: JEAUBIN-M-43JF: 2019-04-24T15:19:21: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show vrf' +++
          +show vrf
          +
          +VRF-Name                           VRF-ID State   Reason                        
          +default                                 1 Up      --                            
          +management                              2 Up      --                            
          +
          +nx-osv-1# 
          +902: JEAUBIN-M-43JF: 2019-04-24T15:19:21: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf management all neighbors' +++
          +show bgp vrf management all neighbors
          +
          +Unknown vrf management
          +
          +nx-osv-1# 
          +905: JEAUBIN-M-43JF: 2019-04-24T15:19:21: %GENIE-6-INFO: %[part=905.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>
          +906: JEAUBIN-M-43JF: 2019-04-24T15:19:21: %GENIE-6-INFO: %[part=905.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +907: JEAUBIN-M-43JF: 2019-04-24T15:19:21: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors' +++
          +show bgp vrf default all neighbors
          +
          +BGP neighbor is 10.1.1.1,  remote AS 65000, ibgp link, Peer index 1
          +  BGP version 4, remote router ID 10.1.1.1
          +  BGP state = Established, up for 00:00:10
          +  Using loopback0 as update source for this peer
          +  Last read 00:00:10, hold time = 180, keepalive interval is 60 seconds
          +  Last written 00:00:09, keepalive timer expiry due 00:00:50
          +  Received 25164 messages, 1 notifications, 0 bytes in queue
          +  Sent 22958 messages, 46 notifications, 0 bytes in queue
          +  Connections established 47, dropped 46
          +  Last reset by us 00:00:22, due to administratively shutdown
          +  Last reset by peer never, due to No error
          +
          +  Neighbor capabilities:
          +  Dynamic capability: advertised (mp, refresh, gr) 
          +  Dynamic capability (old): advertised 
          +  Route refresh capability (new): advertised received 
          +  Route refresh capability (old): advertised received 
          +  4-Byte AS capability: advertised received 
          +  Address family IPv4 Unicast: advertised received 
          +  Graceful Restart capability: advertised 
          +
          +  Graceful Restart Parameters:
          +  Address families advertised to peer:
          +    IPv4 Unicast  
          +  Address families received from peer:
          +  Forwarding state preserved by peer for:
          +  Restart time advertised to peer: 120 seconds
          +  Stale time for routes advertised by peer: 300 seconds
          +  Extended Next Hop Encoding Capability: advertised 
          +
          +  Message statistics:
          +                              Sent               Rcvd
          +  Opens:                        48                 47  
          +  Notifications:                46                  1  
          +  Updates:                     106                 94  
          +  Keepalives:                22758              25022  
          +  Route Refresh:                 0                  0  
          +  Capability:                    0                  0  
          +  Total:                     22958              25164  
          +  Total bytes:              436135             478238  
          +  Bytes in queue:                0                  0  
          +
          +  For address family: IPv4 Unicast
          +  BGP table version 156, neighbor version 156
          +  1 accepted paths consume 80 bytes of memory
          +  1 sent paths
          +  Third-party Nexthop will not be computed.
          +
          +  Local host: 10.2.2.2, Local port: 179
          +  Foreign host: 10.1.1.1, Foreign port: 29338
          +  fd = 60
          +
          +
          +nx-osv-1# 
          +911: JEAUBIN-M-43JF: 2019-04-24T15:19:21: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all summary' +++
          +show bgp vrf all all summary
          +
          +BGP summary information for VRF default, address family IPv4 Unicast
          +BGP router identifier 10.2.2.2, local AS number 65000
          +BGP table version is 156, IPv4 Unicast config peers 1, capable peers 1
          +2 network entries and 2 paths using 288 bytes of memory
          +BGP attribute entries [2/288], BGP AS path entries [0/0]
          +BGP community entries [0/0], BGP clusterlist entries [0/0]
          +
          +Neighbor        V    AS MsgRcvd MsgSent   TblVer  InQ OutQ Up/Down  State/PfxRcd
          +10.1.1.1        4 65000   25164   22958      156    0    0 00:00:11 1         
          +
          +BGP summary information for VRF default, address family IPv6 Unicast
          +
          +nx-osv-1# 
          +914: JEAUBIN-M-43JF: 2019-04-24T15:19:22: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 advertised-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 advertised-routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 156, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +918: JEAUBIN-M-43JF: 2019-04-24T15:19:22: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 156, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +922: JEAUBIN-M-43JF: 2019-04-24T15:19:22: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 received-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 received-routes
          +
          +
          +Inbound soft reconfiguration for IPv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MDT not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN VPLS not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN EVPN not enabled on 10.1.1.1
          +
          +nx-osv-1#
          +925: JEAUBIN-M-43JF: 2019-04-24T15:19:22: %GENIE-6-INFO: %[part=925.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>
          +926: JEAUBIN-M-43JF: 2019-04-24T15:19:22: %GENIE-6-INFO: %[part=925.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +927: JEAUBIN-M-43JF: 2019-04-24T15:19:22: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +928: JEAUBIN-M-43JF: 2019-04-24T15:19:22: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | Commands for learning feature 'Bgp'                                                                                                                |
          +929: JEAUBIN-M-43JF: 2019-04-24T15:19:22: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +930: JEAUBIN-M-43JF: 2019-04-24T15:19:22: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Parsed commands                                                                                                                                  |
          +931: JEAUBIN-M-43JF: 2019-04-24T15:19:22: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +932: JEAUBIN-M-43JF: 2019-04-24T15:19:22: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpProcessVrfAll'>                                                                              |
          +933: JEAUBIN-M-43JF: 2019-04-24T15:19:22: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllNextHopDatabase'>                                                                   |
          +934: JEAUBIN-M-43JF: 2019-04-24T15:19:22: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_routing.ShowRoutingVrfAll'>                                                                             |
          +935: JEAUBIN-M-43JF: 2019-04-24T15:19:22: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAll'>                                                                                  |
          +936: JEAUBIN-M-43JF: 2019-04-24T15:19:22: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_vrf.ShowVrf'>                                                                                           |
          +937: JEAUBIN-M-43JF: 2019-04-24T15:19:22: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'default'}                                              |
          +938: JEAUBIN-M-43JF: 2019-04-24T15:19:22: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllSummary'>                                                                           |
          +939: JEAUBIN-M-43JF: 2019-04-24T15:19:22: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsAdvertisedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}        |
          +940: JEAUBIN-M-43JF: 2019-04-24T15:19:22: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}                  |
          +941: JEAUBIN-M-43JF: 2019-04-24T15:19:22: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +942: JEAUBIN-M-43JF: 2019-04-24T15:19:22: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Commands with empty output                                                                                                                       |
          +943: JEAUBIN-M-43JF: 2019-04-24T15:19:22: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +944: JEAUBIN-M-43JF: 2019-04-24T15:19:22: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>                                                                                |
          +945: JEAUBIN-M-43JF: 2019-04-24T15:19:22: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>                                                                                 |
          +946: JEAUBIN-M-43JF: 2019-04-24T15:19:22: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>                                                               |
          +947: JEAUBIN-M-43JF: 2019-04-24T15:19:22: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'management'}                                           |
          +948: JEAUBIN-M-43JF: 2019-04-24T15:19:22: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}          |
          +949: JEAUBIN-M-43JF: 2019-04-24T15:19:22: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +950: JEAUBIN-M-43JF: 2019-04-24T15:19:22: %GENIE-6-INFO: %[part=950.1/2][pid=23936][pname=Task-1]: Comparing current snapshot to initial snapshot
          +951: JEAUBIN-M-43JF: 2019-04-24T15:19:22: %GENIE-6-INFO: %[part=950.2/2][pid=23936][pname=Task-1]: Excluding these keys ['if_handle', 'keepalives', 'last_reset', 'reset_reason', 'foreign_port', 'local_port', 'msg_rcvd', 'msg_sent', 'up_down', 'bgp_table_version', 'routing_table_version', 'tbl_ver', 'table_version', 'memory_usage', 'updates', 'mss', 'total', 'total_bytes', 'up_time', 'bgp_negotiated_keepalive_timers', 'hold_time', 'keepalive_interval', 'sent', 'received', 'status_codes', 'holdtime', 'router_id', 'connections_dropped', 'connections_established', 'advertised', 'prefixes', 'routes', 'state_pfxrcd']
          +952: JEAUBIN-M-43JF: 2019-04-24T15:19:22: %GENIE-6-INFO: %[pid=23936][pname=Task-1]: Snapshot is same as initial snapshot
          +953: JEAUBIN-M-43JF: 2019-04-24T15:19:22: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of section verify is => PASSED
          +954: JEAUBIN-M-43JF: 2019-04-24T15:19:22: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of testcase Verify_Bgp.uut.3 is => PASSED
          +955: JEAUBIN-M-43JF: 2019-04-24T15:19:22: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting testcase TriggerDemoShutNoShutBgpV2.uut.2
          +956: JEAUBIN-M-43JF: 2019-04-24T15:19:22: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section prerequisites
          +957: JEAUBIN-M-43JF: 2019-04-24T15:19:22: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          + show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Process I
          +
          +
        • +
        +
        +
      • + + +
      +
      +
    • + + +
    • +
      + + arrow_drop_down + TriggerDemoShutNoShutBgpV2.uut.2 + + +
      + expand_more + expand_less +
      + PASSED + 0:00:11 +
      +
      + + + +
        + + + + +
      • +
        + + arrow_drop_down + prerequisites + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:03 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          956: JEAUBIN-M-43JF: 2019-04-24T15:19:22: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section prerequisites
          +957: JEAUBIN-M-43JF: 2019-04-24T15:19:22: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          + show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Process ID                 : 8610
          +BGP Protocol Started, reason:  : configuration
          +BGP Protocol Tag               : 65000
          +BGP Protocol State             : Running
          +BGP MMODE                      : Not Initialized
          +BGP Memory State               : OK
          +BGP asformat                   : asplain
          +
          +BGP attributes information
          +Number of attribute entries    : 2
          +HWM of attribute entries       : 2
          +Bytes used by entries          : 200
          +Entries pending delete         : 0
          +HWM of entries pending delete  : 0
          +BGP paths per attribute HWM    : 1
          +BGP AS path entries            : 0
          +Bytes used by AS path entries  : 0
          +
          +Information regarding configured VRFs:
          +
          +BGP Information for VRF default
          +VRF Id                         : 1
          +VRF state                      : UP
          +Router-ID                      : 10.2.2.2
          +Configured Router-ID           : 10.2.2.2
          +Confed-ID                      : 0
          +Cluster-ID                     : 0.0.0.0
          +No. of configured peers        : 1
          +No. of pending config peers    : 0
          +No. of established peers       : 1
          +VRF RD                         : Not configured
          +
          +    Information for address family IPv4 Unicast in VRF default
          +    Table Id                   : 1
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    1          1               2          2          1          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +    Information for address family IPv6 Unicast in VRF default
          +    Table Id                   : 80000001
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    0          0               0          0          0          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +nx-osv-1# 
          +963: JEAUBIN-M-43JF: 2019-04-24T15:19:22: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-session' +++
          +show running-config | inc peer-session
          +
          +
          +nx-osv-1# 
          +968: JEAUBIN-M-43JF: 2019-04-24T15:19:23: %GENIE-6-INFO: %[part=968.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>
          +969: JEAUBIN-M-43JF: 2019-04-24T15:19:23: %GENIE-6-INFO: %[part=968.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +970: JEAUBIN-M-43JF: 2019-04-24T15:19:23: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-policy' +++
          +show running-config | inc peer-policy
          +
          +
          +nx-osv-1# 
          +974: JEAUBIN-M-43JF: 2019-04-24T15:19:23: %GENIE-6-INFO: %[part=974.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>
          +975: JEAUBIN-M-43JF: 2019-04-24T15:19:23: %GENIE-6-INFO: %[part=974.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +976: JEAUBIN-M-43JF: 2019-04-24T15:19:23: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all dampening parameters' +++
          +show bgp vrf all all dampening parameters
          +
          +
          +nx-osv-1# 
          +979: JEAUBIN-M-43JF: 2019-04-24T15:19:23: %GENIE-6-INFO: %[part=979.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>
          +980: JEAUBIN-M-43JF: 2019-04-24T15:19:23: %GENIE-6-INFO: %[part=979.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +981: JEAUBIN-M-43JF: 2019-04-24T15:19:23: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all nexthop-database' +++
          +show bgp vrf all all nexthop-database
          +
          +
          +Next Hop table for VRF default, address family IPv4 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +
          +Nexthop: 0.0.0.0, Flags: 0x2, Refcount: 1, IGP cost: 0
          +IGP Route type: 0, IGP preference: 0
          +Nexthop is not-attached local unreachable not-labeled
          +Nexthop last resolved: never, using 0.0.0.0/0
          +Metric next advertise: Never
          +RNH epoch: 0
          +
          +Nexthop: 10.1.1.1, Flags: 0x1, Refcount: 1, IGP cost: 41
          +IGP Route type: 0, IGP preference: 110
          +Attached nexthop: 10.0.2.1, Interface: Ethernet2/2
          +Attached nexthop: 10.0.1.1, Interface: Ethernet2/1
          +Nexthop is not-attached not-local reachable not-labeled
          +Nexthop last resolved: 00:00:05, using 10.1.1.1/32
          +Metric next advertise: Never
          +RNH epoch: 1
          +IPv6 Next-hop table
          +
          +Next Hop table for VRF default, address family IPv6 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +IPv6 Next-hop table
          +
          +nx-osv-1# 
          +984: JEAUBIN-M-43JF: 2019-04-24T15:19:23: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show routing vrf all' +++
          +show routing vrf all
          +
          +IP Route Table for VRF "default"
          +'*' denotes best ucast next-hop
          +'**' denotes best mcast next-hop
          +'[x/y]' denotes [preference/metric]
          +'%<string>' in via output denotes VRF <string>
          +
          +10.0.1.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, direct
          +10.0.1.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, local
          +10.0.2.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, direct
          +10.0.2.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, local
          +10.1.1.1/32, ubest/mbest: 2/0
          +    *via 10.0.1.1, Eth2/1, [110/41], 1d02h, ospf-1, intra
          +    *via 10.0.2.1, Eth2/2, [110/41], 1d02h, ospf-1, intra
          +10.2.2.2/32, ubest/mbest: 2/0, attached
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, local
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, direct
          +10.11.11.11/32, ubest/mbest: 1/0
          +    *via 10.1.1.1, [200/0], 00:00:05, bgp-65000, internal, tag 65000, 
          +10.22.22.22/32, ubest/mbest: 2/0, attached
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, local
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, direct
          +
          +nx-osv-1# 
          +988: JEAUBIN-M-43JF: 2019-04-24T15:19:24: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all' +++
          +show bgp vrf all all
          +
          +BGP routing table information for VRF default, address family IPv4 Unicast
          +BGP table version is 156, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +nx-osv-1# 
          +991: JEAUBIN-M-43JF: 2019-04-24T15:19:24: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show vrf' +++
          +show vrf
          +
          +VRF-Name                           VRF-ID State   Reason                        
          +default                                 1 Up      --                            
          +management                              2 Up      --                            
          +
          +nx-osv-1# 
          +994: JEAUBIN-M-43JF: 2019-04-24T15:19:24: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf management all neighbors' +++
          +show bgp vrf management all neighbors
          +
          +Unknown vrf management
          +
          +nx-osv-1# 
          +997: JEAUBIN-M-43JF: 2019-04-24T15:19:24: %GENIE-6-INFO: %[part=997.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>
          +998: JEAUBIN-M-43JF: 2019-04-24T15:19:24: %GENIE-6-INFO: %[part=997.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +999: JEAUBIN-M-43JF: 2019-04-24T15:19:24: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors' +++
          +show bgp vrf default all neighbors
          +
          +BGP neighbor is 10.1.1.1,  remote AS 65000, ibgp link, Peer index 1
          +  BGP version 4, remote router ID 10.1.1.1
          +  BGP state = Established, up for 00:00:14
          +  Using loopback0 as update source for this peer
          +  Last read 00:00:13, hold time = 180, keepalive interval is 60 seconds
          +  Last written 00:00:13, keepalive timer expiry due 00:00:46
          +  Received 25164 messages, 1 notifications, 0 bytes in queue
          +  Sent 22958 messages, 46 notifications, 0 bytes in queue
          +  Connections established 47, dropped 46
          +  Last reset by us 00:00:25, due to administratively shutdown
          +  Last reset by peer never, due to No error
          +
          +  Neighbor capabilities:
          +  Dynamic capability: advertised (mp, refresh, gr) 
          +  Dynamic capability (old): advertised 
          +  Route refresh capability (new): advertised received 
          +  Route refresh capability (old): advertised received 
          +  4-Byte AS capability: advertised received 
          +  Address family IPv4 Unicast: advertised received 
          +  Graceful Restart capability: advertised 
          +
          +  Graceful Restart Parameters:
          +  Address families advertised to peer:
          +    IPv4 Unicast  
          +  Address families received from peer:
          +  Forwarding state preserved by peer for:
          +  Restart time advertised to peer: 120 seconds
          +  Stale time for routes advertised by peer: 300 seconds
          +  Extended Next Hop Encoding Capability: advertised 
          +
          +  Message statistics:
          +                              Sent               Rcvd
          +  Opens:                        48                 47  
          +  Notifications:                46                  1  
          +  Updates:                     106                 94  
          +  Keepalives:                22758              25022  
          +  Route Refresh:                 0                  0  
          +  Capability:                    0                  0  
          +  Total:                     22958              25164  
          +  Total bytes:              436135             478238  
          +  Bytes in queue:                0                  0  
          +
          +  For address family: IPv4 Unicast
          +  BGP table version 156, neighbor version 156
          +  1 accepted paths consume 80 bytes of memory
          +  1 sent paths
          +  Third-party Nexthop will not be computed.
          +
          +  Local host: 10.2.2.2, Local port: 179
          +  Foreign host: 10.1.1.1, Foreign port: 29338
          +  fd = 60
          +
          +
          +nx-osv-1# 
          +1003: JEAUBIN-M-43JF: 2019-04-24T15:19:25: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all summary' +++
          +show bgp vrf all all summary
          +
          +BGP summary information for VRF default, address family IPv4 Unicast
          +BGP router identifier 10.2.2.2, local AS number 65000
          +BGP table version is 156, IPv4 Unicast config peers 1, capable peers 1
          +2 network entries and 2 paths using 288 bytes of memory
          +BGP attribute entries [2/288], BGP AS path entries [0/0]
          +BGP community entries [0/0], BGP clusterlist entries [0/0]
          +
          +Neighbor        V    AS MsgRcvd MsgSent   TblVer  InQ OutQ Up/Down  State/PfxRcd
          +10.1.1.1        4 65000   25164   22958      156    0    0 00:00:14 1         
          +
          +BGP summary information for VRF default, address family IPv6 Unicast
          +
          +nx-osv-1# 
          +1006: JEAUBIN-M-43JF: 2019-04-24T15:19:25: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 advertised-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 advertised-routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 156, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +1010: JEAUBIN-M-43JF: 2019-04-24T15:19:25: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 156, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +1014: JEAUBIN-M-43JF: 2019-04-24T15:19:25: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 received-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 received-routes
          +
          +
          +Inbound soft reconfiguration for IPv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MDT not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN VPLS not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN EVPN not enabled on 10.1.1.1
          +
          +nx-osv-1#
          +1017: JEAUBIN-M-43JF: 2019-04-24T15:19:25: %GENIE-6-INFO: %[part=1017.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>
          +1018: JEAUBIN-M-43JF: 2019-04-24T15:19:25: %GENIE-6-INFO: %[part=1017.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1019: JEAUBIN-M-43JF: 2019-04-24T15:19:25: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +1020: JEAUBIN-M-43JF: 2019-04-24T15:19:25: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | Commands for learning feature 'Bgp'                                                                                                                |
          +1021: JEAUBIN-M-43JF: 2019-04-24T15:19:25: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +1022: JEAUBIN-M-43JF: 2019-04-24T15:19:25: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Parsed commands                                                                                                                                  |
          +1023: JEAUBIN-M-43JF: 2019-04-24T15:19:25: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +1024: JEAUBIN-M-43JF: 2019-04-24T15:19:25: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpProcessVrfAll'>                                                                              |
          +1025: JEAUBIN-M-43JF: 2019-04-24T15:19:25: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllNextHopDatabase'>                                                                   |
          +1026: JEAUBIN-M-43JF: 2019-04-24T15:19:25: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_routing.ShowRoutingVrfAll'>                                                                             |
          +1027: JEAUBIN-M-43JF: 2019-04-24T15:19:25: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAll'>                                                                                  |
          +1028: JEAUBIN-M-43JF: 2019-04-24T15:19:25: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_vrf.ShowVrf'>                                                                                           |
          +1029: JEAUBIN-M-43JF: 2019-04-24T15:19:25: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'default'}                                              |
          +1030: JEAUBIN-M-43JF: 2019-04-24T15:19:25: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllSummary'>                                                                           |
          +1031: JEAUBIN-M-43JF: 2019-04-24T15:19:25: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsAdvertisedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}        |
          +1032: JEAUBIN-M-43JF: 2019-04-24T15:19:25: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}                  |
          +1033: JEAUBIN-M-43JF: 2019-04-24T15:19:25: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +1034: JEAUBIN-M-43JF: 2019-04-24T15:19:25: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Commands with empty output                                                                                                                       |
          +1035: JEAUBIN-M-43JF: 2019-04-24T15:19:25: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +1036: JEAUBIN-M-43JF: 2019-04-24T15:19:25: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>                                                                                |
          +1037: JEAUBIN-M-43JF: 2019-04-24T15:19:25: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>                                                                                 |
          +1038: JEAUBIN-M-43JF: 2019-04-24T15:19:25: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>                                                               |
          +1039: JEAUBIN-M-43JF: 2019-04-24T15:19:25: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'management'}                                           |
          +1040: JEAUBIN-M-43JF: 2019-04-24T15:19:25: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}          |
          +1041: JEAUBIN-M-43JF: 2019-04-24T15:19:25: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +1042: JEAUBIN-M-43JF: 2019-04-24T15:19:25: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of section prerequisites is => PASSED
          +1043: JEAUBIN-M-43JF: 2019-04-24T15:19:25: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section shut
          +1044: JEAUBIN-M-43JF: 2019-04-24T15:19:25: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: config +++
          + config term
          +
          +Enter configuration commands, one per line.  End with CNTL/Z.
          +
          +nx-osv-1(config)#
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + shut + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:01 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          1043: JEAUBIN-M-43JF: 2019-04-24T15:19:25: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section shut
          +1044: JEAUBIN-M-43JF: 2019-04-24T15:19:25: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: config +++
          + config term
          +
          +Enter configuration commands, one per line.  End with CNTL/Z.
          +
          +nx-osv-1(config)# router bgp 65000
          +
          +
          +nx-osv-1(config-router)# shutdown
          +
          +
          +nx-osv-1(config-router)# end
          +
          +
          +nx-osv-1# 
          +1053: JEAUBIN-M-43JF: 2019-04-24T15:19:26: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of section shut is => PASSED
          +1054:
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + verify + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:03 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          1054: JEAUBIN-M-43JF: 2019-04-24T15:19:26: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section verify
          +1055: JEAUBIN-M-43JF: 2019-04-24T15:19:26: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          +show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Process ID                 : 8610
          +BGP Protocol Started, reason:  : configuration
          +BGP Protocol Tag               : 65000
          +BGP Protocol State             : Shutdown
          +BGP MMODE                      : Not Initialized
          +BGP Memory State               : OK
          +BGP asformat                   : asplain
          +
          +BGP attributes information
          +Number of attribute entries    : 2
          +HWM of attribute entries       : 2
          +Bytes used by entries          : 200
          +Entries pending delete         : 0
          +HWM of entries pending delete  : 0
          +BGP paths per attribute HWM    : 1
          +BGP AS path entries            : 0
          +Bytes used by AS path entries  : 0
          +
          +Information regarding configured VRFs:
          +
          +BGP Information for VRF default
          +VRF Id                         : 1
          +VRF state                      : UP
          +Router-ID                      : 10.2.2.2
          +Configured Router-ID           : 10.2.2.2
          +Confed-ID                      : 0
          +Cluster-ID                     : 0.0.0.0
          +No. of configured peers        : 1
          +No. of pending config peers    : 0
          +No. of established peers       : 0
          +VRF RD                         : Not configured
          +
          +    Information for address family IPv4 Unicast in VRF default
          +    Table Id                   : 1
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    1          0               2          2          1          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +    Information for address family IPv6 Unicast in VRF default
          +    Table Id                   : 80000001
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    0          0               0          0          0          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +nx-osv-1# 
          +1059: JEAUBIN-M-43JF: 2019-04-24T15:19:26: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-session' +++
          +show running-config | inc peer-session
          +
          +
          +nx-osv-1# 
          +1064: JEAUBIN-M-43JF: 2019-04-24T15:19:27: %GENIE-6-INFO: %[part=1064.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>
          +1065: JEAUBIN-M-43JF: 2019-04-24T15:19:27: %GENIE-6-INFO: %[part=1064.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1066: JEAUBIN-M-43JF: 2019-04-24T15:19:27: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-policy' +++
          +show running-config | inc peer-policy
          +
          +
          +nx-osv-1# 
          +1070: JEAUBIN-M-43JF: 2019-04-24T15:19:27: %GENIE-6-INFO: %[part=1070.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>
          +1071: JEAUBIN-M-43JF: 2019-04-24T15:19:27: %GENIE-6-INFO: %[part=1070.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1072: JEAUBIN-M-43JF: 2019-04-24T15:19:27: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all dampening parameters' +++
          +show bgp vrf all all dampening parameters
          +
          +
          +nx-osv-1# 
          +1075: JEAUBIN-M-43JF: 2019-04-24T15:19:27: %GENIE-6-INFO: %[part=1075.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>
          +1076: JEAUBIN-M-43JF: 2019-04-24T15:19:27: %GENIE-6-INFO: %[part=1075.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1077: JEAUBIN-M-43JF: 2019-04-24T15:19:27: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all nexthop-database' +++
          +show bgp vrf all all nexthop-database
          +
          +
          +Next Hop table for VRF default, address family IPv4 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +
          +Nexthop: 0.0.0.0, Flags: 0x2, Refcount: 1, IGP cost: 0
          +IGP Route type: 0, IGP preference: 0
          +Nexthop is not-attached local unreachable not-labeled
          +Nexthop last resolved: never, using 0.0.0.0/0
          +Metric next advertise: Never
          +RNH epoch: 0
          +
          +Nexthop: 10.1.1.1, Flags: 0x1, Refcount: 1, IGP cost: 41
          +IGP Route type: 0, IGP preference: 110
          +Attached nexthop: 10.0.2.1, Interface: Ethernet2/2
          +Attached nexthop: 10.0.1.1, Interface: Ethernet2/1
          +Nexthop is not-attached not-local reachable not-labeled
          +Nexthop last resolved: 00:00:08, using 10.1.1.1/32
          +Metric next advertise: Never
          +RNH epoch: 1
          +IPv6 Next-hop table
          +
          +Next Hop table for VRF default, address family IPv6 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +IPv6 Next-hop table
          +
          +nx-osv-1# 
          +1080: JEAUBIN-M-43JF: 2019-04-24T15:19:27: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show routing vrf all' +++
          +show routing vrf all
          +
          +IP Route Table for VRF "default"
          +'*' denotes best ucast next-hop
          +'**' denotes best mcast next-hop
          +'[x/y]' denotes [preference/metric]
          +'%<string>' in via output denotes VRF <string>
          +
          +10.0.1.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, direct
          +10.0.1.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, local
          +10.0.2.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, direct
          +10.0.2.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, local
          +10.1.1.1/32, ubest/mbest: 2/0
          +    *via 10.0.1.1, Eth2/1, [110/41], 1d02h, ospf-1, intra
          +    *via 10.0.2.1, Eth2/2, [110/41], 1d02h, ospf-1, intra
          +10.2.2.2/32, ubest/mbest: 2/0, attached
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, local
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, direct
          +10.11.11.11/32, ubest/mbest: 1/0
          +    *via 10.1.1.1, [200/0], 00:00:09, bgp-65000, internal, tag 65000, 
          +10.22.22.22/32, ubest/mbest: 2/0, attached
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, local
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, direct
          +
          +nx-osv-1# 
          +1084: JEAUBIN-M-43JF: 2019-04-24T15:19:27: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all' +++
          +show bgp vrf all all
          +
          +BGP routing table information for VRF default, address family IPv4 Unicast
          +BGP table version is 156, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +nx-osv-1# 
          +1087: JEAUBIN-M-43JF: 2019-04-24T15:19:28: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show vrf' +++
          +show vrf
          +
          +VRF-Name                           VRF-ID State   Reason                        
          +default                                 1 Up      --                            
          +management                              2 Up      --                            
          +
          +nx-osv-1# 
          +1090: JEAUBIN-M-43JF: 2019-04-24T15:19:28: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf management all neighbors' +++
          +show bgp vrf management all neighbors
          +
          +Unknown vrf management
          +
          +nx-osv-1# 
          +1093: JEAUBIN-M-43JF: 2019-04-24T15:19:28: %GENIE-6-INFO: %[part=1093.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>
          +1094: JEAUBIN-M-43JF: 2019-04-24T15:19:28: %GENIE-6-INFO: %[part=1093.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1095: JEAUBIN-M-43JF: 2019-04-24T15:19:28: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors' +++
          +show bgp vrf default all neighbors
          +
          +BGP neighbor is 10.1.1.1,  remote AS 65000, ibgp link, Peer index 1
          +  BGP version 4, remote router ID 10.1.1.1
          +  BGP state = Closing, down for 00:00:02
          +  Using loopback0 as update source for this peer
          +  Last read 00:00:17, hold time = 180, keepalive interval is 60 seconds
          +  Last written 00:00:02, keepalive timer not running
          +  Received 25164 messages, 1 notifications, 0 bytes in queue
          +  Sent 22959 messages, 47 notifications, 0 bytes in queue
          +  Connections established 47, dropped 47
          +  Last reset by us 00:00:02, due to administratively shutdown
          +  Last reset by peer never, due to No error
          +
          +  Message statistics:
          +                              Sent               Rcvd
          +  Opens:                        48                 47  
          +  Notifications:                47                  1  
          +  Updates:                     106                 94  
          +  Keepalives:                22758              25022  
          +  Route Refresh:                 0                  0  
          +  Capability:                    0                  0  
          +  Total:                     22959              25164  
          +  Total bytes:              436156             478238  
          +  Bytes in queue:                0                  0  
          +
          +  For address family: IPv4 Unicast
          +  BGP table version 156, neighbor version 0
          +  0 accepted paths consume 0 bytes of memory
          +  0 sent paths
          +  Third-party Nexthop will not be computed.
          +
          +  No established BGP session with peer
          +
          +
          +nx-osv-1# 
          +1099: JEAUBIN-M-43JF: 2019-04-24T15:19:28: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all summary' +++
          +show bgp vrf all all summary
          +
          +BGP summary information for VRF default, address family IPv4 Unicast
          +BGP router identifier 10.2.2.2, local AS number 65000
          +BGP table version is 156, IPv4 Unicast config peers 1, capable peers 0
          +2 network entries and 2 paths using 288 bytes of memory
          +BGP attribute entries [2/288], BGP AS path entries [0/0]
          +BGP community entries [0/0], BGP clusterlist entries [0/0]
          +
          +Neighbor        V    AS MsgRcvd MsgSent   TblVer  InQ OutQ Up/Down  State/PfxRcd
          +10.1.1.1        4 65000   25164   22959        0    0    0 00:00:02 Closing  
          +
          +BGP summary information for VRF default, address family IPv6 Unicast
          +
          +nx-osv-1# 
          +1102: JEAUBIN-M-43JF: 2019-04-24T15:19:28: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 advertised-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 advertised-routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 156, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +1106: JEAUBIN-M-43JF: 2019-04-24T15:19:29: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 156, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +1110: JEAUBIN-M-43JF: 2019-04-24T15:19:29: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 received-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 received-routes
          +
          +
          +Inbound soft reconfiguration for IPv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MDT not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN VPLS not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN EVPN not enabled on 10.1.1.1
          +
          +nx-osv-1#
          +1113: JEAUBIN-M-43JF: 2019-04-24T15:19:29: %GENIE-6-INFO: %[part=1113.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>
          +1114: JEAUBIN-M-43JF: 2019-04-24T15:19:29: %GENIE-6-INFO: %[part=1113.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1115: JEAUBIN-M-43JF: 2019-04-24T15:19:29: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +1116: JEAUBIN-M-43JF: 2019-04-24T15:19:29: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | Commands for learning feature 'Bgp'                                                                                                                |
          +1117: JEAUBIN-M-43JF: 2019-04-24T15:19:29: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +1118: JEAUBIN-M-43JF: 2019-04-24T15:19:29: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Parsed commands                                                                                                                                  |
          +1119: JEAUBIN-M-43JF: 2019-04-24T15:19:29: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +1120: JEAUBIN-M-43JF: 2019-04-24T15:19:29: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpProcessVrfAll'>                                                                              |
          +1121: JEAUBIN-M-43JF: 2019-04-24T15:19:29: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllNextHopDatabase'>                                                                   |
          +1122: JEAUBIN-M-43JF: 2019-04-24T15:19:29: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_routing.ShowRoutingVrfAll'>                                                                             |
          +1123: JEAUBIN-M-43JF: 2019-04-24T15:19:29: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAll'>                                                                                  |
          +1124: JEAUBIN-M-43JF: 2019-04-24T15:19:29: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_vrf.ShowVrf'>                                                                                           |
          +1125: JEAUBIN-M-43JF: 2019-04-24T15:19:29: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'default'}                                              |
          +1126: JEAUBIN-M-43JF: 2019-04-24T15:19:29: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllSummary'>                                                                           |
          +1127: JEAUBIN-M-43JF: 2019-04-24T15:19:29: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsAdvertisedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}        |
          +1128: JEAUBIN-M-43JF: 2019-04-24T15:19:29: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}                  |
          +1129: JEAUBIN-M-43JF: 2019-04-24T15:19:29: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +1130: JEAUBIN-M-43JF: 2019-04-24T15:19:29: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Commands with empty output                                                                                                                       |
          +1131: JEAUBIN-M-43JF: 2019-04-24T15:19:29: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +1132: JEAUBIN-M-43JF: 2019-04-24T15:19:29: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>                                                                                |
          +1133: JEAUBIN-M-43JF: 2019-04-24T15:19:29: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>                                                                                 |
          +1134: JEAUBIN-M-43JF: 2019-04-24T15:19:29: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>                                                               |
          +1135: JEAUBIN-M-43JF: 2019-04-24T15:19:29: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'management'}                                           |
          +1136: JEAUBIN-M-43JF: 2019-04-24T15:19:29: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}          |
          +1137: JEAUBIN-M-43JF: 2019-04-24T15:19:29: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +1138: JEAUBIN-M-43JF: 2019-04-24T15:19:29: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of section verify is => PASSED
          +1139: JEAUBIN-M-43JF: 2019-04-24T15:19:29: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section unshut
          +1140: JEAUBIN-M-43JF: 2019-04-24T15:19:29: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: config +++
          + config term
          +
          +Enter configuration commands, one per line.  End with CNTL
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + unshut + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:01 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          1139: JEAUBIN-M-43JF: 2019-04-24T15:19:29: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section unshut
          +1140: JEAUBIN-M-43JF: 2019-04-24T15:19:29: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: config +++
          + config term
          +
          +Enter configuration commands, one per line.  End with CNTL/Z.
          +
          +nx-osv-1(config)# router bgp 65000
          +
          +
          +nx-osv-1(config-router)# no shutdown
          +
          +
          +nx-osv-1(config-router)# end
          +
          +
          +nx-osv-1# 
          +1149: JEAUBIN-M-43JF: 2019-04-24T15:19:30: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of section unshut is => PASSED
          +1150:
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + verify_recover + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:03 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          1150: JEAUBIN-M-43JF: 2019-04-24T15:19:30: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section verify_recover
          +1151: JEAUBIN-M-43JF: 2019-04-24T15:19:30: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          +show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Process ID                 : 8610
          +BGP Protocol Started, reason:  : configuration
          +BGP Protocol Tag               : 65000
          +BGP Protocol State             : Running
          +BGP MMODE                      : Not Initialized
          +BGP Memory State               : OK
          +BGP asformat                   : asplain
          +
          +BGP attributes information
          +Number of attribute entries    : 2
          +HWM of attribute entries       : 2
          +Bytes used by entries          : 200
          +Entries pending delete         : 0
          +HWM of entries pending delete  : 0
          +BGP paths per attribute HWM    : 1
          +BGP AS path entries            : 0
          +Bytes used by AS path entries  : 0
          +
          +Information regarding configured VRFs:
          +
          +BGP Information for VRF default
          +VRF Id                         : 1
          +VRF state                      : UP
          +Router-ID                      : 10.2.2.2
          +Configured Router-ID           : 10.2.2.2
          +Confed-ID                      : 0
          +Cluster-ID                     : 0.0.0.0
          +No. of configured peers        : 1
          +No. of pending config peers    : 0
          +No. of established peers       : 0
          +VRF RD                         : Not configured
          +
          +    Information for address family IPv4 Unicast in VRF default
          +    Table Id                   : 1
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    1          0               2          2          1          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +    Information for address family IPv6 Unicast in VRF default
          +    Table Id                   : 80000001
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    0          0               0          0          0          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +nx-osv-1# 
          +1155: JEAUBIN-M-43JF: 2019-04-24T15:19:30: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-session' +++
          +show running-config | inc peer-session
          +
          +
          +nx-osv-1# 
          +1160: JEAUBIN-M-43JF: 2019-04-24T15:19:31: %GENIE-6-INFO: %[part=1160.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>
          +1161: JEAUBIN-M-43JF: 2019-04-24T15:19:31: %GENIE-6-INFO: %[part=1160.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1162: JEAUBIN-M-43JF: 2019-04-24T15:19:31: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-policy' +++
          +show running-config | inc peer-policy
          +
          +
          +nx-osv-1# 
          +1167: JEAUBIN-M-43JF: 2019-04-24T15:19:31: %GENIE-6-INFO: %[part=1167.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>
          +1168: JEAUBIN-M-43JF: 2019-04-24T15:19:31: %GENIE-6-INFO: %[part=1167.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1169: JEAUBIN-M-43JF: 2019-04-24T15:19:31: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all dampening parameters' +++
          +show bgp vrf all all dampening parameters
          +
          +
          +nx-osv-1# 
          +1172: JEAUBIN-M-43JF: 2019-04-24T15:19:31: %GENIE-6-INFO: %[part=1172.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>
          +1173: JEAUBIN-M-43JF: 2019-04-24T15:19:31: %GENIE-6-INFO: %[part=1172.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1174: JEAUBIN-M-43JF: 2019-04-24T15:19:31: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all nexthop-database' +++
          +show bgp vrf all all nexthop-database
          +
          +
          +Next Hop table for VRF default, address family IPv4 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +
          +Nexthop: 0.0.0.0, Flags: 0x2, Refcount: 1, IGP cost: 0
          +IGP Route type: 0, IGP preference: 0
          +Nexthop is not-attached local unreachable not-labeled
          +Nexthop last resolved: never, using 0.0.0.0/0
          +Metric next advertise: Never
          +RNH epoch: 0
          +IPv6 Next-hop table
          +
          +Next Hop table for VRF default, address family IPv6 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +IPv6 Next-hop table
          +
          +nx-osv-1# 
          +1177: JEAUBIN-M-43JF: 2019-04-24T15:19:31: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show routing vrf all' +++
          +show routing vrf all
          +
          +IP Route Table for VRF "default"
          +'*' denotes best ucast next-hop
          +'**' denotes best mcast next-hop
          +'[x/y]' denotes [preference/metric]
          +'%<string>' in via output denotes VRF <string>
          +
          +10.0.1.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, direct
          +10.0.1.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, local
          +10.0.2.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, direct
          +10.0.2.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, local
          +10.1.1.1/32, ubest/mbest: 2/0
          +    *via 10.0.1.1, Eth2/1, [110/41], 1d02h, ospf-1, intra
          +    *via 10.0.2.1, Eth2/2, [110/41], 1d02h, ospf-1, intra
          +10.2.2.2/32, ubest/mbest: 2/0, attached
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, local
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, direct
          +10.22.22.22/32, ubest/mbest: 2/0, attached
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, local
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, direct
          +
          +nx-osv-1# 
          +1179: JEAUBIN-M-43JF: 2019-04-24T15:19:32: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all' +++
          +show bgp vrf all all
          +
          +BGP routing table information for VRF default, address family IPv4 Unicast
          +BGP table version is 157, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +nx-osv-1# 
          +1182: JEAUBIN-M-43JF: 2019-04-24T15:19:32: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show vrf' +++
          +show vrf
          +
          +VRF-Name                           VRF-ID State   Reason                        
          +default                                 1 Up      --                            
          +management                              2 Up      --                            
          +
          +nx-osv-1# 
          +1185: JEAUBIN-M-43JF: 2019-04-24T15:19:32: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf management all neighbors' +++
          +show bgp vrf management all neighbors
          +
          +Unknown vrf management
          +
          +nx-osv-1# 
          +1188: JEAUBIN-M-43JF: 2019-04-24T15:19:32: %GENIE-6-INFO: %[part=1188.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>
          +1189: JEAUBIN-M-43JF: 2019-04-24T15:19:32: %GENIE-6-INFO: %[part=1188.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1190: JEAUBIN-M-43JF: 2019-04-24T15:19:32: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors' +++
          +show bgp vrf default all neighbors
          +
          +BGP neighbor is 10.1.1.1,  remote AS 65000, ibgp link, Peer index 1
          +  BGP version 4, remote router ID 0.0.0.0
          +  BGP state = Idle, down for 00:00:06, retry in 00:00:05
          +  Using loopback0 as update source for this peer
          +  Last read never, hold time = 180, keepalive interval is 60 seconds
          +  Last written never, keepalive timer not running
          +  Received 25164 messages, 1 notifications, 0 bytes in queue
          +  Sent 22959 messages, 47 notifications, 0 bytes in queue
          +  Connections established 47, dropped 47
          +  Connection attempts 0
          +  Last reset by us 00:00:06, due to administratively shutdown
          +  Last reset by peer never, due to No error
          +
          +  Message statistics:
          +                              Sent               Rcvd
          +  Opens:                        48                 47  
          +  Notifications:                47                  1  
          +  Updates:                     106                 94  
          +  Keepalives:                22758              25022  
          +  Route Refresh:                 0                  0  
          +  Capability:                    0                  0  
          +  Total:                     22959              25164  
          +  Total bytes:              436156             478238  
          +  Bytes in queue:                0                  0  
          +
          +  For address family: IPv4 Unicast
          +  BGP table version 157, neighbor version 0
          +  0 accepted paths consume 0 bytes of memory
          +  0 sent paths
          +  Third-party Nexthop will not be computed.
          +
          +  No established BGP session with peer
          +
          +
          +nx-osv-1# 
          +1194: JEAUBIN-M-43JF: 2019-04-24T15:19:32: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all summary' +++
          +show bgp vrf all all summary
          +
          +BGP summary information for VRF default, address family IPv4 Unicast
          +BGP router identifier 10.2.2.2, local AS number 65000
          +BGP table version is 157, IPv4 Unicast config peers 1, capable peers 0
          +1 network entries and 1 paths using 144 bytes of memory
          +BGP attribute entries [1/144], BGP AS path entries [0/0]
          +BGP community entries [0/0], BGP clusterlist entries [0/0]
          +
          +Neighbor        V    AS MsgRcvd MsgSent   TblVer  InQ OutQ Up/Down  State/PfxRcd
          +10.1.1.1        4 65000   25164   22959        0    0    0 00:00:06 Idle     
          +
          +BGP summary information for VRF default, address family IPv6 Unicast
          +
          +nx-osv-1# 
          +1197: JEAUBIN-M-43JF: 2019-04-24T15:19:32: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 advertised-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 advertised-routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 157, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +1201: JEAUBIN-M-43JF: 2019-04-24T15:19:33: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 157, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +1205: JEAUBIN-M-43JF: 2019-04-24T15:19:33: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 received-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 received-routes
          +
          +
          +Inbound soft reconfiguration for IPv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MDT not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN VPLS not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN EVPN not enabled on 10.1.1.1
          +
          +nx-osv-1#
          +1208: JEAUBIN-M-43JF: 2019-04-24T15:19:33: %GENIE-6-INFO: %[part=1208.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>
          +1209: JEAUBIN-M-43JF: 2019-04-24T15:19:33: %GENIE-6-INFO: %[part=1208.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1210: JEAUBIN-M-43JF: 2019-04-24T15:19:33: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +1211: JEAUBIN-M-43JF: 2019-04-24T15:19:33: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | Commands for learning feature 'Bgp'                                                                                                                |
          +1212: JEAUBIN-M-43JF: 2019-04-24T15:19:33: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +1213: JEAUBIN-M-43JF: 2019-04-24T15:19:33: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Parsed commands                                                                                                                                  |
          +1214: JEAUBIN-M-43JF: 2019-04-24T15:19:33: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +1215: JEAUBIN-M-43JF: 2019-04-24T15:19:33: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpProcessVrfAll'>                                                                              |
          +1216: JEAUBIN-M-43JF: 2019-04-24T15:19:33: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllNextHopDatabase'>                                                                   |
          +1217: JEAUBIN-M-43JF: 2019-04-24T15:19:33: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_routing.ShowRoutingVrfAll'>                                                                             |
          +1218: JEAUBIN-M-43JF: 2019-04-24T15:19:33: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAll'>                                                                                  |
          +1219: JEAUBIN-M-43JF: 2019-04-24T15:19:33: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_vrf.ShowVrf'>                                                                                           |
          +1220: JEAUBIN-M-43JF: 2019-04-24T15:19:33: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'default'}                                              |
          +1221: JEAUBIN-M-43JF: 2019-04-24T15:19:33: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllSummary'>                                                                           |
          +1222: JEAUBIN-M-43JF: 2019-04-24T15:19:33: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsAdvertisedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}        |
          +1223: JEAUBIN-M-43JF: 2019-04-24T15:19:33: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}                  |
          +1224: JEAUBIN-M-43JF: 2019-04-24T15:19:33: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +1225: JEAUBIN-M-43JF: 2019-04-24T15:19:33: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Commands with empty output                                                                                                                       |
          +1226: JEAUBIN-M-43JF: 2019-04-24T15:19:33: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +1227: JEAUBIN-M-43JF: 2019-04-24T15:19:33: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>                                                                                |
          +1228: JEAUBIN-M-43JF: 2019-04-24T15:19:33: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>                                                                                 |
          +1229: JEAUBIN-M-43JF: 2019-04-24T15:19:33: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>                                                               |
          +1230: JEAUBIN-M-43JF: 2019-04-24T15:19:33: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'management'}                                           |
          +1231: JEAUBIN-M-43JF: 2019-04-24T15:19:33: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}          |
          +1232: JEAUBIN-M-43JF: 2019-04-24T15:19:33: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +1233: JEAUBIN-M-43JF: 2019-04-24T15:19:33: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of section verify_recover is => PASSED
          +1234: JEAUBIN-M-43JF: 2019-04-24T15:19:33: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of testcase TriggerDemoShutNoShutBgpV2.uut.2 is => PASSED
          +1235: JEAUBIN-M-43JF: 2019-04-24T15:19:33: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting testcase Verify_Bgp.uut.4
          +1236
          +
          +
        • +
        +
        +
      • + + +
      +
      +
    • + + +
    • +
      + + arrow_drop_down + Verify_Bgp.uut.4 + + +
      + expand_more + expand_less +
      + PASSED + 0:00:03 +
      +
      + + + +
        + + + + +
      • +
        + + arrow_drop_down + verify + + +
        + expand_more + expand_less +
        + PASSED + 0:00:03 +
        +
        + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          1236: JEAUBIN-M-43JF: 2019-04-24T15:19:33: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section verify
          +1237: JEAUBIN-M-43JF: 2019-04-24T15:19:33: %GENIE-6-INFO: %[part=1237.1/3][pid=23936][pname=Task-1]: +------------------------------------------------------------------------------+
          +1238: JEAUBIN-M-43JF: 2019-04-24T15:19:33: %GENIE-6-INFO: %[part=1237.2/3][pid=23936][pname=Task-1]: |                              1 out of 5 attempt                              |
          +1239: JEAUBIN-M-43JF: 2019-04-24T15:19:33: %GENIE-6-INFO: %[part=1237.3/3][pid=23936][pname=Task-1]: +------------------------------------------------------------------------------+
          +1240: JEAUBIN-M-43JF: 2019-04-24T15:19:33: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          + show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Process ID                 : 8610
          +BGP Protocol Started, reason:  : configuration
          +BGP Protocol Tag               : 65000
          +BGP Protocol State             : Running
          +BGP MMODE                      : Not Initialized
          +BGP Memory State               : OK
          +BGP asformat                   : asplain
          +
          +BGP attributes information
          +Number of attribute entries    : 1
          +HWM of attribute entries       : 2
          +Bytes used by entries          : 100
          +Entries pending delete         : 0
          +HWM of entries pending delete  : 0
          +BGP paths per attribute HWM    : 1
          +BGP AS path entries            : 0
          +Bytes used by AS path entries  : 0
          +
          +Information regarding configured VRFs:
          +
          +BGP Information for VRF default
          +VRF Id                         : 1
          +VRF state                      : UP
          +Router-ID                      : 10.2.2.2
          +Configured Router-ID           : 10.2.2.2
          +Confed-ID                      : 0
          +Cluster-ID                     : 0.0.0.0
          +No. of configured peers        : 1
          +No. of pending config peers    : 0
          +No. of established peers       : 1
          +VRF RD                         : Not configured
          +
          +    Information for address family IPv4 Unicast in VRF default
          +    Table Id                   : 1
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    1          1               1          1          1          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +    Information for address family IPv6 Unicast in VRF default
          +    Table Id                   : 80000001
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    0          0               0          0          0          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +nx-osv-1# 
          +1244: JEAUBIN-M-43JF: 2019-04-24T15:19:33: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-session' +++
          +show running-config | inc peer-session
          +
          +
          +nx-osv-1# 
          +1249: JEAUBIN-M-43JF: 2019-04-24T15:19:34: %GENIE-6-INFO: %[part=1249.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>
          +1250: JEAUBIN-M-43JF: 2019-04-24T15:19:34: %GENIE-6-INFO: %[part=1249.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1251: JEAUBIN-M-43JF: 2019-04-24T15:19:34: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-policy' +++
          +show running-config | inc peer-policy
          +
          +
          +nx-osv-1# 
          +1256: JEAUBIN-M-43JF: 2019-04-24T15:19:34: %GENIE-6-INFO: %[part=1256.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>
          +1257: JEAUBIN-M-43JF: 2019-04-24T15:19:34: %GENIE-6-INFO: %[part=1256.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1258: JEAUBIN-M-43JF: 2019-04-24T15:19:34: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all dampening parameters' +++
          +show bgp vrf all all dampening parameters
          +
          +
          +nx-osv-1# 
          +1261: JEAUBIN-M-43JF: 2019-04-24T15:19:34: %GENIE-6-INFO: %[part=1261.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>
          +1262: JEAUBIN-M-43JF: 2019-04-24T15:19:34: %GENIE-6-INFO: %[part=1261.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1263: JEAUBIN-M-43JF: 2019-04-24T15:19:34: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all nexthop-database' +++
          +show bgp vrf all all nexthop-database
          +
          +
          +Next Hop table for VRF default, address family IPv4 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +
          +Nexthop: 0.0.0.0, Flags: 0x2, Refcount: 1, IGP cost: 0
          +IGP Route type: 0, IGP preference: 0
          +Nexthop is not-attached local unreachable not-labeled
          +Nexthop last resolved: never, using 0.0.0.0/0
          +Metric next advertise: Never
          +RNH epoch: 0
          +
          +Nexthop: 10.1.1.1, Flags: 0x1, Refcount: 1, IGP cost: 41
          +IGP Route type: 0, IGP preference: 110
          +Attached nexthop: 10.0.2.1, Interface: Ethernet2/2
          +Attached nexthop: 10.0.1.1, Interface: Ethernet2/1
          +Nexthop is not-attached not-local reachable not-labeled
          +Nexthop last resolved: 00:00:15, using 10.1.1.1/32
          +Pending update due: 00:00:04
          +Metric next advertise: Never
          +RNH epoch: 0
          +Pending RNH epoch: 1
          +IPv6 Next-hop table
          +
          +Next Hop table for VRF default, address family IPv6 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +IPv6 Next-hop table
          +
          +nx-osv-1# 
          +1267: JEAUBIN-M-43JF: 2019-04-24T15:19:34: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show routing vrf all' +++
          +show routing vrf all
          +
          +IP Route Table for VRF "default"
          +'*' denotes best ucast next-hop
          +'**' denotes best mcast next-hop
          +'[x/y]' denotes [preference/metric]
          +'%<string>' in via output denotes VRF <string>
          +
          +10.0.1.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, direct
          +10.0.1.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, local
          +10.0.2.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, direct
          +10.0.2.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, local
          +10.1.1.1/32, ubest/mbest: 2/0
          +    *via 10.0.1.1, Eth2/1, [110/41], 1d02h, ospf-1, intra
          +    *via 10.0.2.1, Eth2/2, [110/41], 1d02h, ospf-1, intra
          +10.2.2.2/32, ubest/mbest: 2/0, attached
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, local
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, direct
          +10.11.11.11/32, ubest/mbest: 1/0
          +    *via 10.1.1.1, [200/0], 0.000000, bgp-65000, internal, tag 65000, 
          +10.22.22.22/32, ubest/mbest: 2/0, attached
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, local
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, direct
          +
          +nx-osv-1# 
          +1271: JEAUBIN-M-43JF: 2019-04-24T15:19:35: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all' +++
          +show bgp vrf all all
          +
          +BGP routing table information for VRF default, address family IPv4 Unicast
          +BGP table version is 159, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +nx-osv-1# 
          +1274: JEAUBIN-M-43JF: 2019-04-24T15:19:35: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show vrf' +++
          +show vrf
          +
          +VRF-Name                           VRF-ID State   Reason                        
          +default                                 1 Up      --                            
          +management                              2 Up      --                            
          +
          +nx-osv-1# 
          +1277: JEAUBIN-M-43JF: 2019-04-24T15:19:35: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf management all neighbors' +++
          +show bgp vrf management all neighbors
          +
          +Unknown vrf management
          +
          +nx-osv-1# 
          +1280: JEAUBIN-M-43JF: 2019-04-24T15:19:35: %GENIE-6-INFO: %[part=1280.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>
          +1281: JEAUBIN-M-43JF: 2019-04-24T15:19:35: %GENIE-6-INFO: %[part=1280.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1282: JEAUBIN-M-43JF: 2019-04-24T15:19:35: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors' +++
          +show bgp vrf default all neighbors
          +
          +BGP neighbor is 10.1.1.1,  remote AS 65000, ibgp link, Peer index 1
          +  BGP version 4, remote router ID 10.1.1.1
          +  BGP state = Established, up for 00:00:02
          +  Using loopback0 as update source for this peer
          +  Last read 00:00:01, hold time = 180, keepalive interval is 60 seconds
          +  Last written 00:00:01, keepalive timer expiry due 00:00:58
          +  Received 25169 messages, 1 notifications, 0 bytes in queue
          +  Sent 22964 messages, 47 notifications, 0 bytes in queue
          +  Connections established 48, dropped 47
          +  Last reset by us 00:00:09, due to administratively shutdown
          +  Last reset by peer never, due to No error
          +
          +  Neighbor capabilities:
          +  Dynamic capability: advertised (mp, refresh, gr) 
          +  Dynamic capability (old): advertised 
          +  Route refresh capability (new): advertised received 
          +  Route refresh capability (old): advertised received 
          +  4-Byte AS capability: advertised received 
          +  Address family IPv4 Unicast: advertised received 
          +  Graceful Restart capability: advertised 
          +
          +  Graceful Restart Parameters:
          +  Address families advertised to peer:
          +    IPv4 Unicast  
          +  Address families received from peer:
          +  Forwarding state preserved by peer for:
          +  Restart time advertised to peer: 120 seconds
          +  Stale time for routes advertised by peer: 300 seconds
          +  Extended Next Hop Encoding Capability: advertised 
          +
          +  Message statistics:
          +                              Sent               Rcvd
          +  Opens:                        49                 48  
          +  Notifications:                47                  1  
          +  Updates:                     108                 96  
          +  Keepalives:                22760              25024  
          +  Route Refresh:                 0                  0  
          +  Capability:                    0                  0  
          +  Total:                     22964              25169  
          +  Total bytes:              436247             478336  
          +  Bytes in queue:                0                  0  
          +
          +  For address family: IPv4 Unicast
          +  BGP table version 159, neighbor version 159
          +  1 accepted paths consume 80 bytes of memory
          +  1 sent paths
          +  Third-party Nexthop will not be computed.
          +
          +  Local host: 10.2.2.2, Local port: 179
          +  Foreign host: 10.1.1.1, Foreign port: 31622
          +  fd = 60
          +
          +
          +nx-osv-1# 
          +1286: JEAUBIN-M-43JF: 2019-04-24T15:19:35: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all summary' +++
          +show bgp vrf all all summary
          +
          +BGP summary information for VRF default, address family IPv4 Unicast
          +BGP router identifier 10.2.2.2, local AS number 65000
          +BGP table version is 159, IPv4 Unicast config peers 1, capable peers 1
          +2 network entries and 2 paths using 288 bytes of memory
          +BGP attribute entries [2/288], BGP AS path entries [0/0]
          +BGP community entries [0/0], BGP clusterlist entries [0/0]
          +
          +Neighbor        V    AS MsgRcvd MsgSent   TblVer  InQ OutQ Up/Down  State/PfxRcd
          +10.1.1.1        4 65000   25169   22964      159    0    0 00:00:02 1         
          +
          +BGP summary information for VRF default, address family IPv6 Unicast
          +
          +nx-osv-1# 
          +1289: JEAUBIN-M-43JF: 2019-04-24T15:19:36: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 advertised-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 advertised-routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 159, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +1292: JEAUBIN-M-43JF: 2019-04-24T15:19:36: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 159, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +1296: JEAUBIN-M-43JF: 2019-04-24T15:19:36: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 received-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 received-routes
          +
          +
          +Inbound soft reconfiguration for IPv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MDT not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN VPLS not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN EVPN not enabled on 10.1.1.1
          +
          +nx-osv-1#
          +1299: JEAUBIN-M-43JF: 2019-04-24T15:19:36: %GENIE-6-INFO: %[part=1299.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>
          +1300: JEAUBIN-M-43JF: 2019-04-24T15:19:36: %GENIE-6-INFO: %[part=1299.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1301: JEAUBIN-M-43JF: 2019-04-24T15:19:36: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +1302: JEAUBIN-M-43JF: 2019-04-24T15:19:36: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | Commands for learning feature 'Bgp'                                                                                                                |
          +1303: JEAUBIN-M-43JF: 2019-04-24T15:19:36: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +1304: JEAUBIN-M-43JF: 2019-04-24T15:19:36: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Parsed commands                                                                                                                                  |
          +1305: JEAUBIN-M-43JF: 2019-04-24T15:19:36: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +1306: JEAUBIN-M-43JF: 2019-04-24T15:19:36: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpProcessVrfAll'>                                                                              |
          +1307: JEAUBIN-M-43JF: 2019-04-24T15:19:36: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllNextHopDatabase'>                                                                   |
          +1308: JEAUBIN-M-43JF: 2019-04-24T15:19:36: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_routing.ShowRoutingVrfAll'>                                                                             |
          +1309: JEAUBIN-M-43JF: 2019-04-24T15:19:36: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAll'>                                                                                  |
          +1310: JEAUBIN-M-43JF: 2019-04-24T15:19:36: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_vrf.ShowVrf'>                                                                                           |
          +1311: JEAUBIN-M-43JF: 2019-04-24T15:19:36: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'default'}                                              |
          +1312: JEAUBIN-M-43JF: 2019-04-24T15:19:36: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllSummary'>                                                                           |
          +1313: JEAUBIN-M-43JF: 2019-04-24T15:19:36: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsAdvertisedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}        |
          +1314: JEAUBIN-M-43JF: 2019-04-24T15:19:36: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}                  |
          +1315: JEAUBIN-M-43JF: 2019-04-24T15:19:36: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +1316: JEAUBIN-M-43JF: 2019-04-24T15:19:36: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Commands with empty output                                                                                                                       |
          +1317: JEAUBIN-M-43JF: 2019-04-24T15:19:36: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +1318: JEAUBIN-M-43JF: 2019-04-24T15:19:36: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>                                                                                |
          +1319: JEAUBIN-M-43JF: 2019-04-24T15:19:36: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>                                                                                 |
          +1320: JEAUBIN-M-43JF: 2019-04-24T15:19:36: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>                                                               |
          +1321: JEAUBIN-M-43JF: 2019-04-24T15:19:36: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'management'}                                           |
          +1322: JEAUBIN-M-43JF: 2019-04-24T15:19:36: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}          |
          +1323: JEAUBIN-M-43JF: 2019-04-24T15:19:36: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +1324: JEAUBIN-M-43JF: 2019-04-24T15:19:36: %GENIE-6-INFO: %[part=1324.1/2][pid=23936][pname=Task-1]: Comparing current snapshot to initial snapshot
          +1325: JEAUBIN-M-43JF: 2019-04-24T15:19:36: %GENIE-6-INFO: %[part=1324.2/2][pid=23936][pname=Task-1]: Excluding these keys ['if_handle', 'keepalives', 'last_reset', 'reset_reason', 'foreign_port', 'local_port', 'msg_rcvd', 'msg_sent', 'up_down', 'bgp_table_version', 'routing_table_version', 'tbl_ver', 'table_version', 'memory_usage', 'updates', 'mss', 'total', 'total_bytes', 'up_time', 'bgp_negotiated_keepalive_timers', 'hold_time', 'keepalive_interval', 'sent', 'received', 'status_codes', 'holdtime', 'router_id', 'connections_dropped', 'connections_established', 'advertised', 'prefixes', 'routes', 'state_pfxrcd']
          +1326: JEAUBIN-M-43JF: 2019-04-24T15:19:36: %GENIE-6-INFO: %[pid=23936][pname=Task-1]: Snapshot is same as initial snapshot
          +1327: JEAUBIN-M-43JF: 2019-04-24T15:19:36: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of section verify is => PASSED
          +1328: JEAUBIN-M-43JF: 2019-04-24T15:19:36: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of testcase Verify_Bgp.uut.4 is => PASSED
          +1329: JEAUBIN-M-43JF: 2019-04-24T15:19:36: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting testcase TriggerDemoShutNoShutBgpV2.uut.3
          +1330: JEAUBIN-M-43JF: 2019-04-24T15:19:
          +
          +
        • +
        +
        +
      • + + +
      +
      +
    • + + +
    • +
      + + arrow_drop_down + TriggerDemoShutNoShutBgpV2.uut.3 + + +
      + expand_more + expand_less +
      + PASSED + 0:00:11 +
      +
      + + + +
        + + + + +
      • +
        + + arrow_drop_down + prerequisites + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:03 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          1330: JEAUBIN-M-43JF: 2019-04-24T15:19:36: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section prerequisites
          +1331: JEAUBIN-M-43JF: 2019-04-24T15:19:36: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          + show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Process ID                 : 8610
          +BGP Protocol Started, reason:  : configuration
          +BGP Protocol Tag               : 65000
          +BGP Protocol State             : Running
          +BGP MMODE                      : Not Initialized
          +BGP Memory State               : OK
          +BGP asformat                   : asplain
          +
          +BGP attributes information
          +Number of attribute entries    : 2
          +HWM of attribute entries       : 2
          +Bytes used by entries          : 200
          +Entries pending delete         : 0
          +HWM of entries pending delete  : 0
          +BGP paths per attribute HWM    : 1
          +BGP AS path entries            : 0
          +Bytes used by AS path entries  : 0
          +
          +Information regarding configured VRFs:
          +
          +BGP Information for VRF default
          +VRF Id                         : 1
          +VRF state                      : UP
          +Router-ID                      : 10.2.2.2
          +Configured Router-ID           : 10.2.2.2
          +Confed-ID                      : 0
          +Cluster-ID                     : 0.0.0.0
          +No. of configured peers        : 1
          +No. of pending config peers    : 0
          +No. of established peers       : 1
          +VRF RD                         : Not configured
          +
          +    Information for address family IPv4 Unicast in VRF default
          +    Table Id                   : 1
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    1          1               2          2          1          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +    Information for address family IPv6 Unicast in VRF default
          +    Table Id                   : 80000001
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    0          0               0          0          0          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +nx-osv-1# 
          +1335: JEAUBIN-M-43JF: 2019-04-24T15:19:36: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-session' +++
          +show running-config | inc peer-session
          +
          +
          +nx-osv-1# 
          +1340: JEAUBIN-M-43JF: 2019-04-24T15:19:37: %GENIE-6-INFO: %[part=1340.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>
          +1341: JEAUBIN-M-43JF: 2019-04-24T15:19:37: %GENIE-6-INFO: %[part=1340.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1342: JEAUBIN-M-43JF: 2019-04-24T15:19:37: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-policy' +++
          +show running-config | inc peer-policy
          +
          +
          +nx-osv-1# 
          +1347: JEAUBIN-M-43JF: 2019-04-24T15:19:37: %GENIE-6-INFO: %[part=1347.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>
          +1348: JEAUBIN-M-43JF: 2019-04-24T15:19:37: %GENIE-6-INFO: %[part=1347.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1349: JEAUBIN-M-43JF: 2019-04-24T15:19:37: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all dampening parameters' +++
          +show bgp vrf all all dampening parameters
          +
          +
          +nx-osv-1# 
          +1352: JEAUBIN-M-43JF: 2019-04-24T15:19:37: %GENIE-6-INFO: %[part=1352.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>
          +1353: JEAUBIN-M-43JF: 2019-04-24T15:19:37: %GENIE-6-INFO: %[part=1352.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1354: JEAUBIN-M-43JF: 2019-04-24T15:19:37: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all nexthop-database' +++
          +show bgp vrf all all nexthop-database
          +
          +
          +Next Hop table for VRF default, address family IPv4 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +
          +Nexthop: 0.0.0.0, Flags: 0x2, Refcount: 1, IGP cost: 0
          +IGP Route type: 0, IGP preference: 0
          +Nexthop is not-attached local unreachable not-labeled
          +Nexthop last resolved: never, using 0.0.0.0/0
          +Metric next advertise: Never
          +RNH epoch: 0
          +
          +Nexthop: 10.1.1.1, Flags: 0x1, Refcount: 1, IGP cost: 41
          +IGP Route type: 0, IGP preference: 110
          +Attached nexthop: 10.0.2.1, Interface: Ethernet2/2
          +Attached nexthop: 10.0.1.1, Interface: Ethernet2/1
          +Nexthop is not-attached not-local reachable not-labeled
          +Nexthop last resolved: 00:00:19, using 10.1.1.1/32
          +Pending update due: 0.922287
          +Metric next advertise: Never
          +RNH epoch: 0
          +Pending RNH epoch: 1
          +IPv6 Next-hop table
          +
          +Next Hop table for VRF default, address family IPv6 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +IPv6 Next-hop table
          +
          +nx-osv-1# 
          +1358: JEAUBIN-M-43JF: 2019-04-24T15:19:38: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show routing vrf all' +++
          +show routing vrf all
          +
          +IP Route Table for VRF "default"
          +'*' denotes best ucast next-hop
          +'**' denotes best mcast next-hop
          +'[x/y]' denotes [preference/metric]
          +'%<string>' in via output denotes VRF <string>
          +
          +10.0.1.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, direct
          +10.0.1.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, local
          +10.0.2.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, direct
          +10.0.2.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, local
          +10.1.1.1/32, ubest/mbest: 2/0
          +    *via 10.0.1.1, Eth2/1, [110/41], 1d02h, ospf-1, intra
          +    *via 10.0.2.1, Eth2/2, [110/41], 1d02h, ospf-1, intra
          +10.2.2.2/32, ubest/mbest: 2/0, attached
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, local
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, direct
          +10.11.11.11/32, ubest/mbest: 1/0
          +    *via 10.1.1.1, [200/0], 00:00:03, bgp-65000, internal, tag 65000, 
          +10.22.22.22/32, ubest/mbest: 2/0, attached
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, local
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, direct
          +
          +nx-osv-1# 
          +1362: JEAUBIN-M-43JF: 2019-04-24T15:19:38: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all' +++
          +show bgp vrf all all
          +
          +BGP routing table information for VRF default, address family IPv4 Unicast
          +BGP table version is 159, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +nx-osv-1# 
          +1365: JEAUBIN-M-43JF: 2019-04-24T15:19:38: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show vrf' +++
          +show vrf
          +
          +VRF-Name                           VRF-ID State   Reason                        
          +default                                 1 Up      --                            
          +management                              2 Up      --                            
          +
          +nx-osv-1# 
          +1368: JEAUBIN-M-43JF: 2019-04-24T15:19:38: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf management all neighbors' +++
          +show bgp vrf management all neighbors
          +
          +Unknown vrf management
          +
          +nx-osv-1# 
          +1371: JEAUBIN-M-43JF: 2019-04-24T15:19:38: %GENIE-6-INFO: %[part=1371.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>
          +1372: JEAUBIN-M-43JF: 2019-04-24T15:19:38: %GENIE-6-INFO: %[part=1371.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1373: JEAUBIN-M-43JF: 2019-04-24T15:19:38: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors' +++
          +show bgp vrf default all neighbors
          +
          +BGP neighbor is 10.1.1.1,  remote AS 65000, ibgp link, Peer index 1
          +  BGP version 4, remote router ID 10.1.1.1
          +  BGP state = Established, up for 00:00:05
          +  Using loopback0 as update source for this peer
          +  Last read 00:00:04, hold time = 180, keepalive interval is 60 seconds
          +  Last written 00:00:04, keepalive timer expiry due 00:00:55
          +  Received 25169 messages, 1 notifications, 0 bytes in queue
          +  Sent 22964 messages, 47 notifications, 0 bytes in queue
          +  Connections established 48, dropped 47
          +  Last reset by us 00:00:12, due to administratively shutdown
          +  Last reset by peer never, due to No error
          +
          +  Neighbor capabilities:
          +  Dynamic capability: advertised (mp, refresh, gr) 
          +  Dynamic capability (old): advertised 
          +  Route refresh capability (new): advertised received 
          +  Route refresh capability (old): advertised received 
          +  4-Byte AS capability: advertised received 
          +  Address family IPv4 Unicast: advertised received 
          +  Graceful Restart capability: advertised 
          +
          +  Graceful Restart Parameters:
          +  Address families advertised to peer:
          +    IPv4 Unicast  
          +  Address families received from peer:
          +  Forwarding state preserved by peer for:
          +  Restart time advertised to peer: 120 seconds
          +  Stale time for routes advertised by peer: 300 seconds
          +  Extended Next Hop Encoding Capability: advertised 
          +
          +  Message statistics:
          +                              Sent               Rcvd
          +  Opens:                        49                 48  
          +  Notifications:                47                  1  
          +  Updates:                     108                 96  
          +  Keepalives:                22760              25024  
          +  Route Refresh:                 0                  0  
          +  Capability:                    0                  0  
          +  Total:                     22964              25169  
          +  Total bytes:              436247             478336  
          +  Bytes in queue:                0                  0  
          +
          +  For address family: IPv4 Unicast
          +  BGP table version 159, neighbor version 159
          +  1 accepted paths consume 80 bytes of memory
          +  1 sent paths
          +  Third-party Nexthop will not be computed.
          +
          +  Local host: 10.2.2.2, Local port: 179
          +  Foreign host: 10.1.1.1, Foreign port: 31622
          +  fd = 60
          +
          +
          +nx-osv-1# 
          +1377: JEAUBIN-M-43JF: 2019-04-24T15:19:38: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all summary' +++
          +show bgp vrf all all summary
          +
          +BGP summary information for VRF default, address family IPv4 Unicast
          +BGP router identifier 10.2.2.2, local AS number 65000
          +BGP table version is 160, IPv4 Unicast config peers 1, capable peers 1
          +2 network entries and 2 paths using 288 bytes of memory
          +BGP attribute entries [2/288], BGP AS path entries [0/0]
          +BGP community entries [0/0], BGP clusterlist entries [0/0]
          +
          +Neighbor        V    AS MsgRcvd MsgSent   TblVer  InQ OutQ Up/Down  State/PfxRcd
          +10.1.1.1        4 65000   25169   22964      160    0    0 00:00:05 1         
          +
          +BGP summary information for VRF default, address family IPv6 Unicast
          +
          +nx-osv-1# 
          +1380: JEAUBIN-M-43JF: 2019-04-24T15:19:39: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 advertised-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 advertised-routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 160, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +1384: JEAUBIN-M-43JF: 2019-04-24T15:19:39: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 160, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +1388: JEAUBIN-M-43JF: 2019-04-24T15:19:39: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 received-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 received-routes
          +
          +
          +Inbound soft reconfiguration for IPv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MDT not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN VPLS not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN EVPN not enabled on 10.1.1.1
          +
          +nx-osv-1#
          +1391: JEAUBIN-M-43JF: 2019-04-24T15:19:39: %GENIE-6-INFO: %[part=1391.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>
          +1392: JEAUBIN-M-43JF: 2019-04-24T15:19:39: %GENIE-6-INFO: %[part=1391.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1393: JEAUBIN-M-43JF: 2019-04-24T15:19:39: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +1394: JEAUBIN-M-43JF: 2019-04-24T15:19:39: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | Commands for learning feature 'Bgp'                                                                                                                |
          +1395: JEAUBIN-M-43JF: 2019-04-24T15:19:39: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +1396: JEAUBIN-M-43JF: 2019-04-24T15:19:39: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Parsed commands                                                                                                                                  |
          +1397: JEAUBIN-M-43JF: 2019-04-24T15:19:39: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +1398: JEAUBIN-M-43JF: 2019-04-24T15:19:39: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpProcessVrfAll'>                                                                              |
          +1399: JEAUBIN-M-43JF: 2019-04-24T15:19:39: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllNextHopDatabase'>                                                                   |
          +1400: JEAUBIN-M-43JF: 2019-04-24T15:19:39: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_routing.ShowRoutingVrfAll'>                                                                             |
          +1401: JEAUBIN-M-43JF: 2019-04-24T15:19:39: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAll'>                                                                                  |
          +1402: JEAUBIN-M-43JF: 2019-04-24T15:19:39: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_vrf.ShowVrf'>                                                                                           |
          +1403: JEAUBIN-M-43JF: 2019-04-24T15:19:39: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'default'}                                              |
          +1404: JEAUBIN-M-43JF: 2019-04-24T15:19:39: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllSummary'>                                                                           |
          +1405: JEAUBIN-M-43JF: 2019-04-24T15:19:39: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsAdvertisedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}        |
          +1406: JEAUBIN-M-43JF: 2019-04-24T15:19:39: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}                  |
          +1407: JEAUBIN-M-43JF: 2019-04-24T15:19:39: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +1408: JEAUBIN-M-43JF: 2019-04-24T15:19:39: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Commands with empty output                                                                                                                       |
          +1409: JEAUBIN-M-43JF: 2019-04-24T15:19:39: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +1410: JEAUBIN-M-43JF: 2019-04-24T15:19:39: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>                                                                                |
          +1411: JEAUBIN-M-43JF: 2019-04-24T15:19:39: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>                                                                                 |
          +1412: JEAUBIN-M-43JF: 2019-04-24T15:19:39: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>                                                               |
          +1413: JEAUBIN-M-43JF: 2019-04-24T15:19:39: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'management'}                                           |
          +1414: JEAUBIN-M-43JF: 2019-04-24T15:19:39: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}          |
          +1415: JEAUBIN-M-43JF: 2019-04-24T15:19:39: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +1416: JEAUBIN-M-43JF: 2019-04-24T15:19:39: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of section prerequisites is => PASSED
          +1417: JEAUBIN-M-43JF: 2019-04-24T15:19:39: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section shut
          +1418: JEAUBIN-M-43JF: 2019-04-24T15:19:39: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: config +++
          + config term
          +
          +Enter configuration commands, one per line.  End with CNTL/Z.
          +
          +nx-osv-1(config)# r
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + shut + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:01 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          1417: JEAUBIN-M-43JF: 2019-04-24T15:19:39: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section shut
          +1418: JEAUBIN-M-43JF: 2019-04-24T15:19:39: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: config +++
          + config term
          +
          +Enter configuration commands, one per line.  End with CNTL/Z.
          +
          +nx-osv-1(config)# router bgp 65000
          +
          +
          +nx-osv-1(config-router)# shutdown
          +
          +
          +nx-osv-1(config-router)# end
          +
          +
          +nx-osv-1# 
          +1427: JEAUBIN-M-43JF: 2019-04-24T15:19:40: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of section shut is => PASSED
          +1428:
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + verify + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:03 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          1428: JEAUBIN-M-43JF: 2019-04-24T15:19:40: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section verify
          +1429: JEAUBIN-M-43JF: 2019-04-24T15:19:40: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          +show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Process ID                 : 8610
          +BGP Protocol Started, reason:  : configuration
          +BGP Protocol Tag               : 65000
          +BGP Protocol State             : Shutdown
          +BGP MMODE                      : Not Initialized
          +BGP Memory State               : OK
          +BGP asformat                   : asplain
          +
          +BGP attributes information
          +Number of attribute entries    : 2
          +HWM of attribute entries       : 2
          +Bytes used by entries          : 200
          +Entries pending delete         : 0
          +HWM of entries pending delete  : 0
          +BGP paths per attribute HWM    : 1
          +BGP AS path entries            : 0
          +Bytes used by AS path entries  : 0
          +
          +Information regarding configured VRFs:
          +
          +BGP Information for VRF default
          +VRF Id                         : 1
          +VRF state                      : UP
          +Router-ID                      : 10.2.2.2
          +Configured Router-ID           : 10.2.2.2
          +Confed-ID                      : 0
          +Cluster-ID                     : 0.0.0.0
          +No. of configured peers        : 1
          +No. of pending config peers    : 0
          +No. of established peers       : 0
          +VRF RD                         : Not configured
          +
          +    Information for address family IPv4 Unicast in VRF default
          +    Table Id                   : 1
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    1          0               2          2          1          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +    Information for address family IPv6 Unicast in VRF default
          +    Table Id                   : 80000001
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    0          0               0          0          0          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +nx-osv-1# 
          +1433: JEAUBIN-M-43JF: 2019-04-24T15:19:40: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-session' +++
          +show running-config | inc peer-session
          +
          +
          +nx-osv-1# 
          +1437: JEAUBIN-M-43JF: 2019-04-24T15:19:40: %GENIE-6-INFO: %[part=1437.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>
          +1438: JEAUBIN-M-43JF: 2019-04-24T15:19:40: %GENIE-6-INFO: %[part=1437.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1439: JEAUBIN-M-43JF: 2019-04-24T15:19:40: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-policy' +++
          +show running-config | inc peer-policy
          +
          +
          +nx-osv-1# 
          +1442: JEAUBIN-M-43JF: 2019-04-24T15:19:41: %GENIE-6-INFO: %[part=1442.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>
          +1443: JEAUBIN-M-43JF: 2019-04-24T15:19:41: %GENIE-6-INFO: %[part=1442.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1444: JEAUBIN-M-43JF: 2019-04-24T15:19:41: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all dampening parameters' +++
          +show bgp vrf all all dampening parameters
          +
          +
          +nx-osv-1# 
          +1446: JEAUBIN-M-43JF: 2019-04-24T15:19:41: %GENIE-6-INFO: %[part=1446.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>
          +1447: JEAUBIN-M-43JF: 2019-04-24T15:19:41: %GENIE-6-INFO: %[part=1446.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1448: JEAUBIN-M-43JF: 2019-04-24T15:19:41: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all nexthop-database' +++
          +show bgp vrf all all nexthop-database
          +
          +
          +Next Hop table for VRF default, address family IPv4 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +
          +Nexthop: 0.0.0.0, Flags: 0x2, Refcount: 1, IGP cost: 0
          +IGP Route type: 0, IGP preference: 0
          +Nexthop is not-attached local unreachable not-labeled
          +Nexthop last resolved: never, using 0.0.0.0/0
          +Metric next advertise: Never
          +RNH epoch: 0
          +
          +Nexthop: 10.1.1.1, Flags: 0x1, Refcount: 1, IGP cost: 41
          +IGP Route type: 0, IGP preference: 110
          +Attached nexthop: 10.0.2.1, Interface: Ethernet2/2
          +Attached nexthop: 10.0.1.1, Interface: Ethernet2/1
          +Nexthop is not-attached not-local reachable not-labeled
          +Nexthop last resolved: 00:00:02, using 10.1.1.1/32
          +Metric next advertise: Never
          +RNH epoch: 1
          +IPv6 Next-hop table
          +
          +Next Hop table for VRF default, address family IPv6 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +IPv6 Next-hop table
          +
          +nx-osv-1# 
          +1451: JEAUBIN-M-43JF: 2019-04-24T15:19:41: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show routing vrf all' +++
          +show routing vrf all
          +
          +IP Route Table for VRF "default"
          +'*' denotes best ucast next-hop
          +'**' denotes best mcast next-hop
          +'[x/y]' denotes [preference/metric]
          +'%<string>' in via output denotes VRF <string>
          +
          +10.0.1.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, direct
          +10.0.1.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, local
          +10.0.2.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, direct
          +10.0.2.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, local
          +10.1.1.1/32, ubest/mbest: 2/0
          +    *via 10.0.1.1, Eth2/1, [110/41], 1d02h, ospf-1, intra
          +    *via 10.0.2.1, Eth2/2, [110/41], 1d02h, ospf-1, intra
          +10.2.2.2/32, ubest/mbest: 2/0, attached
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, local
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, direct
          +10.11.11.11/32, ubest/mbest: 1/0
          +    *via 10.1.1.1, [200/0], 00:00:03, bgp-65000, internal, tag 65000, 
          +10.22.22.22/32, ubest/mbest: 2/0, attached
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, local
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, direct
          +
          +nx-osv-1# 
          +1454: JEAUBIN-M-43JF: 2019-04-24T15:19:41: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all' +++
          +show bgp vrf all all
          +
          +BGP routing table information for VRF default, address family IPv4 Unicast
          +BGP table version is 160, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +nx-osv-1# 
          +1456: JEAUBIN-M-43JF: 2019-04-24T15:19:42: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show vrf' +++
          +show vrf
          +
          +VRF-Name                           VRF-ID State   Reason                        
          +default                                 1 Up      --                            
          +management                              2 Up      --                            
          +
          +nx-osv-1# 
          +1458: JEAUBIN-M-43JF: 2019-04-24T15:19:42: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf management all neighbors' +++
          +show bgp vrf management all neighbors
          +
          +Unknown vrf management
          +
          +nx-osv-1# 
          +1461: JEAUBIN-M-43JF: 2019-04-24T15:19:42: %GENIE-6-INFO: %[part=1461.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>
          +1462: JEAUBIN-M-43JF: 2019-04-24T15:19:42: %GENIE-6-INFO: %[part=1461.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1463: JEAUBIN-M-43JF: 2019-04-24T15:19:42: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors' +++
          +show bgp vrf default all neighbors
          +
          +BGP neighbor is 10.1.1.1,  remote AS 65000, ibgp link, Peer index 1
          +  BGP version 4, remote router ID 10.1.1.1
          +  BGP state = Closing, down for 00:00:02
          +  Using loopback0 as update source for this peer
          +  Last read 00:00:08, hold time = 180, keepalive interval is 60 seconds
          +  Last written 00:00:02, keepalive timer not running
          +  Received 25169 messages, 1 notifications, 0 bytes in queue
          +  Sent 22965 messages, 48 notifications, 0 bytes in queue
          +  Connections established 48, dropped 48
          +  Last reset by us 00:00:02, due to administratively shutdown
          +  Last reset by peer never, due to No error
          +
          +  Message statistics:
          +                              Sent               Rcvd
          +  Opens:                        49                 48  
          +  Notifications:                48                  1  
          +  Updates:                     108                 96  
          +  Keepalives:                22760              25024  
          +  Route Refresh:                 0                  0  
          +  Capability:                    0                  0  
          +  Total:                     22965              25169  
          +  Total bytes:              436268             478336  
          +  Bytes in queue:                0                  0  
          +
          +  For address family: IPv4 Unicast
          +  BGP table version 160, neighbor version 0
          +  0 accepted paths consume 0 bytes of memory
          +  0 sent paths
          +  Third-party Nexthop will not be computed.
          +
          +  No established BGP session with peer
          +
          +
          +nx-osv-1# 
          +1466: JEAUBIN-M-43JF: 2019-04-24T15:19:42: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all summary' +++
          +show bgp vrf all all summary
          +
          +BGP summary information for VRF default, address family IPv4 Unicast
          +BGP router identifier 10.2.2.2, local AS number 65000
          +BGP table version is 160, IPv4 Unicast config peers 1, capable peers 0
          +2 network entries and 2 paths using 288 bytes of memory
          +BGP attribute entries [2/288], BGP AS path entries [0/0]
          +BGP community entries [0/0], BGP clusterlist entries [0/0]
          +
          +Neighbor        V    AS MsgRcvd MsgSent   TblVer  InQ OutQ Up/Down  State/PfxRcd
          +10.1.1.1        4 65000   25169   22965        0    0    0 00:00:02 Closing  
          +
          +BGP summary information for VRF default, address family IPv6 Unicast
          +
          +nx-osv-1# 
          +1469: JEAUBIN-M-43JF: 2019-04-24T15:19:43: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 advertised-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 advertised-routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 160, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +1473: JEAUBIN-M-43JF: 2019-04-24T15:19:43: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 161, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +x i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +1476: JEAUBIN-M-43JF: 2019-04-24T15:19:43: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 received-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 received-routes
          +
          +
          +Inbound soft reconfiguration for IPv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MDT not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN VPLS not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN EVPN not enabled on 10.1.1.1
          +
          +nx-osv-1# 
          +1479: JEAUBIN-M-43JF: 2019-04-24T15:19:43: %GENIE-6-INFO: %[part=1479.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>
          +1480: JEAUBIN-M-43JF: 2019-04-24T15:19:43: %GENIE-6-INFO: %[part=1479.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1481: JEAUBIN-M-43JF: 2019-04-24T15:19:43: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +1482: JEAUBIN-M-43JF: 2019-04-24T15:19:43: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | Commands for learning feature 'Bgp'                                                                                                                |
          +1483: JEAUBIN-M-43JF: 2019-04-24T15:19:43: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +1484: JEAUBIN-M-43JF: 2019-04-24T15:19:43: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Parsed commands                                                                                                                                  |
          +1485: JEAUBIN-M-43JF: 2019-04-24T15:19:43: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +1486: JEAUBIN-M-43JF: 2019-04-24T15:19:43: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpProcessVrfAll'>                                                                              |
          +1487: JEAUBIN-M-43JF: 2019-04-24T15:19:43: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllNextHopDatabase'>                                                                   |
          +1488: JEAUBIN-M-43JF: 2019-04-24T15:19:43: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_routing.ShowRoutingVrfAll'>                                                                             |
          +1489: JEAUBIN-M-43JF: 2019-04-24T15:19:43: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAll'>                                                                                  |
          +1490: JEAUBIN-M-43JF: 2019-04-24T15:19:43: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_vrf.ShowVrf'>                                                                                           |
          +1491: JEAUBIN-M-43JF: 2019-04-24T15:19:43: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'default'}                                              |
          +1492: JEAUBIN-M-43JF: 2019-04-24T15:19:43: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllSummary'>                                                                           |
          +1493: JEAUBIN-M-43JF: 2019-04-24T15:19:43: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsAdvertisedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}        |
          +1494: JEAUBIN-M-43JF: 2019-04-24T15:19:43: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}                  |
          +1495: JEAUBIN-M-43JF: 2019-04-24T15:19:43: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +1496: JEAUBIN-M-43JF: 2019-04-24T15:19:43: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Commands with empty output                                                                                                                       |
          +1497: JEAUBIN-M-43JF: 2019-04-24T15:19:43: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +1498: JEAUBIN-M-43JF: 2019-04-24T15:19:43: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>                                                                                |
          +1499: JEAUBIN-M-43JF: 2019-04-24T15:19:43: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>                                                                                 |
          +1500: JEAUBIN-M-43JF: 2019-04-24T15:19:43: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>                                                               |
          +1501: JEAUBIN-M-43JF: 2019-04-24T15:19:43: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'management'}                                           |
          +1502: JEAUBIN-M-43JF: 2019-04-24T15:19:43: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}          |
          +1503: JEAUBIN-M-43JF: 2019-04-24T15:19:43: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +1504: JEAUBIN-M-43JF: 2019-04-24T15:19:43: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of section verify is => PASSED
          +1505: JEAUBIN-M-43JF: 2019-04-24T15:19:43: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section unshut
          +1506: JEAUBIN-M-43JF: 2019-04-24T15:19:43: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: config +++
          +config term
          +
          +Enter configuration commands, one per line.  End with CNTL/
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + unshut + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:01 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          1505: JEAUBIN-M-43JF: 2019-04-24T15:19:43: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section unshut
          +1506: JEAUBIN-M-43JF: 2019-04-24T15:19:43: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: config +++
          +config term
          +
          +Enter configuration commands, one per line.  End with CNTL/Z.
          +
          +nx-osv-1(config)# router bgp 65000
          +
          +
          +nx-osv-1(config-router)# no shutdown
          +
          +
          +nx-osv-1(config-router)# end
          +
          +
          +nx-osv-1# 
          +1512: JEAUBIN-M-43JF: 2019-04-24T15:19:44: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of section unshut is => PASSED
          +1513:
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + verify_recover + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:03 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          1513: JEAUBIN-M-43JF: 2019-04-24T15:19:44: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section verify_recover
          +1514: JEAUBIN-M-43JF: 2019-04-24T15:19:44: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          +show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Process ID                 : 8610
          +BGP Protocol Started, reason:  : configuration
          +BGP Protocol Tag               : 65000
          +BGP Protocol State             : Running
          +BGP MMODE                      : Not Initialized
          +BGP Memory State               : OK
          +BGP asformat                   : asplain
          +
          +BGP attributes information
          +Number of attribute entries    : 2
          +HWM of attribute entries       : 2
          +Bytes used by entries          : 200
          +Entries pending delete         : 0
          +HWM of entries pending delete  : 0
          +BGP paths per attribute HWM    : 1
          +BGP AS path entries            : 0
          +Bytes used by AS path entries  : 0
          +
          +Information regarding configured VRFs:
          +
          +BGP Information for VRF default
          +VRF Id                         : 1
          +VRF state                      : UP
          +Router-ID                      : 10.2.2.2
          +Configured Router-ID           : 10.2.2.2
          +Confed-ID                      : 0
          +Cluster-ID                     : 0.0.0.0
          +No. of configured peers        : 1
          +No. of pending config peers    : 0
          +No. of established peers       : 0
          +VRF RD                         : Not configured
          +
          +    Information for address family IPv4 Unicast in VRF default
          +    Table Id                   : 1
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    1          0               2          2          1          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +    Information for address family IPv6 Unicast in VRF default
          +    Table Id                   : 80000001
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    0          0               0          0          0          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +nx-osv-1# 
          +1518: JEAUBIN-M-43JF: 2019-04-24T15:19:44: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-session' +++
          +show running-config | inc peer-session
          +
          +
          +nx-osv-1# 
          +1522: JEAUBIN-M-43JF: 2019-04-24T15:19:45: %GENIE-6-INFO: %[part=1522.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>
          +1523: JEAUBIN-M-43JF: 2019-04-24T15:19:45: %GENIE-6-INFO: %[part=1522.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1524: JEAUBIN-M-43JF: 2019-04-24T15:19:45: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-policy' +++
          +show running-config | inc peer-policy
          +
          +
          +nx-osv-1# 
          +1528: JEAUBIN-M-43JF: 2019-04-24T15:19:45: %GENIE-6-INFO: %[part=1528.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>
          +1529: JEAUBIN-M-43JF: 2019-04-24T15:19:45: %GENIE-6-INFO: %[part=1528.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1530: JEAUBIN-M-43JF: 2019-04-24T15:19:45: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all dampening parameters' +++
          +show bgp vrf all all dampening parameters
          +
          +
          +nx-osv-1# 
          +1532: JEAUBIN-M-43JF: 2019-04-24T15:19:45: %GENIE-6-INFO: %[part=1532.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>
          +1533: JEAUBIN-M-43JF: 2019-04-24T15:19:45: %GENIE-6-INFO: %[part=1532.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1534: JEAUBIN-M-43JF: 2019-04-24T15:19:45: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all nexthop-database' +++
          +show bgp vrf all all nexthop-database
          +
          +
          +Next Hop table for VRF default, address family IPv4 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +
          +Nexthop: 0.0.0.0, Flags: 0x2, Refcount: 1, IGP cost: 0
          +IGP Route type: 0, IGP preference: 0
          +Nexthop is not-attached local unreachable not-labeled
          +Nexthop last resolved: never, using 0.0.0.0/0
          +Metric next advertise: Never
          +RNH epoch: 0
          +
          +Nexthop: 10.1.1.1, Flags: 0x1, Refcount: 1, IGP cost: 41
          +IGP Route type: 0, IGP preference: 110
          +Attached nexthop: 10.0.2.1, Interface: Ethernet2/2
          +Attached nexthop: 10.0.1.1, Interface: Ethernet2/1
          +Nexthop is not-attached not-local reachable not-labeled
          +Nexthop last resolved: 00:00:06, using 10.1.1.1/32
          +Metric next advertise: Never
          +RNH epoch: 1
          +IPv6 Next-hop table
          +
          +Next Hop table for VRF default, address family IPv6 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +IPv6 Next-hop table
          +
          +nx-osv-1# 
          +1537: JEAUBIN-M-43JF: 2019-04-24T15:19:45: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show routing vrf all' +++
          +show routing vrf all
          +
          +IP Route Table for VRF "default"
          +'*' denotes best ucast next-hop
          +'**' denotes best mcast next-hop
          +'[x/y]' denotes [preference/metric]
          +'%<string>' in via output denotes VRF <string>
          +
          +10.0.1.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, direct
          +10.0.1.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, local
          +10.0.2.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, direct
          +10.0.2.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, local
          +10.1.1.1/32, ubest/mbest: 2/0
          +    *via 10.0.1.1, Eth2/1, [110/41], 1d02h, ospf-1, intra
          +    *via 10.0.2.1, Eth2/2, [110/41], 1d02h, ospf-1, intra
          +10.2.2.2/32, ubest/mbest: 2/0, attached
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, local
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, direct
          +10.22.22.22/32, ubest/mbest: 2/0, attached
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, local
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, direct
          +
          +nx-osv-1# 
          +1540: JEAUBIN-M-43JF: 2019-04-24T15:19:46: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all' +++
          +show bgp vrf all all
          +
          +BGP routing table information for VRF default, address family IPv4 Unicast
          +BGP table version is 161, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +x i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +nx-osv-1# 
          +1543: JEAUBIN-M-43JF: 2019-04-24T15:19:46: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show vrf' +++
          +show vrf
          +
          +VRF-Name                           VRF-ID State   Reason                        
          +default                                 1 Up      --                            
          +management                              2 Up      --                            
          +
          +nx-osv-1# 
          +1546: JEAUBIN-M-43JF: 2019-04-24T15:19:46: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf management all neighbors' +++
          +show bgp vrf management all neighbors
          +
          +Unknown vrf management
          +
          +nx-osv-1# 
          +1549: JEAUBIN-M-43JF: 2019-04-24T15:19:46: %GENIE-6-INFO: %[part=1549.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>
          +1550: JEAUBIN-M-43JF: 2019-04-24T15:19:46: %GENIE-6-INFO: %[part=1549.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1551: JEAUBIN-M-43JF: 2019-04-24T15:19:46: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors' +++
          +show bgp vrf default all neighbors
          +
          +BGP neighbor is 10.1.1.1,  remote AS 65000, ibgp link, Peer index 1
          +  BGP version 4, remote router ID 0.0.0.0
          +  BGP state = Idle, down for 00:00:06, retry in 00:00:03
          +  Using loopback0 as update source for this peer
          +  Last read never, hold time = 180, keepalive interval is 60 seconds
          +  Last written never, keepalive timer not running
          +  Received 25169 messages, 1 notifications, 0 bytes in queue
          +  Sent 22965 messages, 48 notifications, 0 bytes in queue
          +  Connections established 48, dropped 48
          +  Connection attempts 0
          +  Last reset by us 00:00:06, due to administratively shutdown
          +  Last reset by peer never, due to No error
          +
          +  Message statistics:
          +                              Sent               Rcvd
          +  Opens:                        49                 48  
          +  Notifications:                48                  1  
          +  Updates:                     108                 96  
          +  Keepalives:                22760              25024  
          +  Route Refresh:                 0                  0  
          +  Capability:                    0                  0  
          +  Total:                     22965              25169  
          +  Total bytes:              436268             478336  
          +  Bytes in queue:                0                  0  
          +
          +  For address family: IPv4 Unicast
          +  BGP table version 161, neighbor version 0
          +  0 accepted paths consume 0 bytes of memory
          +  0 sent paths
          +  Third-party Nexthop will not be computed.
          +
          +  No established BGP session with peer
          +
          +
          +nx-osv-1# 
          +1555: JEAUBIN-M-43JF: 2019-04-24T15:19:46: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all summary' +++
          +show bgp vrf all all summary
          +
          +BGP summary information for VRF default, address family IPv4 Unicast
          +BGP router identifier 10.2.2.2, local AS number 65000
          +BGP table version is 161, IPv4 Unicast config peers 1, capable peers 0
          +2 network entries and 2 paths using 288 bytes of memory
          +BGP attribute entries [2/288], BGP AS path entries [0/0]
          +BGP community entries [0/0], BGP clusterlist entries [0/0]
          +
          +Neighbor        V    AS MsgRcvd MsgSent   TblVer  InQ OutQ Up/Down  State/PfxRcd
          +10.1.1.1        4 65000   25169   22965        0    0    0 00:00:06 Idle     
          +
          +BGP summary information for VRF default, address family IPv6 Unicast
          +
          +nx-osv-1# 
          +1558: JEAUBIN-M-43JF: 2019-04-24T15:19:46: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 advertised-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 advertised-routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 161, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +1562: JEAUBIN-M-43JF: 2019-04-24T15:19:47: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 161, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +x i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +1566: JEAUBIN-M-43JF: 2019-04-24T15:19:47: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 received-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 received-routes
          +
          +
          +Inbound soft reconfiguration for IPv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MDT not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN VPLS not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN EVPN not enabled on 10.1.1.1
          +
          +nx-osv-1#
          +1569: JEAUBIN-M-43JF: 2019-04-24T15:19:47: %GENIE-6-INFO: %[part=1569.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>
          +1570: JEAUBIN-M-43JF: 2019-04-24T15:19:47: %GENIE-6-INFO: %[part=1569.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1571: JEAUBIN-M-43JF: 2019-04-24T15:19:47: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +1572: JEAUBIN-M-43JF: 2019-04-24T15:19:47: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | Commands for learning feature 'Bgp'                                                                                                                |
          +1573: JEAUBIN-M-43JF: 2019-04-24T15:19:47: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +1574: JEAUBIN-M-43JF: 2019-04-24T15:19:47: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Parsed commands                                                                                                                                  |
          +1575: JEAUBIN-M-43JF: 2019-04-24T15:19:47: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +1576: JEAUBIN-M-43JF: 2019-04-24T15:19:47: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpProcessVrfAll'>                                                                              |
          +1577: JEAUBIN-M-43JF: 2019-04-24T15:19:47: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllNextHopDatabase'>                                                                   |
          +1578: JEAUBIN-M-43JF: 2019-04-24T15:19:47: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_routing.ShowRoutingVrfAll'>                                                                             |
          +1579: JEAUBIN-M-43JF: 2019-04-24T15:19:47: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAll'>                                                                                  |
          +1580: JEAUBIN-M-43JF: 2019-04-24T15:19:47: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_vrf.ShowVrf'>                                                                                           |
          +1581: JEAUBIN-M-43JF: 2019-04-24T15:19:47: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'default'}                                              |
          +1582: JEAUBIN-M-43JF: 2019-04-24T15:19:47: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllSummary'>                                                                           |
          +1583: JEAUBIN-M-43JF: 2019-04-24T15:19:47: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsAdvertisedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}        |
          +1584: JEAUBIN-M-43JF: 2019-04-24T15:19:47: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}                  |
          +1585: JEAUBIN-M-43JF: 2019-04-24T15:19:47: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +1586: JEAUBIN-M-43JF: 2019-04-24T15:19:47: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Commands with empty output                                                                                                                       |
          +1587: JEAUBIN-M-43JF: 2019-04-24T15:19:47: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +1588: JEAUBIN-M-43JF: 2019-04-24T15:19:47: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>                                                                                |
          +1589: JEAUBIN-M-43JF: 2019-04-24T15:19:47: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>                                                                                 |
          +1590: JEAUBIN-M-43JF: 2019-04-24T15:19:47: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>                                                               |
          +1591: JEAUBIN-M-43JF: 2019-04-24T15:19:47: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'management'}                                           |
          +1592: JEAUBIN-M-43JF: 2019-04-24T15:19:47: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}          |
          +1593: JEAUBIN-M-43JF: 2019-04-24T15:19:47: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +1594: JEAUBIN-M-43JF: 2019-04-24T15:19:47: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of section verify_recover is => PASSED
          +1595: JEAUBIN-M-43JF: 2019-04-24T15:19:47: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of testcase TriggerDemoShutNoShutBgpV2.uut.3 is => PASSED
          +1596: JEAUBIN-M-43JF: 2019-04-24T15:19:47: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting testcase Verify_Bgp.uut.5
          +1597: JEAUBIN-M
          +
          +
        • +
        +
        +
      • + + +
      +
      +
    • + + +
    • +
      + + arrow_drop_down + Verify_Bgp.uut.5 + + +
      + expand_more + expand_less +
      + PASSED + 0:00:17 +
      +
      + + + +
        + + + + +
      • +
        + + arrow_drop_down + verify + + +
        + expand_more + expand_less +
        + PASSED + 0:00:17 +
        +
        + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          1597: JEAUBIN-M-43JF: 2019-04-24T15:19:47: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section verify
          +1598: JEAUBIN-M-43JF: 2019-04-24T15:19:47: %GENIE-6-INFO: %[part=1598.1/3][pid=23936][pname=Task-1]: +------------------------------------------------------------------------------+
          +1599: JEAUBIN-M-43JF: 2019-04-24T15:19:47: %GENIE-6-INFO: %[part=1598.2/3][pid=23936][pname=Task-1]: |                              1 out of 5 attempt                              |
          +1600: JEAUBIN-M-43JF: 2019-04-24T15:19:47: %GENIE-6-INFO: %[part=1598.3/3][pid=23936][pname=Task-1]: +------------------------------------------------------------------------------+
          +1601: JEAUBIN-M-43JF: 2019-04-24T15:19:47: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          + show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Process ID                 : 8610
          +BGP Protocol Started, reason:  : configuration
          +BGP Protocol Tag               : 65000
          +BGP Protocol State             : Running
          +BGP MMODE                      : Not Initialized
          +BGP Memory State               : OK
          +BGP asformat                   : asplain
          +
          +BGP attributes information
          +Number of attribute entries    : 2
          +HWM of attribute entries       : 2
          +Bytes used by entries          : 200
          +Entries pending delete         : 0
          +HWM of entries pending delete  : 0
          +BGP paths per attribute HWM    : 1
          +BGP AS path entries            : 0
          +Bytes used by AS path entries  : 0
          +
          +Information regarding configured VRFs:
          +
          +BGP Information for VRF default
          +VRF Id                         : 1
          +VRF state                      : UP
          +Router-ID                      : 10.2.2.2
          +Configured Router-ID           : 10.2.2.2
          +Confed-ID                      : 0
          +Cluster-ID                     : 0.0.0.0
          +No. of configured peers        : 1
          +No. of pending config peers    : 0
          +No. of established peers       : 0
          +VRF RD                         : Not configured
          +
          +    Information for address family IPv4 Unicast in VRF default
          +    Table Id                   : 1
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    1          0               2          2          1          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +    Information for address family IPv6 Unicast in VRF default
          +    Table Id                   : 80000001
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    0          0               0          0          0          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +nx-osv-1# 
          +1605: JEAUBIN-M-43JF: 2019-04-24T15:19:47: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-session' +++
          +show running-config | inc peer-session
          +
          +
          +nx-osv-1# 
          +1610: JEAUBIN-M-43JF: 2019-04-24T15:19:48: %GENIE-6-INFO: %[part=1610.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>
          +1611: JEAUBIN-M-43JF: 2019-04-24T15:19:48: %GENIE-6-INFO: %[part=1610.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1612: JEAUBIN-M-43JF: 2019-04-24T15:19:48: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-policy' +++
          +show running-config | inc peer-policy
          +
          +
          +nx-osv-1# 
          +1616: JEAUBIN-M-43JF: 2019-04-24T15:19:48: %GENIE-6-INFO: %[part=1616.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>
          +1617: JEAUBIN-M-43JF: 2019-04-24T15:19:48: %GENIE-6-INFO: %[part=1616.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1618: JEAUBIN-M-43JF: 2019-04-24T15:19:48: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all dampening parameters' +++
          +show bgp vrf all all dampening parameters
          +
          +
          +nx-osv-1# 
          +1620: JEAUBIN-M-43JF: 2019-04-24T15:19:48: %GENIE-6-INFO: %[part=1620.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>
          +1621: JEAUBIN-M-43JF: 2019-04-24T15:19:48: %GENIE-6-INFO: %[part=1620.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1622: JEAUBIN-M-43JF: 2019-04-24T15:19:48: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all nexthop-database' +++
          +show bgp vrf all all nexthop-database
          +
          +
          +Next Hop table for VRF default, address family IPv4 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +
          +Nexthop: 0.0.0.0, Flags: 0x2, Refcount: 1, IGP cost: 0
          +IGP Route type: 0, IGP preference: 0
          +Nexthop is not-attached local unreachable not-labeled
          +Nexthop last resolved: never, using 0.0.0.0/0
          +Metric next advertise: Never
          +RNH epoch: 0
          +
          +Nexthop: 10.1.1.1, Flags: 0x1, Refcount: 1, IGP cost: 41
          +IGP Route type: 0, IGP preference: 110
          +Attached nexthop: 10.0.2.1, Interface: Ethernet2/2
          +Attached nexthop: 10.0.1.1, Interface: Ethernet2/1
          +Nexthop is not-attached not-local reachable not-labeled
          +Nexthop last resolved: 00:00:10, using 10.1.1.1/32
          +Metric next advertise: Never
          +RNH epoch: 1
          +IPv6 Next-hop table
          +
          +Next Hop table for VRF default, address family IPv6 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +IPv6 Next-hop table
          +
          +nx-osv-1# 
          +1624: JEAUBIN-M-43JF: 2019-04-24T15:19:49: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show routing vrf all' +++
          +show routing vrf all
          +
          +IP Route Table for VRF "default"
          +'*' denotes best ucast next-hop
          +'**' denotes best mcast next-hop
          +'[x/y]' denotes [preference/metric]
          +'%<string>' in via output denotes VRF <string>
          +
          +10.0.1.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, direct
          +10.0.1.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, local
          +10.0.2.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, direct
          +10.0.2.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, local
          +10.1.1.1/32, ubest/mbest: 2/0
          +    *via 10.0.1.1, Eth2/1, [110/41], 1d02h, ospf-1, intra
          +    *via 10.0.2.1, Eth2/2, [110/41], 1d02h, ospf-1, intra
          +10.2.2.2/32, ubest/mbest: 2/0, attached
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, local
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, direct
          +10.22.22.22/32, ubest/mbest: 2/0, attached
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, local
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, direct
          +
          +nx-osv-1# 
          +1627: JEAUBIN-M-43JF: 2019-04-24T15:19:49: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all' +++
          +show bgp vrf all all
          +
          +BGP routing table information for VRF default, address family IPv4 Unicast
          +BGP table version is 161, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +x i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +nx-osv-1# 
          +1630: JEAUBIN-M-43JF: 2019-04-24T15:19:49: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show vrf' +++
          +show vrf
          +
          +VRF-Name                           VRF-ID State   Reason                        
          +default                                 1 Up      --                            
          +management                              2 Up      --                            
          +
          +nx-osv-1# 
          +1632: JEAUBIN-M-43JF: 2019-04-24T15:19:49: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf management all neighbors' +++
          +show bgp vrf management all neighbors
          +
          +Unknown vrf management
          +
          +nx-osv-1# 
          +1634: JEAUBIN-M-43JF: 2019-04-24T15:19:49: %GENIE-6-INFO: %[part=1634.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>
          +1635: JEAUBIN-M-43JF: 2019-04-24T15:19:49: %GENIE-6-INFO: %[part=1634.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1636: JEAUBIN-M-43JF: 2019-04-24T15:19:49: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors' +++
          +show bgp vrf default all neighbors
          +
          +BGP neighbor is 10.1.1.1,  remote AS 65000, ibgp link, Peer index 1
          +  BGP version 4, remote router ID 0.0.0.0
          +  BGP state = Idle, down for 00:00:09, retry in 0.606230
          +  Using loopback0 as update source for this peer
          +  Last read never, hold time = 180, keepalive interval is 60 seconds
          +  Last written never, keepalive timer not running
          +  Received 25169 messages, 1 notifications, 0 bytes in queue
          +  Sent 22965 messages, 48 notifications, 0 bytes in queue
          +  Connections established 48, dropped 48
          +  Connection attempts 0
          +  Last reset by us 00:00:09, due to administratively shutdown
          +  Last reset by peer never, due to No error
          +
          +  Message statistics:
          +                              Sent               Rcvd
          +  Opens:                        49                 48  
          +  Notifications:                48                  1  
          +  Updates:                     108                 96  
          +  Keepalives:                22760              25024  
          +  Route Refresh:                 0                  0  
          +  Capability:                    0                  0  
          +  Total:                     22965              25169  
          +  Total bytes:              436268             478336  
          +  Bytes in queue:                0                  0  
          +
          +  For address family: IPv4 Unicast
          +  BGP table version 161, neighbor version 0
          +  0 accepted paths consume 0 bytes of memory
          +  0 sent paths
          +  Third-party Nexthop will not be computed.
          +
          +  No established BGP session with peer
          +
          +
          +nx-osv-1# 
          +1639: JEAUBIN-M-43JF: 2019-04-24T15:19:50: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all summary' +++
          +show bgp vrf all all summary
          +
          +BGP summary information for VRF default, address family IPv4 Unicast
          +BGP router identifier 10.2.2.2, local AS number 65000
          +BGP table version is 161, IPv4 Unicast config peers 1, capable peers 0
          +2 network entries and 2 paths using 288 bytes of memory
          +BGP attribute entries [2/288], BGP AS path entries [0/0]
          +BGP community entries [0/0], BGP clusterlist entries [0/0]
          +
          +Neighbor        V    AS MsgRcvd MsgSent   TblVer  InQ OutQ Up/Down  State/PfxRcd
          +10.1.1.1        4 65000   25169   22965        0    0    0 00:00:10 Idle     
          +
          +BGP summary information for VRF default, address family IPv6 Unicast
          +
          +nx-osv-1# 
          +1641: JEAUBIN-M-43JF: 2019-04-24T15:19:50: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 advertised-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 advertised-routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 161, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +1645: JEAUBIN-M-43JF: 2019-04-24T15:19:50: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 161, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +x i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +1649: JEAUBIN-M-43JF: 2019-04-24T15:19:50: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 received-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 received-routes
          +
          +
          +Inbound soft reconfiguration for IPv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MDT not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN VPLS not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN EVPN not enabled on 10.1.1.1
          +
          +nx-osv-1#
          +1652: JEAUBIN-M-43JF: 2019-04-24T15:19:50: %GENIE-6-INFO: %[part=1652.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>
          +1653: JEAUBIN-M-43JF: 2019-04-24T15:19:50: %GENIE-6-INFO: %[part=1652.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1654: JEAUBIN-M-43JF: 2019-04-24T15:19:50: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +1655: JEAUBIN-M-43JF: 2019-04-24T15:19:50: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | Commands for learning feature 'Bgp'                                                                                                                |
          +1656: JEAUBIN-M-43JF: 2019-04-24T15:19:50: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +1657: JEAUBIN-M-43JF: 2019-04-24T15:19:50: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Parsed commands                                                                                                                                  |
          +1658: JEAUBIN-M-43JF: 2019-04-24T15:19:50: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +1659: JEAUBIN-M-43JF: 2019-04-24T15:19:50: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpProcessVrfAll'>                                                                              |
          +1660: JEAUBIN-M-43JF: 2019-04-24T15:19:50: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllNextHopDatabase'>                                                                   |
          +1661: JEAUBIN-M-43JF: 2019-04-24T15:19:50: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_routing.ShowRoutingVrfAll'>                                                                             |
          +1662: JEAUBIN-M-43JF: 2019-04-24T15:19:50: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAll'>                                                                                  |
          +1663: JEAUBIN-M-43JF: 2019-04-24T15:19:50: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_vrf.ShowVrf'>                                                                                           |
          +1664: JEAUBIN-M-43JF: 2019-04-24T15:19:50: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'default'}                                              |
          +1665: JEAUBIN-M-43JF: 2019-04-24T15:19:50: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllSummary'>                                                                           |
          +1666: JEAUBIN-M-43JF: 2019-04-24T15:19:50: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsAdvertisedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}        |
          +1667: JEAUBIN-M-43JF: 2019-04-24T15:19:50: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}                  |
          +1668: JEAUBIN-M-43JF: 2019-04-24T15:19:50: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +1669: JEAUBIN-M-43JF: 2019-04-24T15:19:50: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Commands with empty output                                                                                                                       |
          +1670: JEAUBIN-M-43JF: 2019-04-24T15:19:50: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +1671: JEAUBIN-M-43JF: 2019-04-24T15:19:51: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>                                                                                |
          +1672: JEAUBIN-M-43JF: 2019-04-24T15:19:51: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>                                                                                 |
          +1673: JEAUBIN-M-43JF: 2019-04-24T15:19:51: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>                                                               |
          +1674: JEAUBIN-M-43JF: 2019-04-24T15:19:51: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'management'}                                           |
          +1675: JEAUBIN-M-43JF: 2019-04-24T15:19:51: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}          |
          +1676: JEAUBIN-M-43JF: 2019-04-24T15:19:51: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +1677: JEAUBIN-M-43JF: 2019-04-24T15:19:51: %GENIE-6-INFO: %[part=1677.1/2][pid=23936][pname=Task-1]: Comparing current snapshot to initial snapshot
          +1678: JEAUBIN-M-43JF: 2019-04-24T15:19:51: %GENIE-6-INFO: %[part=1677.2/2][pid=23936][pname=Task-1]: Excluding these keys ['if_handle', 'keepalives', 'last_reset', 'reset_reason', 'foreign_port', 'local_port', 'msg_rcvd', 'msg_sent', 'up_down', 'bgp_table_version', 'routing_table_version', 'tbl_ver', 'table_version', 'memory_usage', 'updates', 'mss', 'total', 'total_bytes', 'up_time', 'bgp_negotiated_keepalive_timers', 'hold_time', 'keepalive_interval', 'sent', 'received', 'status_codes', 'holdtime', 'router_id', 'connections_dropped', 'connections_established', 'advertised', 'prefixes', 'routes', 'state_pfxrcd']
          +1679: JEAUBIN-M-43JF: 2019-04-24T15:19:51: %GENIE-3-ERROR: %[pid=23936][pname=Task-1]: Retaking snapshot for the verification as the comparison with original one failed
          +1680: JEAUBIN-M-43JF: 2019-04-24T15:20:01: %GENIE-6-INFO: %[part=1680.1/3][pid=23936][pname=Task-1]: +------------------------------------------------------------------------------+
          +1681: JEAUBIN-M-43JF: 2019-04-24T15:20:01: %GENIE-6-INFO: %[part=1680.2/3][pid=23936][pname=Task-1]: |                              2 out of 5 attempt                              |
          +1682: JEAUBIN-M-43JF: 2019-04-24T15:20:01: %GENIE-6-INFO: %[part=1680.3/3][pid=23936][pname=Task-1]: +------------------------------------------------------------------------------+
          +1683: JEAUBIN-M-43JF: 2019-04-24T15:20:01: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          + show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Process ID                 : 8610
          +BGP Protocol Started, reason:  : configuration
          +BGP Protocol Tag               : 65000
          +BGP Protocol State             : Running
          +BGP MMODE                      : Not Initialized
          +BGP Memory State               : OK
          +BGP asformat                   : asplain
          +
          +BGP attributes information
          +Number of attribute entries    : 2
          +HWM of attribute entries       : 2
          +Bytes used by entries          : 200
          +Entries pending delete         : 0
          +HWM of entries pending delete  : 0
          +BGP paths per attribute HWM    : 1
          +BGP AS path entries            : 0
          +Bytes used by AS path entries  : 0
          +
          +Information regarding configured VRFs:
          +
          +BGP Information for VRF default
          +VRF Id                         : 1
          +VRF state                      : UP
          +Router-ID                      : 10.2.2.2
          +Configured Router-ID           : 10.2.2.2
          +Confed-ID                      : 0
          +Cluster-ID                     : 0.0.0.0
          +No. of configured peers        : 1
          +No. of pending config peers    : 0
          +No. of established peers       : 1
          +VRF RD                         : Not configured
          +
          +    Information for address family IPv4 Unicast in VRF default
          +    Table Id                   : 1
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    1          1               2          2          1          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +    Information for address family IPv6 Unicast in VRF default
          +    Table Id                   : 80000001
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    0          0               0          0          0          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +nx-osv-1# 
          +1687: JEAUBIN-M-43JF: 2019-04-24T15:20:01: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-session' +++
          +show running-config | inc peer-session
          +
          +
          +nx-osv-1# 
          +1691: JEAUBIN-M-43JF: 2019-04-24T15:20:01: %GENIE-6-INFO: %[part=1691.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>
          +1692: JEAUBIN-M-43JF: 2019-04-24T15:20:01: %GENIE-6-INFO: %[part=1691.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1693: JEAUBIN-M-43JF: 2019-04-24T15:20:01: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-policy' +++
          +show running-config | inc peer-policy
          +
          +
          +nx-osv-1# 
          +1698: JEAUBIN-M-43JF: 2019-04-24T15:20:01: %GENIE-6-INFO: %[part=1698.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>
          +1699: JEAUBIN-M-43JF: 2019-04-24T15:20:01: %GENIE-6-INFO: %[part=1698.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1700: JEAUBIN-M-43JF: 2019-04-24T15:20:01: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all dampening parameters' +++
          +show bgp vrf all all dampening parameters
          +
          +
          +nx-osv-1# 
          +1703: JEAUBIN-M-43JF: 2019-04-24T15:20:02: %GENIE-6-INFO: %[part=1703.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>
          +1704: JEAUBIN-M-43JF: 2019-04-24T15:20:02: %GENIE-6-INFO: %[part=1703.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1705: JEAUBIN-M-43JF: 2019-04-24T15:20:02: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all nexthop-database' +++
          +show bgp vrf all all nexthop-database
          +
          +
          +Next Hop table for VRF default, address family IPv4 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +
          +Nexthop: 0.0.0.0, Flags: 0x2, Refcount: 1, IGP cost: 0
          +IGP Route type: 0, IGP preference: 0
          +Nexthop is not-attached local unreachable not-labeled
          +Nexthop last resolved: never, using 0.0.0.0/0
          +Metric next advertise: Never
          +RNH epoch: 0
          +
          +Nexthop: 10.1.1.1, Flags: 0x1, Refcount: 1, IGP cost: 41
          +IGP Route type: 0, IGP preference: 110
          +Attached nexthop: 10.0.2.1, Interface: Ethernet2/2
          +Attached nexthop: 10.0.1.1, Interface: Ethernet2/1
          +Nexthop is not-attached not-local reachable not-labeled
          +Nexthop last resolved: 00:00:23, using 10.1.1.1/32
          +Metric next advertise: Never
          +RNH epoch: 1
          +IPv6 Next-hop table
          +
          +Next Hop table for VRF default, address family IPv6 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +IPv6 Next-hop table
          +
          +nx-osv-1# 
          +1708: JEAUBIN-M-43JF: 2019-04-24T15:20:02: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show routing vrf all' +++
          +show routing vrf all
          +
          +IP Route Table for VRF "default"
          +'*' denotes best ucast next-hop
          +'**' denotes best mcast next-hop
          +'[x/y]' denotes [preference/metric]
          +'%<string>' in via output denotes VRF <string>
          +
          +10.0.1.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, direct
          +10.0.1.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, local
          +10.0.2.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, direct
          +10.0.2.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, local
          +10.1.1.1/32, ubest/mbest: 2/0
          +    *via 10.0.1.1, Eth2/1, [110/41], 1d02h, ospf-1, intra
          +    *via 10.0.2.1, Eth2/2, [110/41], 1d02h, ospf-1, intra
          +10.2.2.2/32, ubest/mbest: 2/0, attached
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, local
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, direct
          +10.11.11.11/32, ubest/mbest: 1/0
          +    *via 10.1.1.1, [200/0], 00:00:11, bgp-65000, internal, tag 65000, 
          +10.22.22.22/32, ubest/mbest: 2/0, attached
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, local
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, direct
          +
          +nx-osv-1# 
          +1712: JEAUBIN-M-43JF: 2019-04-24T15:20:02: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all' +++
          +show bgp vrf all all
          +
          +BGP routing table information for VRF default, address family IPv4 Unicast
          +BGP table version is 163, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +nx-osv-1# 
          +1715: JEAUBIN-M-43JF: 2019-04-24T15:20:02: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show vrf' +++
          +show vrf
          +
          +VRF-Name                           VRF-ID State   Reason                        
          +default                                 1 Up      --                            
          +management                              2 Up      --                            
          +
          +nx-osv-1# 
          +1718: JEAUBIN-M-43JF: 2019-04-24T15:20:02: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf management all neighbors' +++
          +show bgp vrf management all neighbors
          +
          +Unknown vrf management
          +
          +nx-osv-1# 
          +1721: JEAUBIN-M-43JF: 2019-04-24T15:20:03: %GENIE-6-INFO: %[part=1721.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>
          +1722: JEAUBIN-M-43JF: 2019-04-24T15:20:03: %GENIE-6-INFO: %[part=1721.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1723: JEAUBIN-M-43JF: 2019-04-24T15:20:03: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors' +++
          +show bgp vrf default all neighbors
          +
          +BGP neighbor is 10.1.1.1,  remote AS 65000, ibgp link, Peer index 1
          +  BGP version 4, remote router ID 10.1.1.1
          +  BGP state = Established, up for 00:00:12
          +  Using loopback0 as update source for this peer
          +  Last read 00:00:11, hold time = 180, keepalive interval is 60 seconds
          +  Last written 00:00:11, keepalive timer expiry due 00:00:48
          +  Received 25174 messages, 1 notifications, 0 bytes in queue
          +  Sent 22970 messages, 48 notifications, 0 bytes in queue
          +  Connections established 49, dropped 48
          +  Last reset by us 00:00:22, due to administratively shutdown
          +  Last reset by peer never, due to No error
          +
          +  Neighbor capabilities:
          +  Dynamic capability: advertised (mp, refresh, gr) 
          +  Dynamic capability (old): advertised 
          +  Route refresh capability (new): advertised received 
          +  Route refresh capability (old): advertised received 
          +  4-Byte AS capability: advertised received 
          +  Address family IPv4 Unicast: advertised received 
          +  Graceful Restart capability: advertised 
          +
          +  Graceful Restart Parameters:
          +  Address families advertised to peer:
          +    IPv4 Unicast  
          +  Address families received from peer:
          +  Forwarding state preserved by peer for:
          +  Restart time advertised to peer: 120 seconds
          +  Stale time for routes advertised by peer: 300 seconds
          +  Extended Next Hop Encoding Capability: advertised 
          +
          +  Message statistics:
          +                              Sent               Rcvd
          +  Opens:                        50                 49  
          +  Notifications:                48                  1  
          +  Updates:                     110                 98  
          +  Keepalives:                22762              25026  
          +  Route Refresh:                 0                  0  
          +  Capability:                    0                  0  
          +  Total:                     22970              25174  
          +  Total bytes:              436359             478434  
          +  Bytes in queue:                0                  0  
          +
          +  For address family: IPv4 Unicast
          +  BGP table version 163, neighbor version 163
          +  1 accepted paths consume 80 bytes of memory
          +  1 sent paths
          +  Third-party Nexthop will not be computed.
          +
          +  Local host: 10.2.2.2, Local port: 179
          +  Foreign host: 10.1.1.1, Foreign port: 22909
          +  fd = 60
          +
          +
          +nx-osv-1# 
          +1728: JEAUBIN-M-43JF: 2019-04-24T15:20:03: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all summary' +++
          +show bgp vrf all all summary
          +
          +BGP summary information for VRF default, address family IPv4 Unicast
          +BGP router identifier 10.2.2.2, local AS number 65000
          +BGP table version is 163, IPv4 Unicast config peers 1, capable peers 1
          +2 network entries and 2 paths using 288 bytes of memory
          +BGP attribute entries [2/288], BGP AS path entries [0/0]
          +BGP community entries [0/0], BGP clusterlist entries [0/0]
          +
          +Neighbor        V    AS MsgRcvd MsgSent   TblVer  InQ OutQ Up/Down  State/PfxRcd
          +10.1.1.1        4 65000   25174   22970      163    0    0 00:00:13 1         
          +
          +BGP summary information for VRF default, address family IPv6 Unicast
          +
          +nx-osv-1# 
          +1731: JEAUBIN-M-43JF: 2019-04-24T15:20:03: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 advertised-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 advertised-routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 163, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +1735: JEAUBIN-M-43JF: 2019-04-24T15:20:03: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 163, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +1738: JEAUBIN-M-43JF: 2019-04-24T15:20:03: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 received-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 received-routes
          +
          +
          +Inbound soft reconfiguration for IPv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MDT not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN VPLS not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN EVPN not enabled on 10.1.1.1
          +
          +nx-osv-1#
          +1741: JEAUBIN-M-43JF: 2019-04-24T15:20:04: %GENIE-6-INFO: %[part=1741.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>
          +1742: JEAUBIN-M-43JF: 2019-04-24T15:20:04: %GENIE-6-INFO: %[part=1741.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1743: JEAUBIN-M-43JF: 2019-04-24T15:20:04: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +1744: JEAUBIN-M-43JF: 2019-04-24T15:20:04: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | Commands for learning feature 'Bgp'                                                                                                                |
          +1745: JEAUBIN-M-43JF: 2019-04-24T15:20:04: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +1746: JEAUBIN-M-43JF: 2019-04-24T15:20:04: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Parsed commands                                                                                                                                  |
          +1747: JEAUBIN-M-43JF: 2019-04-24T15:20:04: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +1748: JEAUBIN-M-43JF: 2019-04-24T15:20:04: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpProcessVrfAll'>                                                                              |
          +1749: JEAUBIN-M-43JF: 2019-04-24T15:20:04: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllNextHopDatabase'>                                                                   |
          +1750: JEAUBIN-M-43JF: 2019-04-24T15:20:04: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_routing.ShowRoutingVrfAll'>                                                                             |
          +1751: JEAUBIN-M-43JF: 2019-04-24T15:20:04: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAll'>                                                                                  |
          +1752: JEAUBIN-M-43JF: 2019-04-24T15:20:04: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_vrf.ShowVrf'>                                                                                           |
          +1753: JEAUBIN-M-43JF: 2019-04-24T15:20:04: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'default'}                                              |
          +1754: JEAUBIN-M-43JF: 2019-04-24T15:20:04: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllSummary'>                                                                           |
          +1755: JEAUBIN-M-43JF: 2019-04-24T15:20:04: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsAdvertisedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}        |
          +1756: JEAUBIN-M-43JF: 2019-04-24T15:20:04: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}                  |
          +1757: JEAUBIN-M-43JF: 2019-04-24T15:20:04: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +1758: JEAUBIN-M-43JF: 2019-04-24T15:20:04: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Commands with empty output                                                                                                                       |
          +1759: JEAUBIN-M-43JF: 2019-04-24T15:20:04: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +1760: JEAUBIN-M-43JF: 2019-04-24T15:20:04: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>                                                                                |
          +1761: JEAUBIN-M-43JF: 2019-04-24T15:20:04: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>                                                                                 |
          +1762: JEAUBIN-M-43JF: 2019-04-24T15:20:04: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>                                                               |
          +1763: JEAUBIN-M-43JF: 2019-04-24T15:20:04: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'management'}                                           |
          +1764: JEAUBIN-M-43JF: 2019-04-24T15:20:04: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}          |
          +1765: JEAUBIN-M-43JF: 2019-04-24T15:20:04: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +1766: JEAUBIN-M-43JF: 2019-04-24T15:20:04: %GENIE-6-INFO: %[part=1766.1/2][pid=23936][pname=Task-1]: Comparing current snapshot to initial snapshot
          +1767: JEAUBIN-M-43JF: 2019-04-24T15:20:04: %GENIE-6-INFO: %[part=1766.2/2][pid=23936][pname=Task-1]: Excluding these keys ['if_handle', 'keepalives', 'last_reset', 'reset_reason', 'foreign_port', 'local_port', 'msg_rcvd', 'msg_sent', 'up_down', 'bgp_table_version', 'routing_table_version', 'tbl_ver', 'table_version', 'memory_usage', 'updates', 'mss', 'total', 'total_bytes', 'up_time', 'bgp_negotiated_keepalive_timers', 'hold_time', 'keepalive_interval', 'sent', 'received', 'status_codes', 'holdtime', 'router_id', 'connections_dropped', 'connections_established', 'advertised', 'prefixes', 'routes', 'state_pfxrcd']
          +1768: JEAUBIN-M-43JF: 2019-04-24T15:20:04: %GENIE-6-INFO: %[pid=23936][pname=Task-1]: Snapshot is same as initial snapshot
          +1769: JEAUBIN-M-43JF: 2019-04-24T15:20:04: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of section verify is => PASSED
          +1770: JEAUBIN-M-43JF: 2019-04-24T15:20:04: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of testcase Verify_Bgp.uut.5 is => PASSED
          +1771: JEAUBIN-M-43JF: 2019-04-24T15:20:04: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting testcase TriggerDemoShutNoShutBgpV2.uut.4
          +1772: JEAUBIN-M-43JF: 2019-04-24T15:20:04: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section prerequisites
          +1773: JEAUBIN-M-43JF: 2019-04-24T15:20:04: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          + show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Proces
          +
          +
        • +
        +
        +
      • + + +
      +
      +
    • + + +
    • +
      + + arrow_drop_down + TriggerDemoShutNoShutBgpV2.uut.4 + + +
      + expand_more + expand_less +
      + PASSED + 0:00:11 +
      +
      + + + +
        + + + + +
      • +
        + + arrow_drop_down + prerequisites + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:03 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          1772: JEAUBIN-M-43JF: 2019-04-24T15:20:04: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section prerequisites
          +1773: JEAUBIN-M-43JF: 2019-04-24T15:20:04: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          + show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Process ID                 : 8610
          +BGP Protocol Started, reason:  : configuration
          +BGP Protocol Tag               : 65000
          +BGP Protocol State             : Running
          +BGP MMODE                      : Not Initialized
          +BGP Memory State               : OK
          +BGP asformat                   : asplain
          +
          +BGP attributes information
          +Number of attribute entries    : 2
          +HWM of attribute entries       : 2
          +Bytes used by entries          : 200
          +Entries pending delete         : 0
          +HWM of entries pending delete  : 0
          +BGP paths per attribute HWM    : 1
          +BGP AS path entries            : 0
          +Bytes used by AS path entries  : 0
          +
          +Information regarding configured VRFs:
          +
          +BGP Information for VRF default
          +VRF Id                         : 1
          +VRF state                      : UP
          +Router-ID                      : 10.2.2.2
          +Configured Router-ID           : 10.2.2.2
          +Confed-ID                      : 0
          +Cluster-ID                     : 0.0.0.0
          +No. of configured peers        : 1
          +No. of pending config peers    : 0
          +No. of established peers       : 1
          +VRF RD                         : Not configured
          +
          +    Information for address family IPv4 Unicast in VRF default
          +    Table Id                   : 1
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    1          1               2          2          1          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +    Information for address family IPv6 Unicast in VRF default
          +    Table Id                   : 80000001
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    0          0               0          0          0          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +nx-osv-1# 
          +1777: JEAUBIN-M-43JF: 2019-04-24T15:20:04: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-session' +++
          +show running-config | inc peer-session
          +
          +
          +nx-osv-1# 
          +1782: JEAUBIN-M-43JF: 2019-04-24T15:20:04: %GENIE-6-INFO: %[part=1782.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>
          +1783: JEAUBIN-M-43JF: 2019-04-24T15:20:04: %GENIE-6-INFO: %[part=1782.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1784: JEAUBIN-M-43JF: 2019-04-24T15:20:04: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-policy' +++
          +show running-config | inc peer-policy
          +
          +
          +nx-osv-1# 
          +1789: JEAUBIN-M-43JF: 2019-04-24T15:20:05: %GENIE-6-INFO: %[part=1789.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>
          +1790: JEAUBIN-M-43JF: 2019-04-24T15:20:05: %GENIE-6-INFO: %[part=1789.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1791: JEAUBIN-M-43JF: 2019-04-24T15:20:05: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all dampening parameters' +++
          +show bgp vrf all all dampening parameters
          +
          +
          +nx-osv-1# 
          +1794: JEAUBIN-M-43JF: 2019-04-24T15:20:05: %GENIE-6-INFO: %[part=1794.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>
          +1795: JEAUBIN-M-43JF: 2019-04-24T15:20:05: %GENIE-6-INFO: %[part=1794.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1796: JEAUBIN-M-43JF: 2019-04-24T15:20:05: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all nexthop-database' +++
          +show bgp vrf all all nexthop-database
          +
          +
          +Next Hop table for VRF default, address family IPv4 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +
          +Nexthop: 0.0.0.0, Flags: 0x2, Refcount: 1, IGP cost: 0
          +IGP Route type: 0, IGP preference: 0
          +Nexthop is not-attached local unreachable not-labeled
          +Nexthop last resolved: never, using 0.0.0.0/0
          +Metric next advertise: Never
          +RNH epoch: 0
          +
          +Nexthop: 10.1.1.1, Flags: 0x1, Refcount: 1, IGP cost: 41
          +IGP Route type: 0, IGP preference: 110
          +Attached nexthop: 10.0.2.1, Interface: Ethernet2/2
          +Attached nexthop: 10.0.1.1, Interface: Ethernet2/1
          +Nexthop is not-attached not-local reachable not-labeled
          +Nexthop last resolved: 00:00:26, using 10.1.1.1/32
          +Metric next advertise: Never
          +RNH epoch: 1
          +IPv6 Next-hop table
          +
          +Next Hop table for VRF default, address family IPv6 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +IPv6 Next-hop table
          +
          +nx-osv-1# 
          +1799: JEAUBIN-M-43JF: 2019-04-24T15:20:05: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show routing vrf all' +++
          +show routing vrf all
          +
          +IP Route Table for VRF "default"
          +'*' denotes best ucast next-hop
          +'**' denotes best mcast next-hop
          +'[x/y]' denotes [preference/metric]
          +'%<string>' in via output denotes VRF <string>
          +
          +10.0.1.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, direct
          +10.0.1.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, local
          +10.0.2.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, direct
          +10.0.2.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, local
          +10.1.1.1/32, ubest/mbest: 2/0
          +    *via 10.0.1.1, Eth2/1, [110/41], 1d02h, ospf-1, intra
          +    *via 10.0.2.1, Eth2/2, [110/41], 1d02h, ospf-1, intra
          +10.2.2.2/32, ubest/mbest: 2/0, attached
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, local
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, direct
          +10.11.11.11/32, ubest/mbest: 1/0
          +    *via 10.1.1.1, [200/0], 00:00:14, bgp-65000, internal, tag 65000, 
          +10.22.22.22/32, ubest/mbest: 2/0, attached
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, local
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, direct
          +
          +nx-osv-1# 
          +1803: JEAUBIN-M-43JF: 2019-04-24T15:20:05: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all' +++
          +show bgp vrf all all
          +
          +BGP routing table information for VRF default, address family IPv4 Unicast
          +BGP table version is 163, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +nx-osv-1# 
          +1806: JEAUBIN-M-43JF: 2019-04-24T15:20:06: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show vrf' +++
          +show vrf
          +
          +VRF-Name                           VRF-ID State   Reason                        
          +default                                 1 Up      --                            
          +management                              2 Up      --                            
          +
          +nx-osv-1# 
          +1809: JEAUBIN-M-43JF: 2019-04-24T15:20:06: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf management all neighbors' +++
          +show bgp vrf management all neighbors
          +
          +Unknown vrf management
          +
          +nx-osv-1# 
          +1812: JEAUBIN-M-43JF: 2019-04-24T15:20:06: %GENIE-6-INFO: %[part=1812.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>
          +1813: JEAUBIN-M-43JF: 2019-04-24T15:20:06: %GENIE-6-INFO: %[part=1812.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1814: JEAUBIN-M-43JF: 2019-04-24T15:20:06: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors' +++
          +show bgp vrf default all neighbors
          +
          +BGP neighbor is 10.1.1.1,  remote AS 65000, ibgp link, Peer index 1
          +  BGP version 4, remote router ID 10.1.1.1
          +  BGP state = Established, up for 00:00:16
          +  Using loopback0 as update source for this peer
          +  Last read 00:00:15, hold time = 180, keepalive interval is 60 seconds
          +  Last written 00:00:15, keepalive timer expiry due 00:00:44
          +  Received 25174 messages, 1 notifications, 0 bytes in queue
          +  Sent 22970 messages, 48 notifications, 0 bytes in queue
          +  Connections established 49, dropped 48
          +  Last reset by us 00:00:26, due to administratively shutdown
          +  Last reset by peer never, due to No error
          +
          +  Neighbor capabilities:
          +  Dynamic capability: advertised (mp, refresh, gr) 
          +  Dynamic capability (old): advertised 
          +  Route refresh capability (new): advertised received 
          +  Route refresh capability (old): advertised received 
          +  4-Byte AS capability: advertised received 
          +  Address family IPv4 Unicast: advertised received 
          +  Graceful Restart capability: advertised 
          +
          +  Graceful Restart Parameters:
          +  Address families advertised to peer:
          +    IPv4 Unicast  
          +  Address families received from peer:
          +  Forwarding state preserved by peer for:
          +  Restart time advertised to peer: 120 seconds
          +  Stale time for routes advertised by peer: 300 seconds
          +  Extended Next Hop Encoding Capability: advertised 
          +
          +  Message statistics:
          +                              Sent               Rcvd
          +  Opens:                        50                 49  
          +  Notifications:                48                  1  
          +  Updates:                     110                 98  
          +  Keepalives:                22762              25026  
          +  Route Refresh:                 0                  0  
          +  Capability:                    0                  0  
          +  Total:                     22970              25174  
          +  Total bytes:              436359             478434  
          +  Bytes in queue:                0                  0  
          +
          +  For address family: IPv4 Unicast
          +  BGP table version 163, neighbor version 163
          +  1 accepted paths consume 80 bytes of memory
          +  1 sent paths
          +  Third-party Nexthop will not be computed.
          +
          +  Local host: 10.2.2.2, Local port: 179
          +  Foreign host: 10.1.1.1, Foreign port: 22909
          +  fd = 60
          +
          +
          +nx-osv-1# 
          +1818: JEAUBIN-M-43JF: 2019-04-24T15:20:06: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all summary' +++
          +show bgp vrf all all summary
          +
          +BGP summary information for VRF default, address family IPv4 Unicast
          +BGP router identifier 10.2.2.2, local AS number 65000
          +BGP table version is 163, IPv4 Unicast config peers 1, capable peers 1
          +2 network entries and 2 paths using 288 bytes of memory
          +BGP attribute entries [2/288], BGP AS path entries [0/0]
          +BGP community entries [0/0], BGP clusterlist entries [0/0]
          +
          +Neighbor        V    AS MsgRcvd MsgSent   TblVer  InQ OutQ Up/Down  State/PfxRcd
          +10.1.1.1        4 65000   25174   22970      163    0    0 00:00:16 1         
          +
          +BGP summary information for VRF default, address family IPv6 Unicast
          +
          +nx-osv-1# 
          +1821: JEAUBIN-M-43JF: 2019-04-24T15:20:06: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 advertised-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 advertised-routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 163, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +1824: JEAUBIN-M-43JF: 2019-04-24T15:20:06: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 163, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +1828: JEAUBIN-M-43JF: 2019-04-24T15:20:07: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 received-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 received-routes
          +
          +
          +Inbound soft reconfiguration for IPv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MDT not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN VPLS not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN EVPN not enabled on 10.1.1.1
          +
          +nx-osv-1# 
          +1831: JEAUBIN-M-43JF: 2019-04-24T15:20:07: %GENIE-6-INFO: %[part=1831.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>
          +1832: JEAUBIN-M-43JF: 2019-04-24T15:20:07: %GENIE-6-INFO: %[part=1831.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1833: JEAUBIN-M-43JF: 2019-04-24T15:20:07: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +1834: JEAUBIN-M-43JF: 2019-04-24T15:20:07: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | Commands for learning feature 'Bgp'                                                                                                                |
          +1835: JEAUBIN-M-43JF: 2019-04-24T15:20:07: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +1836: JEAUBIN-M-43JF: 2019-04-24T15:20:07: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Parsed commands                                                                                                                                  |
          +1837: JEAUBIN-M-43JF: 2019-04-24T15:20:07: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +1838: JEAUBIN-M-43JF: 2019-04-24T15:20:07: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpProcessVrfAll'>                                                                              |
          +1839: JEAUBIN-M-43JF: 2019-04-24T15:20:07: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllNextHopDatabase'>                                                                   |
          +1840: JEAUBIN-M-43JF: 2019-04-24T15:20:07: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_routing.ShowRoutingVrfAll'>                                                                             |
          +1841: JEAUBIN-M-43JF: 2019-04-24T15:20:07: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAll'>                                                                                  |
          +1842: JEAUBIN-M-43JF: 2019-04-24T15:20:07: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_vrf.ShowVrf'>                                                                                           |
          +1843: JEAUBIN-M-43JF: 2019-04-24T15:20:07: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'default'}                                              |
          +1844: JEAUBIN-M-43JF: 2019-04-24T15:20:07: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllSummary'>                                                                           |
          +1845: JEAUBIN-M-43JF: 2019-04-24T15:20:07: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsAdvertisedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}        |
          +1846: JEAUBIN-M-43JF: 2019-04-24T15:20:07: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}                  |
          +1847: JEAUBIN-M-43JF: 2019-04-24T15:20:07: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +1848: JEAUBIN-M-43JF: 2019-04-24T15:20:07: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Commands with empty output                                                                                                                       |
          +1849: JEAUBIN-M-43JF: 2019-04-24T15:20:07: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +1850: JEAUBIN-M-43JF: 2019-04-24T15:20:07: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>                                                                                |
          +1851: JEAUBIN-M-43JF: 2019-04-24T15:20:07: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>                                                                                 |
          +1852: JEAUBIN-M-43JF: 2019-04-24T15:20:07: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>                                                               |
          +1853: JEAUBIN-M-43JF: 2019-04-24T15:20:07: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'management'}                                           |
          +1854: JEAUBIN-M-43JF: 2019-04-24T15:20:07: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}          |
          +1855: JEAUBIN-M-43JF: 2019-04-24T15:20:07: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +1856: JEAUBIN-M-43JF: 2019-04-24T15:20:07: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of section prerequisites is => PASSED
          +1857: JEAUBIN-M-43JF: 2019-04-24T15:20:07: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section shut
          +1858: JEAUBIN-M-43JF: 2019-04-24T15:20:07: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: config +++
          +config term
          +
          +Enter configuration commands, one per line.  End with CNTL/Z.
          +
          +nx-osv-1(config)# 
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + shut + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:01 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          1857: JEAUBIN-M-43JF: 2019-04-24T15:20:07: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section shut
          +1858: JEAUBIN-M-43JF: 2019-04-24T15:20:07: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: config +++
          +config term
          +
          +Enter configuration commands, one per line.  End with CNTL/Z.
          +
          +nx-osv-1(config)# router bgp 65000
          +
          +
          +nx-osv-1(config-router)# shutdown
          +
          +
          +nx-osv-1(config-router)# end
          +
          +
          +nx-osv-1# 
          +1867: JEAUBIN-M-43JF: 2019-04-24T15:20:08: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of section shut is => PASSED
          +1868:
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + verify + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:03 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          1868: JEAUBIN-M-43JF: 2019-04-24T15:20:08: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section verify
          +1869: JEAUBIN-M-43JF: 2019-04-24T15:20:08: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          +show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Process ID                 : 8610
          +BGP Protocol Started, reason:  : configuration
          +BGP Protocol Tag               : 65000
          +BGP Protocol State             : Shutdown
          +BGP MMODE                      : Not Initialized
          +BGP Memory State               : OK
          +BGP asformat                   : asplain
          +
          +BGP attributes information
          +Number of attribute entries    : 2
          +HWM of attribute entries       : 2
          +Bytes used by entries          : 200
          +Entries pending delete         : 0
          +HWM of entries pending delete  : 0
          +BGP paths per attribute HWM    : 1
          +BGP AS path entries            : 0
          +Bytes used by AS path entries  : 0
          +
          +Information regarding configured VRFs:
          +
          +BGP Information for VRF default
          +VRF Id                         : 1
          +VRF state                      : UP
          +Router-ID                      : 10.2.2.2
          +Configured Router-ID           : 10.2.2.2
          +Confed-ID                      : 0
          +Cluster-ID                     : 0.0.0.0
          +No. of configured peers        : 1
          +No. of pending config peers    : 0
          +No. of established peers       : 0
          +VRF RD                         : Not configured
          +
          +    Information for address family IPv4 Unicast in VRF default
          +    Table Id                   : 1
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    1          0               2          2          1          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +    Information for address family IPv6 Unicast in VRF default
          +    Table Id                   : 80000001
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    0          0               0          0          0          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +nx-osv-1# 
          +1874: JEAUBIN-M-43JF: 2019-04-24T15:20:08: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-session' +++
          +show running-config | inc peer-session
          +
          +
          +nx-osv-1# 
          +1879: JEAUBIN-M-43JF: 2019-04-24T15:20:08: %GENIE-6-INFO: %[part=1879.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>
          +1880: JEAUBIN-M-43JF: 2019-04-24T15:20:08: %GENIE-6-INFO: %[part=1879.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1881: JEAUBIN-M-43JF: 2019-04-24T15:20:08: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-policy' +++
          +show running-config | inc peer-policy
          +
          +
          +nx-osv-1# 
          +1885: JEAUBIN-M-43JF: 2019-04-24T15:20:09: %GENIE-6-INFO: %[part=1885.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>
          +1886: JEAUBIN-M-43JF: 2019-04-24T15:20:09: %GENIE-6-INFO: %[part=1885.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1887: JEAUBIN-M-43JF: 2019-04-24T15:20:09: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all dampening parameters' +++
          +show bgp vrf all all dampening parameters
          +
          +
          +nx-osv-1# 
          +1890: JEAUBIN-M-43JF: 2019-04-24T15:20:09: %GENIE-6-INFO: %[part=1890.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>
          +1891: JEAUBIN-M-43JF: 2019-04-24T15:20:09: %GENIE-6-INFO: %[part=1890.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1892: JEAUBIN-M-43JF: 2019-04-24T15:20:09: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all nexthop-database' +++
          +show bgp vrf all all nexthop-database
          +
          +
          +Next Hop table for VRF default, address family IPv4 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +
          +Nexthop: 0.0.0.0, Flags: 0x2, Refcount: 1, IGP cost: 0
          +IGP Route type: 0, IGP preference: 0
          +Nexthop is not-attached local unreachable not-labeled
          +Nexthop last resolved: never, using 0.0.0.0/0
          +Metric next advertise: Never
          +RNH epoch: 0
          +
          +Nexthop: 10.1.1.1, Flags: 0x1, Refcount: 1, IGP cost: 41
          +IGP Route type: 0, IGP preference: 110
          +Attached nexthop: 10.0.2.1, Interface: Ethernet2/2
          +Attached nexthop: 10.0.1.1, Interface: Ethernet2/1
          +Nexthop is not-attached not-local reachable not-labeled
          +Nexthop last resolved: 00:00:30, using 10.1.1.1/32
          +Metric next advertise: Never
          +RNH epoch: 1
          +IPv6 Next-hop table
          +
          +Next Hop table for VRF default, address family IPv6 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +IPv6 Next-hop table
          +
          +nx-osv-1# 
          +1895: JEAUBIN-M-43JF: 2019-04-24T15:20:09: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show routing vrf all' +++
          +show routing vrf all
          +
          +IP Route Table for VRF "default"
          +'*' denotes best ucast next-hop
          +'**' denotes best mcast next-hop
          +'[x/y]' denotes [preference/metric]
          +'%<string>' in via output denotes VRF <string>
          +
          +10.0.1.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, direct
          +10.0.1.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, local
          +10.0.2.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, direct
          +10.0.2.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, local
          +10.1.1.1/32, ubest/mbest: 2/0
          +    *via 10.0.1.1, Eth2/1, [110/41], 1d02h, ospf-1, intra
          +    *via 10.0.2.1, Eth2/2, [110/41], 1d02h, ospf-1, intra
          +10.2.2.2/32, ubest/mbest: 2/0, attached
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, local
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, direct
          +10.11.11.11/32, ubest/mbest: 1/0
          +    *via 10.1.1.1, [200/0], 00:00:18, bgp-65000, internal, tag 65000, 
          +10.22.22.22/32, ubest/mbest: 2/0, attached
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, local
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, direct
          +
          +nx-osv-1# 
          +1899: JEAUBIN-M-43JF: 2019-04-24T15:20:09: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all' +++
          +show bgp vrf all all
          +
          +BGP routing table information for VRF default, address family IPv4 Unicast
          +BGP table version is 163, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +nx-osv-1# 
          +1902: JEAUBIN-M-43JF: 2019-04-24T15:20:09: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show vrf' +++
          +show vrf
          +
          +VRF-Name                           VRF-ID State   Reason                        
          +default                                 1 Up      --                            
          +management                              2 Up      --                            
          +
          +nx-osv-1# 
          +1905: JEAUBIN-M-43JF: 2019-04-24T15:20:10: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf management all neighbors' +++
          +show bgp vrf management all neighbors
          +
          +Unknown vrf management
          +
          +nx-osv-1# 
          +1908: JEAUBIN-M-43JF: 2019-04-24T15:20:10: %GENIE-6-INFO: %[part=1908.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>
          +1909: JEAUBIN-M-43JF: 2019-04-24T15:20:10: %GENIE-6-INFO: %[part=1908.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1910: JEAUBIN-M-43JF: 2019-04-24T15:20:10: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors' +++
          +show bgp vrf default all neighbors
          +
          +BGP neighbor is 10.1.1.1,  remote AS 65000, ibgp link, Peer index 1
          +  BGP version 4, remote router ID 10.1.1.1
          +  BGP state = Closing, down for 00:00:02
          +  Using loopback0 as update source for this peer
          +  Last read 00:00:19, hold time = 180, keepalive interval is 60 seconds
          +  Last written 00:00:02, keepalive timer not running
          +  Received 25174 messages, 1 notifications, 0 bytes in queue
          +  Sent 22971 messages, 49 notifications, 0 bytes in queue
          +  Connections established 49, dropped 49
          +  Last reset by us 00:00:02, due to administratively shutdown
          +  Last reset by peer never, due to No error
          +
          +  Message statistics:
          +                              Sent               Rcvd
          +  Opens:                        50                 49  
          +  Notifications:                49                  1  
          +  Updates:                     110                 98  
          +  Keepalives:                22762              25026  
          +  Route Refresh:                 0                  0  
          +  Capability:                    0                  0  
          +  Total:                     22971              25174  
          +  Total bytes:              436380             478434  
          +  Bytes in queue:                0                  0  
          +
          +  For address family: IPv4 Unicast
          +  BGP table version 163, neighbor version 0
          +  0 accepted paths consume 0 bytes of memory
          +  0 sent paths
          +  Third-party Nexthop will not be computed.
          +
          +  No established BGP session with peer
          +
          +
          +nx-osv-1# 
          +1913: JEAUBIN-M-43JF: 2019-04-24T15:20:10: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all summary' +++
          +show bgp vrf all all summary
          +
          +BGP summary information for VRF default, address family IPv4 Unicast
          +BGP router identifier 10.2.2.2, local AS number 65000
          +BGP table version is 163, IPv4 Unicast config peers 1, capable peers 0
          +2 network entries and 2 paths using 288 bytes of memory
          +BGP attribute entries [2/288], BGP AS path entries [0/0]
          +BGP community entries [0/0], BGP clusterlist entries [0/0]
          +
          +Neighbor        V    AS MsgRcvd MsgSent   TblVer  InQ OutQ Up/Down  State/PfxRcd
          +10.1.1.1        4 65000   25174   22971        0    0    0 00:00:02 Closing  
          +
          +BGP summary information for VRF default, address family IPv6 Unicast
          +
          +nx-osv-1# 
          +1916: JEAUBIN-M-43JF: 2019-04-24T15:20:10: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 advertised-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 advertised-routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 163, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +1920: JEAUBIN-M-43JF: 2019-04-24T15:20:10: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 164, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +x i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +1924: JEAUBIN-M-43JF: 2019-04-24T15:20:10: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 received-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 received-routes
          +
          +
          +Inbound soft reconfiguration for IPv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MDT not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN VPLS not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN EVPN not enabled on 10.1.1.1
          +
          +nx-osv-1#
          +1927: JEAUBIN-M-43JF: 2019-04-24T15:20:11: %GENIE-6-INFO: %[part=1927.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>
          +1928: JEAUBIN-M-43JF: 2019-04-24T15:20:11: %GENIE-6-INFO: %[part=1927.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1929: JEAUBIN-M-43JF: 2019-04-24T15:20:11: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +1930: JEAUBIN-M-43JF: 2019-04-24T15:20:11: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | Commands for learning feature 'Bgp'                                                                                                                |
          +1931: JEAUBIN-M-43JF: 2019-04-24T15:20:11: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +1932: JEAUBIN-M-43JF: 2019-04-24T15:20:11: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Parsed commands                                                                                                                                  |
          +1933: JEAUBIN-M-43JF: 2019-04-24T15:20:11: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +1934: JEAUBIN-M-43JF: 2019-04-24T15:20:11: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpProcessVrfAll'>                                                                              |
          +1935: JEAUBIN-M-43JF: 2019-04-24T15:20:11: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllNextHopDatabase'>                                                                   |
          +1936: JEAUBIN-M-43JF: 2019-04-24T15:20:11: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_routing.ShowRoutingVrfAll'>                                                                             |
          +1937: JEAUBIN-M-43JF: 2019-04-24T15:20:11: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAll'>                                                                                  |
          +1938: JEAUBIN-M-43JF: 2019-04-24T15:20:11: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_vrf.ShowVrf'>                                                                                           |
          +1939: JEAUBIN-M-43JF: 2019-04-24T15:20:11: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'default'}                                              |
          +1940: JEAUBIN-M-43JF: 2019-04-24T15:20:11: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllSummary'>                                                                           |
          +1941: JEAUBIN-M-43JF: 2019-04-24T15:20:11: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsAdvertisedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}        |
          +1942: JEAUBIN-M-43JF: 2019-04-24T15:20:11: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}                  |
          +1943: JEAUBIN-M-43JF: 2019-04-24T15:20:11: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +1944: JEAUBIN-M-43JF: 2019-04-24T15:20:11: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Commands with empty output                                                                                                                       |
          +1945: JEAUBIN-M-43JF: 2019-04-24T15:20:11: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +1946: JEAUBIN-M-43JF: 2019-04-24T15:20:11: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>                                                                                |
          +1947: JEAUBIN-M-43JF: 2019-04-24T15:20:11: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>                                                                                 |
          +1948: JEAUBIN-M-43JF: 2019-04-24T15:20:11: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>                                                               |
          +1949: JEAUBIN-M-43JF: 2019-04-24T15:20:11: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'management'}                                           |
          +1950: JEAUBIN-M-43JF: 2019-04-24T15:20:11: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}          |
          +1951: JEAUBIN-M-43JF: 2019-04-24T15:20:11: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +1952: JEAUBIN-M-43JF: 2019-04-24T15:20:11: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of section verify is => PASSED
          +1953: JEAUBIN-M-43JF: 2019-04-24T15:20:11: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section unshut
          +1954: JEAUBIN-M-43JF: 2019-04-24T15:20:11: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: config +++
          + config term
          +
          +Enter configuration commands, one per line.  End with CNTL
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + unshut + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:01 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          1953: JEAUBIN-M-43JF: 2019-04-24T15:20:11: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section unshut
          +1954: JEAUBIN-M-43JF: 2019-04-24T15:20:11: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: config +++
          + config term
          +
          +Enter configuration commands, one per line.  End with CNTL/Z.
          +
          +nx-osv-1(config)# router bgp 65000
          +
          +
          +nx-osv-1(config-router)# no shutdown
          +
          +
          +nx-osv-1(config-router)# end
          +
          +
          +nx-osv-1# 
          +1962: JEAUBIN-M-43JF: 2019-04-24T15:20:11: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of section unshut is => PASSED
          +1963:
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + verify_recover + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:03 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          1963: JEAUBIN-M-43JF: 2019-04-24T15:20:12: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section verify_recover
          +1964: JEAUBIN-M-43JF: 2019-04-24T15:20:12: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          +show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Process ID                 : 8610
          +BGP Protocol Started, reason:  : configuration
          +BGP Protocol Tag               : 65000
          +BGP Protocol State             : Running
          +BGP MMODE                      : Not Initialized
          +BGP Memory State               : OK
          +BGP asformat                   : asplain
          +
          +BGP attributes information
          +Number of attribute entries    : 2
          +HWM of attribute entries       : 2
          +Bytes used by entries          : 200
          +Entries pending delete         : 0
          +HWM of entries pending delete  : 0
          +BGP paths per attribute HWM    : 1
          +BGP AS path entries            : 0
          +Bytes used by AS path entries  : 0
          +
          +Information regarding configured VRFs:
          +
          +BGP Information for VRF default
          +VRF Id                         : 1
          +VRF state                      : UP
          +Router-ID                      : 10.2.2.2
          +Configured Router-ID           : 10.2.2.2
          +Confed-ID                      : 0
          +Cluster-ID                     : 0.0.0.0
          +No. of configured peers        : 1
          +No. of pending config peers    : 0
          +No. of established peers       : 0
          +VRF RD                         : Not configured
          +
          +    Information for address family IPv4 Unicast in VRF default
          +    Table Id                   : 1
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    1          0               2          2          1          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +    Information for address family IPv6 Unicast in VRF default
          +    Table Id                   : 80000001
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    0          0               0          0          0          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +nx-osv-1# 
          +1968: JEAUBIN-M-43JF: 2019-04-24T15:20:12: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-session' +++
          +show running-config | inc peer-session
          +
          +
          +nx-osv-1# 
          +1973: JEAUBIN-M-43JF: 2019-04-24T15:20:12: %GENIE-6-INFO: %[part=1973.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>
          +1974: JEAUBIN-M-43JF: 2019-04-24T15:20:12: %GENIE-6-INFO: %[part=1973.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1975: JEAUBIN-M-43JF: 2019-04-24T15:20:12: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-policy' +++
          +show running-config | inc peer-policy
          +
          +
          +nx-osv-1# 
          +1980: JEAUBIN-M-43JF: 2019-04-24T15:20:12: %GENIE-6-INFO: %[part=1980.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>
          +1981: JEAUBIN-M-43JF: 2019-04-24T15:20:12: %GENIE-6-INFO: %[part=1980.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1982: JEAUBIN-M-43JF: 2019-04-24T15:20:12: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all dampening parameters' +++
          +show bgp vrf all all dampening parameters
          +
          +
          +nx-osv-1# 
          +1984: JEAUBIN-M-43JF: 2019-04-24T15:20:13: %GENIE-6-INFO: %[part=1984.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>
          +1985: JEAUBIN-M-43JF: 2019-04-24T15:20:13: %GENIE-6-INFO: %[part=1984.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1986: JEAUBIN-M-43JF: 2019-04-24T15:20:13: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all nexthop-database' +++
          +show bgp vrf all all nexthop-database
          +
          +
          +Next Hop table for VRF default, address family IPv4 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +
          +Nexthop: 0.0.0.0, Flags: 0x2, Refcount: 1, IGP cost: 0
          +IGP Route type: 0, IGP preference: 0
          +Nexthop is not-attached local unreachable not-labeled
          +Nexthop last resolved: never, using 0.0.0.0/0
          +Metric next advertise: Never
          +RNH epoch: 0
          +
          +Nexthop: 10.1.1.1, Flags: 0x1, Refcount: 1, IGP cost: 41
          +IGP Route type: 0, IGP preference: 110
          +Attached nexthop: 10.0.2.1, Interface: Ethernet2/2
          +Attached nexthop: 10.0.1.1, Interface: Ethernet2/1
          +Nexthop is not-attached not-local reachable not-labeled
          +Nexthop last resolved: 00:00:34, using 10.1.1.1/32
          +Metric next advertise: Never
          +RNH epoch: 1
          +IPv6 Next-hop table
          +
          +Next Hop table for VRF default, address family IPv6 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +IPv6 Next-hop table
          +
          +nx-osv-1# 
          +1989: JEAUBIN-M-43JF: 2019-04-24T15:20:13: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show routing vrf all' +++
          +show routing vrf all
          +
          +IP Route Table for VRF "default"
          +'*' denotes best ucast next-hop
          +'**' denotes best mcast next-hop
          +'[x/y]' denotes [preference/metric]
          +'%<string>' in via output denotes VRF <string>
          +
          +10.0.1.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, direct
          +10.0.1.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, local
          +10.0.2.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, direct
          +10.0.2.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, local
          +10.1.1.1/32, ubest/mbest: 2/0
          +    *via 10.0.1.1, Eth2/1, [110/41], 1d02h, ospf-1, intra
          +    *via 10.0.2.1, Eth2/2, [110/41], 1d02h, ospf-1, intra
          +10.2.2.2/32, ubest/mbest: 2/0, attached
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, local
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, direct
          +10.22.22.22/32, ubest/mbest: 2/0, attached
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, local
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, direct
          +
          +nx-osv-1# 
          +1991: JEAUBIN-M-43JF: 2019-04-24T15:20:13: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all' +++
          +show bgp vrf all all
          +
          +BGP routing table information for VRF default, address family IPv4 Unicast
          +BGP table version is 164, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +x i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +nx-osv-1# 
          +1993: JEAUBIN-M-43JF: 2019-04-24T15:20:13: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show vrf' +++
          +show vrf
          +
          +VRF-Name                           VRF-ID State   Reason                        
          +default                                 1 Up      --                            
          +management                              2 Up      --                            
          +
          +nx-osv-1# 
          +1995: JEAUBIN-M-43JF: 2019-04-24T15:20:13: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf management all neighbors' +++
          +show bgp vrf management all neighbors
          +
          +Unknown vrf management
          +
          +nx-osv-1# 
          +1997: JEAUBIN-M-43JF: 2019-04-24T15:20:14: %GENIE-6-INFO: %[part=1997.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>
          +1998: JEAUBIN-M-43JF: 2019-04-24T15:20:14: %GENIE-6-INFO: %[part=1997.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +1999: JEAUBIN-M-43JF: 2019-04-24T15:20:14: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors' +++
          +show bgp vrf default all neighbors
          +
          +BGP neighbor is 10.1.1.1,  remote AS 65000, ibgp link, Peer index 1
          +  BGP version 4, remote router ID 0.0.0.0
          +  BGP state = Idle, down for 00:00:06, retry in 00:00:04
          +  Using loopback0 as update source for this peer
          +  Last read never, hold time = 180, keepalive interval is 60 seconds
          +  Last written never, keepalive timer not running
          +  Received 25174 messages, 1 notifications, 0 bytes in queue
          +  Sent 22971 messages, 49 notifications, 0 bytes in queue
          +  Connections established 49, dropped 49
          +  Connection attempts 0
          +  Last reset by us 00:00:06, due to administratively shutdown
          +  Last reset by peer never, due to No error
          +
          +  Message statistics:
          +                              Sent               Rcvd
          +  Opens:                        50                 49  
          +  Notifications:                49                  1  
          +  Updates:                     110                 98  
          +  Keepalives:                22762              25026  
          +  Route Refresh:                 0                  0  
          +  Capability:                    0                  0  
          +  Total:                     22971              25174  
          +  Total bytes:              436380             478434  
          +  Bytes in queue:                0                  0  
          +
          +  For address family: IPv4 Unicast
          +  BGP table version 164, neighbor version 0
          +  0 accepted paths consume 0 bytes of memory
          +  0 sent paths
          +  Third-party Nexthop will not be computed.
          +
          +  No established BGP session with peer
          +
          +
          +nx-osv-1# 
          +2002: JEAUBIN-M-43JF: 2019-04-24T15:20:14: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all summary' +++
          +show bgp vrf all all summary
          +
          +BGP summary information for VRF default, address family IPv4 Unicast
          +BGP router identifier 10.2.2.2, local AS number 65000
          +BGP table version is 164, IPv4 Unicast config peers 1, capable peers 0
          +2 network entries and 2 paths using 288 bytes of memory
          +BGP attribute entries [2/288], BGP AS path entries [0/0]
          +BGP community entries [0/0], BGP clusterlist entries [0/0]
          +
          +Neighbor        V    AS MsgRcvd MsgSent   TblVer  InQ OutQ Up/Down  State/PfxRcd
          +10.1.1.1        4 65000   25174   22971        0    0    0 00:00:06 Idle     
          +
          +BGP summary information for VRF default, address family IPv6 Unicast
          +
          +nx-osv-1# 
          +2005: JEAUBIN-M-43JF: 2019-04-24T15:20:14: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 advertised-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 advertised-routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 164, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +2010: JEAUBIN-M-43JF: 2019-04-24T15:20:14: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 164, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +x i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +2014: JEAUBIN-M-43JF: 2019-04-24T15:20:14: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 received-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 received-routes
          +
          +
          +Inbound soft reconfiguration for IPv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MDT not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN VPLS not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN EVPN not enabled on 10.1.1.1
          +
          +nx-osv-1#
          +2017: JEAUBIN-M-43JF: 2019-04-24T15:20:15: %GENIE-6-INFO: %[part=2017.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>
          +2018: JEAUBIN-M-43JF: 2019-04-24T15:20:15: %GENIE-6-INFO: %[part=2017.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +2019: JEAUBIN-M-43JF: 2019-04-24T15:20:15: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +2020: JEAUBIN-M-43JF: 2019-04-24T15:20:15: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | Commands for learning feature 'Bgp'                                                                                                                |
          +2021: JEAUBIN-M-43JF: 2019-04-24T15:20:15: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +2022: JEAUBIN-M-43JF: 2019-04-24T15:20:15: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Parsed commands                                                                                                                                  |
          +2023: JEAUBIN-M-43JF: 2019-04-24T15:20:15: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +2024: JEAUBIN-M-43JF: 2019-04-24T15:20:15: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpProcessVrfAll'>                                                                              |
          +2025: JEAUBIN-M-43JF: 2019-04-24T15:20:15: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllNextHopDatabase'>                                                                   |
          +2026: JEAUBIN-M-43JF: 2019-04-24T15:20:15: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_routing.ShowRoutingVrfAll'>                                                                             |
          +2027: JEAUBIN-M-43JF: 2019-04-24T15:20:15: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAll'>                                                                                  |
          +2028: JEAUBIN-M-43JF: 2019-04-24T15:20:15: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_vrf.ShowVrf'>                                                                                           |
          +2029: JEAUBIN-M-43JF: 2019-04-24T15:20:15: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'default'}                                              |
          +2030: JEAUBIN-M-43JF: 2019-04-24T15:20:15: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllSummary'>                                                                           |
          +2031: JEAUBIN-M-43JF: 2019-04-24T15:20:15: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsAdvertisedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}        |
          +2032: JEAUBIN-M-43JF: 2019-04-24T15:20:15: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}                  |
          +2033: JEAUBIN-M-43JF: 2019-04-24T15:20:15: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +2034: JEAUBIN-M-43JF: 2019-04-24T15:20:15: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Commands with empty output                                                                                                                       |
          +2035: JEAUBIN-M-43JF: 2019-04-24T15:20:15: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +2036: JEAUBIN-M-43JF: 2019-04-24T15:20:15: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>                                                                                |
          +2037: JEAUBIN-M-43JF: 2019-04-24T15:20:15: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>                                                                                 |
          +2038: JEAUBIN-M-43JF: 2019-04-24T15:20:15: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>                                                               |
          +2039: JEAUBIN-M-43JF: 2019-04-24T15:20:15: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'management'}                                           |
          +2040: JEAUBIN-M-43JF: 2019-04-24T15:20:15: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}          |
          +2041: JEAUBIN-M-43JF: 2019-04-24T15:20:15: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +2042: JEAUBIN-M-43JF: 2019-04-24T15:20:15: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of section verify_recover is => PASSED
          +2043: JEAUBIN-M-43JF: 2019-04-24T15:20:15: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of testcase TriggerDemoShutNoShutBgpV2.uut.4 is => PASSED
          +2044: JEAUBIN-M-43JF: 2019-04-24T15:20:15: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting testcase Verify_Bgp.uut.6
          +2045: JEAUBIN-M
          +
          +
        • +
        +
        +
      • + + +
      +
      +
    • + + +
    • +
      + + arrow_drop_down + Verify_Bgp.uut.6 + + +
      + expand_more + expand_less +
      + PASSED + 0:00:16 +
      +
      + + + +
        + + + + +
      • +
        + + arrow_drop_down + verify + + +
        + expand_more + expand_less +
        + PASSED + 0:00:16 +
        +
        + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          2045: JEAUBIN-M-43JF: 2019-04-24T15:20:15: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section verify
          +2046: JEAUBIN-M-43JF: 2019-04-24T15:20:15: %GENIE-6-INFO: %[part=2046.1/3][pid=23936][pname=Task-1]: +------------------------------------------------------------------------------+
          +2047: JEAUBIN-M-43JF: 2019-04-24T15:20:15: %GENIE-6-INFO: %[part=2046.2/3][pid=23936][pname=Task-1]: |                              1 out of 5 attempt                              |
          +2048: JEAUBIN-M-43JF: 2019-04-24T15:20:15: %GENIE-6-INFO: %[part=2046.3/3][pid=23936][pname=Task-1]: +------------------------------------------------------------------------------+
          +2049: JEAUBIN-M-43JF: 2019-04-24T15:20:15: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          + show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Process ID                 : 8610
          +BGP Protocol Started, reason:  : configuration
          +BGP Protocol Tag               : 65000
          +BGP Protocol State             : Running
          +BGP MMODE                      : Not Initialized
          +BGP Memory State               : OK
          +BGP asformat                   : asplain
          +
          +BGP attributes information
          +Number of attribute entries    : 2
          +HWM of attribute entries       : 2
          +Bytes used by entries          : 200
          +Entries pending delete         : 0
          +HWM of entries pending delete  : 0
          +BGP paths per attribute HWM    : 1
          +BGP AS path entries            : 0
          +Bytes used by AS path entries  : 0
          +
          +Information regarding configured VRFs:
          +
          +BGP Information for VRF default
          +VRF Id                         : 1
          +VRF state                      : UP
          +Router-ID                      : 10.2.2.2
          +Configured Router-ID           : 10.2.2.2
          +Confed-ID                      : 0
          +Cluster-ID                     : 0.0.0.0
          +No. of configured peers        : 1
          +No. of pending config peers    : 0
          +No. of established peers       : 0
          +VRF RD                         : Not configured
          +
          +    Information for address family IPv4 Unicast in VRF default
          +    Table Id                   : 1
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    1          0               2          2          1          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +    Information for address family IPv6 Unicast in VRF default
          +    Table Id                   : 80000001
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    0          0               0          0          0          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +nx-osv-1# 
          +2053: JEAUBIN-M-43JF: 2019-04-24T15:20:15: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-session' +++
          +show running-config | inc peer-session
          +
          +
          +nx-osv-1# 
          +2058: JEAUBIN-M-43JF: 2019-04-24T15:20:15: %GENIE-6-INFO: %[part=2058.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>
          +2059: JEAUBIN-M-43JF: 2019-04-24T15:20:15: %GENIE-6-INFO: %[part=2058.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +2060: JEAUBIN-M-43JF: 2019-04-24T15:20:15: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-policy' +++
          +show running-config | inc peer-policy
          +
          +
          +nx-osv-1# 
          +2064: JEAUBIN-M-43JF: 2019-04-24T15:20:16: %GENIE-6-INFO: %[part=2064.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>
          +2065: JEAUBIN-M-43JF: 2019-04-24T15:20:16: %GENIE-6-INFO: %[part=2064.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +2066: JEAUBIN-M-43JF: 2019-04-24T15:20:16: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all dampening parameters' +++
          +show bgp vrf all all dampening parameters
          +
          +
          +nx-osv-1# 
          +2069: JEAUBIN-M-43JF: 2019-04-24T15:20:16: %GENIE-6-INFO: %[part=2069.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>
          +2070: JEAUBIN-M-43JF: 2019-04-24T15:20:16: %GENIE-6-INFO: %[part=2069.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +2071: JEAUBIN-M-43JF: 2019-04-24T15:20:16: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all nexthop-database' +++
          +show bgp vrf all all nexthop-database
          +
          +
          +Next Hop table for VRF default, address family IPv4 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +
          +Nexthop: 0.0.0.0, Flags: 0x2, Refcount: 1, IGP cost: 0
          +IGP Route type: 0, IGP preference: 0
          +Nexthop is not-attached local unreachable not-labeled
          +Nexthop last resolved: never, using 0.0.0.0/0
          +Metric next advertise: Never
          +RNH epoch: 0
          +
          +Nexthop: 10.1.1.1, Flags: 0x1, Refcount: 1, IGP cost: 41
          +IGP Route type: 0, IGP preference: 110
          +Attached nexthop: 10.0.2.1, Interface: Ethernet2/2
          +Attached nexthop: 10.0.1.1, Interface: Ethernet2/1
          +Nexthop is not-attached not-local reachable not-labeled
          +Nexthop last resolved: 00:00:37, using 10.1.1.1/32
          +Metric next advertise: Never
          +RNH epoch: 1
          +IPv6 Next-hop table
          +
          +Next Hop table for VRF default, address family IPv6 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +IPv6 Next-hop table
          +
          +nx-osv-1# 
          +2074: JEAUBIN-M-43JF: 2019-04-24T15:20:16: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show routing vrf all' +++
          +show routing vrf all
          +
          +IP Route Table for VRF "default"
          +'*' denotes best ucast next-hop
          +'**' denotes best mcast next-hop
          +'[x/y]' denotes [preference/metric]
          +'%<string>' in via output denotes VRF <string>
          +
          +10.0.1.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, direct
          +10.0.1.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, local
          +10.0.2.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, direct
          +10.0.2.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, local
          +10.1.1.1/32, ubest/mbest: 2/0
          +    *via 10.0.1.1, Eth2/1, [110/41], 1d02h, ospf-1, intra
          +    *via 10.0.2.1, Eth2/2, [110/41], 1d02h, ospf-1, intra
          +10.2.2.2/32, ubest/mbest: 2/0, attached
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, local
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, direct
          +10.22.22.22/32, ubest/mbest: 2/0, attached
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, local
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, direct
          +
          +nx-osv-1# 
          +2076: JEAUBIN-M-43JF: 2019-04-24T15:20:16: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all' +++
          +show bgp vrf all all
          +
          +BGP routing table information for VRF default, address family IPv4 Unicast
          +BGP table version is 165, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +nx-osv-1# 
          +2079: JEAUBIN-M-43JF: 2019-04-24T15:20:17: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show vrf' +++
          +show vrf
          +
          +VRF-Name                           VRF-ID State   Reason                        
          +default                                 1 Up      --                            
          +management                              2 Up      --                            
          +
          +nx-osv-1# 
          +2082: JEAUBIN-M-43JF: 2019-04-24T15:20:17: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf management all neighbors' +++
          +show bgp vrf management all neighbors
          +
          +Unknown vrf management
          +
          +nx-osv-1# 
          +2085: JEAUBIN-M-43JF: 2019-04-24T15:20:17: %GENIE-6-INFO: %[part=2085.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>
          +2086: JEAUBIN-M-43JF: 2019-04-24T15:20:17: %GENIE-6-INFO: %[part=2085.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +2087: JEAUBIN-M-43JF: 2019-04-24T15:20:17: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors' +++
          +show bgp vrf default all neighbors
          +
          +BGP neighbor is 10.1.1.1,  remote AS 65000, ibgp link, Peer index 1
          +  BGP version 4, remote router ID 10.1.1.1
          +  BGP state = Established, up for 00:00:01
          +  Using loopback0 as update source for this peer
          +  Last read 0.634353, hold time = 180, keepalive interval is 60 seconds
          +  Last written 0.029000, keepalive timer expiry due 00:00:59
          +  Received 25179 messages, 1 notifications, 0 bytes in queue
          +  Sent 22976 messages, 49 notifications, 0 bytes in queue
          +  Connections established 50, dropped 49
          +  Last reset by us 00:00:09, due to administratively shutdown
          +  Last reset by peer never, due to No error
          +
          +  Neighbor capabilities:
          +  Dynamic capability: advertised (mp, refresh, gr) 
          +  Dynamic capability (old): advertised 
          +  Route refresh capability (new): advertised received 
          +  Route refresh capability (old): advertised received 
          +  4-Byte AS capability: advertised received 
          +  Address family IPv4 Unicast: advertised received 
          +  Graceful Restart capability: advertised 
          +
          +  Graceful Restart Parameters:
          +  Address families advertised to peer:
          +    IPv4 Unicast  
          +  Address families received from peer:
          +  Forwarding state preserved by peer for:
          +  Restart time advertised to peer: 120 seconds
          +  Stale time for routes advertised by peer: 300 seconds
          +  Extended Next Hop Encoding Capability: advertised 
          +
          +  Message statistics:
          +                              Sent               Rcvd
          +  Opens:                        51                 50  
          +  Notifications:                49                  1  
          +  Updates:                     112                100  
          +  Keepalives:                22764              25028  
          +  Route Refresh:                 0                  0  
          +  Capability:                    0                  0  
          +  Total:                     22976              25179  
          +  Total bytes:              436471             478532  
          +  Bytes in queue:                0                  0  
          +
          +  For address family: IPv4 Unicast
          +  BGP table version 166, neighbor version 166
          +  1 accepted paths consume 80 bytes of memory
          +  1 sent paths
          +  Third-party Nexthop will not be computed.
          +
          +  Local host: 10.2.2.2, Local port: 179
          +  Foreign host: 10.1.1.1, Foreign port: 30767
          +  fd = 60
          +
          +
          +nx-osv-1# 
          +2091: JEAUBIN-M-43JF: 2019-04-24T15:20:17: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all summary' +++
          +show bgp vrf all all summary
          +
          +BGP summary information for VRF default, address family IPv4 Unicast
          +BGP router identifier 10.2.2.2, local AS number 65000
          +BGP table version is 166, IPv4 Unicast config peers 1, capable peers 1
          +2 network entries and 2 paths using 288 bytes of memory
          +BGP attribute entries [2/288], BGP AS path entries [0/0]
          +BGP community entries [0/0], BGP clusterlist entries [0/0]
          +
          +Neighbor        V    AS MsgRcvd MsgSent   TblVer  InQ OutQ Up/Down  State/PfxRcd
          +10.1.1.1        4 65000   25179   22976      166    0    0 00:00:01 1         
          +
          +BGP summary information for VRF default, address family IPv6 Unicast
          +
          +nx-osv-1# 
          +2094: JEAUBIN-M-43JF: 2019-04-24T15:20:17: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 advertised-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 advertised-routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 166, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +2098: JEAUBIN-M-43JF: 2019-04-24T15:20:17: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 166, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +2102: JEAUBIN-M-43JF: 2019-04-24T15:20:18: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 received-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 received-routes
          +
          +
          +Inbound soft reconfiguration for IPv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MDT not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN VPLS not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN EVPN not enabled on 10.1.1.1
          +
          +nx-osv-1#
          +2105: JEAUBIN-M-43JF: 2019-04-24T15:20:18: %GENIE-6-INFO: %[part=2105.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>
          +2106: JEAUBIN-M-43JF: 2019-04-24T15:20:18: %GENIE-6-INFO: %[part=2105.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +2107: JEAUBIN-M-43JF: 2019-04-24T15:20:18: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +2108: JEAUBIN-M-43JF: 2019-04-24T15:20:18: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | Commands for learning feature 'Bgp'                                                                                                                |
          +2109: JEAUBIN-M-43JF: 2019-04-24T15:20:18: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +2110: JEAUBIN-M-43JF: 2019-04-24T15:20:18: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Parsed commands                                                                                                                                  |
          +2111: JEAUBIN-M-43JF: 2019-04-24T15:20:18: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +2112: JEAUBIN-M-43JF: 2019-04-24T15:20:18: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpProcessVrfAll'>                                                                              |
          +2113: JEAUBIN-M-43JF: 2019-04-24T15:20:18: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllNextHopDatabase'>                                                                   |
          +2114: JEAUBIN-M-43JF: 2019-04-24T15:20:18: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_routing.ShowRoutingVrfAll'>                                                                             |
          +2115: JEAUBIN-M-43JF: 2019-04-24T15:20:18: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAll'>                                                                                  |
          +2116: JEAUBIN-M-43JF: 2019-04-24T15:20:18: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_vrf.ShowVrf'>                                                                                           |
          +2117: JEAUBIN-M-43JF: 2019-04-24T15:20:18: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'default'}                                              |
          +2118: JEAUBIN-M-43JF: 2019-04-24T15:20:18: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllSummary'>                                                                           |
          +2119: JEAUBIN-M-43JF: 2019-04-24T15:20:18: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsAdvertisedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}        |
          +2120: JEAUBIN-M-43JF: 2019-04-24T15:20:18: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}                  |
          +2121: JEAUBIN-M-43JF: 2019-04-24T15:20:18: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +2122: JEAUBIN-M-43JF: 2019-04-24T15:20:18: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Commands with empty output                                                                                                                       |
          +2123: JEAUBIN-M-43JF: 2019-04-24T15:20:18: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +2124: JEAUBIN-M-43JF: 2019-04-24T15:20:18: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>                                                                                |
          +2125: JEAUBIN-M-43JF: 2019-04-24T15:20:18: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>                                                                                 |
          +2126: JEAUBIN-M-43JF: 2019-04-24T15:20:18: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>                                                               |
          +2127: JEAUBIN-M-43JF: 2019-04-24T15:20:18: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'management'}                                           |
          +2128: JEAUBIN-M-43JF: 2019-04-24T15:20:18: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}          |
          +2129: JEAUBIN-M-43JF: 2019-04-24T15:20:18: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +2130: JEAUBIN-M-43JF: 2019-04-24T15:20:18: %GENIE-6-INFO: %[part=2130.1/2][pid=23936][pname=Task-1]: Comparing current snapshot to initial snapshot
          +2131: JEAUBIN-M-43JF: 2019-04-24T15:20:18: %GENIE-6-INFO: %[part=2130.2/2][pid=23936][pname=Task-1]: Excluding these keys ['if_handle', 'keepalives', 'last_reset', 'reset_reason', 'foreign_port', 'local_port', 'msg_rcvd', 'msg_sent', 'up_down', 'bgp_table_version', 'routing_table_version', 'tbl_ver', 'table_version', 'memory_usage', 'updates', 'mss', 'total', 'total_bytes', 'up_time', 'bgp_negotiated_keepalive_timers', 'hold_time', 'keepalive_interval', 'sent', 'received', 'status_codes', 'holdtime', 'router_id', 'connections_dropped', 'connections_established', 'advertised', 'prefixes', 'routes', 'state_pfxrcd']
          +2132: JEAUBIN-M-43JF: 2019-04-24T15:20:18: %GENIE-3-ERROR: %[pid=23936][pname=Task-1]: Retaking snapshot for the verification as the comparison with original one failed
          +2133: JEAUBIN-M-43JF: 2019-04-24T15:20:28: %GENIE-6-INFO: %[part=2133.1/3][pid=23936][pname=Task-1]: +------------------------------------------------------------------------------+
          +2134: JEAUBIN-M-43JF: 2019-04-24T15:20:28: %GENIE-6-INFO: %[part=2133.2/3][pid=23936][pname=Task-1]: |                              2 out of 5 attempt                              |
          +2135: JEAUBIN-M-43JF: 2019-04-24T15:20:28: %GENIE-6-INFO: %[part=2133.3/3][pid=23936][pname=Task-1]: +------------------------------------------------------------------------------+
          +2136: JEAUBIN-M-43JF: 2019-04-24T15:20:28: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          + show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Process ID                 : 8610
          +BGP Protocol Started, reason:  : configuration
          +BGP Protocol Tag               : 65000
          +BGP Protocol State             : Running
          +BGP MMODE                      : Not Initialized
          +BGP Memory State               : OK
          +BGP asformat                   : asplain
          +
          +BGP attributes information
          +Number of attribute entries    : 2
          +HWM of attribute entries       : 2
          +Bytes used by entries          : 200
          +Entries pending delete         : 0
          +HWM of entries pending delete  : 0
          +BGP paths per attribute HWM    : 1
          +BGP AS path entries            : 0
          +Bytes used by AS path entries  : 0
          +
          +Information regarding configured VRFs:
          +
          +BGP Information for VRF default
          +VRF Id                         : 1
          +VRF state                      : UP
          +Router-ID                      : 10.2.2.2
          +Configured Router-ID           : 10.2.2.2
          +Confed-ID                      : 0
          +Cluster-ID                     : 0.0.0.0
          +No. of configured peers        : 1
          +No. of pending config peers    : 0
          +No. of established peers       : 1
          +VRF RD                         : Not configured
          +
          +    Information for address family IPv4 Unicast in VRF default
          +    Table Id                   : 1
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    1          1               2          2          1          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +    Information for address family IPv6 Unicast in VRF default
          +    Table Id                   : 80000001
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    0          0               0          0          0          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +nx-osv-1# 
          +2141: JEAUBIN-M-43JF: 2019-04-24T15:20:28: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-session' +++
          +show running-config | inc peer-session
          +
          +
          +nx-osv-1# 
          +2145: JEAUBIN-M-43JF: 2019-04-24T15:20:28: %GENIE-6-INFO: %[part=2145.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>
          +2146: JEAUBIN-M-43JF: 2019-04-24T15:20:28: %GENIE-6-INFO: %[part=2145.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +2147: JEAUBIN-M-43JF: 2019-04-24T15:20:28: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-policy' +++
          +show running-config | inc peer-policy
          +
          +
          +nx-osv-1# 
          +2150: JEAUBIN-M-43JF: 2019-04-24T15:20:29: %GENIE-6-INFO: %[part=2150.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>
          +2151: JEAUBIN-M-43JF: 2019-04-24T15:20:29: %GENIE-6-INFO: %[part=2150.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +2152: JEAUBIN-M-43JF: 2019-04-24T15:20:29: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all dampening parameters' +++
          +show bgp vrf all all dampening parameters
          +
          +
          +nx-osv-1# 
          +2154: JEAUBIN-M-43JF: 2019-04-24T15:20:29: %GENIE-6-INFO: %[part=2154.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>
          +2155: JEAUBIN-M-43JF: 2019-04-24T15:20:29: %GENIE-6-INFO: %[part=2154.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +2156: JEAUBIN-M-43JF: 2019-04-24T15:20:29: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all nexthop-database' +++
          +show bgp vrf all all nexthop-database
          +
          +
          +Next Hop table for VRF default, address family IPv4 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +
          +Nexthop: 0.0.0.0, Flags: 0x2, Refcount: 1, IGP cost: 0
          +IGP Route type: 0, IGP preference: 0
          +Nexthop is not-attached local unreachable not-labeled
          +Nexthop last resolved: never, using 0.0.0.0/0
          +Metric next advertise: Never
          +RNH epoch: 0
          +
          +Nexthop: 10.1.1.1, Flags: 0x1, Refcount: 1, IGP cost: 41
          +IGP Route type: 0, IGP preference: 110
          +Attached nexthop: 10.0.2.1, Interface: Ethernet2/2
          +Attached nexthop: 10.0.1.1, Interface: Ethernet2/1
          +Nexthop is not-attached not-local reachable not-labeled
          +Nexthop last resolved: 00:00:50, using 10.1.1.1/32
          +Metric next advertise: Never
          +RNH epoch: 1
          +IPv6 Next-hop table
          +
          +Next Hop table for VRF default, address family IPv6 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +IPv6 Next-hop table
          +
          +nx-osv-1# 
          +2159: JEAUBIN-M-43JF: 2019-04-24T15:20:29: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show routing vrf all' +++
          +show routing vrf all
          +
          +IP Route Table for VRF "default"
          +'*' denotes best ucast next-hop
          +'**' denotes best mcast next-hop
          +'[x/y]' denotes [preference/metric]
          +'%<string>' in via output denotes VRF <string>
          +
          +10.0.1.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, direct
          +10.0.1.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, local
          +10.0.2.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, direct
          +10.0.2.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, local
          +10.1.1.1/32, ubest/mbest: 2/0
          +    *via 10.0.1.1, Eth2/1, [110/41], 1d02h, ospf-1, intra
          +    *via 10.0.2.1, Eth2/2, [110/41], 1d02h, ospf-1, intra
          +10.2.2.2/32, ubest/mbest: 2/0, attached
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, local
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, direct
          +10.11.11.11/32, ubest/mbest: 1/0
          +    *via 10.1.1.1, [200/0], 00:00:13, bgp-65000, internal, tag 65000, 
          +10.22.22.22/32, ubest/mbest: 2/0, attached
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, local
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, direct
          +
          +nx-osv-1# 
          +2163: JEAUBIN-M-43JF: 2019-04-24T15:20:29: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all' +++
          +show bgp vrf all all
          +
          +BGP routing table information for VRF default, address family IPv4 Unicast
          +BGP table version is 166, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +nx-osv-1# 
          +2165: JEAUBIN-M-43JF: 2019-04-24T15:20:29: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show vrf' +++
          +show vrf
          +
          +VRF-Name                           VRF-ID State   Reason                        
          +default                                 1 Up      --                            
          +management                              2 Up      --                            
          +
          +nx-osv-1# 
          +2168: JEAUBIN-M-43JF: 2019-04-24T15:20:30: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf management all neighbors' +++
          +show bgp vrf management all neighbors
          +
          +Unknown vrf management
          +
          +nx-osv-1# 
          +2171: JEAUBIN-M-43JF: 2019-04-24T15:20:30: %GENIE-6-INFO: %[part=2171.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>
          +2172: JEAUBIN-M-43JF: 2019-04-24T15:20:30: %GENIE-6-INFO: %[part=2171.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +2173: JEAUBIN-M-43JF: 2019-04-24T15:20:30: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors' +++
          +show bgp vrf default all neighbors
          +
          +BGP neighbor is 10.1.1.1,  remote AS 65000, ibgp link, Peer index 1
          +  BGP version 4, remote router ID 10.1.1.1
          +  BGP state = Established, up for 00:00:13
          +  Using loopback0 as update source for this peer
          +  Last read 00:00:13, hold time = 180, keepalive interval is 60 seconds
          +  Last written 00:00:12, keepalive timer expiry due 00:00:47
          +  Received 25179 messages, 1 notifications, 0 bytes in queue
          +  Sent 22976 messages, 49 notifications, 0 bytes in queue
          +  Connections established 50, dropped 49
          +  Last reset by us 00:00:22, due to administratively shutdown
          +  Last reset by peer never, due to No error
          +
          +  Neighbor capabilities:
          +  Dynamic capability: advertised (mp, refresh, gr) 
          +  Dynamic capability (old): advertised 
          +  Route refresh capability (new): advertised received 
          +  Route refresh capability (old): advertised received 
          +  4-Byte AS capability: advertised received 
          +  Address family IPv4 Unicast: advertised received 
          +  Graceful Restart capability: advertised 
          +
          +  Graceful Restart Parameters:
          +  Address families advertised to peer:
          +    IPv4 Unicast  
          +  Address families received from peer:
          +  Forwarding state preserved by peer for:
          +  Restart time advertised to peer: 120 seconds
          +  Stale time for routes advertised by peer: 300 seconds
          +  Extended Next Hop Encoding Capability: advertised 
          +
          +  Message statistics:
          +                              Sent               Rcvd
          +  Opens:                        51                 50  
          +  Notifications:                49                  1  
          +  Updates:                     112                100  
          +  Keepalives:                22764              25028  
          +  Route Refresh:                 0                  0  
          +  Capability:                    0                  0  
          +  Total:                     22976              25179  
          +  Total bytes:              436471             478532  
          +  Bytes in queue:                0                  0  
          +
          +  For address family: IPv4 Unicast
          +  BGP table version 166, neighbor version 166
          +  1 accepted paths consume 80 bytes of memory
          +  1 sent paths
          +  Third-party Nexthop will not be computed.
          +
          +  Local host: 10.2.2.2, Local port: 179
          +  Foreign host: 10.1.1.1, Foreign port: 30767
          +  fd = 60
          +
          +
          +nx-osv-1# 
          +2177: JEAUBIN-M-43JF: 2019-04-24T15:20:30: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all summary' +++
          +show bgp vrf all all summary
          +
          +BGP summary information for VRF default, address family IPv4 Unicast
          +BGP router identifier 10.2.2.2, local AS number 65000
          +BGP table version is 166, IPv4 Unicast config peers 1, capable peers 1
          +2 network entries and 2 paths using 288 bytes of memory
          +BGP attribute entries [2/288], BGP AS path entries [0/0]
          +BGP community entries [0/0], BGP clusterlist entries [0/0]
          +
          +Neighbor        V    AS MsgRcvd MsgSent   TblVer  InQ OutQ Up/Down  State/PfxRcd
          +10.1.1.1        4 65000   25179   22976      166    0    0 00:00:14 1         
          +
          +BGP summary information for VRF default, address family IPv6 Unicast
          +
          +nx-osv-1# 
          +2180: JEAUBIN-M-43JF: 2019-04-24T15:20:30: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 advertised-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 advertised-routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 166, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +2184: JEAUBIN-M-43JF: 2019-04-24T15:20:30: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 166, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +2188: JEAUBIN-M-43JF: 2019-04-24T15:20:31: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 received-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 received-routes
          +
          +
          +Inbound soft reconfiguration for IPv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MDT not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN VPLS not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN EVPN not enabled on 10.1.1.1
          +
          +nx-osv-1#
          +2191: JEAUBIN-M-43JF: 2019-04-24T15:20:31: %GENIE-6-INFO: %[part=2191.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>
          +2192: JEAUBIN-M-43JF: 2019-04-24T15:20:31: %GENIE-6-INFO: %[part=2191.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +2193: JEAUBIN-M-43JF: 2019-04-24T15:20:31: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +2194: JEAUBIN-M-43JF: 2019-04-24T15:20:31: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | Commands for learning feature 'Bgp'                                                                                                                |
          +2195: JEAUBIN-M-43JF: 2019-04-24T15:20:31: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +2196: JEAUBIN-M-43JF: 2019-04-24T15:20:31: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Parsed commands                                                                                                                                  |
          +2197: JEAUBIN-M-43JF: 2019-04-24T15:20:31: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +2198: JEAUBIN-M-43JF: 2019-04-24T15:20:31: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpProcessVrfAll'>                                                                              |
          +2199: JEAUBIN-M-43JF: 2019-04-24T15:20:31: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllNextHopDatabase'>                                                                   |
          +2200: JEAUBIN-M-43JF: 2019-04-24T15:20:31: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_routing.ShowRoutingVrfAll'>                                                                             |
          +2201: JEAUBIN-M-43JF: 2019-04-24T15:20:31: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAll'>                                                                                  |
          +2202: JEAUBIN-M-43JF: 2019-04-24T15:20:31: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_vrf.ShowVrf'>                                                                                           |
          +2203: JEAUBIN-M-43JF: 2019-04-24T15:20:31: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'default'}                                              |
          +2204: JEAUBIN-M-43JF: 2019-04-24T15:20:31: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllSummary'>                                                                           |
          +2205: JEAUBIN-M-43JF: 2019-04-24T15:20:31: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsAdvertisedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}        |
          +2206: JEAUBIN-M-43JF: 2019-04-24T15:20:31: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}                  |
          +2207: JEAUBIN-M-43JF: 2019-04-24T15:20:31: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +2208: JEAUBIN-M-43JF: 2019-04-24T15:20:31: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Commands with empty output                                                                                                                       |
          +2209: JEAUBIN-M-43JF: 2019-04-24T15:20:31: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +2210: JEAUBIN-M-43JF: 2019-04-24T15:20:31: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>                                                                                |
          +2211: JEAUBIN-M-43JF: 2019-04-24T15:20:31: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>                                                                                 |
          +2212: JEAUBIN-M-43JF: 2019-04-24T15:20:31: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>                                                               |
          +2213: JEAUBIN-M-43JF: 2019-04-24T15:20:31: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'management'}                                           |
          +2214: JEAUBIN-M-43JF: 2019-04-24T15:20:31: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}          |
          +2215: JEAUBIN-M-43JF: 2019-04-24T15:20:31: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +2216: JEAUBIN-M-43JF: 2019-04-24T15:20:31: %GENIE-6-INFO: %[part=2216.1/2][pid=23936][pname=Task-1]: Comparing current snapshot to initial snapshot
          +2217: JEAUBIN-M-43JF: 2019-04-24T15:20:31: %GENIE-6-INFO: %[part=2216.2/2][pid=23936][pname=Task-1]: Excluding these keys ['if_handle', 'keepalives', 'last_reset', 'reset_reason', 'foreign_port', 'local_port', 'msg_rcvd', 'msg_sent', 'up_down', 'bgp_table_version', 'routing_table_version', 'tbl_ver', 'table_version', 'memory_usage', 'updates', 'mss', 'total', 'total_bytes', 'up_time', 'bgp_negotiated_keepalive_timers', 'hold_time', 'keepalive_interval', 'sent', 'received', 'status_codes', 'holdtime', 'router_id', 'connections_dropped', 'connections_established', 'advertised', 'prefixes', 'routes', 'state_pfxrcd']
          +2218: JEAUBIN-M-43JF: 2019-04-24T15:20:31: %GENIE-6-INFO: %[pid=23936][pname=Task-1]: Snapshot is same as initial snapshot
          +2219: JEAUBIN-M-43JF: 2019-04-24T15:20:31: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of section verify is => PASSED
          +2220: JEAUBIN-M-43JF: 2019-04-24T15:20:31: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of testcase Verify_Bgp.uut.6 is => PASSED
          +2221: JEAUBIN-M-43JF: 2019-04-24T15:20:31: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting testcase TriggerDemoShutNoShutBgpV2.uut.5
          +2222: JEAUBIN-M-43JF: 2019-04-24T15:20:31: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section prerequisites
          +2223: JEAUBIN-M-43JF: 2019-04-24T15:20:31: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          + show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Process ID                
          +
          +
        • +
        +
        +
      • + + +
      +
      +
    • + + +
    • +
      + + arrow_drop_down + TriggerDemoShutNoShutBgpV2.uut.5 + + +
      + expand_more + expand_less +
      + PASSED + 0:00:11 +
      +
      + + + +
        + + + + +
      • +
        + + arrow_drop_down + prerequisites + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:03 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          2222: JEAUBIN-M-43JF: 2019-04-24T15:20:31: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section prerequisites
          +2223: JEAUBIN-M-43JF: 2019-04-24T15:20:31: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          + show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Process ID                 : 8610
          +BGP Protocol Started, reason:  : configuration
          +BGP Protocol Tag               : 65000
          +BGP Protocol State             : Running
          +BGP MMODE                      : Not Initialized
          +BGP Memory State               : OK
          +BGP asformat                   : asplain
          +
          +BGP attributes information
          +Number of attribute entries    : 2
          +HWM of attribute entries       : 2
          +Bytes used by entries          : 200
          +Entries pending delete         : 0
          +HWM of entries pending delete  : 0
          +BGP paths per attribute HWM    : 1
          +BGP AS path entries            : 0
          +Bytes used by AS path entries  : 0
          +
          +Information regarding configured VRFs:
          +
          +BGP Information for VRF default
          +VRF Id                         : 1
          +VRF state                      : UP
          +Router-ID                      : 10.2.2.2
          +Configured Router-ID           : 10.2.2.2
          +Confed-ID                      : 0
          +Cluster-ID                     : 0.0.0.0
          +No. of configured peers        : 1
          +No. of pending config peers    : 0
          +No. of established peers       : 1
          +VRF RD                         : Not configured
          +
          +    Information for address family IPv4 Unicast in VRF default
          +    Table Id                   : 1
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    1          1               2          2          1          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +    Information for address family IPv6 Unicast in VRF default
          +    Table Id                   : 80000001
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    0          0               0          0          0          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +nx-osv-1# 
          +2227: JEAUBIN-M-43JF: 2019-04-24T15:20:31: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-session' +++
          +show running-config | inc peer-session
          +
          +
          +nx-osv-1# 
          +2230: JEAUBIN-M-43JF: 2019-04-24T15:20:31: %GENIE-6-INFO: %[part=2230.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>
          +2231: JEAUBIN-M-43JF: 2019-04-24T15:20:31: %GENIE-6-INFO: %[part=2230.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +2232: JEAUBIN-M-43JF: 2019-04-24T15:20:31: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-policy' +++
          +show running-config | inc peer-policy
          +
          +
          +nx-osv-1# 
          +2236: JEAUBIN-M-43JF: 2019-04-24T15:20:32: %GENIE-6-INFO: %[part=2236.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>
          +2237: JEAUBIN-M-43JF: 2019-04-24T15:20:32: %GENIE-6-INFO: %[part=2236.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +2238: JEAUBIN-M-43JF: 2019-04-24T15:20:32: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all dampening parameters' +++
          +show bgp vrf all all dampening parameters
          +
          +
          +nx-osv-1# 
          +2240: JEAUBIN-M-43JF: 2019-04-24T15:20:32: %GENIE-6-INFO: %[part=2240.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>
          +2241: JEAUBIN-M-43JF: 2019-04-24T15:20:32: %GENIE-6-INFO: %[part=2240.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +2242: JEAUBIN-M-43JF: 2019-04-24T15:20:32: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all nexthop-database' +++
          +show bgp vrf all all nexthop-database
          +
          +
          +Next Hop table for VRF default, address family IPv4 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +
          +Nexthop: 0.0.0.0, Flags: 0x2, Refcount: 1, IGP cost: 0
          +IGP Route type: 0, IGP preference: 0
          +Nexthop is not-attached local unreachable not-labeled
          +Nexthop last resolved: never, using 0.0.0.0/0
          +Metric next advertise: Never
          +RNH epoch: 0
          +
          +Nexthop: 10.1.1.1, Flags: 0x1, Refcount: 1, IGP cost: 41
          +IGP Route type: 0, IGP preference: 110
          +Attached nexthop: 10.0.2.1, Interface: Ethernet2/2
          +Attached nexthop: 10.0.1.1, Interface: Ethernet2/1
          +Nexthop is not-attached not-local reachable not-labeled
          +Nexthop last resolved: 00:00:53, using 10.1.1.1/32
          +Metric next advertise: Never
          +RNH epoch: 1
          +IPv6 Next-hop table
          +
          +Next Hop table for VRF default, address family IPv6 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +IPv6 Next-hop table
          +
          +nx-osv-1# 
          +2244: JEAUBIN-M-43JF: 2019-04-24T15:20:32: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show routing vrf all' +++
          +show routing vrf all
          +
          +IP Route Table for VRF "default"
          +'*' denotes best ucast next-hop
          +'**' denotes best mcast next-hop
          +'[x/y]' denotes [preference/metric]
          +'%<string>' in via output denotes VRF <string>
          +
          +10.0.1.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, direct
          +10.0.1.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, local
          +10.0.2.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, direct
          +10.0.2.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, local
          +10.1.1.1/32, ubest/mbest: 2/0
          +    *via 10.0.1.1, Eth2/1, [110/41], 1d02h, ospf-1, intra
          +    *via 10.0.2.1, Eth2/2, [110/41], 1d02h, ospf-1, intra
          +10.2.2.2/32, ubest/mbest: 2/0, attached
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, local
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, direct
          +10.11.11.11/32, ubest/mbest: 1/0
          +    *via 10.1.1.1, [200/0], 00:00:16, bgp-65000, internal, tag 65000, 
          +10.22.22.22/32, ubest/mbest: 2/0, attached
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, local
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, direct
          +
          +nx-osv-1# 
          +2247: JEAUBIN-M-43JF: 2019-04-24T15:20:32: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all' +++
          +show bgp vrf all all
          +
          +BGP routing table information for VRF default, address family IPv4 Unicast
          +BGP table version is 166, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +nx-osv-1# 
          +2249: JEAUBIN-M-43JF: 2019-04-24T15:20:32: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show vrf' +++
          +show vrf
          +
          +VRF-Name                           VRF-ID State   Reason                        
          +default                                 1 Up      --                            
          +management                              2 Up      --                            
          +
          +nx-osv-1# 
          +2251: JEAUBIN-M-43JF: 2019-04-24T15:20:33: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf management all neighbors' +++
          +show bgp vrf management all neighbors
          +
          +Unknown vrf management
          +
          +nx-osv-1# 
          +2254: JEAUBIN-M-43JF: 2019-04-24T15:20:33: %GENIE-6-INFO: %[part=2254.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>
          +2255: JEAUBIN-M-43JF: 2019-04-24T15:20:33: %GENIE-6-INFO: %[part=2254.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +2256: JEAUBIN-M-43JF: 2019-04-24T15:20:33: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors' +++
          +show bgp vrf default all neighbors
          +
          +BGP neighbor is 10.1.1.1,  remote AS 65000, ibgp link, Peer index 1
          +  BGP version 4, remote router ID 10.1.1.1
          +  BGP state = Established, up for 00:00:17
          +  Using loopback0 as update source for this peer
          +  Last read 00:00:16, hold time = 180, keepalive interval is 60 seconds
          +  Last written 00:00:16, keepalive timer expiry due 00:00:43
          +  Received 25179 messages, 1 notifications, 0 bytes in queue
          +  Sent 22976 messages, 49 notifications, 0 bytes in queue
          +  Connections established 50, dropped 49
          +  Last reset by us 00:00:25, due to administratively shutdown
          +  Last reset by peer never, due to No error
          +
          +  Neighbor capabilities:
          +  Dynamic capability: advertised (mp, refresh, gr) 
          +  Dynamic capability (old): advertised 
          +  Route refresh capability (new): advertised received 
          +  Route refresh capability (old): advertised received 
          +  4-Byte AS capability: advertised received 
          +  Address family IPv4 Unicast: advertised received 
          +  Graceful Restart capability: advertised 
          +
          +  Graceful Restart Parameters:
          +  Address families advertised to peer:
          +    IPv4 Unicast  
          +  Address families received from peer:
          +  Forwarding state preserved by peer for:
          +  Restart time advertised to peer: 120 seconds
          +  Stale time for routes advertised by peer: 300 seconds
          +  Extended Next Hop Encoding Capability: advertised 
          +
          +  Message statistics:
          +                              Sent               Rcvd
          +  Opens:                        51                 50  
          +  Notifications:                49                  1  
          +  Updates:                     112                100  
          +  Keepalives:                22764              25028  
          +  Route Refresh:                 0                  0  
          +  Capability:                    0                  0  
          +  Total:                     22976              25179  
          +  Total bytes:              436471             478532  
          +  Bytes in queue:                0                  0  
          +
          +  For address family: IPv4 Unicast
          +  BGP table version 166, neighbor version 166
          +  1 accepted paths consume 80 bytes of memory
          +  1 sent paths
          +  Third-party Nexthop will not be computed.
          +
          +  Local host: 10.2.2.2, Local port: 179
          +  Foreign host: 10.1.1.1, Foreign port: 30767
          +  fd = 60
          +
          +
          +nx-osv-1# 
          +2260: JEAUBIN-M-43JF: 2019-04-24T15:20:33: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all summary' +++
          +show bgp vrf all all summary
          +
          +BGP summary information for VRF default, address family IPv4 Unicast
          +BGP router identifier 10.2.2.2, local AS number 65000
          +BGP table version is 166, IPv4 Unicast config peers 1, capable peers 1
          +2 network entries and 2 paths using 288 bytes of memory
          +BGP attribute entries [2/288], BGP AS path entries [0/0]
          +BGP community entries [0/0], BGP clusterlist entries [0/0]
          +
          +Neighbor        V    AS MsgRcvd MsgSent   TblVer  InQ OutQ Up/Down  State/PfxRcd
          +10.1.1.1        4 65000   25179   22976      166    0    0 00:00:17 1         
          +
          +BGP summary information for VRF default, address family IPv6 Unicast
          +
          +nx-osv-1# 
          +2263: JEAUBIN-M-43JF: 2019-04-24T15:20:33: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 advertised-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 advertised-routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 166, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +2267: JEAUBIN-M-43JF: 2019-04-24T15:20:33: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 166, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +2271: JEAUBIN-M-43JF: 2019-04-24T15:20:34: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 received-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 received-routes
          +
          +
          +Inbound soft reconfiguration for IPv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MDT not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN VPLS not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN EVPN not enabled on 10.1.1.1
          +
          +nx-osv-1#
          +2274: JEAUBIN-M-43JF: 2019-04-24T15:20:34: %GENIE-6-INFO: %[part=2274.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>
          +2275: JEAUBIN-M-43JF: 2019-04-24T15:20:34: %GENIE-6-INFO: %[part=2274.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +2276: JEAUBIN-M-43JF: 2019-04-24T15:20:34: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +2277: JEAUBIN-M-43JF: 2019-04-24T15:20:34: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | Commands for learning feature 'Bgp'                                                                                                                |
          +2278: JEAUBIN-M-43JF: 2019-04-24T15:20:34: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +2279: JEAUBIN-M-43JF: 2019-04-24T15:20:34: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Parsed commands                                                                                                                                  |
          +2280: JEAUBIN-M-43JF: 2019-04-24T15:20:34: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +2281: JEAUBIN-M-43JF: 2019-04-24T15:20:34: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpProcessVrfAll'>                                                                              |
          +2282: JEAUBIN-M-43JF: 2019-04-24T15:20:34: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllNextHopDatabase'>                                                                   |
          +2283: JEAUBIN-M-43JF: 2019-04-24T15:20:34: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_routing.ShowRoutingVrfAll'>                                                                             |
          +2284: JEAUBIN-M-43JF: 2019-04-24T15:20:34: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAll'>                                                                                  |
          +2285: JEAUBIN-M-43JF: 2019-04-24T15:20:34: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_vrf.ShowVrf'>                                                                                           |
          +2286: JEAUBIN-M-43JF: 2019-04-24T15:20:34: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'default'}                                              |
          +2287: JEAUBIN-M-43JF: 2019-04-24T15:20:34: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllSummary'>                                                                           |
          +2288: JEAUBIN-M-43JF: 2019-04-24T15:20:34: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsAdvertisedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}        |
          +2289: JEAUBIN-M-43JF: 2019-04-24T15:20:34: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}                  |
          +2290: JEAUBIN-M-43JF: 2019-04-24T15:20:34: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +2291: JEAUBIN-M-43JF: 2019-04-24T15:20:34: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Commands with empty output                                                                                                                       |
          +2292: JEAUBIN-M-43JF: 2019-04-24T15:20:34: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +2293: JEAUBIN-M-43JF: 2019-04-24T15:20:34: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>                                                                                |
          +2294: JEAUBIN-M-43JF: 2019-04-24T15:20:34: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>                                                                                 |
          +2295: JEAUBIN-M-43JF: 2019-04-24T15:20:34: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>                                                               |
          +2296: JEAUBIN-M-43JF: 2019-04-24T15:20:34: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'management'}                                           |
          +2297: JEAUBIN-M-43JF: 2019-04-24T15:20:34: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}          |
          +2298: JEAUBIN-M-43JF: 2019-04-24T15:20:34: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +2299: JEAUBIN-M-43JF: 2019-04-24T15:20:34: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of section prerequisites is => PASSED
          +2300: JEAUBIN-M-43JF: 2019-04-24T15:20:34: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section shut
          +2301: JEAUBIN-M-43JF: 2019-04-24T15:20:34: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: config +++
          + config term
          +
          +Enter configuration commands, one per line.  End with CNTL/Z.
          +
          +nx-osv-1(config)#
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + shut + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:01 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          2300: JEAUBIN-M-43JF: 2019-04-24T15:20:34: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section shut
          +2301: JEAUBIN-M-43JF: 2019-04-24T15:20:34: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: config +++
          + config term
          +
          +Enter configuration commands, one per line.  End with CNTL/Z.
          +
          +nx-osv-1(config)# router bgp 65000
          +
          +
          +nx-osv-1(config-router)# shutdown
          +
          +
          +nx-osv-1(config-router)# end
          +
          +
          +nx-osv-1# 
          +2310: JEAUBIN-M-43JF: 2019-04-24T15:20:35: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of section shut is => PASSED
          +2311:
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + verify + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:03 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          2311: JEAUBIN-M-43JF: 2019-04-24T15:20:35: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section verify
          +2312: JEAUBIN-M-43JF: 2019-04-24T15:20:35: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          +show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Process ID                 : 8610
          +BGP Protocol Started, reason:  : configuration
          +BGP Protocol Tag               : 65000
          +BGP Protocol State             : Shutdown
          +BGP MMODE                      : Not Initialized
          +BGP Memory State               : OK
          +BGP asformat                   : asplain
          +
          +BGP attributes information
          +Number of attribute entries    : 2
          +HWM of attribute entries       : 2
          +Bytes used by entries          : 200
          +Entries pending delete         : 0
          +HWM of entries pending delete  : 0
          +BGP paths per attribute HWM    : 1
          +BGP AS path entries            : 0
          +Bytes used by AS path entries  : 0
          +
          +Information regarding configured VRFs:
          +
          +BGP Information for VRF default
          +VRF Id                         : 1
          +VRF state                      : UP
          +Router-ID                      : 10.2.2.2
          +Configured Router-ID           : 10.2.2.2
          +Confed-ID                      : 0
          +Cluster-ID                     : 0.0.0.0
          +No. of configured peers        : 1
          +No. of pending config peers    : 0
          +No. of established peers       : 0
          +VRF RD                         : Not configured
          +
          +    Information for address family IPv4 Unicast in VRF default
          +    Table Id                   : 1
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    1          0               2          2          1          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +    Information for address family IPv6 Unicast in VRF default
          +    Table Id                   : 80000001
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    0          0               0          0          0          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +nx-osv-1# 
          +2316: JEAUBIN-M-43JF: 2019-04-24T15:20:35: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-session' +++
          +show running-config | inc peer-session
          +
          +
          +nx-osv-1# 
          +2321: JEAUBIN-M-43JF: 2019-04-24T15:20:35: %GENIE-6-INFO: %[part=2321.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>
          +2322: JEAUBIN-M-43JF: 2019-04-24T15:20:35: %GENIE-6-INFO: %[part=2321.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +2323: JEAUBIN-M-43JF: 2019-04-24T15:20:35: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-policy' +++
          +show running-config | inc peer-policy
          +
          +
          +nx-osv-1# 
          +2327: JEAUBIN-M-43JF: 2019-04-24T15:20:35: %GENIE-6-INFO: %[part=2327.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>
          +2328: JEAUBIN-M-43JF: 2019-04-24T15:20:35: %GENIE-6-INFO: %[part=2327.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +2329: JEAUBIN-M-43JF: 2019-04-24T15:20:35: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all dampening parameters' +++
          +show bgp vrf all all dampening parameters
          +
          +
          +nx-osv-1# 
          +2332: JEAUBIN-M-43JF: 2019-04-24T15:20:36: %GENIE-6-INFO: %[part=2332.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>
          +2333: JEAUBIN-M-43JF: 2019-04-24T15:20:36: %GENIE-6-INFO: %[part=2332.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +2334: JEAUBIN-M-43JF: 2019-04-24T15:20:36: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all nexthop-database' +++
          +show bgp vrf all all nexthop-database
          +
          +
          +Next Hop table for VRF default, address family IPv4 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +
          +Nexthop: 0.0.0.0, Flags: 0x2, Refcount: 1, IGP cost: 0
          +IGP Route type: 0, IGP preference: 0
          +Nexthop is not-attached local unreachable not-labeled
          +Nexthop last resolved: never, using 0.0.0.0/0
          +Metric next advertise: Never
          +RNH epoch: 0
          +
          +Nexthop: 10.1.1.1, Flags: 0x1, Refcount: 1, IGP cost: 41
          +IGP Route type: 0, IGP preference: 110
          +Attached nexthop: 10.0.2.1, Interface: Ethernet2/2
          +Attached nexthop: 10.0.1.1, Interface: Ethernet2/1
          +Nexthop is not-attached not-local reachable not-labeled
          +Nexthop last resolved: 00:00:57, using 10.1.1.1/32
          +Metric next advertise: Never
          +RNH epoch: 1
          +IPv6 Next-hop table
          +
          +Next Hop table for VRF default, address family IPv6 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +IPv6 Next-hop table
          +
          +nx-osv-1# 
          +2336: JEAUBIN-M-43JF: 2019-04-24T15:20:36: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show routing vrf all' +++
          +show routing vrf all
          +
          +IP Route Table for VRF "default"
          +'*' denotes best ucast next-hop
          +'**' denotes best mcast next-hop
          +'[x/y]' denotes [preference/metric]
          +'%<string>' in via output denotes VRF <string>
          +
          +10.0.1.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, direct
          +10.0.1.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, local
          +10.0.2.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, direct
          +10.0.2.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, local
          +10.1.1.1/32, ubest/mbest: 2/0
          +    *via 10.0.1.1, Eth2/1, [110/41], 1d02h, ospf-1, intra
          +    *via 10.0.2.1, Eth2/2, [110/41], 1d02h, ospf-1, intra
          +10.2.2.2/32, ubest/mbest: 2/0, attached
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, local
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, direct
          +10.11.11.11/32, ubest/mbest: 1/0
          +    *via 10.1.1.1, [200/0], 00:00:20, bgp-65000, internal, tag 65000, 
          +10.22.22.22/32, ubest/mbest: 2/0, attached
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, local
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, direct
          +
          +nx-osv-1# 
          +2340: JEAUBIN-M-43JF: 2019-04-24T15:20:36: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all' +++
          +show bgp vrf all all
          +
          +BGP routing table information for VRF default, address family IPv4 Unicast
          +BGP table version is 166, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +nx-osv-1# 
          +2343: JEAUBIN-M-43JF: 2019-04-24T15:20:36: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show vrf' +++
          +show vrf
          +
          +VRF-Name                           VRF-ID State   Reason                        
          +default                                 1 Up      --                            
          +management                              2 Up      --                            
          +
          +nx-osv-1# 
          +2346: JEAUBIN-M-43JF: 2019-04-24T15:20:36: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf management all neighbors' +++
          +show bgp vrf management all neighbors
          +
          +Unknown vrf management
          +
          +nx-osv-1# 
          +2349: JEAUBIN-M-43JF: 2019-04-24T15:20:37: %GENIE-6-INFO: %[part=2349.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>
          +2350: JEAUBIN-M-43JF: 2019-04-24T15:20:37: %GENIE-6-INFO: %[part=2349.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +2351: JEAUBIN-M-43JF: 2019-04-24T15:20:37: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors' +++
          +show bgp vrf default all neighbors
          +
          +BGP neighbor is 10.1.1.1,  remote AS 65000, ibgp link, Peer index 1
          +  BGP version 4, remote router ID 10.1.1.1
          +  BGP state = Closing, down for 00:00:02
          +  Using loopback0 as update source for this peer
          +  Last read 00:00:20, hold time = 180, keepalive interval is 60 seconds
          +  Last written 00:00:02, keepalive timer not running
          +  Received 25179 messages, 1 notifications, 0 bytes in queue
          +  Sent 22977 messages, 50 notifications, 0 bytes in queue
          +  Connections established 50, dropped 50
          +  Last reset by us 00:00:02, due to administratively shutdown
          +  Last reset by peer never, due to No error
          +
          +  Message statistics:
          +                              Sent               Rcvd
          +  Opens:                        51                 50  
          +  Notifications:                50                  1  
          +  Updates:                     112                100  
          +  Keepalives:                22764              25028  
          +  Route Refresh:                 0                  0  
          +  Capability:                    0                  0  
          +  Total:                     22977              25179  
          +  Total bytes:              436492             478532  
          +  Bytes in queue:                0                  0  
          +
          +  For address family: IPv4 Unicast
          +  BGP table version 166, neighbor version 0
          +  0 accepted paths consume 0 bytes of memory
          +  0 sent paths
          +  Third-party Nexthop will not be computed.
          +
          +  No established BGP session with peer
          +
          +
          +nx-osv-1# 
          +2356: JEAUBIN-M-43JF: 2019-04-24T15:20:37: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all summary' +++
          +show bgp vrf all all summary
          +
          +BGP summary information for VRF default, address family IPv4 Unicast
          +BGP router identifier 10.2.2.2, local AS number 65000
          +BGP table version is 166, IPv4 Unicast config peers 1, capable peers 0
          +2 network entries and 2 paths using 288 bytes of memory
          +BGP attribute entries [2/288], BGP AS path entries [0/0]
          +BGP community entries [0/0], BGP clusterlist entries [0/0]
          +
          +Neighbor        V    AS MsgRcvd MsgSent   TblVer  InQ OutQ Up/Down  State/PfxRcd
          +10.1.1.1        4 65000   25179   22977        0    0    0 00:00:02 Closing  
          +
          +BGP summary information for VRF default, address family IPv6 Unicast
          +
          +nx-osv-1# 
          +2359: JEAUBIN-M-43JF: 2019-04-24T15:20:37: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 advertised-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 advertised-routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 166, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +2363: JEAUBIN-M-43JF: 2019-04-24T15:20:37: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 167, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +x i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +2367: JEAUBIN-M-43JF: 2019-04-24T15:20:38: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 received-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 received-routes
          +
          +
          +Inbound soft reconfiguration for IPv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MDT not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN VPLS not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN EVPN not enabled on 10.1.1.1
          +
          +nx-osv-1#
          +2370: JEAUBIN-M-43JF: 2019-04-24T15:20:38: %GENIE-6-INFO: %[part=2370.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>
          +2371: JEAUBIN-M-43JF: 2019-04-24T15:20:38: %GENIE-6-INFO: %[part=2370.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +2372: JEAUBIN-M-43JF: 2019-04-24T15:20:38: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +2373: JEAUBIN-M-43JF: 2019-04-24T15:20:38: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | Commands for learning feature 'Bgp'                                                                                                                |
          +2374: JEAUBIN-M-43JF: 2019-04-24T15:20:38: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +2375: JEAUBIN-M-43JF: 2019-04-24T15:20:38: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Parsed commands                                                                                                                                  |
          +2376: JEAUBIN-M-43JF: 2019-04-24T15:20:38: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +2377: JEAUBIN-M-43JF: 2019-04-24T15:20:38: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpProcessVrfAll'>                                                                              |
          +2378: JEAUBIN-M-43JF: 2019-04-24T15:20:38: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllNextHopDatabase'>                                                                   |
          +2379: JEAUBIN-M-43JF: 2019-04-24T15:20:38: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_routing.ShowRoutingVrfAll'>                                                                             |
          +2380: JEAUBIN-M-43JF: 2019-04-24T15:20:38: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAll'>                                                                                  |
          +2381: JEAUBIN-M-43JF: 2019-04-24T15:20:38: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_vrf.ShowVrf'>                                                                                           |
          +2382: JEAUBIN-M-43JF: 2019-04-24T15:20:38: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'default'}                                              |
          +2383: JEAUBIN-M-43JF: 2019-04-24T15:20:38: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllSummary'>                                                                           |
          +2384: JEAUBIN-M-43JF: 2019-04-24T15:20:38: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsAdvertisedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}        |
          +2385: JEAUBIN-M-43JF: 2019-04-24T15:20:38: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}                  |
          +2386: JEAUBIN-M-43JF: 2019-04-24T15:20:38: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +2387: JEAUBIN-M-43JF: 2019-04-24T15:20:38: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Commands with empty output                                                                                                                       |
          +2388: JEAUBIN-M-43JF: 2019-04-24T15:20:38: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +2389: JEAUBIN-M-43JF: 2019-04-24T15:20:38: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>                                                                                |
          +2390: JEAUBIN-M-43JF: 2019-04-24T15:20:38: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>                                                                                 |
          +2391: JEAUBIN-M-43JF: 2019-04-24T15:20:38: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>                                                               |
          +2392: JEAUBIN-M-43JF: 2019-04-24T15:20:38: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'management'}                                           |
          +2393: JEAUBIN-M-43JF: 2019-04-24T15:20:38: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}          |
          +2394: JEAUBIN-M-43JF: 2019-04-24T15:20:38: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +2395: JEAUBIN-M-43JF: 2019-04-24T15:20:38: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of section verify is => PASSED
          +2396: JEAUBIN-M-43JF: 2019-04-24T15:20:38: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section unshut
          +2397: JEAUBIN-M-43JF: 2019-04-24T15:20:38: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: config +++
          + config term
          +
          +Enter configuration commands, one per line.  End with CNTL
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + unshut + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:01 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          2396: JEAUBIN-M-43JF: 2019-04-24T15:20:38: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section unshut
          +2397: JEAUBIN-M-43JF: 2019-04-24T15:20:38: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: config +++
          + config term
          +
          +Enter configuration commands, one per line.  End with CNTL/Z.
          +
          +nx-osv-1(config)# router bgp 65000
          +
          +
          +nx-osv-1(config-router)# no shutdown
          +
          +
          +nx-osv-1(config-router)# end
          +
          +
          +nx-osv-1# 
          +2403: JEAUBIN-M-43JF: 2019-04-24T15:20:39: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of section unshut is => PASSED
          +2404:
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + verify_recover + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:03 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          2404: JEAUBIN-M-43JF: 2019-04-24T15:20:39: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section verify_recover
          +2405: JEAUBIN-M-43JF: 2019-04-24T15:20:39: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          +show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Process ID                 : 8610
          +BGP Protocol Started, reason:  : configuration
          +BGP Protocol Tag               : 65000
          +BGP Protocol State             : Running
          +BGP MMODE                      : Not Initialized
          +BGP Memory State               : OK
          +BGP asformat                   : asplain
          +
          +BGP attributes information
          +Number of attribute entries    : 2
          +HWM of attribute entries       : 2
          +Bytes used by entries          : 200
          +Entries pending delete         : 0
          +HWM of entries pending delete  : 0
          +BGP paths per attribute HWM    : 1
          +BGP AS path entries            : 0
          +Bytes used by AS path entries  : 0
          +
          +Information regarding configured VRFs:
          +
          +BGP Information for VRF default
          +VRF Id                         : 1
          +VRF state                      : UP
          +Router-ID                      : 10.2.2.2
          +Configured Router-ID           : 10.2.2.2
          +Confed-ID                      : 0
          +Cluster-ID                     : 0.0.0.0
          +No. of configured peers        : 1
          +No. of pending config peers    : 0
          +No. of established peers       : 0
          +VRF RD                         : Not configured
          +
          +    Information for address family IPv4 Unicast in VRF default
          +    Table Id                   : 1
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    1          0               2          2          1          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +    Information for address family IPv6 Unicast in VRF default
          +    Table Id                   : 80000001
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    0          0               0          0          0          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +nx-osv-1# 
          +2409: JEAUBIN-M-43JF: 2019-04-24T15:20:39: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-session' +++
          +show running-config | inc peer-session
          +
          +
          +nx-osv-1# 
          +2414: JEAUBIN-M-43JF: 2019-04-24T15:20:39: %GENIE-6-INFO: %[part=2414.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>
          +2415: JEAUBIN-M-43JF: 2019-04-24T15:20:39: %GENIE-6-INFO: %[part=2414.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +2416: JEAUBIN-M-43JF: 2019-04-24T15:20:39: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-policy' +++
          +show running-config | inc peer-policy
          +
          +
          +nx-osv-1# 
          +2421: JEAUBIN-M-43JF: 2019-04-24T15:20:40: %GENIE-6-INFO: %[part=2421.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>
          +2422: JEAUBIN-M-43JF: 2019-04-24T15:20:40: %GENIE-6-INFO: %[part=2421.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +2423: JEAUBIN-M-43JF: 2019-04-24T15:20:40: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all dampening parameters' +++
          +show bgp vrf all all dampening parameters
          +
          +
          +nx-osv-1# 
          +2426: JEAUBIN-M-43JF: 2019-04-24T15:20:40: %GENIE-6-INFO: %[part=2426.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>
          +2427: JEAUBIN-M-43JF: 2019-04-24T15:20:40: %GENIE-6-INFO: %[part=2426.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +2428: JEAUBIN-M-43JF: 2019-04-24T15:20:40: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all nexthop-database' +++
          +show bgp vrf all all nexthop-database
          +
          +
          +Next Hop table for VRF default, address family IPv4 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +
          +Nexthop: 0.0.0.0, Flags: 0x2, Refcount: 1, IGP cost: 0
          +IGP Route type: 0, IGP preference: 0
          +Nexthop is not-attached local unreachable not-labeled
          +Nexthop last resolved: never, using 0.0.0.0/0
          +Metric next advertise: Never
          +RNH epoch: 0
          +
          +Nexthop: 10.1.1.1, Flags: 0x1, Refcount: 1, IGP cost: 41
          +IGP Route type: 0, IGP preference: 110
          +Attached nexthop: 10.0.2.1, Interface: Ethernet2/2
          +Attached nexthop: 10.0.1.1, Interface: Ethernet2/1
          +Nexthop is not-attached not-local reachable not-labeled
          +Nexthop last resolved: 00:01:01, using 10.1.1.1/32
          +Metric next advertise: Never
          +RNH epoch: 1
          +IPv6 Next-hop table
          +
          +Next Hop table for VRF default, address family IPv6 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +IPv6 Next-hop table
          +
          +nx-osv-1# 
          +2431: JEAUBIN-M-43JF: 2019-04-24T15:20:40: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show routing vrf all' +++
          +show routing vrf all
          +
          +IP Route Table for VRF "default"
          +'*' denotes best ucast next-hop
          +'**' denotes best mcast next-hop
          +'[x/y]' denotes [preference/metric]
          +'%<string>' in via output denotes VRF <string>
          +
          +10.0.1.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, direct
          +10.0.1.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, local
          +10.0.2.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, direct
          +10.0.2.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, local
          +10.1.1.1/32, ubest/mbest: 2/0
          +    *via 10.0.1.1, Eth2/1, [110/41], 1d02h, ospf-1, intra
          +    *via 10.0.2.1, Eth2/2, [110/41], 1d02h, ospf-1, intra
          +10.2.2.2/32, ubest/mbest: 2/0, attached
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, local
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, direct
          +10.22.22.22/32, ubest/mbest: 2/0, attached
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, local
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, direct
          +
          +nx-osv-1# 
          +2434: JEAUBIN-M-43JF: 2019-04-24T15:20:40: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all' +++
          +show bgp vrf all all
          +
          +BGP routing table information for VRF default, address family IPv4 Unicast
          +BGP table version is 167, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +x i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +nx-osv-1# 
          +2437: JEAUBIN-M-43JF: 2019-04-24T15:20:40: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show vrf' +++
          +show vrf
          +
          +VRF-Name                           VRF-ID State   Reason                        
          +default                                 1 Up      --                            
          +management                              2 Up      --                            
          +
          +nx-osv-1# 
          +2439: JEAUBIN-M-43JF: 2019-04-24T15:20:41: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf management all neighbors' +++
          +show bgp vrf management all neighbors
          +
          +Unknown vrf management
          +
          +nx-osv-1# 
          +2441: JEAUBIN-M-43JF: 2019-04-24T15:20:41: %GENIE-6-INFO: %[part=2441.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>
          +2442: JEAUBIN-M-43JF: 2019-04-24T15:20:41: %GENIE-6-INFO: %[part=2441.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +2443: JEAUBIN-M-43JF: 2019-04-24T15:20:41: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors' +++
          +show bgp vrf default all neighbors
          +
          +BGP neighbor is 10.1.1.1,  remote AS 65000, ibgp link, Peer index 1
          +  BGP version 4, remote router ID 0.0.0.0
          +  BGP state = Idle, down for 00:00:06, retry in 00:00:05
          +  Using loopback0 as update source for this peer
          +  Last read never, hold time = 180, keepalive interval is 60 seconds
          +  Last written never, keepalive timer not running
          +  Received 25179 messages, 1 notifications, 0 bytes in queue
          +  Sent 22977 messages, 50 notifications, 0 bytes in queue
          +  Connections established 50, dropped 50
          +  Connection attempts 0
          +  Last reset by us 00:00:06, due to administratively shutdown
          +  Last reset by peer never, due to No error
          +
          +  Message statistics:
          +                              Sent               Rcvd
          +  Opens:                        51                 50  
          +  Notifications:                50                  1  
          +  Updates:                     112                100  
          +  Keepalives:                22764              25028  
          +  Route Refresh:                 0                  0  
          +  Capability:                    0                  0  
          +  Total:                     22977              25179  
          +  Total bytes:              436492             478532  
          +  Bytes in queue:                0                  0  
          +
          +  For address family: IPv4 Unicast
          +  BGP table version 167, neighbor version 0
          +  0 accepted paths consume 0 bytes of memory
          +  0 sent paths
          +  Third-party Nexthop will not be computed.
          +
          +  No established BGP session with peer
          +
          +
          +nx-osv-1# 
          +2446: JEAUBIN-M-43JF: 2019-04-24T15:20:41: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all summary' +++
          +show bgp vrf all all summary
          +
          +BGP summary information for VRF default, address family IPv4 Unicast
          +BGP router identifier 10.2.2.2, local AS number 65000
          +BGP table version is 167, IPv4 Unicast config peers 1, capable peers 0
          +2 network entries and 2 paths using 288 bytes of memory
          +BGP attribute entries [2/288], BGP AS path entries [0/0]
          +BGP community entries [0/0], BGP clusterlist entries [0/0]
          +
          +Neighbor        V    AS MsgRcvd MsgSent   TblVer  InQ OutQ Up/Down  State/PfxRcd
          +10.1.1.1        4 65000   25179   22977        0    0    0 00:00:06 Idle     
          +
          +BGP summary information for VRF default, address family IPv6 Unicast
          +
          +nx-osv-1# 
          +2449: JEAUBIN-M-43JF: 2019-04-24T15:20:41: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 advertised-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 advertised-routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 167, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +2452: JEAUBIN-M-43JF: 2019-04-24T15:20:41: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 167, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +x i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +2456: JEAUBIN-M-43JF: 2019-04-24T15:20:42: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 received-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 received-routes
          +
          +
          +Inbound soft reconfiguration for IPv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MDT not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN VPLS not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN EVPN not enabled on 10.1.1.1
          +
          +nx-osv-1#
          +2459: JEAUBIN-M-43JF: 2019-04-24T15:20:42: %GENIE-6-INFO: %[part=2459.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>
          +2460: JEAUBIN-M-43JF: 2019-04-24T15:20:42: %GENIE-6-INFO: %[part=2459.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +2461: JEAUBIN-M-43JF: 2019-04-24T15:20:42: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +2462: JEAUBIN-M-43JF: 2019-04-24T15:20:42: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | Commands for learning feature 'Bgp'                                                                                                                |
          +2463: JEAUBIN-M-43JF: 2019-04-24T15:20:42: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +2464: JEAUBIN-M-43JF: 2019-04-24T15:20:42: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Parsed commands                                                                                                                                  |
          +2465: JEAUBIN-M-43JF: 2019-04-24T15:20:42: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +2466: JEAUBIN-M-43JF: 2019-04-24T15:20:42: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpProcessVrfAll'>                                                                              |
          +2467: JEAUBIN-M-43JF: 2019-04-24T15:20:42: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllNextHopDatabase'>                                                                   |
          +2468: JEAUBIN-M-43JF: 2019-04-24T15:20:42: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_routing.ShowRoutingVrfAll'>                                                                             |
          +2469: JEAUBIN-M-43JF: 2019-04-24T15:20:42: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAll'>                                                                                  |
          +2470: JEAUBIN-M-43JF: 2019-04-24T15:20:42: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_vrf.ShowVrf'>                                                                                           |
          +2471: JEAUBIN-M-43JF: 2019-04-24T15:20:42: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'default'}                                              |
          +2472: JEAUBIN-M-43JF: 2019-04-24T15:20:42: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllSummary'>                                                                           |
          +2473: JEAUBIN-M-43JF: 2019-04-24T15:20:42: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsAdvertisedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}        |
          +2474: JEAUBIN-M-43JF: 2019-04-24T15:20:42: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}                  |
          +2475: JEAUBIN-M-43JF: 2019-04-24T15:20:42: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +2476: JEAUBIN-M-43JF: 2019-04-24T15:20:42: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Commands with empty output                                                                                                                       |
          +2477: JEAUBIN-M-43JF: 2019-04-24T15:20:42: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +2478: JEAUBIN-M-43JF: 2019-04-24T15:20:42: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>                                                                                |
          +2479: JEAUBIN-M-43JF: 2019-04-24T15:20:42: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>                                                                                 |
          +2480: JEAUBIN-M-43JF: 2019-04-24T15:20:42: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>                                                               |
          +2481: JEAUBIN-M-43JF: 2019-04-24T15:20:42: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'management'}                                           |
          +2482: JEAUBIN-M-43JF: 2019-04-24T15:20:42: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}          |
          +2483: JEAUBIN-M-43JF: 2019-04-24T15:20:42: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +2484: JEAUBIN-M-43JF: 2019-04-24T15:20:42: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of section verify_recover is => PASSED
          +2485: JEAUBIN-M-43JF: 2019-04-24T15:20:42: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of testcase TriggerDemoShutNoShutBgpV2.uut.5 is => PASSED
          +2486: JEAUBIN-M-43JF: 2019-04-24T15:20:42: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting testcase Verify_Bgp.uut.7
          +2487: JEAUBIN-M
          +
          +
        • +
        +
        +
      • + + +
      +
      +
    • + + +
    • +
      + + arrow_drop_down + Verify_Bgp.uut.7 + + +
      + expand_more + expand_less +
      + PASSED + 0:00:03 +
      +
      + + + +
        + + + + +
      • +
        + + arrow_drop_down + verify + + +
        + expand_more + expand_less +
        + PASSED + 0:00:03 +
        +
        + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          2487: JEAUBIN-M-43JF: 2019-04-24T15:20:42: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting section verify
          +2488: JEAUBIN-M-43JF: 2019-04-24T15:20:42: %GENIE-6-INFO: %[part=2488.1/3][pid=23936][pname=Task-1]: +------------------------------------------------------------------------------+
          +2489: JEAUBIN-M-43JF: 2019-04-24T15:20:42: %GENIE-6-INFO: %[part=2488.2/3][pid=23936][pname=Task-1]: |                              1 out of 5 attempt                              |
          +2490: JEAUBIN-M-43JF: 2019-04-24T15:20:42: %GENIE-6-INFO: %[part=2488.3/3][pid=23936][pname=Task-1]: +------------------------------------------------------------------------------+
          +2491: JEAUBIN-M-43JF: 2019-04-24T15:20:42: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp process vrf all' +++
          + show bgp process vrf all
          +
          +
          +BGP Process Information
          +BGP Process ID                 : 8610
          +BGP Protocol Started, reason:  : configuration
          +BGP Protocol Tag               : 65000
          +BGP Protocol State             : Running
          +BGP MMODE                      : Not Initialized
          +BGP Memory State               : OK
          +BGP asformat                   : asplain
          +
          +BGP attributes information
          +Number of attribute entries    : 2
          +HWM of attribute entries       : 2
          +Bytes used by entries          : 200
          +Entries pending delete         : 0
          +HWM of entries pending delete  : 0
          +BGP paths per attribute HWM    : 1
          +BGP AS path entries            : 0
          +Bytes used by AS path entries  : 0
          +
          +Information regarding configured VRFs:
          +
          +BGP Information for VRF default
          +VRF Id                         : 1
          +VRF state                      : UP
          +Router-ID                      : 10.2.2.2
          +Configured Router-ID           : 10.2.2.2
          +Confed-ID                      : 0
          +Cluster-ID                     : 0.0.0.0
          +No. of configured peers        : 1
          +No. of pending config peers    : 0
          +No. of established peers       : 0
          +VRF RD                         : Not configured
          +
          +    Information for address family IPv4 Unicast in VRF default
          +    Table Id                   : 1
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    1          0               2          2          1          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +    Information for address family IPv6 Unicast in VRF default
          +    Table Id                   : 80000001
          +    Table state                : UP
          +    Peers      Active-peers    Routes     Paths      Networks   Aggregates
          +    0          0               0          0          0          0         
          +
          +    Redistribution                
          +        None
          +
          +    Wait for IGP convergence is not configured
          +
          +
          +    Nexthop trigger-delay
          +        critical 3000 ms
          +        non-critical 10000 ms
          +
          +nx-osv-1# 
          +2495: JEAUBIN-M-43JF: 2019-04-24T15:20:42: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-session' +++
          +show running-config | inc peer-session
          +
          +
          +nx-osv-1# 
          +2500: JEAUBIN-M-43JF: 2019-04-24T15:20:43: %GENIE-6-INFO: %[part=2500.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>
          +2501: JEAUBIN-M-43JF: 2019-04-24T15:20:43: %GENIE-6-INFO: %[part=2500.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +2502: JEAUBIN-M-43JF: 2019-04-24T15:20:43: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show running-config | inc peer-policy' +++
          +show running-config | inc peer-policy
          +
          +
          +nx-osv-1# 
          +2507: JEAUBIN-M-43JF: 2019-04-24T15:20:43: %GENIE-6-INFO: %[part=2507.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>
          +2508: JEAUBIN-M-43JF: 2019-04-24T15:20:43: %GENIE-6-INFO: %[part=2507.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +2509: JEAUBIN-M-43JF: 2019-04-24T15:20:43: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all dampening parameters' +++
          +show bgp vrf all all dampening parameters
          +
          +
          +nx-osv-1# 
          +2511: JEAUBIN-M-43JF: 2019-04-24T15:20:43: %GENIE-6-INFO: %[part=2511.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>
          +2512: JEAUBIN-M-43JF: 2019-04-24T15:20:43: %GENIE-6-INFO: %[part=2511.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +2513: JEAUBIN-M-43JF: 2019-04-24T15:20:43: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all nexthop-database' +++
          +show bgp vrf all all nexthop-database
          +
          +
          +Next Hop table for VRF default, address family IPv4 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +
          +Nexthop: 0.0.0.0, Flags: 0x2, Refcount: 1, IGP cost: 0
          +IGP Route type: 0, IGP preference: 0
          +Nexthop is not-attached local unreachable not-labeled
          +Nexthop last resolved: never, using 0.0.0.0/0
          +Metric next advertise: Never
          +RNH epoch: 0
          +IPv6 Next-hop table
          +
          +Next Hop table for VRF default, address family IPv6 Unicast:
          +Next-hop trigger-delay(miliseconds)
          +  Critical: 3000 Non-critical: 10000
          +IPv4 Next-hop table
          +IPv6 Next-hop table
          +
          +nx-osv-1# 
          +2516: JEAUBIN-M-43JF: 2019-04-24T15:20:43: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show routing vrf all' +++
          +show routing vrf all
          +
          +IP Route Table for VRF "default"
          +'*' denotes best ucast next-hop
          +'**' denotes best mcast next-hop
          +'[x/y]' denotes [preference/metric]
          +'%<string>' in via output denotes VRF <string>
          +
          +10.0.1.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, direct
          +10.0.1.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.1.2, Eth2/1, [0/0], 2w1d, local
          +10.0.2.0/24, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, direct
          +10.0.2.2/32, ubest/mbest: 1/0, attached
          +    *via 10.0.2.2, Eth2/2, [0/0], 2w1d, local
          +10.1.1.1/32, ubest/mbest: 2/0
          +    *via 10.0.1.1, Eth2/1, [110/41], 1d02h, ospf-1, intra
          +    *via 10.0.2.1, Eth2/2, [110/41], 1d02h, ospf-1, intra
          +10.2.2.2/32, ubest/mbest: 2/0, attached
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, local
          +    *via 10.2.2.2, Lo0, [0/0], 2w1d, direct
          +10.11.11.11/32, ubest/mbest: 1/0
          +    *via 10.1.1.1, [200/0], 0.000000, bgp-65000, internal, tag 65000, 
          +10.22.22.22/32, ubest/mbest: 2/0, attached
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, local
          +    *via 10.22.22.22, Lo1, [0/0], 2w1d, direct
          +
          +nx-osv-1# 
          +2520: JEAUBIN-M-43JF: 2019-04-24T15:20:43: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all' +++
          +show bgp vrf all all
          +
          +BGP routing table information for VRF default, address family IPv4 Unicast
          +BGP table version is 169, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +nx-osv-1# 
          +2523: JEAUBIN-M-43JF: 2019-04-24T15:20:44: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show vrf' +++
          +show vrf
          +
          +VRF-Name                           VRF-ID State   Reason                        
          +default                                 1 Up      --                            
          +management                              2 Up      --                            
          +
          +nx-osv-1# 
          +2526: JEAUBIN-M-43JF: 2019-04-24T15:20:44: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf management all neighbors' +++
          +show bgp vrf management all neighbors
          +
          +Unknown vrf management
          +
          +nx-osv-1# 
          +2529: JEAUBIN-M-43JF: 2019-04-24T15:20:44: %GENIE-6-INFO: %[part=2529.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>
          +2530: JEAUBIN-M-43JF: 2019-04-24T15:20:44: %GENIE-6-INFO: %[part=2529.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +2531: JEAUBIN-M-43JF: 2019-04-24T15:20:44: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors' +++
          +show bgp vrf default all neighbors
          +
          +BGP neighbor is 10.1.1.1,  remote AS 65000, ibgp link, Peer index 1
          +  BGP version 4, remote router ID 10.1.1.1
          +  BGP state = Established, up for 00:00:01
          +  Using loopback0 as update source for this peer
          +  Last read 0.742193, hold time = 180, keepalive interval is 60 seconds
          +  Last written 0.617887, keepalive timer expiry due 00:00:59
          +  Received 25184 messages, 1 notifications, 0 bytes in queue
          +  Sent 22982 messages, 50 notifications, 0 bytes in queue
          +  Connections established 51, dropped 50
          +  Last reset by us 00:00:09, due to administratively shutdown
          +  Last reset by peer never, due to No error
          +
          +  Neighbor capabilities:
          +  Dynamic capability: advertised (mp, refresh, gr) 
          +  Dynamic capability (old): advertised 
          +  Route refresh capability (new): advertised received 
          +  Route refresh capability (old): advertised received 
          +  4-Byte AS capability: advertised received 
          +  Address family IPv4 Unicast: advertised received 
          +  Graceful Restart capability: advertised 
          +
          +  Graceful Restart Parameters:
          +  Address families advertised to peer:
          +    IPv4 Unicast  
          +  Address families received from peer:
          +  Forwarding state preserved by peer for:
          +  Restart time advertised to peer: 120 seconds
          +  Stale time for routes advertised by peer: 300 seconds
          +  Extended Next Hop Encoding Capability: advertised 
          +
          +  Message statistics:
          +                              Sent               Rcvd
          +  Opens:                        52                 51  
          +  Notifications:                50                  1  
          +  Updates:                     114                102  
          +  Keepalives:                22766              25030  
          +  Route Refresh:                 0                  0  
          +  Capability:                    0                  0  
          +  Total:                     22982              25184  
          +  Total bytes:              436583             478630  
          +  Bytes in queue:                0                  0  
          +
          +  For address family: IPv4 Unicast
          +  BGP table version 169, neighbor version 169
          +  1 accepted paths consume 80 bytes of memory
          +  1 sent paths
          +  Third-party Nexthop will not be computed.
          +
          +  Local host: 10.2.2.2, Local port: 179
          +  Foreign host: 10.1.1.1, Foreign port: 24528
          +  fd = 76
          +
          +
          +nx-osv-1# 
          +2535: JEAUBIN-M-43JF: 2019-04-24T15:20:44: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf all all summary' +++
          +show bgp vrf all all summary
          +
          +BGP summary information for VRF default, address family IPv4 Unicast
          +BGP router identifier 10.2.2.2, local AS number 65000
          +BGP table version is 169, IPv4 Unicast config peers 1, capable peers 1
          +2 network entries and 2 paths using 288 bytes of memory
          +BGP attribute entries [2/288], BGP AS path entries [0/0]
          +BGP community entries [0/0], BGP clusterlist entries [0/0]
          +
          +Neighbor        V    AS MsgRcvd MsgSent   TblVer  InQ OutQ Up/Down  State/PfxRcd
          +10.1.1.1        4 65000   25184   22982      169    0    0 00:00:01 1         
          +
          +BGP summary information for VRF default, address family IPv6 Unicast
          +
          +nx-osv-1# 
          +2538: JEAUBIN-M-43JF: 2019-04-24T15:20:44: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 advertised-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 advertised-routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 169, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>l10.22.22.22/32     0.0.0.0                           100      32768 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +2542: JEAUBIN-M-43JF: 2019-04-24T15:20:45: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 routes
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Unicast:
          +BGP table version is 169, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +*>i10.11.11.11/32     10.1.1.1                 0        100          0 i
          +
          +
          +Peer 10.1.1.1 routes for address family IPv4 Multicast:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Unicast:
          +BGP table version is 2, local router ID is 10.2.2.2
          +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best
          +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected
          +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup
          +
          +   Network            Next Hop            Metric     LocPrf     Weight Path
          +
          +Peer 10.1.1.1 routes for address family IPv6 Multicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv4 Unicast:
          +
          +Peer 10.1.1.1 routes for address family VPNv6 Unicast:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MDT:
          +
          +Peer 10.1.1.1 routes for address family IPv6 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN VPLS:
          +
          +Peer 10.1.1.1 routes for address family IPv4 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv6 MVPN:
          +
          +Peer 10.1.1.1 routes for address family IPv4 Label Unicast:
          +
          +Peer 10.1.1.1 routes for address family L2VPN EVPN:
          +
          +nx-osv-1# 
          +2546: JEAUBIN-M-43JF: 2019-04-24T15:20:45: %UNICON-6-INFO: %[pid=23936][pname=Task-1]: +++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 received-routes' +++
          +show bgp vrf default all neighbors 10.1.1.1 received-routes
          +
          +
          +Inbound soft reconfiguration for IPv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Multicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv4 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for VPNv6 Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MDT not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN VPLS not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv6 MVPN not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for IPv4 Label Unicast not enabled on 10.1.1.1
          +
          +Inbound soft reconfiguration for L2VPN EVPN not enabled on 10.1.1.1
          +
          +nx-osv-1#
          +2549: JEAUBIN-M-43JF: 2019-04-24T15:20:45: %GENIE-6-INFO: %[part=2549.1/2][pid=23936][pname=Task-1]: Could not learn <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>
          +2550: JEAUBIN-M-43JF: 2019-04-24T15:20:45: %GENIE-6-INFO: %[part=2549.2/2][pid=23936][pname=Task-1]: Parser Output is empty
          +2551: JEAUBIN-M-43JF: 2019-04-24T15:20:45: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +2552: JEAUBIN-M-43JF: 2019-04-24T15:20:45: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | Commands for learning feature 'Bgp'                                                                                                                |
          +2553: JEAUBIN-M-43JF: 2019-04-24T15:20:45: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +2554: JEAUBIN-M-43JF: 2019-04-24T15:20:45: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Parsed commands                                                                                                                                  |
          +2555: JEAUBIN-M-43JF: 2019-04-24T15:20:45: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +2556: JEAUBIN-M-43JF: 2019-04-24T15:20:45: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpProcessVrfAll'>                                                                              |
          +2557: JEAUBIN-M-43JF: 2019-04-24T15:20:45: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllNextHopDatabase'>                                                                   |
          +2558: JEAUBIN-M-43JF: 2019-04-24T15:20:45: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_routing.ShowRoutingVrfAll'>                                                                             |
          +2559: JEAUBIN-M-43JF: 2019-04-24T15:20:45: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAll'>                                                                                  |
          +2560: JEAUBIN-M-43JF: 2019-04-24T15:20:45: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_vrf.ShowVrf'>                                                                                           |
          +2561: JEAUBIN-M-43JF: 2019-04-24T15:20:45: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'default'}                                              |
          +2562: JEAUBIN-M-43JF: 2019-04-24T15:20:45: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllSummary'>                                                                           |
          +2563: JEAUBIN-M-43JF: 2019-04-24T15:20:45: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsAdvertisedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}        |
          +2564: JEAUBIN-M-43JF: 2019-04-24T15:20:45: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}                  |
          +2565: JEAUBIN-M-43JF: 2019-04-24T15:20:45: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +2566: JEAUBIN-M-43JF: 2019-04-24T15:20:45: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | - Commands with empty output                                                                                                                       |
          +2567: JEAUBIN-M-43JF: 2019-04-24T15:20:45: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |----------------------------------------------------------------------------------------------------------------------------------------------------|
          +2568: JEAUBIN-M-43JF: 2019-04-24T15:20:45: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerSession'>                                                                                |
          +2569: JEAUBIN-M-43JF: 2019-04-24T15:20:45: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpPeerPolicy'>                                                                                 |
          +2570: JEAUBIN-M-43JF: 2019-04-24T15:20:45: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllAllDampeningParameters'>                                                               |
          +2571: JEAUBIN-M-43JF: 2019-04-24T15:20:45: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighbors'>, arguments: {'vrf':'management'}                                           |
          +2572: JEAUBIN-M-43JF: 2019-04-24T15:20:45: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |   cmd: <class 'genie.libs.parser.nxos.show_bgp.ShowBgpVrfAllNeighborsReceivedRoutes'>, arguments: {'neighbor':'10.1.1.1','vrf':'default'}          |
          +2573: JEAUBIN-M-43JF: 2019-04-24T15:20:45: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |====================================================================================================================================================|
          +2574: JEAUBIN-M-43JF: 2019-04-24T15:20:45: %GENIE-6-INFO: %[part=2574.1/2][pid=23936][pname=Task-1]: Comparing current snapshot to initial snapshot
          +2575: JEAUBIN-M-43JF: 2019-04-24T15:20:45: %GENIE-6-INFO: %[part=2574.2/2][pid=23936][pname=Task-1]: Excluding these keys ['if_handle', 'keepalives', 'last_reset', 'reset_reason', 'foreign_port', 'local_port', 'msg_rcvd', 'msg_sent', 'up_down', 'bgp_table_version', 'routing_table_version', 'tbl_ver', 'table_version', 'memory_usage', 'updates', 'mss', 'total', 'total_bytes', 'up_time', 'bgp_negotiated_keepalive_timers', 'hold_time', 'keepalive_interval', 'sent', 'received', 'status_codes', 'holdtime', 'router_id', 'connections_dropped', 'connections_established', 'advertised', 'prefixes', 'routes', 'state_pfxrcd']
          +2576: JEAUBIN-M-43JF: 2019-04-24T15:20:45: %GENIE-6-INFO: %[pid=23936][pname=Task-1]: Snapshot is same as initial snapshot
          +2577: JEAUBIN-M-43JF: 2019-04-24T15:20:45: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of section verify is => PASSED
          +2578: JEAUBIN-M-43JF: 2019-04-24T15:20:45: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of testcase Verify_Bgp.uut.7 is => PASSED
          +2579: JEAUBIN-M-43JF: 2019-04-24T15:20:45: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting common cleanup
          +2580: JEAUBIN-M-43JF: 2019-04-24T15:20:45: %AETEST-6-IN
          +
          +
        • +
        +
        +
      • + + +
      +
      +
    • + + +
    • +
      + + arrow_drop_down + commonCleanup + + +
      + expand_more + expand_less +
      + PASSED + 0:00:01 +
      +
      + + + +
        + + + + +
      • +
        + + arrow_drop_down + verify_configuration_snapshot + + Description + + +
        + expand_more + expand_less +
        + PASSED + 0:00:01 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          2580: JEAUBIN-M-43JF: 2019-04-24T15:20:45: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting subsection verify_configuration_snapshot
          +2581: JEAUBIN-M-43JF: 2019-04-24T15:20:45: %GENIE-6-INFO: %[pid=23936][pname=Task-1]: Verify if the devices' configuration has been modified within the run. A new snapshot is taken and is compared with the one taken in Common Setup
          +2582: JEAUBIN-M-43JF: 2019-04-24T15:20:45: %GENIE-6-INFO: %[pid=23936][pname=Task-1]: For more information visit Genie check_config section http://wwwin-pyats.cisco.com/cisco-shared/genie/latest/harness/user/gettingstarted.html#check-config
          +2: JEAUBIN-M-43JF: 2019-04-24T15:20:45: %LOG-6-INFO: %[pid=24440][pname=ChildLabor-3:5]: >>>> Begin child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr24_15:18:02.606904/TaskLog.Task-1:pid-24440
          +3: JEAUBIN-M-43JF: 2019-04-24T15:20:45: %UNICON-6-INFO: %[pid=24440][pname=ChildLabor-3:5]: +++ csr1000v-1: executing command 'show running-config' +++
          +show running-config
          +Building configuration...
          +
          +Current configuration : 4219 bytes
          +!
          +! Last configuration change at 19:18:14 UTC Wed Apr 24 2019
          +!
          +version 16.9
          +service config
          +service timestamps debug datetime msec
          +service timestamps log datetime msec
          +platform qfp utilization monitor load 80
          +no platform punt-keepalive disable-kernel-core
          +platform console serial
          +!
          +hostname csr1000v-1
          +!
          +boot-start-marker
          +boot-end-marker
          +!
          +!
          +no logging console
          +enable secret 5 $1$wlDY$aYpdGzmHlBCznQBCYZX/q0
          +!
          +no aaa new-model
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +ip admission watch-list expiry-time 0
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +subscriber templating
          +! 
          +! 
          +! 
          +! 
          +!
          +multilink bundle-name authenticated
          +!
          +!
          +!
          +!
          +!
          +crypto pki trustpoint TP-self-signed-1664596352
          + enrollment selfsigned
          + subject-name cn=IOS-Self-Signed-Certificate-1664596352
          + revocation-check none
          + rsakeypair TP-self-signed-1664596352
          +!
          +!
          +crypto pki certificate chain TP-self-signed-1664596352
          + certificate self-signed 01
          +  30820330 30820218 A0030201 02020101 300D0609 2A864886 F70D0101 05050030 
          +  31312F30 2D060355 04031326 494F532D 53656C66 2D536967 6E65642D 43657274 
          +  69666963 6174652D 31363634 35393633 3532301E 170D3139 30343039 30303530 
          +  30335A17 0D333030 31303130 30303030 305A3031 312F302D 06035504 03132649 
          +  4F532D53 656C662D 5369676E 65642D43 65727469 66696361 74652D31 36363435 
          +  39363335 32308201 22300D06 092A8648 86F70D01 01010500 0382010F 00308201 
          +  0A028201 01009251 9249BF1E CAEB9073 0EE0254F 13AFC868 50B488E0 537408FD 
          +  27011BAA 346D19DA 70656043 4F7785F0 6679CC26 744BF77B 4E67A312 4D08F243 
          +  559E28A0 DEC217DD B48FE7F2 67BF339F 125E17EB FED1B10F 9E6EE7B5 C250C85A 
          +  A939DE1E DDC830F8 89230BA1 DB106783 8B09A777 7A92D388 03015F80 1AC7FC41 
          +  8BBAA19B 04600DCC F9D6A266 235B989D 6B864C35 8888BE4F 4817B4C4 B53C1FB5 
          +  CA53D93E 96BC900D CFF18777 FFF66D5E 3A46D6E3 DE6DE5F4 5151A66C 1382933A 
          +  2A46407E 53FBA2B1 141EA839 37B34B95 E60D31AC 496128CC E2A645A4 C9F42BE8 
          +  493A5748 4F1D0D5E 949312DF DFCAD602 B49025EF B3828CA0 08708BFD 150DF77A 
          +  4E22B257 6EC50203 010001A3 53305130 0F060355 1D130101 FF040530 030101FF 
          +  301F0603 551D2304 18301680 1434CE87 BC30C852 D663D826 E068BACB B500AC89 
          +  92301D06 03551D0E 04160414 34CE87BC 30C852D6 63D826E0 68BACBB5 00AC8992 
          +  300D0609 2A864886 F70D0101 05050003 82010100 4A426F44 7A22F137 615ABF5F 
          +  4B595C5B 03483695 BCE4041C 766D1273 219E3257 618DBCBE 260FD6F7 44CA69B4 
          +  467B77A3 0032C6A2 D401423E E780E18F A498EE6C FB5162EF 91422C4A 51B52384 
          +  0595C987 80FD4FBA 4EFE8227 76C6522E 02C0F548 0A1C3F20 7C176D4B C2458EEB 
          +  6B437FFE B3DEA4D4 7105CFC4 F83B5A51 9A4F43C5 8DC14533 4A5D0AE3 4269294E 
          +  2FBB8563 8A806EBE 0545F028 4C0B32ED A7840E4A 8F4FFF1D 894AD9FD 8C958C97 
          +  8DD917D5 3CBC3399 C481D57F 144571B1 ADC3B2B5 E6990255 600B5E2D 28D9719F 
          +  0091B2D7 6C988EFA 8627AE88 BAEA521A D46E09ED 5A692525 A77157B5 90A97B84 
          +  94BF8540 1C1FF02C B3848B50 2E68DEA6 DD1488C8
          +  	quit
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +license udi pid CSR1000V sn 9P34NU3ZQ4L
          +no license smart enable
          +diagnostic bootup level minimal
          +!
          +spanning-tree extend system-id
          +!
          +!
          +!
          +username cisco privilege 15 secret 5 $1$Hxh.$djLU5CFb2av38EBH6WO8a/
          +!
          +redundancy
          +!
          +!
          +!
          +!
          +!
          +!
          +! 
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +!
          +! 
          +! 
          +!
          +!
          +interface Loopback0
          + ip address 10.1.1.1 255.255.255.255
          + ip ospf 1 area 0
          +!
          +interface Loopback1
          + ip address 10.11.11.11 255.255.255.255
          +!
          +interface GigabitEthernet1
          + ip address dhcp
          + negotiation auto
          + no mop enabled
          + no mop sysid
          +!
          +interface GigabitEthernet2
          + ip address 10.0.1.1 255.255.255.0
          + ip ospf 1 area 0
          + negotiation auto
          + no mop enabled
          + no mop sysid
          +!
          +interface GigabitEthernet3
          + ip address 10.0.2.1 255.255.255.0
          + ip ospf 1 area 0
          + negotiation auto
          + no mop enabled
          + no mop sysid
          +!
          +router ospf 1
          + router-id 10.1.1.1
          +!
          +router bgp 65000
          + bgp router-id 10.1.1.1
          + bgp log-neighbor-changes
          + no bgp default ipv4-unicast
          + neighbor 10.2.2.2 remote-as 65000
          + neighbor 10.2.2.2 update-source Loopback0
          + !
          + address-family ipv4
          +  network 10.11.11.11 mask 255.255.255.255
          +  neighbor 10.2.2.2 activate
          + exit-address-family
          +!
          +!
          +virtual-service csr_mgmt
          +!
          +ip forward-protocol nd
          +ip http server
          +ip http authentication local
          +ip http secure-server
          +ip http client source-interface GigabitEthernet1
          +!
          +!
          +!
          +!
          +!
          +!
          +control-plane
          +!
          +!
          +!
          +!
          +!
          +!
          +line con 0
          + exec-timeout 0 0
          + stopbits 1
          +line vty 0
          + login
          +line vty 1
          + login
          + length 20
          +line vty 2 4
          + login
          +!
          +!
          +!
          +!
          +!
          +!
          +end
          +
          +csr1000v-1#
          +13: JEAUBIN-M-43JF: 2019-04-24T15:20:45: %LOG-6-INFO: %[pid=24440][pname=ChildLabor-3:5]: <<<< End child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr24_15:18:02.606904/TaskLog.Task-1:pid-24440
          +2: JEAUBIN-M-43JF: 2019-04-24T15:20:45: %LOG-6-INFO: %[pid=24441][pname=ChildLabor-3:6]: >>>> Begin child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr24_15:18:02.606904/TaskLog.Task-1:pid-24441
          +3: JEAUBIN-M-43JF: 2019-04-24T15:20:45: %UNICON-6-INFO: %[pid=24441][pname=ChildLabor-3:6]: +++ nx-osv-1: executing command 'show running-config' +++
          + show running-config
          +
          +
          +!Command: show running-config
          +!Time: Wed Apr 24 19:26:23 2019
          +
          +version 7.3(0)D1(1)
          +power redundancy-mode redundant
          +license grace-period
          +
          +hostname nx-osv-1
          +vdc nx-osv-1 id 1
          +  limit-resource module-type m1 m1xl m2xl f2e 
          +  allocate interface Ethernet2/1-48
          +  allocate interface Ethernet3/1-48
          +  allocate interface Ethernet4/1-48
          +  limit-resource vlan minimum 16 maximum 4094
          +  limit-resource vrf minimum 2 maximum 4096
          +  limit-resource port-channel minimum 0 maximum 768
          +  limit-resource u4route-mem minimum 96 maximum 96
          +  limit-resource u6route-mem minimum 24 maximum 24
          +  limit-resource m4route-mem minimum 58 maximum 58
          +  limit-resource m6route-mem minimum 8 maximum 8
          +
          +feature ospf
          +feature bgp
          +
          +username admin password 5 $5$Otc7T0NC$K.ulnSZnSyXLrTGNBdtLgZJXEa8EeNx.BrdZ98XyK2C  role network-admin
          +no password strength-check
          +ip domain-lookup
          +vlan dot1Q tag native
          +system default switchport
          +system jumbomtu 0
          +no logging event trunk-status enable
          +copp profile strict
          +snmp-server user admin auth md5 0x328945d53e05e8e7207f8c20b142f0b7 priv 0x328945d53e05e8e7207f8c20b142f0b7 localizedkey engineID 128:0:0:9:3:0:0:0:0:0:0
          +rmon event 1 log description FATAL(1) owner PMON@FATAL
          +rmon event 2 log description CRITICAL(2) owner PMON@CRITICAL
          +rmon event 3 log description ERROR(3) owner PMON@ERROR
          +rmon event 4 log description WARNING(4) owner PMON@WARNING
          +rmon event 5 log description INFORMATION(5) owner PMON@INFO
          +snmp-server enable traps link
          +snmp-server enable traps link cisco-xcvr-mon-status-chg
          +ntp server 216.239.35.0 prefer
          +
          +vlan 1
          +
          +vrf context management
          +
          +interface mgmt0
          +  vrf member management
          +
          +interface Ethernet2/1
          +  no switchport
          +  mac-address 0000.0000.002f
          +  ip address 10.0.1.2/24
          +  ip router ospf 1 area 0.0.0.0
          +  no shutdown
          +
          +interface Ethernet2/2
          +  no switchport
          +  mac-address 0000.0000.002f
          +  ip address 10.0.2.2/24
          +  ip router ospf 1 area 0.0.0.0
          +  no shutdown
          +
          +interface Ethernet2/3
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/4
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/5
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/6
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/7
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/8
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/9
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/10
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/11
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/12
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/13
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/14
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/15
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/16
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/17
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/18
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/19
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/20
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/21
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/22
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/23
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/24
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/25
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/26
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/27
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/28
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/29
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/30
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/31
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/32
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/33
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/34
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/35
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/36
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/37
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/38
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/39
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/40
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/41
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/42
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/43
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/44
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/45
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/46
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/47
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet2/48
          +  shutdown
          +  no switchport
          +  mac-address 0000.0000.002f
          +
          +interface Ethernet3/1
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/2
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/3
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/4
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/5
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/6
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/7
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/8
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/9
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/10
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/11
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/12
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/13
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/14
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/15
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/16
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/17
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/18
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/19
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/20
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/21
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/22
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/23
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/24
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/25
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/26
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/27
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/28
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/29
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/30
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/31
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/32
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/33
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/34
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/35
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/36
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/37
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/38
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/39
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/40
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/41
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/42
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/43
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/44
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/45
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/46
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/47
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet3/48
          +  shutdown
          +  no switchport
          +  medium p2p
          +
          +interface Ethernet4/1
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/2
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/3
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/4
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/5
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/6
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/7
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/8
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/9
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/10
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/11
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/12
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/13
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/14
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/15
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/16
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/17
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/18
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/19
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/20
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/21
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/22
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/23
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/24
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/25
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/26
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/27
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/28
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/29
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/30
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/31
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/32
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/33
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/34
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/35
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/36
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/37
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/38
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/39
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/40
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/41
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/42
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/43
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/44
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/45
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/46
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/47
          +  switchport
          +  no shutdown
          +
          +interface Ethernet4/48
          +  switchport
          +  no shutdown
          +
          +interface loopback0
          +  ip address 10.2.2.2/32
          +  ip router ospf 1 area 0.0.0.0
          +
          +interface loopback1
          +  ip address 10.22.22.22/32
          +line console
          +  exec-timeout 0
          +  terminal width  511
          +line vty
          +boot kickstart bootflash:/titanium-d1-kickstart.7.3.0.D1.1.bin
          +boot system bootflash:/titanium-d1.7.3.0.D1.1.bin 
          +router ospf 1
          +  router-id 10.2.2.2
          +router bgp 65000
          +  router-id 10.2.2.2
          +  address-family ipv4 unicast
          +    network 10.22.22.22/32
          +  neighbor 10.1.1.1
          +    remote-as 65000
          +    update-source loopback0
          +    address-family ipv4 unicast
          +no logging console
          +
          +
          +
          +nx-osv-1# 
          +22: JEAUBIN-M-43JF: 2019-04-24T15:20:46: %LOG-6-INFO: %[pid=24441][pname=ChildLabor-3:6]: <<<< End child log /Users/jeaubin/genie/users/jeaubin/runinfo/job.2019Apr24_15:18:02.606904/TaskLog.Task-1:pid-24441
          +2583: JEAUBIN-M-43JF: 2019-04-24T15:20:46: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +2584: JEAUBIN-M-43JF: 2019-04-24T15:20:46: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | Check Post configuration Summary                                                                                                                   |
          +2585: JEAUBIN-M-43JF: 2019-04-24T15:20:46: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: +====================================================================================================================================================+
          +2586: JEAUBIN-M-43JF: 2019-04-24T15:20:46: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | * Summary for device: csr1000v-1                                                                                                                   |
          +2587: JEAUBIN-M-43JF: 2019-04-24T15:20:46: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |     - Comparison between original configuration taken at common setup and OPS object snapshots are equal                                           |
          +2588: JEAUBIN-M-43JF: 2019-04-24T15:20:46: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |****************************************************************************************************************************************************|
          +2589: JEAUBIN-M-43JF: 2019-04-24T15:20:46: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: | * Summary for device: nx-osv-1                                                                                                                     |
          +2590: JEAUBIN-M-43JF: 2019-04-24T15:20:46: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |     - Comparison between original configuration taken at common setup and OPS object snapshots are equal                                           |
          +2591: JEAUBIN-M-43JF: 2019-04-24T15:20:46: %ROOT-6-INFO: %[pid=23936][pname=Task-1]: |****************************************************************************************************************************************************|
          +2592: JEAUBIN-M-43JF: 2019-04-24T15:20:46: %GENIE-6-INFO: %[pid=23936][pname=Task-1]: 
          +
          +2593: JEAUBIN-M-43JF: 2019-04-24T15:20:46: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of subsection verify_configuration_snapshot is => PASSED
          +
          +
          +
        • +
        +
        +
      • + + + + +
      • +
        + + arrow_drop_down + stop_traffic + + Description + + +
        + expand_more + expand_less +
        + SKIPPED + 0:00:00 +
        +
        + + + + +
          + + + + +
        • +
          + arrow_drop_down + Section Logs +
          +
          +
          2594: JEAUBIN-M-43JF: 2019-04-24T15:20:46: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Starting subsection stop_traffic
          +2595: JEAUBIN-M-43JF: 2019-04-24T15:20:46: %GENIE-6-INFO: %[pid=23936][pname=Task-1]: Stop protocols and traffic on traffic generator
          +2596: JEAUBIN-M-43JF: 2019-04-24T15:20:46: %GENIE-6-INFO: %[pid=23936][pname=Task-1]: For more information visit Genie traffic section http://wwwin-pyats.cisco.com/cisco-shared/genie/latest/harness/user/ixia.html#common-cleanup-stop-traffic
          +2597: JEAUBIN-M-43JF: 2019-04-24T15:20:46: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: Skipped reason: Traffic generator devices not found in testbed YAML
          +2598: JEAUBIN-M-43JF: 2019-04-24T15:20:46: %AETEST-6-INFO: %[pid=23936][pname=Task-1]: The result of subsection stop_traffic is => SKIPPED
          +
          +
          +
        • +
        +
        +
      • + + +
      +
      +
    • + +
    +
    +
  • + + +
+
+
+
+ + +
+ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/3-Automate/run/job.py b/3-Automate/run/job.py new file mode 100755 index 0000000..3618439 --- /dev/null +++ b/3-Automate/run/job.py @@ -0,0 +1,19 @@ +import os + +from ats.datastructures.logic import And, Not, Or +from genie.harness.main import gRun + +def main(): + test_path = os.path.dirname(os.path.abspath(__file__)) + + gRun(trigger_uids=['TriggerDemoShutNoShutBgp'], + trigger_datafile='trigger_datafile.yaml') + +#gRun(verification_uids=['Verify_BgpProcessVrfAll.uut'], +# trigger_uids=['TriggerDemoShutNoShutBgp'], +# trigger_datafile='trigger_datafile.yaml') + +#gRun(verification_uids=['Verify_Bgp.uut'], +# trigger_uids=['TriggerDemoShutNoShutBgp'], +# verification_datafile='verification_datafile.yaml', +# trigger_datafile='trigger_datafile.yaml') diff --git a/3-Automate/run/trigger_datafile.yaml b/3-Automate/run/trigger_datafile.yaml new file mode 100644 index 0000000..5614f07 --- /dev/null +++ b/3-Automate/run/trigger_datafile.yaml @@ -0,0 +1,9 @@ +TriggerDemoShutNoShutBgp: + source: + class: genie-bootcamp.3-Automate.triggers.shutnoshut.bgp.nxos.shutnoshut.ShutNoShutBgp + devices: ['uut'] + +#TriggerDemoShutNoShutBgpV2: +# source: +# class: genie-bootcamp.3-Automate.triggers.shutnoshut.bgp.nxos.shutnoshutv2.ShutNoShutBgp +# devices: ['uut'] diff --git a/3-Automate/run/verification_datafile.yaml b/3-Automate/run/verification_datafile.yaml new file mode 100644 index 0000000..355146f --- /dev/null +++ b/3-Automate/run/verification_datafile.yaml @@ -0,0 +1,42 @@ +Verify_Bgp: + source: + pkg: genie.libs.ops + class: bgp.bgp.Bgp + devices: ['uut'] + iteration: + attempt: 5 + interval: 10 + exclude: + - if_handle + - keepalives + - last_reset + - reset_reason + - foreign_port + - local_port + - msg_rcvd + - msg_sent + - up_down + - bgp_table_version + - routing_table_version + - tbl_ver + - table_version + - memory_usage + - updates + - mss + - total + - total_bytes + - up_time + - bgp_negotiated_keepalive_timers + - hold_time + - keepalive_interval + - sent + - received + - status_codes + - holdtime + - router_id + - connections_dropped + - connections_established + - advertised + - prefixes + - routes + - state_pfxrcd diff --git a/3-Automate/triggers/__init__.py b/3-Automate/triggers/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/3-Automate/triggers/shutnoshut/__init__.py b/3-Automate/triggers/shutnoshut/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/3-Automate/triggers/shutnoshut/bgp/__init__.py b/3-Automate/triggers/shutnoshut/bgp/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/3-Automate/triggers/shutnoshut/bgp/nxos/__init__.py b/3-Automate/triggers/shutnoshut/bgp/nxos/__init__.py new file mode 100644 index 0000000..05cdc37 --- /dev/null +++ b/3-Automate/triggers/shutnoshut/bgp/nxos/__init__.py @@ -0,0 +1,7 @@ +# Enable abstraction using this directory name as the abstraction token +try: + from genie import abstract + abstract.declare_token(__name__) +except Exception as e: + import warnings + warnings.warn('Could not declare abstraction token: ' + str(e)) diff --git a/3-Automate/triggers/shutnoshut/bgp/nxos/shutnoshut.py b/3-Automate/triggers/shutnoshut/bgp/nxos/shutnoshut.py new file mode 100644 index 0000000..5c7789f --- /dev/null +++ b/3-Automate/triggers/shutnoshut/bgp/nxos/shutnoshut.py @@ -0,0 +1,101 @@ +import time +import logging +from ats import aetest + +### Code replaced by using Verification! +## Uncomment me +#from genie.utils.diff import Diff +### +from genie.harness.base import Trigger + +log = logging.getLogger() + +class ShutNoShutBgp(Trigger): + '''Shut and unshut bgp''' + + @aetest.setup + def prerequisites(self, uut): + '''Figure out if bgp is configured and up''' + + # To verify if bgp is configured + output = uut.parse('show bgp process vrf all') + + # Check if there is a bgp_id + # And it is running + if not 'bgp_tag' in output: + # No Bgp! So can't do + self.skipped("No Bgp is configured for "\ + "device '{d}'".format(d=uut.name)) + + # Now see if its up + if 'bgp_protocol_state' not in output or\ + output['bgp_protocol_state'] != 'running': + self.skipped("Bgp is not operational on " + "device '{d}'".format(d=uut.name)) + + # Keep track of it + self.bgp_id = output['bgp_tag'] + ### Code replaced by using Verification! + # Uncomment me + #self.initial_output = output + ### + + @aetest.test + def shut(self, uut): + '''Shut bgp''' + uut.configure('''\ +router bgp {id} +shutdown'''.format(id=self.bgp_id)) + + @aetest.test + def verify(self, uut): + '''Verify if the shut worked''' + # Check if there is a bgp_id + # And it is running + output = uut.parse('show bgp process vrf all') + if output['bgp_tag'] != self.bgp_id: + self.failed("Bgp id {bgp_id} is not showing anymore in the " + "output of the cmd, this is " + "unexpected!".format(bgp_id=self.bgp_id)) + + # Now see if its down + if output['bgp_protocol_state'] != 'shutdown': + self.failed("Shut on Bgp {bgp_id} did not work as it is not " + "shutdown".format(bgp_id=self.bgp_id)) + + @aetest.test + def unshut(self, uut): + '''Shut bgp''' + uut.configure('''\ +router bgp {id} +no shutdown'''.format(id=self.bgp_id)) + + @aetest.test + def verify_recover(self, uut, wait_time=20): + '''Figure out if bgp is configured and up''' + ### Code replaced by using Verification! + #log.info('Sleeping for {w}'.format(w=wait_time)) + #time.sleep(wait_time) + ### + + # Check if there is a bgp_id + # And it is running + output = uut.parse('show bgp process vrf all') + if output['bgp_tag'] != self.bgp_id: + self.failed("Bgp id {bgp_id} is not showing anymore in the " + "output of the cmd, this is " + "unexpected!".format(bgp_id=self.bgp_id)) + + # Now see if its down + if output['bgp_protocol_state'] != 'running': + self.failed("Reconfigure of Bgp {bgp_id} did not work as it is not " + "running".format(bgp_id=self.bgp_id)) + + ### Code replaced by using Verification! + # Uncomment me + #diff = Diff(self.initial_output, output) + #diff.findDiff() + #if diff.diffs: + # self.failed('Unexpected change has happened to our device state ' + # '\n{d}'.format(d=diff)) + ### diff --git a/3-Automate/triggers/shutnoshut/bgp/nxos/shutnoshutv2.py b/3-Automate/triggers/shutnoshut/bgp/nxos/shutnoshutv2.py new file mode 100644 index 0000000..1fe89aa --- /dev/null +++ b/3-Automate/triggers/shutnoshut/bgp/nxos/shutnoshutv2.py @@ -0,0 +1,92 @@ +import logging +from ats import aetest + +from genie.harness.base import Trigger +### Code replaced by using Verification! +#from genie.utils.diff import Diff +### + +log = logging.getLogger() + +class ShutNoShutBgp(Trigger): + '''Shut and unshut bgp''' + + @aetest.setup + def prerequisites(self, uut, abstract): + '''Figure out if bgp is configured and up''' + + # To verify if bgp is configured, we can use the Bgp Ops object + ops = uut.learn('bgp') + + if not hasattr(ops, 'info'): + # No Bgp! So can't do + self.skipped("No Bgp is configured for "\ + "device '{d}'".format(d=uut.name)) + + # Now see if its up + for instance_key, instance in ops.info['instance'].items(): + if instance['protocol_state'] == 'running': + self.bgp_id = instance['bgp_id'] + break + else: + self.skipped("Bgp is not operational on " + "device '{d}'".format(d=uut.name)) +### Code replaced by using Verification! +# self.initial = ops +### + + @aetest.test + def shut(self, uut, abstract): + '''Shut bgp''' + uut.configure('''\ +router bgp {id} +shutdown'''.format(id=self.bgp_id)) + + @aetest.test + def verify(self, uut, abstract): + '''Verify if the shut worked''' + # Learn bgp object + ops = uut.learn('bgp') + + for instance_key, instance in ops.info['instance'].items(): + if instance['protocol_state'] == 'shutdown': + break + else: + self.failed("Shut on Bgp did not work as it is still up " + "device '{d}'".format(d=uut.name)) + + @aetest.test + def unshut(self, uut, abstract): + '''Shut bgp''' + uut.configure('''\ +router bgp {id} +no shutdown'''.format(id=self.bgp_id)) + + @aetest.test + def verify_recover(self, uut, abstract): + '''Figure out if bgp is configured and up''' + + # Learn bgp object + ops = uut.learn('bgp') + + if not hasattr(ops, 'info'): + # No Bgp! So can't do + self.skipped("No Bgp is configured for "\ + "device '{d}'".format(d=uut.name)) + + # Now see if its up + for instance_key, instance in ops.info['instance'].items(): + if instance['protocol_state'] == 'running': + break + else: + self.skipped("Bgp is not operational on " + "device '{d}'".format(d=uut.name)) + +### Code replaced by using Verification! +# diff = Diff(self.initial, ops) +# diff.findDiff() +# if diff: +# self.failed('Unexpected change has happened to our device state ' +# '\n{d}'.format(d=diff)) +# +### diff --git a/4-solutions/README.md b/4-solutions/README.md new file mode 100644 index 0000000..1b7aa4d --- /dev/null +++ b/4-solutions/README.md @@ -0,0 +1,97 @@ +# Tons of Features + +Let's add all the features for a full solution testing + +1. Trigger No Shut Interface + +Trigger to execute on our device, test we want to perform on our device. + +One of the goal of a trigger is to write re-usable Testcase. To achieve it you need: + +* Testcase which does not have anything hardcoded + * Topology / Configuration related information to be provided as arguments - + * Sleep Timeout to be provided as argument + * + +To be topology / configuration independent, nm + + +2. Add Verification around our Triggers + +Verify that the state of your network is unaffected by your triggers + +Take a snapshot pre trigger, and compare it post Trigger. + +List of available Verifications: https://pubhub.devnetcloud.com/media/genie-feature-browser/docs/#/verifications +New one can be created: https://pubhub.devnetcloud.com/media/genie-docs/docs/userguide/harness/developer/verifications.html + +3. Add configuration to the devices before running any Trigger + +Base configuration to apply on the device(s) to start the test. A typical usecase is applying the full device(s) configuration. + +Configuration can be copied to the device with Tftp/Ftp/Scp or jinja2. In this example we are using Jinja2. + +4. Add Health Check of our device - Verify Core, Traceback, Memory load, Cpu Load + +Verify the state of the device, see if any Core or Traceback has been generated, verify the load of the memory and CPU during the execution of the TestScript. + +All Yaml File Driven + +https://pubhub.devnetcloud.com/media/genie-docs/docs/health/index.html + +5. Add pyATS Clean - Will wipe your device configuration - Can be modified to do whatever you want + +Fully customizable clean - Can fully clean any device, to just ping a server. +Modular to prepare your device to the state needed before the script execution. + +https://pubhub.devnetcloud.com/media/genie-docs/docs/clean/index.html + +6. Add configuration to your device at the begining of the script + +7. Modifying our Common Setup to only run what we want - Subsection datafile + +By default the common setup will run Subsection by default. These can be +modified by providing a subsection datafile. New one can be added, removed, +modified. + + +That's a lot. + +Each feature can be used independently, just use what is needed. + +# How to use it + +Let's run it one by one, to see what each does. + +``` +pyats run genie --trigger-datafile trigger_datafile.yaml --trigger-uids TriggerReload --testbed-file tb.yaml --liveview +``` + +Let's add verification and shorten our common setup and add configuration to our device +``` +pyats run genie --trigger-datafile trigger_datafile.yaml --trigger-uids TriggerReload --testbed-file tb.yaml --liveview --verifications-uids Verify_BgpAll --subsection-datafile subsection_datafile.yaml --config-datafile configuration.j2 +``` + +Let's add device health +``` +pyats run genie --trigger-datafile trigger_datafile.yaml --trigger-uids TriggerReload --testbed-file tb.yaml --liveview --verifications-uids Verify_BgpAll --subsection-datafile subsection_datafile.yaml --config-datafile configuration.j2 --health-file health.yaml +``` + +Let's add the clean +``` +pyats run genie --trigger-datafile trigger_datafile.yaml --trigger-uids TriggerReload --testbed-file tb.yaml --liveview --verifications-uids Verify_BgpAll --subsection-datafile subsection_datafile.yaml --config-datafile configuration.j2 --health-file health.yaml --clean-file clean.yaml --invoke-clean +``` + +Here is the list of what each argument does. The full list can be found here: + +https://pubhub.devnetcloud.com/media/genie-docs/docs/userguide/harness/user/reference.html +https://pubhub.devnetcloud.com/media/pyats/docs/easypy/usages.html#standard-arguments + +trigger-datafile -> Mention which Trigger file to use +trigger-uids -> Which trigger to execute within this trigger datafile +verification-uids -> Which Verifications to execute +subsection-datafile -> Subsection datafile to use +testbed-file -> Testbed to use +config-datafile -> Configuration to apply to your device within the common setup - Right after connecting to the devices +liveview - Live logviewer that shows at runtime what is running. Add --liveview-host 0.0.0.0 if not running on laptop + diff --git a/4-solutions/__pycache__/shutnoshut.cpython-37.pyc b/4-solutions/__pycache__/shutnoshut.cpython-37.pyc new file mode 100644 index 0000000..d0fb402 Binary files /dev/null and b/4-solutions/__pycache__/shutnoshut.cpython-37.pyc differ diff --git a/4-solutions/blitz.yaml b/4-solutions/blitz.yaml new file mode 100644 index 0000000..d363f83 --- /dev/null +++ b/4-solutions/blitz.yaml @@ -0,0 +1,18 @@ +BlitzTestcase: + groups: ['test'] + description: Modifying the testcase description + source: + pkg: genie.libs.sdk + class: triggers.blitz.blitz.Blitz + test_sections: + - section: + - parse: + device: PE1 + command: show interfaces Tunnel7 + include: + - contains('queues') + - execute: + device: PE1 + command: show interfaces Tunnel7 + include: + - queues.* diff --git a/4-solutions/clean.yaml b/4-solutions/clean.yaml new file mode 100644 index 0000000..9333a6d --- /dev/null +++ b/4-solutions/clean.yaml @@ -0,0 +1,82 @@ +cleaners: + DeviceClean: + module: genie.libs.clean + devices: [nx-osv-1, csr1000v-1] + +devices: + nx-osv-1: + #images: + # - /auto/release/path/csr1000v-universalk9.03.10.00.S.153-3.S-ext.SPA.bin + + device_recovery: + break_count: 5 + console_activity_pattern: "\\.\\.\\.\\." + timeout: 600 + recovery_password: "lab" + golden_image: + - bootflash:/golden_image.bin + + connect: + + write_erase: + + apply_configuration: + file: bootflash:/golden + config_timeout: 90 + config_stable_time: 10 + + order: + - 'connect' + - 'write_erase' + - 'apply_configuration' + + csr1000v-1: + #images: + # - /auto/release/path/csr1000v-universalk9.03.10.00.S.153-3.S-ext.SPA.bin + + device_recovery: + break_count: 5 + console_activity_pattern: "\\.\\.\\.\\." + timeout: 600 + recovery_password: "lab" + golden_image: + - bootflash:/golden_image.bin + + connect: + + #copy_to_linux: + # destination: + # directory: /auto/path/images/ + # overwrite: True + # copy_attempts: 3 + # append_hostname: True + + #copy_to_device: + # origin: + # hostname: the-tftp-server + # destination: + # directory: 'bootflash:' + # protocol: ftp + # overwrite: True + # verify_num_images: False + # check_file_stability: True + # min_free_space_percent: 50 + + #change_boot_variable: + # write_memory: True + + write_erase: + + #reload: + # check_modules: + # check: False + + apply_configuration: + file: bootflash:/golden + config_timeout: 90 + config_stable_time: 10 + + order: + - 'connect' + - 'write_erase' + - 'apply_configuration' diff --git a/4-solutions/config.yaml b/4-solutions/config.yaml new file mode 100644 index 0000000..c451eee --- /dev/null +++ b/4-solutions/config.yaml @@ -0,0 +1,9 @@ +devices: + uut: + 1: + jinja2_config: configuration.j2 + jinja2_arguments: + interface: GigabitEthernet1 + description: Interface To Shutdown + sleep: 3 + invalid: ['overlaps', '(.*inval.*)'] diff --git a/4-solutions/config_tb2.yaml b/4-solutions/config_tb2.yaml new file mode 100644 index 0000000..0b35a11 --- /dev/null +++ b/4-solutions/config_tb2.yaml @@ -0,0 +1,9 @@ +devices: + uut: + 1: + jinja2_config: configuration.j2 + jinja2_arguments: + interface: GigabitEthernet2 + description: Interface To Shutdown + sleep: 3 + invalid: ['overlaps', '(.*inval.*)'] diff --git a/4-solutions/configuration.j2 b/4-solutions/configuration.j2 new file mode 100644 index 0000000..b493c15 --- /dev/null +++ b/4-solutions/configuration.j2 @@ -0,0 +1,2 @@ +interface {{ interface }} + description {{ description }} diff --git a/4-solutions/diff_csr1000v-1_show-version_parsed.txt b/4-solutions/diff_csr1000v-1_show-version_parsed.txt new file mode 100644 index 0000000..10f3bf6 --- /dev/null +++ b/4-solutions/diff_csr1000v-1_show-version_parsed.txt @@ -0,0 +1,9 @@ +--- snap1/csr1000v-1_show-version_parsed.txt ++++ snap2/csr1000v-1_show-version_parsed.txt + version: +- chassis_sn: 9KPJ5WDVKMA ++ chassis_sn: wqeqweqew + disks: + bootflash:.: +- disk_size: 7774207 ++ disk_size: 7774 \ No newline at end of file diff --git a/4-solutions/health.yaml b/4-solutions/health.yaml new file mode 100644 index 0000000..089fc3a --- /dev/null +++ b/4-solutions/health.yaml @@ -0,0 +1,65 @@ +vars: + device: uut # target device + default_dir: "bootflash:" # storage where core is generated + +pyats_health_processors: + source: + pkg: genie.libs.health + class: health.Health + + test_sections: + - cpu: + - api: + processor: pre + device: "%{vars.device}" + function: get_platform_cpu_load + arguments: + processes: ['SSH.*'] + include: + - "<= 90" + + - memory: + - api: + processor: both + device: "%{vars.device}" + function: get_platform_memory_usage + arguments: + processes: ['SSH.*'] + include: + - "<= 90" + + - traceback: + - api: + device: "%{vars.device}" + function: get_platform_logging + arguments: + keywords: + - 'TRACEBACK' # keyword to catch + num_of_logs: True # return number of hit lines + include: + - "== 0" # check if no hit + + - core: + - api: + alias: get_core + device: "%{vars.device}" + function: get_platform_core + arguments: + default_dir: "%{vars.default_dir}" + num_of_cores: True # return number of core files + decode: True # enable to decode core + remote_device: jump_host # remote device where coping core file to + remote_path: /tmp # path on remote device where core is saved + remote_via: scp # connection name for remote device in testbed yaml + vrf: Mgmt-intf # vrf name to use scp to remote device + archive: True # attache decode result in pyATS job archive + include: + - "== 0" + - run_condition: + if: '%VARIABLES{get_core} == passed' + function: passed + actions: # below runs only when core found + - execute: + device: "%{vars.device}" + command: "delete /force %{vars.default_dir}core/*core*.gz" # delete all core files + diff --git a/4-solutions/shutnoshut.py b/4-solutions/shutnoshut.py new file mode 100644 index 0000000..3ce486a --- /dev/null +++ b/4-solutions/shutnoshut.py @@ -0,0 +1,61 @@ +import time +import logging +from ats import aetest + +from genie.harness.base import Trigger + +log = logging.getLogger() + +class ShutNoShutInterface(Trigger): + '''Shut and unshut Interface''' + + @aetest.setup + def prerequisites(self, uut, interface): + '''Verify interface is non shut''' + + # To verify if the interface is up + output = uut.parse('show interfaces {interface}'.format(interface=interface)) + + # Check if interface is up + if output[interface]['oper_status'] != 'up': + self.failed('Interface {} is not up'.format(interface)) + + self.passed('Interface {} is up'.format(interface)) + + @aetest.test + def shut(self, uut, interface): + '''Shut interface''' + uut.configure('''\ +interface {interface} +shutdown'''.format(interface=interface)) + + @aetest.test + def verify(self, uut, interface): + '''Verify if the shut worked''' + # To verify if the interface is down + output = uut.parse('show interfaces {interface}'.format(interface=interface)) + + # Check if interface is down + if output[interface]['oper_status'] != 'down': + self.failed('Interface {} is not down'.format(interface)) + + self.passed('Interface {} is down'.format(interface)) + + @aetest.test + def unshut(self, uut, interface): + '''Un Shut interface''' + uut.configure('''\ +interface {interface} +no shutdown'''.format(interface=interface)) + + @aetest.test + def verify_recover(self, uut, interface): + '''Figure out if interface is recovered''' + # To verify if the interface is down + output = uut.parse('show interfaces {interface}'.format(interface=interface)) + + # Check if interface is up + if output[interface]['oper_status'] != 'up': + self.failed('Interface {} is not up'.format(interface)) + + self.passed('Interface {} is up'.format(interface)) diff --git a/4-solutions/subsection_datafile.yaml b/4-solutions/subsection_datafile.yaml new file mode 100644 index 0000000..585c9d6 --- /dev/null +++ b/4-solutions/subsection_datafile.yaml @@ -0,0 +1,12 @@ +setup: + + sections: + + connect: + method: genie.harness.commons.connect + + configure: + method: genie.harness.commons.configure + + order: ['connect', 'configure'] + diff --git a/4-solutions/tb.yaml b/4-solutions/tb.yaml new file mode 100644 index 0000000..6455d70 --- /dev/null +++ b/4-solutions/tb.yaml @@ -0,0 +1,48 @@ +testbed: + name: 'MyTestbed' + +devices: + nx-osv-1: + type: 'router' + os: 'nxos' + alias: 'helper' + credentials: + default: + password: admin + username: admin + connections: + cli: + protocol: telnet + ip: "172.25.192.90" + port: 17010 + + csr1000v-1: + type: 'router' + os: "iosxe" + alias: 'uut' + credentials: + default: + password: cisco + username: cisco + connections: + a: + protocol: telnet + ip: "172.25.192.90" + port: 17008 + + jump_host: + type: jump_host + os: linux + connections: + defaults: + class: unicon.Unicon + via: cli + cli: + protocol: ssh + ip: 172.25.195.129 + arguments: + learn_hostname: True + ssh_options: -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null + scp: + protocol: ssh + ip: 10.1.20.150 diff --git a/4-solutions/trigger_datafile.yaml b/4-solutions/trigger_datafile.yaml new file mode 100644 index 0000000..79b5607 --- /dev/null +++ b/4-solutions/trigger_datafile.yaml @@ -0,0 +1,10 @@ +TriggerShutNoShutInterface: + source: + class: training.genie-bootcamp.4-solutions.shutnoshut.ShutNoShutInterface + devices: ['uut'] + interface: GigabitEthernet1 + +#TriggerDemoShutNoShutBgpV2: +# source: +# class: genie-bootcamp.3-Automate.triggers.shutnoshut.bgp.nxos.shutnoshutv2.ShutNoShutBgp +# devices: ['uut'] diff --git a/5-Scripts/iosxr/1-crc.py b/5-Scripts/iosxr/1-crc.py new file mode 100644 index 0000000..23ba245 --- /dev/null +++ b/5-Scripts/iosxr/1-crc.py @@ -0,0 +1,26 @@ + +from genie.testbed import load +tb = load('../../testbed.yaml') +dev1 = tb.devices['xr-1'] +dev1.connect(via='cli') + +# Let's send a command to the device +output = dev1.parse('show interfaces') + +# Structure looks like +#interface +# counters +# crc_errors + +for interface in output: + if 'counters' in output[interface] and\ + 'in_crc_errors' in output[interface]['counters']: + crc_error = output[interface]['counters']['in_crc_errors'] + if crc_error > 0: + print("Interface '{intf}' has '{error}' " + "crc_error".format(intf=interface, + error=crc_error)) + # Send + else: + print("Interface '{intf}' has no crc_error".format(intf=interface)) + diff --git a/5-Scripts/iosxr/2-errors.py b/5-Scripts/iosxr/2-errors.py new file mode 100644 index 0000000..e2abccd --- /dev/null +++ b/5-Scripts/iosxr/2-errors.py @@ -0,0 +1,39 @@ +from genie.testbed import load +tb = load('../../testbed.yaml') + +devices = (tb.devices['xr-1'],) +#devices = (tb.devices['iosxrv9000-1'], tb.devices['iosxrv9000-2']) +errors = ('out_errors', 'in_errors') +summary = [] + +for dev in devices: + dev.connect(via='cli') + + output = dev.parse('show interfaces') + # Structure looks like + #interface + # counters + # errors + + for error in errors: + for interface in output: + if 'counters' in output[interface] and\ + error in output[interface]['counters']: + count = output[interface]['counters'][error] + if count > 0: + msg = "{device}: Interface '{intf}' has '{count}' "\ + "{error}".format(device=dev.name, + intf=interface, + count=count, + error=error) + summary.append(msg) + else: + msg = "{device}: Interface '{intf}' has '{count}' "\ + "{error}".format(device=dev.name, + intf=interface, + count=count, + error=error) + summary.append(msg) + +print('---Errors Summary---') +print('\n'.join(summary)) diff --git a/5-Scripts/iosxr/3-shutinterfaces.py b/5-Scripts/iosxr/3-shutinterfaces.py new file mode 100644 index 0000000..78dd529 --- /dev/null +++ b/5-Scripts/iosxr/3-shutinterfaces.py @@ -0,0 +1,51 @@ +# Shut all the interfaces +# return the list of interfaces that were shut +from genie.testbed import load + +def interfaces_up(device): + up_interfaces = [] + output = device.parse('show interfaces') + for interface in output: + if interface == 'Null0': + continue + # status + if 'enabled' in output[interface] and\ + output[interface]['enabled'] is True: + up_interfaces.append(interface) + return up_interfaces + +tb = load('../../testbed.yaml') +device = tb.devices['xr-1'] +#devices = (tb.devices['iosxrv9000-1'], tb.devices['iosxrv9000-2']) + +# Learn which interface is up +# Connect to the device via Console; as we want to shut all the interfaces +device.connect(via='cli') + +interface_to_shut = interfaces_up(device) +configuration = [] +un_configuration = [] +print("{device}: Shutting the following interfaces" + "'{to_shut}'".format(device=device.name, to_shut=interface_to_shut)) + +for interface in interface_to_shut: + configuration.append('interface {intf}\nshut'.format(intf=interface)) + un_configuration.append('interface {intf}\nno shut'.format(intf=interface)) + +# Once its all collected, shut the interface +device.configure(configuration) + +# Verify they are all down +interfaces_up = interfaces_up(device) +if interfaces_up: + raise Exception("{device}: Has shut the following interfaces " + "'{to_shut}' but '{intf}' are still up".format(device=device.name, + to_shut=interface_to_shut, + intf=interfaces_up)) + +print('---Summary---') +print("{device}: Has shut the following interfaces " + "'{to_shut}'".format(device=device.name, to_shut=interface_to_shut)) +print('Configuration to undo these changes') +print('\n'.join(un_configuration)) + diff --git a/5-Scripts/iosxr/4-unshutinterfaces.py b/5-Scripts/iosxr/4-unshutinterfaces.py new file mode 100644 index 0000000..472264b --- /dev/null +++ b/5-Scripts/iosxr/4-unshutinterfaces.py @@ -0,0 +1,81 @@ +# Shut all the interfaces +# return the list of interfaces that were shut +from genie.testbed import load +import argparse + +# Provide argument at runtime +parser = argparse.ArgumentParser(description='') +parser.add_argument('--interfaces', + nargs='*', + type=str, + help='Interface to shut') +parser.add_argument('--unshut', + action='store_true', + help='If selected, then it will unshut the interfaces') + +custom_args = parser.parse_known_args()[0] + +def interfaces_up(device): + up_interfaces = [] + output = device.parse('show interfaces') + for interface in output: + if interface == 'Null0': + continue + # status + if 'enabled' in output[interface] and\ + output[interface]['enabled'] is True: + up_interfaces.append(interface) + return up_interfaces + +tb = load('../../testbed.yaml') + + +device = tb.devices['xr-1'] +#devices = (tb.devices['iosxrv9000-1'], tb.devices['iosxrv9000-2']) + +# Connect to the device via Console; as we want to shut all the interfaces +device.connect(via='cli') + +if custom_args.interfaces: + interface_to_modify = custom_args.interfaces +else: + interface_to_modify = interfaces_up(device) + +configuration = [] +un_configuration = [] +print("{device}: modifying the following interfaces" + "'{to_shut}'".format(device=device.name, to_shut=interface_to_modify)) + +for interface in interface_to_modify: + configuration.append('interface {intf}\nshut'.format(intf=interface)) + un_configuration.append('interface {intf}\nno shut'.format(intf=interface)) + +# Once its all collected, shut the interface +if custom_args.unshut: + device.configure(un_configuration) +else: + device.configure(configuration) + +# Verify they are all down +interfaces_up = interfaces_up(device) +if interfaces_up and not custom_args.unshut: + raise Exception("{device}: Have shut the following interfaces " + "'{to_shut}' but '{intf}' are still up".format(device=device.name, + to_shut=interface_to_modify, + intf=interfaces_up)) +elif custom_args.unshut: + # Verify they are all up + if not set(interface_to_modify).issubset(interfaces_up): + missing = set(interface_to_modify) - set(interfaces_up) + raise Exception("{device}: Have unshut the following interfaces " + "'{to_shut}' but '{missing}' are still down".format(device=device.name, + to_shut=interface_to_modify, + missing=missing)) + + +print('---Summary---') +print("{device}: Have modified the following interfaces " + "'{to_shut}'".format(device=device.name, to_shut=' '.join(interface_to_modify))) +if not custom_args.unshut: + print('Configuration to undo these changes') + print('\n'.join(un_configuration)) diff --git a/5-Scripts/iosxr/5-jinja.py b/5-Scripts/iosxr/5-jinja.py new file mode 100644 index 0000000..8c83d16 --- /dev/null +++ b/5-Scripts/iosxr/5-jinja.py @@ -0,0 +1,33 @@ +import jinja2 +from genie.testbed import load +tb = load('../../testbed.yaml') + +device = tb.devices['xr-1'] +device.connect(via='cli') + +kwargs = {} +kwargs['process_id'] = "SR" + + +interface = 'GigabitEthernet0/0/0/1' + +# Load the Jinja template +env = jinja2.Environment(loader=jinja2.FileSystemLoader(searchpath='.')) +template = env.get_template('config_isis.j2') + +# Render the template and populate the field +configuration = template.render(process_id='SR', + net_address='49.0001.1111.1111.1111.00', + address_family='ipv4 unicast', + metric_style='wide', + loopback_interface='Loopback0', + interface_name=interface, + metric='10') +device.configure(configuration) + +#output = device.parse('show isis neighbors') +is_neighbor_up = device.api.verify_isis_neighbor_in_state(interfaces=[interface]) +if not is_neighbor_up: + raise Exception("'{intf}' is not up as expected".format(intf=interface)) + + diff --git a/5-Scripts/iosxr/README.md b/5-Scripts/iosxr/README.md new file mode 100644 index 0000000..b1e681f --- /dev/null +++ b/5-Scripts/iosxr/README.md @@ -0,0 +1,5 @@ +# Script + +In the previous sections we've seen how to interact with the devices. + +Let's create some scripts with these commands. diff --git a/5-Scripts/iosxr/config_isis.j2 b/5-Scripts/iosxr/config_isis.j2 new file mode 100644 index 0000000..e0bea91 --- /dev/null +++ b/5-Scripts/iosxr/config_isis.j2 @@ -0,0 +1,27 @@ +{# Documentation + Required inputs: + process_id: Router ISIS process ID + net_address: Net Address + loopback_interface: Loopback interface + interface_name: Interface to configure + metric: Metric value + address_family: Address-family to be configured + metric_style: Metric style +#} +router isis {{ process_id }} + net {{ net_address }} + address-family {{ address_family }} + metric-style {{ metric_style }} + ! + interface {{ loopback_interface }} + passive + address-family {{ address_family }} + ! + ! + interface {{ interface_name }} + point-to-point + address-family {{ address_family }} + metric {{ metric }} + ! + ! +! diff --git a/5-Scripts/nxos/1-crc.py b/5-Scripts/nxos/1-crc.py new file mode 100644 index 0000000..d927dff --- /dev/null +++ b/5-Scripts/nxos/1-crc.py @@ -0,0 +1,27 @@ + +from genie.testbed import load +tb = load('../../testbed.yaml') +dev1 = tb.devices['nx-osv-1'] +dev1.connect(via='cli') + +# Let's send a command to the device +output = dev1.parse('show interface') + +# Structure looks like +#interface +# counters +# in_crc_errors + +for interface in output: + if 'counters' in output[interface] and\ + 'in_crc_errors' in output[interface]['counters']: + crc_error = output[interface]['counters']['in_crc_errors'] + if crc_error > 0: + print("Interface '{intf}' has '{error}' " + "crc_error".format(intf=interface, + error=crc_error)) + else: + print("Interface '{intf}' has '{error}' " + "crc_error".format(intf=interface, + error=crc_error)) + diff --git a/5-Scripts/nxos/1.5-crc.py b/5-Scripts/nxos/1.5-crc.py new file mode 100644 index 0000000..ffa16ec --- /dev/null +++ b/5-Scripts/nxos/1.5-crc.py @@ -0,0 +1,17 @@ + +from genie.testbed import load +tb = load('../../testbed.yaml') +dev1 = tb.devices['nx-osv-1'] +dev1.connect(via='cli') + +# Let's send a command to the device +output = dev1.parse('show interface') + +# Structure looks like +#interface +# counters +# in_crc_errors +import pdb;pdb.set_trace() + +print('The following interfaces have in_crc_errors greater than 0') +print(output.q.value_operator('in_crc_errors', '>', 0).get_values('[0]')) diff --git a/5-Scripts/nxos/2-errors.py b/5-Scripts/nxos/2-errors.py new file mode 100644 index 0000000..c0180dd --- /dev/null +++ b/5-Scripts/nxos/2-errors.py @@ -0,0 +1,38 @@ +from genie.testbed import load +tb = load('../../testbed.yaml') + +devices = (tb.devices['nx-osv-1'],) +errors = ('out_errors', 'in_errors') +summary = [] + +for dev in devices: + dev.connect(via='cli') + + output = dev.parse('show interface') + # Structure looks like + #interface + # counters + # errors + + for error in errors: + for interface in output: + if 'counters' in output[interface] and\ + error in output[interface]['counters']: + count = output[interface]['counters'][error] + if count > 0: + msg = "{device}: Interface '{intf}' has '{count}' "\ + "{error}".format(device=dev.name, + intf=interface, + count=count, + error=error) + summary.append(msg) + else: + msg = "{device}: Interface '{intf}' has '{count}' "\ + "{error}".format(device=dev.name, + intf=interface, + count=count, + error=error) + summary.append(msg) + +print('---Errors Summary---') +print('\n'.join(summary)) diff --git a/5-Scripts/nxos/2.5-errors.py b/5-Scripts/nxos/2.5-errors.py new file mode 100644 index 0000000..1c4c225 --- /dev/null +++ b/5-Scripts/nxos/2.5-errors.py @@ -0,0 +1,19 @@ +from genie.testbed import load +tb = load('../../testbed.yaml') + +devices = (tb.devices['nx-osv-1'],) +errors = ('out_errors', 'in_errors') +summary = [] + +for dev in devices: + dev.connect(via='cli') + + output = dev.parse('show interface') + # Structure looks like + #interface + # counters + # errors + print('The following interfaces have in_errors greater than 0') + print(output.q.value_operator('in_errors', '>', 0).get_values('[0]')) + print('The following interfaces have out_errors greater than 0') + print(output.q.value_operator('out_errors', '>', 0).get_values('[0]')) diff --git a/5-Scripts/nxos/3-shutinterfaces.py b/5-Scripts/nxos/3-shutinterfaces.py new file mode 100644 index 0000000..268efb5 --- /dev/null +++ b/5-Scripts/nxos/3-shutinterfaces.py @@ -0,0 +1,44 @@ +# Shut all the interfaces +# return the list of interfaces that were shut +from genie.testbed import load + +def interfaces_up(device): + up_interfaces = [] + output = device.parse('show interfaces') + return output.q.contains_key_value('oper_status', 'up').get_values('[0]') + +tb = load('../../testbed.yaml') +device = tb.devices['csr1000v-1'] + +# Learn which interface is up +# Connect to the device via Console; as we want to shut all the interfaces +device.connect() + +interface_to_shut = interfaces_up(device) +configuration = [] +un_configuration = [] +print("{device}: Shutting the following interfaces" + "'{to_shut}'".format(device=device.name, to_shut=interface_to_shut)) + +for interface in interface_to_shut: + configuration.append('interface {intf}\nshut'.format(intf=interface)) + un_configuration.append('interface {intf}\nno shut'.format(intf=interface)) + +# Once its all collected, shut the interface +import pdb;pdb.set_trace() +device.configure(configuration) + +# Verify they are all down +interfaces_up = interfaces_up(device) +if interfaces_up: + raise Exception("{device}: Has shut the following interfaces " + "'{to_shut}' but '{intf}' are still up".format(device=device.name, + to_shut=interface_to_shut, + intf=interfaces_up)) + +print('---Summary---') +print("{device}: Has shut the following interfaces " + "'{to_shut}'".format(device=device.name, to_shut=interface_to_shut)) +print('Configuration to undo these changes') +print('\n'.join(un_configuration)) + diff --git a/5-Scripts/nxos/4-unshutinterfaces.py b/5-Scripts/nxos/4-unshutinterfaces.py new file mode 100644 index 0000000..472264b --- /dev/null +++ b/5-Scripts/nxos/4-unshutinterfaces.py @@ -0,0 +1,81 @@ +# Shut all the interfaces +# return the list of interfaces that were shut +from genie.testbed import load +import argparse + +# Provide argument at runtime +parser = argparse.ArgumentParser(description='') +parser.add_argument('--interfaces', + nargs='*', + type=str, + help='Interface to shut') +parser.add_argument('--unshut', + action='store_true', + help='If selected, then it will unshut the interfaces') + +custom_args = parser.parse_known_args()[0] + +def interfaces_up(device): + up_interfaces = [] + output = device.parse('show interfaces') + for interface in output: + if interface == 'Null0': + continue + # status + if 'enabled' in output[interface] and\ + output[interface]['enabled'] is True: + up_interfaces.append(interface) + return up_interfaces + +tb = load('../../testbed.yaml') + + +device = tb.devices['xr-1'] +#devices = (tb.devices['iosxrv9000-1'], tb.devices['iosxrv9000-2']) + +# Connect to the device via Console; as we want to shut all the interfaces +device.connect(via='cli') + +if custom_args.interfaces: + interface_to_modify = custom_args.interfaces +else: + interface_to_modify = interfaces_up(device) + +configuration = [] +un_configuration = [] +print("{device}: modifying the following interfaces" + "'{to_shut}'".format(device=device.name, to_shut=interface_to_modify)) + +for interface in interface_to_modify: + configuration.append('interface {intf}\nshut'.format(intf=interface)) + un_configuration.append('interface {intf}\nno shut'.format(intf=interface)) + +# Once its all collected, shut the interface +if custom_args.unshut: + device.configure(un_configuration) +else: + device.configure(configuration) + +# Verify they are all down +interfaces_up = interfaces_up(device) +if interfaces_up and not custom_args.unshut: + raise Exception("{device}: Have shut the following interfaces " + "'{to_shut}' but '{intf}' are still up".format(device=device.name, + to_shut=interface_to_modify, + intf=interfaces_up)) +elif custom_args.unshut: + # Verify they are all up + if not set(interface_to_modify).issubset(interfaces_up): + missing = set(interface_to_modify) - set(interfaces_up) + raise Exception("{device}: Have unshut the following interfaces " + "'{to_shut}' but '{missing}' are still down".format(device=device.name, + to_shut=interface_to_modify, + missing=missing)) + + +print('---Summary---') +print("{device}: Have modified the following interfaces " + "'{to_shut}'".format(device=device.name, to_shut=' '.join(interface_to_modify))) +if not custom_args.unshut: + print('Configuration to undo these changes') + print('\n'.join(un_configuration)) diff --git a/5-Scripts/nxos/5-jinja.py b/5-Scripts/nxos/5-jinja.py new file mode 100644 index 0000000..8c83d16 --- /dev/null +++ b/5-Scripts/nxos/5-jinja.py @@ -0,0 +1,33 @@ +import jinja2 +from genie.testbed import load +tb = load('../../testbed.yaml') + +device = tb.devices['xr-1'] +device.connect(via='cli') + +kwargs = {} +kwargs['process_id'] = "SR" + + +interface = 'GigabitEthernet0/0/0/1' + +# Load the Jinja template +env = jinja2.Environment(loader=jinja2.FileSystemLoader(searchpath='.')) +template = env.get_template('config_isis.j2') + +# Render the template and populate the field +configuration = template.render(process_id='SR', + net_address='49.0001.1111.1111.1111.00', + address_family='ipv4 unicast', + metric_style='wide', + loopback_interface='Loopback0', + interface_name=interface, + metric='10') +device.configure(configuration) + +#output = device.parse('show isis neighbors') +is_neighbor_up = device.api.verify_isis_neighbor_in_state(interfaces=[interface]) +if not is_neighbor_up: + raise Exception("'{intf}' is not up as expected".format(intf=interface)) + + diff --git a/5-Scripts/nxos/6-dq.py b/5-Scripts/nxos/6-dq.py new file mode 100644 index 0000000..960a2eb --- /dev/null +++ b/5-Scripts/nxos/6-dq.py @@ -0,0 +1,12 @@ +from genie.testbed import load +tb = load('../../testbed.yaml') +dev1 = tb.devices['nx-osv-1'] +dev1.connect() + +# Let's send a command to the device +output = dev1.parse('show module') + +# Let's get all the rp which are actived +print(output.q.contains('active').get_values('rp')) +print(output.q.contains('ok').get_values('lc')) + diff --git a/5-Scripts/nxos/7-dq.py b/5-Scripts/nxos/7-dq.py new file mode 100644 index 0000000..91629f2 --- /dev/null +++ b/5-Scripts/nxos/7-dq.py @@ -0,0 +1,17 @@ +from genie.testbed import load +tb = load('../../testbed.yaml') +dev = tb.devices['nx-osv-1'] +dev.connect() + +# How many up interfaces? +# Let's send a command to the device +output = dev.parse('show interface') +oper_up = output.q.contains_key_value('oper_status', 'up').get_values('[0]') +admin_up = output.q.contains_key_value('admin_state', 'up').get_values('[0]') + +# Not equal, let's find which one +difference = set(admin_up) - set(oper_up) + +if difference: + print("These interfaces are adminstratively up but aren't " + "operationally up\n{}".format(difference)) diff --git a/5-Scripts/nxos/8-parallel.py b/5-Scripts/nxos/8-parallel.py new file mode 100644 index 0000000..0567d70 --- /dev/null +++ b/5-Scripts/nxos/8-parallel.py @@ -0,0 +1,23 @@ +from pyats.async_ import pcall +from genie.testbed import load + +def admin_vs_oper(device): + # How many up interfaces? + # Let's send a command to the device + output = device.parse('show interface', regex=True) + oper_up = output.q.contains_key_value('oper_status', 'up').get_values('[0]') + admin_up = output.q.contains_key_value('admin_state', 'up').get_values('[0]') + + # Not equal, let's find which one + return set(admin_up) - set(oper_up) + +tb = load('../../testbed.yaml') +tb.connect() +result = pcall(admin_vs_oper, device=tb.devices.values()) + +# Connect to all devices in parallel +import pdb;pdb.set_trace() + +if result: + print("These interfaces are adminstratively up but aren't " + "operationally up\n{}".format(difference)) diff --git a/5-Scripts/nxos/README.md b/5-Scripts/nxos/README.md new file mode 100644 index 0000000..b1e681f --- /dev/null +++ b/5-Scripts/nxos/README.md @@ -0,0 +1,5 @@ +# Script + +In the previous sections we've seen how to interact with the devices. + +Let's create some scripts with these commands. diff --git a/5-Scripts/nxos/config_isis.j2 b/5-Scripts/nxos/config_isis.j2 new file mode 100644 index 0000000..e0bea91 --- /dev/null +++ b/5-Scripts/nxos/config_isis.j2 @@ -0,0 +1,27 @@ +{# Documentation + Required inputs: + process_id: Router ISIS process ID + net_address: Net Address + loopback_interface: Loopback interface + interface_name: Interface to configure + metric: Metric value + address_family: Address-family to be configured + metric_style: Metric style +#} +router isis {{ process_id }} + net {{ net_address }} + address-family {{ address_family }} + metric-style {{ metric_style }} + ! + interface {{ loopback_interface }} + passive + address-family {{ address_family }} + ! + ! + interface {{ interface_name }} + point-to-point + address-family {{ address_family }} + metric {{ metric }} + ! + ! +! diff --git a/README.md b/README.md new file mode 100644 index 0000000..6174580 --- /dev/null +++ b/README.md @@ -0,0 +1,69 @@ +# Welcome to pyATS testing bootcamp about executing Tests! + +This bootcamp is focused towards Testing scenarios and how it can help to save +you time. It can be used for: + +* Sanity / Regression +* Verify configuration has been pushed correctly on your devices +* Verify device configuration +* Certification testing +* ... + +You can either use the .virl file provided or use the mocked devices which are provided. + +The CML (VIRL) devices is the recommended format. + +## Install pyATS + +1. Make sure you go through our [getting-started guide](https://developer.cisco.com/docs/pyats-getting-started/). +2. Internal Cisco users can also use our Install scripts. + +## Format + +The bootcamp is divided in: + +[1-TestPlan](1-TestPlan/) - Go over the test plan + +[2-Manual](2-Manual/) - Give it a try manually and use the library to make it easier + +[3-Automate](3-Automate/) - Automate the test plan + +[4-Solution](4-Solutions/) - Similar as #3 but with Tons of features + +[5-Scripts](5-Scripts/) - Small extra scripts + +[tb.yaml](tb.yaml) - an example of a testbed file + + +## Reference + +* pyATS documentation: https://pubhub.devnetcloud.com/media/pyats/docs/ +* pyATS library (Genie) documentation: https://developer.cisco.com/docs/genie-docs/ +* Api Browser: https://pubhub.devnetcloud.com/media/genie-feature-browser/docs/#/ + +* Quick Getting Started Guide: https://developer.cisco.com/docs/pyats-getting-started/ +* Quick Development Guide: https://developer.cisco.com/docs/pyats-development-guide/ + + +## Mocked Device + +Most examples have mock devices available to run, in case you do not have any +device. It is a Python script which acts the same way as a device. Here's an +example: + +``` +mock_device_cli --os nxos --mock_data_dir $VIRTUAL_ENV/genie-bootcamp/mocked_devices/2-manual/initial/playback/nxos --state execute +``` + +**Ctrl + D to get out** + +Mocked devices are fantastic for training purposes: + +* Focus on the training instead of the device +* The devices are always ready! +* Workshop can be replayed at any time without the need to get devices! + +They can also be used to run scripts, the script run the same way as if a real +device was there. + +More information on [unicon documentation](https://pubhub.devnetcloud.com/media/unicon/docs/playback/index.html). diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/__pycache__/__init__.cpython-37.pyc b/__pycache__/__init__.cpython-37.pyc new file mode 100644 index 0000000..67b60a2 Binary files /dev/null and b/__pycache__/__init__.cpython-37.pyc differ diff --git a/mocked_devices/0-setup/playback/iosxe/csr1000v-1.yaml b/mocked_devices/0-setup/playback/iosxe/csr1000v-1.yaml new file mode 100644 index 0000000..a836971 --- /dev/null +++ b/mocked_devices/0-setup/playback/iosxe/csr1000v-1.yaml @@ -0,0 +1,373 @@ +configure: + commands: + end: + new_state: exec + line console 0: + new_state: configure_line + no logging console: '' + prompt: switch(config)# +configure_line: + commands: + end: + new_state: execute + exec-timeout 0: '' + prompt: switch(config-line)# +connect: + commands: + ? '' + : new_state: execute + preface: 'Trying mock_device ... + + Connected to mock_device. + + Escape character is ''^]''.' + prompt: '' +execute: + commands: + config term: + new_state: configure + show bgp all: "For address family: IPv4 Unicast\r\n\r\nBGP table version is 165,\ + \ local router ID is 10.1.1.1\r\nStatus codes: s suppressed, d damped, h history,\ + \ * valid, > best, i - internal, \r\n r RIB-failure, S Stale, m\ + \ multipath, b backup-path, f RT-Filter, \r\n x best-external,\ + \ a additional-path, c RIB-compressed, \r\n t secondary path, L\ + \ long-lived-stale,\r\nOrigin codes: i - IGP, e - EGP, ? - incomplete\r\nRPKI\ + \ validation codes: V valid, I invalid, N Not found\r\n\r\n Network \ + \ Next Hop Metric LocPrf Weight Path\r\n *> 10.11.11.11/32\ + \ 0.0.0.0 0 32768 i\r\n *>i 10.22.22.22/32 10.2.2.2\ + \ 100 0 i\r\n\r\nFor address family: IPv6 Unicast\r\ + \n\r\n\r\nFor address family: IPv4 Multicast\r\n\r\n\r\nFor address family:\ + \ L2VPN E-VPN\r\n\r\n\r\nFor address family: MVPNv4 Unicast\r\n\r\n\r\nFor address\ + \ family: MVPNv6 Unicast" + show bgp all cluster-ids: "Global cluster-id: 10.1.1.1 (configured: 0.0.0.0)\r\ + \nBGP client-to-client reflection: Configured Used\r\n all (inter-cluster\ + \ and intra-cluster): ENABLED\r\n intra-cluster: ENABLED\ + \ ENABLED\r\n\r\nList of cluster-ids:\r\nCluster-id #-neighbors C2C-rfl-CFG\ + \ C2C-rfl-USE" + show bgp all detail: "For address family: IPv4 Unicast\r\n\r\nBGP routing table\ + \ entry for 10.11.11.11/32, version 2\r\n Paths: (1 available, best #1, table\ + \ default)\r\n Advertised to update-groups:\r\n 82 \r\n Refresh\ + \ Epoch 1\r\n Local\r\n 0.0.0.0 from 0.0.0.0 (10.1.1.1)\r\n Origin\ + \ IGP, metric 0, localpref 100, weight 32768, valid, sourced, local, best\r\n\ + \ rx pathid: 0, tx pathid: 0x0\r\nBGP routing table entry for 10.22.22.22/32,\ + \ version 165\r\n Paths: (1 available, best #1, table default)\r\n Not advertised\ + \ to any peer\r\n Refresh Epoch 1\r\n Local\r\n 10.2.2.2 (metric 2) from\ + \ 10.2.2.2 (10.2.2.2)\r\n Origin IGP, localpref 100, valid, internal, best\r\ + \n rx pathid: 0, tx pathid: 0x0\r\n\r\nFor address family: IPv6 Unicast\r\ + \n\r\n\r\nFor address family: IPv4 Multicast\r\n\r\n\r\nFor address family:\ + \ L2VPN E-VPN\r\n\r\n\r\nFor address family: MVPNv4 Unicast\r\n\r\n\r\nFor address\ + \ family: MVPNv6 Unicast" + show bgp all neighbors: "For address family: IPv4 Unicast\r\nBGP neighbor is 10.2.2.2,\ + \ remote AS 65000, internal link\r\n BGP version 4, remote router ID 10.2.2.2\r\ + \n BGP state = Established, up for 01:33:38\r\n Last read 00:00:36, last write\ + \ 00:00:48, hold time is 180, keepalive interval is 60 seconds\r\n Neighbor\ + \ sessions:\r\n 1 active, is not multisession capable (disabled)\r\n Neighbor\ + \ capabilities:\r\n Route refresh: advertised and received(new)\r\n Four-octets\ + \ ASN Capability: advertised and received\r\n Address family IPv4 Unicast:\ + \ advertised and received\r\n Graceful Restart Capability: received\r\n \ + \ Remote Restart timer is 120 seconds\r\n Address families advertised\ + \ by peer:\r\n IPv4 Unicast (was not preserved\r\n Enhanced Refresh\ + \ Capability: advertised\r\n Multisession Capability: \r\n Stateful switchover\ + \ support enabled: NO for session 1\r\n Message statistics:\r\n InQ depth\ + \ is 0\r\n OutQ depth is 0\r\n \r\n Sent \ + \ Rcvd\r\n Opens: 1 1\r\n Notifications: \ + \ 0 0\r\n Updates: 2 2\r\n Keepalives:\ + \ 104 95\r\n Route Refresh: 0 0\r\n \ + \ Total: 107 98\r\n Do log neighbor state changes\ + \ (via global configuration)\r\n Default minimum time between advertisement\ + \ runs is 0 seconds\r\n\r\n Address tracking is enabled, the RIB does have\ + \ a route to 10.2.2.2\r\n Route to peer address reachability Up: 2; Down: 0\r\ + \n Last notification 5d05h\r\n Connections established 82; dropped 81\r\n\ + \ Last reset 01:33:46, due to BGP Notification received of session 1, Administrative\ + \ Shutdown\r\n Interface associated: (none) (peering address NOT in same link)\r\ + \n Transport(tcp) path-mtu-discovery is enabled\r\n Graceful-Restart is disabled\r\ + \n SSO is disabled\r\nConnection state is ESTAB, I/O status: 1, unread input\ + \ bytes: 0 \r\nConnection is ECN Disabled, Mininum incoming TTL 0,\ + \ Outgoing TTL 255\r\nLocal host: 10.1.1.1, Local port: 42266\r\nForeign host:\ + \ 10.2.2.2, Foreign port: 179\r\nConnection tableid (VRF): 0\r\nMaximum output\ + \ segment queue size: 50\r\n\r\nEnqueued packets for retransmit: 0, input: 0\ + \ mis-ordered: 0 (0 bytes)\r\n\r\nEvent Timers (current time is 0x1B12CD63):\r\ + \nTimer Starts Wakeups Next\r\nRetrans 105\ + \ 0 0x0\r\nTimeWait 0 0 \ + \ 0x0\r\nAckHold 97 90 0x0\r\nSendWnd \ + \ 0 0 0x0\r\nKeepAlive 0 0 \ + \ 0x0\r\nGiveUp 0 0 0x0\r\nPmtuAger\ + \ 1 1 0x0\r\nDeadWait 0 \ + \ 0 0x0\r\nLinger 0 0 0x0\r\n\ + ProcessQ 0 0 0x0\r\n\r\niss: 2680192098 snduna:\ + \ 2680194211 sndnxt: 2680194211\r\nirs: 427990769 rcvnxt: 427992717\r\n\r\ + \nsndwnd: 16616 scale: 0 maxrcvwnd: 16384\r\nrcvwnd: 16080 scale:\ + \ 0 delrcvwnd: 304\r\n\r\nSRTT: 1000 ms, RTTO: 1003 ms, RTV: 3 ms,\ + \ KRTT: 0 ms\r\nminRTT: 2 ms, maxRTT: 1000 ms, ACK hold: 200 ms\r\nuptime: 5618440\ + \ ms, Sent idletime: 35966 ms, Receive idletime: 36166 ms \r\nStatus Flags:\ + \ active open\r\nOption Flags: nagle, path mtu capable\r\nIP Precedence value\ + \ : 6\r\n\r\nDatagrams (max data segment is 536 bytes):\r\nRcvd: 200 (out of\ + \ order: 0), with data: 96, total data bytes: 1947\r\nSent: 201 (retransmit:\ + \ 0, fastretransmit: 0, partialack: 0, Second Congestion: 0), with data: 106,\ + \ total data bytes: 2112\r\n\r\n Packets received in fast path: 0, fast processed:\ + \ 0, slow path: 0\r\n fast lock acquisition failures: 0, slow path: 0\r\nTCP\ + \ Semaphore 0x7F1ACED9D348 FREE \r\n\r\n\r\nFor address family: IPv6 Unicast\r\ + \n\r\nFor address family: IPv4 Multicast\r\n\r\nFor address family: L2VPN E-VPN\r\ + \n\r\nFor address family: MVPNv4 Unicast\r\n\r\nFor address family: MVPNv6 Unicast" + show bgp all neighbors 10.2.2.2 advertised-routes: "For address family: IPv4 Unicast\r\ + \nBGP table version is 165, local router ID is 10.1.1.1\r\nStatus codes: s suppressed,\ + \ d damped, h history, * valid, > best, i - internal, \r\n r RIB-failure,\ + \ S Stale, m multipath, b backup-path, f RT-Filter, \r\n x best-external,\ + \ a additional-path, c RIB-compressed, \r\n t secondary path, L\ + \ long-lived-stale,\r\nOrigin codes: i - IGP, e - EGP, ? - incomplete\r\nRPKI\ + \ validation codes: V valid, I invalid, N Not found\r\n\r\n Network \ + \ Next Hop Metric LocPrf Weight Path\r\n *> 10.11.11.11/32\ + \ 0.0.0.0 0 32768 i\r\n\r\nTotal number of prefixes\ + \ 1" + show bgp all neighbors 10.2.2.2 policy: ' Neighbor: 10.2.2.2, Address-Family: + IPv4 Unicast' + show bgp all neighbors 10.2.2.2 received-routes: "For address family: IPv4 Unicast\r\ + \n% Inbound soft reconfiguration not enabled on 10.2.2.2" + show bgp all neighbors 10.2.2.2 routes: "For address family: IPv4 Unicast\r\n\ + BGP table version is 165, local router ID is 10.1.1.1\r\nStatus codes: s suppressed,\ + \ d damped, h history, * valid, > best, i - internal, \r\n r RIB-failure,\ + \ S Stale, m multipath, b backup-path, f RT-Filter, \r\n x best-external,\ + \ a additional-path, c RIB-compressed, \r\n t secondary path, L\ + \ long-lived-stale,\r\nOrigin codes: i - IGP, e - EGP, ? - incomplete\r\nRPKI\ + \ validation codes: V valid, I invalid, N Not found\r\n\r\n Network \ + \ Next Hop Metric LocPrf Weight Path\r\n *>i 10.22.22.22/32\ + \ 10.2.2.2 100 0 i\r\n\r\nTotal number of prefixes\ + \ 1" + show bgp all neighbors | i BGP neighbor: BGP neighbor is 10.2.2.2, remote AS + 65000, internal link + show bgp summary: "% Command accepted but obsolete, unreleased or unsupported;\ + \ see documentation.\r\nBGP router identifier 10.1.1.1, local AS number 65000\r\ + \nBGP table version is 165, main routing table version 165\r\n2 network entries\ + \ using 496 bytes of memory\r\n2 path entries using 272 bytes of memory\r\n\ + 2/2 BGP path/bestpath attribute entries using 560 bytes of memory\r\n0 BGP route-map\ + \ cache entries using 0 bytes of memory\r\n0 BGP filter-list cache entries using\ + \ 0 bytes of memory\r\nBGP using 1328 total bytes of memory\r\nBGP activity\ + \ 36/34 prefixes, 84/82 paths, scan interval 60 secs\r\n\r\nNeighbor \ + \ V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd\r\n\ + 10.2.2.2 4 65000 98 107 165 0 0 01:33:37 \ + \ 1" + show interfaces: "GigabitEthernet1 is up, line protocol is up \r\n Hardware is\ + \ CSR vNIC, address is 5e00.0000.0000 (bia 5e00.0000.0000)\r\n Internet address\ + \ is 10.255.8.122/16\r\n MTU 1500 bytes, BW 1000000 Kbit/sec, DLY 10 usec,\ + \ \r\n reliability 255/255, txload 1/255, rxload 1/255\r\n Encapsulation\ + \ ARPA, loopback not set\r\n Keepalive set (10 sec)\r\n Full Duplex, 1000Mbps,\ + \ link type is auto, media type is Virtual\r\n output flow-control is unsupported,\ + \ input flow-control is unsupported\r\n ARP type: ARPA, ARP Timeout 04:00:00\r\ + \n Last input 00:00:08, output 00:00:05, output hang never\r\n Last clearing\ + \ of \"show interface\" counters never\r\n Input queue: 0/375/0/0 (size/max/drops/flushes);\ + \ Total output drops: 0\r\n Queueing strategy: fifo\r\n Output queue: 0/40\ + \ (size/max)\r\n 5 minute input rate 0 bits/sec, 0 packets/sec\r\n 5 minute\ + \ output rate 0 bits/sec, 0 packets/sec\r\n 225477 packets input, 16038770\ + \ bytes, 0 no buffer\r\n Received 0 broadcasts (0 IP multicasts)\r\n \ + \ 0 runts, 0 giants, 0 throttles \r\n 0 input errors, 0 CRC, 0 frame, 0\ + \ overrun, 0 ignored\r\n 0 watchdog, 0 multicast, 0 pause input\r\n \ + \ 82636 packets output, 7444946 bytes, 0 underruns\r\n 0 output errors,\ + \ 0 collisions, 0 interface resets\r\n 15117 unknown protocol drops\r\n\ + \ 0 babbles, 0 late collision, 0 deferred\r\n 0 lost carrier, 0 no carrier,\ + \ 0 pause output\r\n 0 output buffer failures, 0 output buffers swapped\ + \ out\r\nGigabitEthernet2 is up, line protocol is up \r\n Hardware is CSR vNIC,\ + \ address is fa16.3ebe.e48e (bia fa16.3ebe.e48e)\r\n Internet address is 10.0.1.1/24\r\ + \n MTU 1500 bytes, BW 1000000 Kbit/sec, DLY 10 usec, \r\n reliability 255/255,\ + \ txload 1/255, rxload 1/255\r\n Encapsulation ARPA, loopback not set\r\n \ + \ Keepalive set (10 sec)\r\n Full Duplex, 1000Mbps, link type is auto, media\ + \ type is Virtual\r\n output flow-control is unsupported, input flow-control\ + \ is unsupported\r\n ARP type: ARPA, ARP Timeout 04:00:00\r\n Last input 00:00:06,\ + \ output 00:00:04, output hang never\r\n Last clearing of \"show interface\"\ + \ counters never\r\n Input queue: 0/375/0/0 (size/max/drops/flushes); Total\ + \ output drops: 0\r\n Queueing strategy: fifo\r\n Output queue: 0/40 (size/max)\r\ + \n 5 minute input rate 0 bits/sec, 0 packets/sec\r\n 5 minute output rate\ + \ 0 bits/sec, 0 packets/sec\r\n 82330 packets input, 7330625 bytes, 0 no\ + \ buffer\r\n Received 0 broadcasts (0 IP multicasts)\r\n 0 runts, 0\ + \ giants, 0 throttles \r\n 0 input errors, 0 CRC, 0 frame, 0 overrun, 0\ + \ ignored\r\n 0 watchdog, 0 multicast, 0 pause input\r\n 67510 packets\ + \ output, 6724966 bytes, 0 underruns\r\n 0 output errors, 0 collisions,\ + \ 0 interface resets\r\n 7559 unknown protocol drops\r\n 0 babbles,\ + \ 0 late collision, 0 deferred\r\n 0 lost carrier, 0 no carrier, 0 pause\ + \ output\r\n 0 output buffer failures, 0 output buffers swapped out\r\n\ + GigabitEthernet3 is up, line protocol is up \r\n Hardware is CSR vNIC, address\ + \ is fa16.3e07.71e5 (bia fa16.3e07.71e5)\r\n Internet address is 10.0.2.1/24\r\ + \n MTU 1500 bytes, BW 1000000 Kbit/sec, DLY 10 usec, \r\n reliability 255/255,\ + \ txload 1/255, rxload 1/255\r\n Encapsulation ARPA, loopback not set\r\n \ + \ Keepalive set (10 sec)\r\n Full Duplex, 1000Mbps, link type is auto, media\ + \ type is Virtual\r\n output flow-control is unsupported, input flow-control\ + \ is unsupported\r\n ARP type: ARPA, ARP Timeout 04:00:00\r\n Last input 00:00:02,\ + \ output 00:00:00, output hang never\r\n Last clearing of \"show interface\"\ + \ counters never\r\n Input queue: 0/375/0/0 (size/max/drops/flushes); Total\ + \ output drops: 0\r\n Queueing strategy: fifo\r\n Output queue: 0/40 (size/max)\r\ + \n 5 minute input rate 0 bits/sec, 0 packets/sec\r\n 5 minute output rate\ + \ 0 bits/sec, 0 packets/sec\r\n 60137 packets input, 5971972 bytes, 0 no\ + \ buffer\r\n Received 0 broadcasts (0 IP multicasts)\r\n 0 runts, 0\ + \ giants, 0 throttles \r\n 0 input errors, 0 CRC, 0 frame, 0 overrun, 0\ + \ ignored\r\n 0 watchdog, 0 multicast, 0 pause input\r\n 89867 packets\ + \ output, 8164625 bytes, 0 underruns\r\n 0 output errors, 0 collisions,\ + \ 0 interface resets\r\n 7559 unknown protocol drops\r\n 0 babbles,\ + \ 0 late collision, 0 deferred\r\n 0 lost carrier, 0 no carrier, 0 pause\ + \ output\r\n 0 output buffer failures, 0 output buffers swapped out\r\n\ + Loopback0 is up, line protocol is up \r\n Hardware is Loopback\r\n Internet\ + \ address is 10.1.1.1/32\r\n MTU 1514 bytes, BW 8000000 Kbit/sec, DLY 5000\ + \ usec, \r\n reliability 255/255, txload 1/255, rxload 1/255\r\n Encapsulation\ + \ LOOPBACK, loopback not set\r\n Keepalive set (10 sec)\r\n Last input 00:00:05,\ + \ output never, output hang never\r\n Last clearing of \"show interface\" counters\ + \ never\r\n Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops:\ + \ 0\r\n Queueing strategy: fifo\r\n Output queue: 0/0 (size/max)\r\n 5 minute\ + \ input rate 0 bits/sec, 0 packets/sec\r\n 5 minute output rate 0 bits/sec,\ + \ 0 packets/sec\r\n 0 packets input, 0 bytes, 0 no buffer\r\n Received\ + \ 0 broadcasts (0 IP multicasts)\r\n 0 runts, 0 giants, 0 throttles \r\n\ + \ 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored, 0 abort\r\n \ + \ 16313 packets output, 819733 bytes, 0 underruns\r\n 0 output errors, 0\ + \ collisions, 0 interface resets\r\n 0 unknown protocol drops\r\n 0\ + \ output buffer failures, 0 output buffers swapped out\r\nLoopback1 is up, line\ + \ protocol is up \r\n Hardware is Loopback\r\n Internet address is 10.11.11.11/32\r\ + \n MTU 1514 bytes, BW 8000000 Kbit/sec, DLY 5000 usec, \r\n reliability\ + \ 255/255, txload 1/255, rxload 1/255\r\n Encapsulation LOOPBACK, loopback\ + \ not set\r\n Keepalive set (10 sec)\r\n Last input 00:00:05, output never,\ + \ output hang never\r\n Last clearing of \"show interface\" counters never\r\ + \n Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0\r\n\ + \ Queueing strategy: fifo\r\n Output queue: 0/0 (size/max)\r\n 5 minute input\ + \ rate 0 bits/sec, 0 packets/sec\r\n 5 minute output rate 0 bits/sec, 0 packets/sec\r\ + \n 0 packets input, 0 bytes, 0 no buffer\r\n Received 0 broadcasts (0\ + \ IP multicasts)\r\n 0 runts, 0 giants, 0 throttles \r\n 0 input errors,\ + \ 0 CRC, 0 frame, 0 overrun, 0 ignored, 0 abort\r\n 16313 packets output,\ + \ 819733 bytes, 0 underruns\r\n 0 output errors, 0 collisions, 0 interface\ + \ resets\r\n 0 unknown protocol drops\r\n 0 output buffer failures,\ + \ 0 output buffers swapped out" + show interfaces accounting: "GigabitEthernet1 \r\n Protocol \ + \ Pkts In Chars In Pkts Out Chars Out\r\n Other 160207\ + \ 11887020 2788 167280\r\n IP 96084 \ + \ 8329803 79849 7277733\r\n ARP 129973 5507646\ + \ 2788 167280\r\n IPv6 22 1836 \ + \ 0 0\r\nGigabitEthernet2 \r\n Protocol Pkts\ + \ In Chars In Pkts Out Chars Out\r\n Other 15149\ + \ 3282466 2749 164940\r\n IP 74673 \ + \ 5681985 64763 6560207\r\n ARP 31 \ + \ 1860 2749 164940\r\nGigabitEthernet3 \r\n Protocol\ + \ Pkts In Chars In Pkts Out Chars Out\r\n Other \ + \ 15148 3282406 2748 164880\r\n IP \ + \ 52481 4323392 87120 7999812\r\n ARP \ + \ 30 1800 2748 164880\r\nLoopback0 \r\n Protocol\ + \ Pkts In Chars In Pkts Out Chars Out\r\n IP \ + \ 16313 819733 16313 819733\r\nLoopback1 \r\n \ + \ Protocol Pkts In Chars In Pkts Out Chars Out\r\n \ + \ IP 16313 819733 16313 819733" + show ip bgp all dampening parameters: "For address family: IPv4 Unicast\r\n\r\n\ + % dampening not enabled for base\r\n\r\nFor address family: IPv6 Unicast\r\n\ + \r\n% dampening not enabled for base\r\n\r\nFor address family: IPv4 Multicast\r\ + \n\r\n% dampening not enabled for base\r\n\r\nFor address family: L2VPN E-VPN\r\ + \n\r\n% dampening not enabled for base\r\n\r\nFor address family: MVPNv4 Unicast\r\ + \n\r\n% dampening not enabled for base\r\n\r\nFor address family: MVPNv6 Unicast\r\ + \n\r\n% dampening not enabled for base" + 'show ip bgp template peer-policy ': No templates configured + 'show ip bgp template peer-session ': No templates configured + show ip interface: "GigabitEthernet1 is up, line protocol is up\r\n Internet\ + \ address is 10.255.8.122/16\r\n Broadcast address is 255.255.255.255\r\n \ + \ Address determined by DHCP\r\n MTU is 1500 bytes\r\n Helper address is not\ + \ set\r\n Directed broadcast forwarding is disabled\r\n Outgoing Common access\ + \ list is not set \r\n Outgoing access list is not set\r\n Inbound Common\ + \ access list is not set \r\n Inbound access list is not set\r\n Proxy ARP\ + \ is enabled\r\n Local Proxy ARP is disabled\r\n Security level is default\r\ + \n Split horizon is enabled\r\n ICMP redirects are always sent\r\n ICMP unreachables\ + \ are always sent\r\n ICMP mask replies are never sent\r\n IP fast switching\ + \ is enabled\r\n IP Flow switching is disabled\r\n IP CEF switching is enabled\r\ + \n IP CEF switching turbo vector\r\n IP Null turbo vector\r\n Associated\ + \ unicast routing topologies:\r\n Topology \"base\", operation state\ + \ is UP\r\n IP multicast fast switching is enabled\r\n IP multicast distributed\ + \ fast switching is disabled\r\n IP route-cache flags are Fast, CEF\r\n Router\ + \ Discovery is disabled\r\n IP output packet accounting is disabled\r\n IP\ + \ access violation accounting is disabled\r\n TCP/IP header compression is\ + \ disabled\r\n RTP/IP header compression is disabled\r\n Probe proxy name\ + \ replies are disabled\r\n Policy routing is disabled\r\n Network address\ + \ translation is disabled\r\n BGP Policy Mapping is disabled\r\n Input features:\ + \ MCI Check\r\n IPv4 WCCP Redirect outbound is disabled\r\n IPv4 WCCP Redirect\ + \ inbound is disabled\r\n IPv4 WCCP Redirect exclude is disabled\r\nGigabitEthernet2\ + \ is up, line protocol is up\r\n Internet address is 10.0.1.1/24\r\n Broadcast\ + \ address is 255.255.255.255\r\n Address determined by non-volatile memory\r\ + \n MTU is 1500 bytes\r\n Helper address is not set\r\n Directed broadcast\ + \ forwarding is disabled\r\n Multicast reserved groups joined: 224.0.0.5 224.0.0.6\r\ + \n Outgoing Common access list is not set \r\n Outgoing access list is not\ + \ set\r\n Inbound Common access list is not set \r\n Inbound access list\ + \ is not set\r\n Proxy ARP is enabled\r\n Local Proxy ARP is disabled\r\n\ + \ Security level is default\r\n Split horizon is enabled\r\n ICMP redirects\ + \ are always sent\r\n ICMP unreachables are always sent\r\n ICMP mask replies\ + \ are never sent\r\n IP fast switching is enabled\r\n IP Flow switching is\ + \ disabled\r\n IP CEF switching is enabled\r\n IP CEF switching turbo vector\r\ + \n IP Null turbo vector\r\n Associated unicast routing topologies:\r\n \ + \ Topology \"base\", operation state is UP\r\n IP multicast fast switching\ + \ is enabled\r\n IP multicast distributed fast switching is disabled\r\n IP\ + \ route-cache flags are Fast, CEF\r\n Router Discovery is disabled\r\n IP\ + \ output packet accounting is disabled\r\n IP access violation accounting is\ + \ disabled\r\n TCP/IP header compression is disabled\r\n RTP/IP header compression\ + \ is disabled\r\n Probe proxy name replies are disabled\r\n Policy routing\ + \ is disabled\r\n Network address translation is disabled\r\n BGP Policy Mapping\ + \ is disabled\r\n Input features: MCI Check\r\n IPv4 WCCP Redirect outbound\ + \ is disabled\r\n IPv4 WCCP Redirect inbound is disabled\r\n IPv4 WCCP Redirect\ + \ exclude is disabled\r\nGigabitEthernet3 is up, line protocol is up\r\n Internet\ + \ address is 10.0.2.1/24\r\n Broadcast address is 255.255.255.255\r\n Address\ + \ determined by non-volatile memory\r\n MTU is 1500 bytes\r\n Helper address\ + \ is not set\r\n Directed broadcast forwarding is disabled\r\n Multicast reserved\ + \ groups joined: 224.0.0.5 224.0.0.6\r\n Outgoing Common access list is not\ + \ set \r\n Outgoing access list is not set\r\n Inbound Common access list\ + \ is not set \r\n Inbound access list is not set\r\n Proxy ARP is enabled\r\ + \n Local Proxy ARP is disabled\r\n Security level is default\r\n Split horizon\ + \ is enabled\r\n ICMP redirects are always sent\r\n ICMP unreachables are\ + \ always sent\r\n ICMP mask replies are never sent\r\n IP fast switching is\ + \ enabled\r\n IP Flow switching is disabled\r\n IP CEF switching is enabled\r\ + \n IP CEF switching turbo vector\r\n IP Null turbo vector\r\n Associated\ + \ unicast routing topologies:\r\n Topology \"base\", operation state\ + \ is UP\r\n IP multicast fast switching is enabled\r\n IP multicast distributed\ + \ fast switching is disabled\r\n IP route-cache flags are Fast, CEF\r\n Router\ + \ Discovery is disabled\r\n IP output packet accounting is disabled\r\n IP\ + \ access violation accounting is disabled\r\n TCP/IP header compression is\ + \ disabled\r\n RTP/IP header compression is disabled\r\n Probe proxy name\ + \ replies are disabled\r\n Policy routing is disabled\r\n Network address\ + \ translation is disabled\r\n BGP Policy Mapping is disabled\r\n Input features:\ + \ MCI Check\r\n IPv4 WCCP Redirect outbound is disabled\r\n IPv4 WCCP Redirect\ + \ inbound is disabled\r\n IPv4 WCCP Redirect exclude is disabled\r\nLoopback0\ + \ is up, line protocol is up\r\n Internet address is 10.1.1.1/32\r\n Broadcast\ + \ address is 255.255.255.255\r\n Address determined by non-volatile memory\r\ + \n MTU is 1514 bytes\r\n Helper address is not set\r\n Directed broadcast\ + \ forwarding is disabled\r\n Multicast reserved groups joined: 224.0.0.5\r\n\ + \ Outgoing Common access list is not set \r\n Outgoing access list is not\ + \ set\r\n Inbound Common access list is not set \r\n Inbound access list\ + \ is not set\r\n Proxy ARP is enabled\r\n Local Proxy ARP is disabled\r\n\ + \ Security level is default\r\n Split horizon is enabled\r\n ICMP redirects\ + \ are always sent\r\n ICMP unreachables are always sent\r\n ICMP mask replies\ + \ are never sent\r\n IP fast switching is enabled\r\n IP Flow switching is\ + \ disabled\r\n IP CEF switching is enabled\r\n IP CEF switching turbo vector\r\ + \n IP Null turbo vector\r\n Associated unicast routing topologies:\r\n \ + \ Topology \"base\", operation state is UP\r\n IP multicast fast switching\ + \ is enabled\r\n IP multicast distributed fast switching is disabled\r\n IP\ + \ route-cache flags are Fast, CEF\r\n Router Discovery is disabled\r\n IP\ + \ output packet accounting is disabled\r\n IP access violation accounting is\ + \ disabled\r\n TCP/IP header compression is disabled\r\n RTP/IP header compression\ + \ is disabled\r\n Probe proxy name replies are disabled\r\n Policy routing\ + \ is disabled\r\n Network address translation is disabled\r\n BGP Policy Mapping\ + \ is disabled\r\n Input features: MCI Check\r\n IPv4 WCCP Redirect outbound\ + \ is disabled\r\n IPv4 WCCP Redirect inbound is disabled\r\n IPv4 WCCP Redirect\ + \ exclude is disabled\r\nLoopback1 is up, line protocol is up\r\n Internet\ + \ address is 10.11.11.11/32\r\n Broadcast address is 255.255.255.255\r\n Address\ + \ determined by non-volatile memory\r\n MTU is 1514 bytes\r\n Helper address\ + \ is not set\r\n Directed broadcast forwarding is disabled\r\n Outgoing Common\ + \ access list is not set \r\n Outgoing access list is not set\r\n Inbound\ + \ Common access list is not set \r\n Inbound access list is not set\r\n Proxy\ + \ ARP is enabled\r\n Local Proxy ARP is disabled\r\n Security level is default\r\ + \n Split horizon is enabled\r\n ICMP redirects are always sent\r\n ICMP unreachables\ + \ are always sent\r\n ICMP mask replies are never sent\r\n IP fast switching\ + \ is enabled\r\n IP Flow switching is disabled\r\n IP CEF switching is enabled\r\ + \n IP CEF switching turbo vector\r\n IP Null turbo vector\r\n Associated\ + \ unicast routing topologies:\r\n Topology \"base\", operation state\ + \ is UP\r\n IP multicast fast switching is enabled\r\n IP multicast distributed\ + \ fast switching is disabled\r\n IP route-cache flags are Fast, CEF\r\n Router\ + \ Discovery is disabled\r\n IP output packet accounting is disabled\r\n IP\ + \ access violation accounting is disabled\r\n TCP/IP header compression is\ + \ disabled\r\n RTP/IP header compression is disabled\r\n Probe proxy name\ + \ replies are disabled\r\n Policy routing is disabled\r\n Network address\ + \ translation is disabled\r\n BGP Policy Mapping is disabled\r\n Input features:\ + \ MCI Check\r\n IPv4 WCCP Redirect outbound is disabled\r\n IPv4 WCCP Redirect\ + \ inbound is disabled\r\n IPv4 WCCP Redirect exclude is disabled" + show ipv6 interface: '' + show version: '' + show vrf detail: '' + show vrf detail | inc \(VRF: '' + term length 0: '' + term width 0: '' + prompt: switch# diff --git a/mocked_devices/0-setup/playback/nxos/nx-osv-1.yaml b/mocked_devices/0-setup/playback/nxos/nx-osv-1.yaml new file mode 100644 index 0000000..19f6840 --- /dev/null +++ b/mocked_devices/0-setup/playback/nxos/nx-osv-1.yaml @@ -0,0 +1,4172 @@ +configure: + commands: + end: + new_state: exec + line console 0: + new_state: configure_line + no logging console: '' + prompt: switch(config)# +configure_line: + commands: + end: + new_state: execute + exec-timeout 0: '' + prompt: switch(config-line)# +connect: + commands: + ? '' + : new_state: execute + preface: 'Trying mock_device ... + + Connected to mock_device. + + Escape character is ''^]''.' + prompt: '' +execute: + commands: + config term: + new_state: configure + show bgp process vrf all: "\r\nBGP Process Information\r\nBGP Process ID \ + \ : 8610\r\nBGP Protocol Started, reason: : configuration\r\nBGP\ + \ Protocol Tag : 65000\r\nBGP Protocol State : Running\r\ + \nBGP MMODE : Not Initialized\r\nBGP Memory State \ + \ : OK\r\nBGP asformat : asplain\r\n\r\nBGP attributes\ + \ information\r\nNumber of attribute entries : 2\r\nHWM of attribute entries\ + \ : 2\r\nBytes used by entries : 200\r\nEntries pending delete\ + \ : 0\r\nHWM of entries pending delete : 0\r\nBGP paths per attribute\ + \ HWM : 1\r\nBGP AS path entries : 0\r\nBytes used by AS path\ + \ entries : 0\r\n\r\nInformation regarding configured VRFs:\r\n\r\nBGP Information\ + \ for VRF default\r\nVRF Id : 1\r\nVRF state \ + \ : UP\r\nRouter-ID : 10.2.2.2\r\nConfigured\ + \ Router-ID : 10.2.2.2\r\nConfed-ID : 0\r\nCluster-ID\ + \ : 0.0.0.0\r\nNo. of configured peers : 1\r\nNo.\ + \ of pending config peers : 0\r\nNo. of established peers : 1\r\nVRF\ + \ RD : Not configured\r\n\r\n Information for address\ + \ family IPv4 Unicast in VRF default\r\n Table Id : 1\r\ + \n Table state : UP\r\n Peers Active-peers Routes\ + \ Paths Networks Aggregates\r\n 1 1 2 \ + \ 2 1 0 \r\n\r\n Redistribution \ + \ \r\n None\r\n\r\n Wait for IGP convergence is not configured\r\ + \n\r\n\r\n Nexthop trigger-delay\r\n critical 3000 ms\r\n non-critical\ + \ 10000 ms\r\n\r\n Information for address family IPv6 Unicast in VRF default\r\ + \n Table Id : 80000001\r\n Table state \ + \ : UP\r\n Peers Active-peers Routes Paths Networks \ + \ Aggregates\r\n 0 0 0 0 0 \ + \ 0 \r\n\r\n Redistribution \r\n None\r\ + \n\r\n Wait for IGP convergence is not configured\r\n\r\n\r\n Nexthop\ + \ trigger-delay\r\n critical 3000 ms\r\n non-critical 10000 ms" + show bgp vrf all all: "BGP routing table information for VRF default, address\ + \ family IPv4 Unicast\r\nBGP table version is 340, local router ID is 10.2.2.2\r\ + \nStatus: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid,\ + \ >-best\r\nPath type: i-internal, e-external, c-confed, l-local, a-aggregate,\ + \ r-redist, I-injected\r\nOrigin codes: i - IGP, e - EGP, ? - incomplete, |\ + \ - multipath, & - backup\r\n\r\n Network Next Hop Metric\ + \ LocPrf Weight Path\r\n*>i10.11.11.11/32 10.1.1.1 \ + \ 0 100 0 i\r\n*>l10.22.22.22/32 0.0.0.0 \ + \ 100 32768 i" + show bgp vrf all all dampening parameters: '' + show bgp vrf all all nexthop-database: "\r\nNext Hop table for VRF default, address\ + \ family IPv4 Unicast:\r\nNext-hop trigger-delay(miliseconds)\r\n Critical:\ + \ 3000 Non-critical: 10000\r\nIPv4 Next-hop table\r\n\r\nNexthop: 0.0.0.0, Flags:\ + \ 0x2, Refcount: 1, IGP cost: 0\r\nIGP Route type: 0, IGP preference: 0\r\n\ + Nexthop is not-attached local unreachable not-labeled\r\nNexthop last resolved:\ + \ never, using 0.0.0.0/0\r\nMetric next advertise: Never\r\nRNH epoch: 0\r\n\ + \r\nNexthop: 10.1.1.1, Flags: 0x1, Refcount: 1, IGP cost: 41\r\nIGP Route type:\ + \ 0, IGP preference: 110\r\nAttached nexthop: 10.0.2.1, Interface: Ethernet2/2\r\ + \nAttached nexthop: 10.0.1.1, Interface: Ethernet2/1\r\nNexthop is not-attached\ + \ not-local reachable not-labeled\r\nNexthop last resolved: 01:34:40, using\ + \ 10.1.1.1/32\r\nMetric next advertise: Never\r\nRNH epoch: 1\r\nIPv6 Next-hop\ + \ table\r\n\r\nNext Hop table for VRF default, address family IPv6 Unicast:\r\ + \nNext-hop trigger-delay(miliseconds)\r\n Critical: 3000 Non-critical: 10000\r\ + \nIPv4 Next-hop table\r\nIPv6 Next-hop table" + show bgp vrf all all summary: "BGP summary information for VRF default, address\ + \ family IPv4 Unicast\r\nBGP router identifier 10.2.2.2, local AS number 65000\r\ + \nBGP table version is 340, IPv4 Unicast config peers 1, capable peers 1\r\n\ + 2 network entries and 2 paths using 288 bytes of memory\r\nBGP attribute entries\ + \ [2/288], BGP AS path entries [0/0]\r\nBGP community entries [0/0], BGP clusterlist\ + \ entries [0/0]\r\n\r\nNeighbor V AS MsgRcvd MsgSent TblVer InQ\ + \ OutQ Up/Down State/PfxRcd\r\n10.1.1.1 4 65000 31794 29054 \ + \ 340 0 0 01:33:39 1 \r\n\r\nBGP summary information for VRF\ + \ default, address family IPv6 Unicast" + show bgp vrf default all neighbors: "BGP neighbor is 10.1.1.1, remote AS 65000,\ + \ ibgp link, Peer index 1\r\n BGP version 4, remote router ID 10.1.1.1\r\n\ + \ BGP state = Established, up for 01:33:39\r\n Using loopback0 as update source\ + \ for this peer\r\n Last read 00:00:49, hold time = 180, keepalive interval\ + \ is 60 seconds\r\n Last written 00:00:37, keepalive timer expiry due 00:00:22\r\ + \n Received 31794 messages, 1 notifications, 0 bytes in queue\r\n Sent 29054\ + \ messages, 102 notifications, 0 bytes in queue\r\n Connections established\ + \ 103, dropped 102\r\n Last reset by us 01:33:47, due to administratively shutdown\r\ + \n Last reset by peer never, due to No error\r\n\r\n Neighbor capabilities:\r\ + \n Dynamic capability: advertised (mp, refresh, gr) \r\n Dynamic capability\ + \ (old): advertised \r\n Route refresh capability (new): advertised received\ + \ \r\n Route refresh capability (old): advertised received \r\n 4-Byte AS\ + \ capability: advertised received \r\n Address family IPv4 Unicast: advertised\ + \ received \r\n Graceful Restart capability: advertised \r\n\r\n Graceful\ + \ Restart Parameters:\r\n Address families advertised to peer:\r\n IPv4\ + \ Unicast \r\n Address families received from peer:\r\n Forwarding state\ + \ preserved by peer for:\r\n Restart time advertised to peer: 120 seconds\r\ + \n Stale time for routes advertised by peer: 300 seconds\r\n Extended Next\ + \ Hop Encoding Capability: advertised \r\n\r\n Message statistics:\r\n \ + \ Sent Rcvd\r\n Opens: \ + \ 104 103 \r\n Notifications: 102 \ + \ 1 \r\n Updates: 218 206\ + \ \r\n Keepalives: 28630 31484 \r\n Route Refresh:\ + \ 0 0 \r\n Capability: \ + \ 0 0 \r\n Total: 29054 \ + \ 31794 \r\n Total bytes: 551847 604376 \r\n Bytes\ + \ in queue: 0 0 \r\n\r\n For address family:\ + \ IPv4 Unicast\r\n BGP table version 340, neighbor version 340\r\n 1 accepted\ + \ paths consume 80 bytes of memory\r\n 1 sent paths\r\n Third-party Nexthop\ + \ will not be computed.\r\n\r\n Local host: 10.2.2.2, Local port: 179\r\n \ + \ Foreign host: 10.1.1.1, Foreign port: 42266\r\n fd = 60" + show bgp vrf default all neighbors 10.1.1.1 advertised-routes: "\r\nPeer 10.1.1.1\ + \ routes for address family IPv4 Unicast:\r\nBGP table version is 340, local\ + \ router ID is 10.2.2.2\r\nStatus: s-suppressed, x-deleted, S-stale, d-dampened,\ + \ h-history, *-valid, >-best\r\nPath type: i-internal, e-external, c-confed,\ + \ l-local, a-aggregate, r-redist, I-injected\r\nOrigin codes: i - IGP, e - EGP,\ + \ ? - incomplete, | - multipath, & - backup\r\n\r\n Network Next\ + \ Hop Metric LocPrf Weight Path\r\n*>l10.22.22.22/32 \ + \ 0.0.0.0 100 32768 i\r\n\r\n\r\nPeer 10.1.1.1\ + \ routes for address family IPv4 Multicast:\r\n\r\nPeer 10.1.1.1 routes for\ + \ address family IPv6 Unicast:\r\nBGP table version is 2, local router ID is\ + \ 10.2.2.2\r\nStatus: s-suppressed, x-deleted, S-stale, d-dampened, h-history,\ + \ *-valid, >-best\r\nPath type: i-internal, e-external, c-confed, l-local, a-aggregate,\ + \ r-redist, I-injected\r\nOrigin codes: i - IGP, e - EGP, ? - incomplete, |\ + \ - multipath, & - backup\r\n\r\n Network Next Hop Metric\ + \ LocPrf Weight Path\r\n\r\nPeer 10.1.1.1 routes for address family\ + \ IPv6 Multicast:\r\n\r\nPeer 10.1.1.1 routes for address family VPNv4 Unicast:\r\ + \n\r\nPeer 10.1.1.1 routes for address family VPNv6 Unicast:\r\n\r\nPeer 10.1.1.1\ + \ routes for address family IPv4 MDT:\r\n\r\nPeer 10.1.1.1 routes for address\ + \ family IPv6 Label Unicast:\r\n\r\nPeer 10.1.1.1 routes for address family\ + \ L2VPN VPLS:\r\n\r\nPeer 10.1.1.1 routes for address family IPv4 MVPN:\r\n\r\ + \nPeer 10.1.1.1 routes for address family IPv6 MVPN:\r\n\r\nPeer 10.1.1.1 routes\ + \ for address family IPv4 Label Unicast:\r\n\r\nPeer 10.1.1.1 routes for address\ + \ family L2VPN EVPN:" + show bgp vrf default all neighbors 10.1.1.1 received-routes: "\r\nInbound soft\ + \ reconfiguration for IPv4 Unicast not enabled on 10.1.1.1\r\n\r\nInbound soft\ + \ reconfiguration for IPv4 Multicast not enabled on 10.1.1.1\r\n\r\nInbound\ + \ soft reconfiguration for IPv6 Unicast not enabled on 10.1.1.1\r\n\r\nInbound\ + \ soft reconfiguration for IPv6 Multicast not enabled on 10.1.1.1\r\n\r\nInbound\ + \ soft reconfiguration for VPNv4 Unicast not enabled on 10.1.1.1\r\n\r\nInbound\ + \ soft reconfiguration for VPNv6 Unicast not enabled on 10.1.1.1\r\n\r\nInbound\ + \ soft reconfiguration for IPv4 MDT not enabled on 10.1.1.1\r\n\r\nInbound soft\ + \ reconfiguration for IPv6 Label Unicast not enabled on 10.1.1.1\r\n\r\nInbound\ + \ soft reconfiguration for L2VPN VPLS not enabled on 10.1.1.1\r\n\r\nInbound\ + \ soft reconfiguration for IPv4 MVPN not enabled on 10.1.1.1\r\n\r\nInbound\ + \ soft reconfiguration for IPv6 MVPN not enabled on 10.1.1.1\r\n\r\nInbound\ + \ soft reconfiguration for IPv4 Label Unicast not enabled on 10.1.1.1\r\n\r\n\ + Inbound soft reconfiguration for L2VPN EVPN not enabled on 10.1.1.1" + show bgp vrf default all neighbors 10.1.1.1 routes: "\r\nPeer 10.1.1.1 routes\ + \ for address family IPv4 Unicast:\r\nBGP table version is 340, local router\ + \ ID is 10.2.2.2\r\nStatus: s-suppressed, x-deleted, S-stale, d-dampened, h-history,\ + \ *-valid, >-best\r\nPath type: i-internal, e-external, c-confed, l-local, a-aggregate,\ + \ r-redist, I-injected\r\nOrigin codes: i - IGP, e - EGP, ? - incomplete, |\ + \ - multipath, & - backup\r\n\r\n Network Next Hop Metric\ + \ LocPrf Weight Path\r\n*>i10.11.11.11/32 10.1.1.1 \ + \ 0 100 0 i\r\n\r\n\r\nPeer 10.1.1.1 routes for address family\ + \ IPv4 Multicast:\r\n\r\nPeer 10.1.1.1 routes for address family IPv6 Unicast:\r\ + \nBGP table version is 2, local router ID is 10.2.2.2\r\nStatus: s-suppressed,\ + \ x-deleted, S-stale, d-dampened, h-history, *-valid, >-best\r\nPath type: i-internal,\ + \ e-external, c-confed, l-local, a-aggregate, r-redist, I-injected\r\nOrigin\ + \ codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup\r\n\r\n\ + \ Network Next Hop Metric LocPrf Weight Path\r\ + \n\r\nPeer 10.1.1.1 routes for address family IPv6 Multicast:\r\n\r\nPeer 10.1.1.1\ + \ routes for address family VPNv4 Unicast:\r\n\r\nPeer 10.1.1.1 routes for address\ + \ family VPNv6 Unicast:\r\n\r\nPeer 10.1.1.1 routes for address family IPv4\ + \ MDT:\r\n\r\nPeer 10.1.1.1 routes for address family IPv6 Label Unicast:\r\n\ + \r\nPeer 10.1.1.1 routes for address family L2VPN VPLS:\r\n\r\nPeer 10.1.1.1\ + \ routes for address family IPv4 MVPN:\r\n\r\nPeer 10.1.1.1 routes for address\ + \ family IPv6 MVPN:\r\n\r\nPeer 10.1.1.1 routes for address family IPv4 Label\ + \ Unicast:\r\n\r\nPeer 10.1.1.1 routes for address family L2VPN EVPN:" + show bgp vrf management all neighbors: Unknown vrf management + show interface: "mgmt0 is up\r\nadmin state is up\r\n Hardware: Ethernet, address:\ + \ 5e00.0001.0000 (bia 5e00.0001.0000)\r\n MTU 1500 bytes, BW 1000000 Kbit,\ + \ DLY 10 usec\r\n reliability 32/255, txload 1/255, rxload 1/255\r\n Encapsulation\ + \ ARPA, medium is broadcast\r\n Port mode is routed\r\n full-duplex, 1000\ + \ Mb/s\r\n Auto-Negotiation is turned on\r\n Auto-mdix is turned off\r\n \ + \ EtherType is 0x0000 \r\n 1 minute input rate 296 bits/sec, 0 packets/sec\r\ + \n 1 minute output rate 24 bits/sec, 0 packets/sec\r\n Rx\r\n 660056 input\ + \ packets 0 unicast packets 18847 multicast packets\r\n 641209 broadcast\ + \ packets 45200491 bytes\r\n Tx\r\n 28697 output packets 0 unicast packets\ + \ 28697 multicast packets\r\n 0 broadcast packets 6169847 bytes\r\n\r\nEthernet2/1\ + \ is up\r\nadmin state is up, Dedicated Interface\r\n Hardware: Ethernet,\ + \ address: 0000.0000.002f (bia fa16.3edd.c013)\r\n Internet Address is 10.0.1.2/24\r\ + \n MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n full-duplex, 1000 Mb/s\r\n Beacon is turned off\r\n \ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped 2week(s)\ + \ 5day(s)\r\n Last clearing of \"show interface\" counters never\r\n 1 interface\ + \ resets\r\n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec,\ + \ 0 packets/sec\r\n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n \ + \ input rate 0 bps, 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2:\ + \ 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds\ + \ output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output\ + \ rate 0 bps, 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0\ + \ broadcast packets\r\n 0 input packets 0 bytes\r\n 0 jumbo packets \ + \ 0 storm suppression packets\r\n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\ + \n 0 input error 0 short frame 0 overrun 0 underrun 0 ignored\r\n \ + \ 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop\r\n 0 input\ + \ with dribble 0 input discard\r\n 0 Rx pause\r\n TX\r\n 0 unicast packets\ + \ 0 multicast packets 0 broadcast packets\r\n 0 output packets 0 bytes\r\ + \n 0 jumbo packets\r\n 0 output error 0 collision 0 deferred 0 late\ + \ collision\r\n 0 lost carrier 0 no carrier 0 babble 0 output discard\r\ + \n 0 Tx pause\r\n\r\nEthernet2/2 is up\r\nadmin state is up, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia fa16.3e8a.5b7d)\r\n Internet\ + \ Address is 10.0.2.2/24\r\n MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\ + \n reliability 255/255, txload 1/255, rxload 1/255\r\n Encapsulation ARPA,\ + \ medium is broadcast\r\n Port mode is routed\r\n full-duplex, 1000 Mb/s\r\ + \n Beacon is turned off\r\n Auto-Negotiation is turned off\r\n Input flow-control\ + \ is off, output flow-control is off\r\n Auto-mdix is turned off\r\n Switchport\ + \ monitor is off \r\n EtherType is 0x8100 \r\n EEE (efficient-ethernet) :\ + \ n/a\r\n Last link flapped 2week(s) 5day(s)\r\n Last clearing of \"show interface\"\ + \ counters never\r\n 1 interface resets\r\n Load-Interval #1: 0 seconds\r\n\ + \ 0 seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output\ + \ rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate\ + \ 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0 seconds input rate\ + \ 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\ + \n input rate 0 bps, 0 pps; output rate 0 bps, 0 pps\r\n RX\r\n 0 unicast\ + \ packets 0 multicast packets 0 broadcast packets\r\n 0 input packets \ + \ 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\n 0 runts\ + \ 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short frame 0 overrun\ + \ 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop 0 bad proto drop\ + \ 0 if down drop\r\n 0 input with dribble 0 input discard\r\n 0 Rx pause\r\ + \n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\n\ + \ 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output error\ + \ 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0 no carrier\ + \ 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/3 is down (Administratively\ + \ down)\r\nadmin state is down, Dedicated Interface\r\n Hardware: Ethernet,\ + \ address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU 1500 bytes, BW 1000000\ + \ Kbit, DLY 10 usec\r\n reliability 255/255, txload 1/255, rxload 1/255\r\n\ + \ Encapsulation ARPA, medium is broadcast\r\n Port mode is routed\r\n auto-duplex,\ + \ auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation is turned off\r\ + \n Input flow-control is off, output flow-control is off\r\n Auto-mdix is\ + \ turned off\r\n Switchport monitor is off \r\n EtherType is 0x8100 \r\n \ + \ EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\n Last clearing\ + \ of \"show interface\" counters never\r\n 0 interface resets\r\n Load-Interval\ + \ #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\n \ + \ 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/4\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/5\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/6\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/7\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/8\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/9\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/10\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/11\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/12\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/13\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/14\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/15\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/16\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/17\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/18\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/19\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/20\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/21\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/22\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/23\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/24\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/25\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/26\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/27\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/28\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/29\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/30\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/31\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/32\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/33\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/34\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/35\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/36\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/37\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/38\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/39\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/40\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/41\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/42\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/43\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/44\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/45\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/46\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/47\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/48\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/1\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.002f)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/2\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.002f)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/3\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/4\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/5\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/6\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/7\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/8\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/9\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/10\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/11\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/12\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/13\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/14\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/15\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/16\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/17\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/18\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/19\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/20\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/21\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/22\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/23\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/24\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/25\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/26\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/27\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/28\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/29\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/30\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/31\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/32\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/33\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/34\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/35\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/36\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/37\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/38\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/39\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/40\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/41\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/42\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/43\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/44\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/45\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/46\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/47\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/48\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/1\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.002f)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/2\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.002f)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/3\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/4\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/5\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/6\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/7\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/8\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/9\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/10\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/11\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/12\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/13\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/14\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/15\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/16\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/17\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/18\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/19\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/20\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/21\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/22\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/23\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/24\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/25\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/26\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/27\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/28\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/29\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/30\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/31\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/32\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/33\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/34\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/35\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/36\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/37\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/38\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/39\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/40\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/41\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/42\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/43\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/44\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/45\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/46\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/47\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/48\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nloopback0\ + \ is up\r\nadmin state is up\r\n Hardware: Loopback\r\n Internet Address is\ + \ 10.2.2.2/32\r\n MTU 1500 bytes, BW 8000000 Kbit, DLY 5000 usec\r\n reliability\ + \ 255/255, txload 1/255, rxload 1/255\r\n Encapsulation LOOPBACK, medium is\ + \ broadcast\r\n Port mode is routed\r\n Auto-mdix is turned off\r\n 66810\ + \ packets input 3349686 bytes\r\n 0 multicast frames 0 compressed\r\n \ + \ 0 input errors 0 frame 0 overrun 0 fifo\r\n 0 packets output 0 bytes 0\ + \ underruns\r\n 0 output errors 0 collisions 0 fifo\r\n 0 out_carrier_errors\r\ + \n\r\nloopback1 is up\r\nadmin state is up\r\n Hardware: Loopback\r\n Internet\ + \ Address is 10.22.22.22/32\r\n MTU 1500 bytes, BW 8000000 Kbit, DLY 5000 usec\r\ + \n reliability 255/255, txload 1/255, rxload 1/255\r\n Encapsulation LOOPBACK,\ + \ medium is broadcast\r\n Port mode is routed\r\n Auto-mdix is turned off\r\ + \n 0 packets input 0 bytes\r\n 0 multicast frames 0 compressed\r\n \ + \ 0 input errors 0 frame 0 overrun 0 fifo\r\n 0 packets output 0 bytes 0\ + \ underruns\r\n 0 output errors 0 collisions 0 fifo\r\n 0 out_carrier_errors" + show interface switchport: "Name: Ethernet4/1\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/2\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/3\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/4\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/5\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/6\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/7\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/8\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/9\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/10\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/11\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/12\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/13\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/14\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/15\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/16\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/17\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/18\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/19\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/20\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/21\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/22\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/23\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/24\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/25\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/26\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/27\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/28\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/29\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/30\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/31\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/32\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/33\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/34\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/35\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/36\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/37\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/38\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/39\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/40\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/41\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/42\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/43\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/44\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/45\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/46\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/47\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/48\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none" + show ip interface vrf all: "IP Interface Status for VRF \"default\"\r\nloopback0,\ + \ Interface status: protocol-up/link-up/admin-up, iod: 132,\r\n IP address:\ + \ 10.2.2.2, IP subnet: 10.2.2.2/32 route-preference: 0, tag: 0 \r\n IP broadcast\ + \ address: 255.255.255.255\r\n IP multicast groups locally joined: none\r\n\ + \ IP MTU: 1500 bytes (using link MTU)\r\n IP primary address route-preference:\ + \ 0, tag: 0\r\n IP proxy ARP : disabled\r\n IP Local Proxy ARP : disabled\r\ + \n IP multicast routing: disabled\r\n IP icmp redirects: enabled\r\n IP directed-broadcast:\ + \ disabled \r\n IP Forwarding: disabled \r\n IP icmp unreachables (except\ + \ port): disabled\r\n IP icmp port-unreachable: enabled\r\n IP unicast reverse\ + \ path forwarding: none\r\n IP load sharing: none \r\n IP interface statistics\ + \ last reset: never\r\n IP interface software stats: (sent/received/forwarded/originated/consumed)\r\ + \n Unicast packets : 0/0/0/0/66811\r\n Unicast bytes : 0/0/0/0/3349745\r\ + \n Multicast packets : 0/0/0/0/0\r\n Multicast bytes : 0/0/0/0/0\r\ + \n Broadcast packets : 0/0/0/0/0\r\n Broadcast bytes : 0/0/0/0/0\r\ + \n Labeled packets : 0/0/0/0/0\r\n Labeled bytes : 0/0/0/0/0\r\ + \n WCCP Redirect outbound: disabled\r\n WCCP Redirect inbound: disabled\r\n\ + \ WCCP Redirect exclude: disabled\r\nloopback1, Interface status: protocol-up/link-up/admin-up,\ + \ iod: 133,\r\n IP address: 10.22.22.22, IP subnet: 10.22.22.22/32 route-preference:\ + \ 0, tag: 0 \r\n IP broadcast address: 255.255.255.255\r\n IP multicast groups\ + \ locally joined: none\r\n IP MTU: 1500 bytes (using link MTU)\r\n IP primary\ + \ address route-preference: 0, tag: 0\r\n IP proxy ARP : disabled\r\n IP Local\ + \ Proxy ARP : disabled\r\n IP multicast routing: disabled\r\n IP icmp redirects:\ + \ enabled\r\n IP directed-broadcast: disabled \r\n IP Forwarding: disabled\ + \ \r\n IP icmp unreachables (except port): disabled\r\n IP icmp port-unreachable:\ + \ enabled\r\n IP unicast reverse path forwarding: none\r\n IP load sharing:\ + \ none \r\n IP interface statistics last reset: never\r\n IP interface software\ + \ stats: (sent/received/forwarded/originated/consumed)\r\n Unicast packets\ + \ : 0/0/0/0/0\r\n Unicast bytes : 0/0/0/0/0\r\n Multicast packets\ + \ : 0/0/0/0/0\r\n Multicast bytes : 0/0/0/0/0\r\n Broadcast packets\ + \ : 0/0/0/0/0\r\n Broadcast bytes : 0/0/0/0/0\r\n Labeled packets\ + \ : 0/0/0/0/0\r\n Labeled bytes : 0/0/0/0/0\r\n WCCP Redirect outbound:\ + \ disabled\r\n WCCP Redirect inbound: disabled\r\n WCCP Redirect exclude:\ + \ disabled\r\nEthernet2/1, Interface status: protocol-up/link-up/admin-up, iod:\ + \ 36,\r\n IP address: 10.0.1.2, IP subnet: 10.0.1.0/24 route-preference: 0,\ + \ tag: 0 \r\n IP broadcast address: 255.255.255.255\r\n IP multicast groups\ + \ locally joined: \r\n 224.0.0.6 224.0.0.5 \r\n IP MTU: 1500 bytes (using\ + \ link MTU)\r\n IP primary address route-preference: 0, tag: 0\r\n IP proxy\ + \ ARP : disabled\r\n IP Local Proxy ARP : disabled\r\n IP multicast routing:\ + \ disabled\r\n IP icmp redirects: enabled\r\n IP directed-broadcast: disabled\ + \ \r\n IP Forwarding: disabled \r\n IP icmp unreachables (except port): disabled\r\ + \n IP icmp port-unreachable: enabled\r\n IP unicast reverse path forwarding:\ + \ none\r\n IP load sharing: none \r\n IP interface statistics last reset:\ + \ never\r\n IP interface software stats: (sent/received/forwarded/originated/consumed)\r\ + \n Unicast packets : 66709/45035/0/66709/45616\r\n Unicast bytes \ + \ : 4436646/2403329/0/4436646/2456689\r\n Multicast packets : 198546/182532/0/198546/365062\r\ + \n Multicast bytes : 17164132/18254004/0/17164132/18253908\r\n Broadcast\ + \ packets : 0/16314/0/0/16314\r\n Broadcast bytes : 0/819786/0/0/819786\r\ + \n Labeled packets : 0/0/0/0/0\r\n Labeled bytes : 0/0/0/0/0\r\ + \n WCCP Redirect outbound: disabled\r\n WCCP Redirect inbound: disabled\r\n\ + \ WCCP Redirect exclude: disabled\r\nEthernet2/2, Interface status: protocol-up/link-up/admin-up,\ + \ iod: 37,\r\n IP address: 10.0.2.2, IP subnet: 10.0.2.0/24 route-preference:\ + \ 0, tag: 0 \r\n IP broadcast address: 255.255.255.255\r\n IP multicast groups\ + \ locally joined: \r\n 224.0.0.6 224.0.0.5 \r\n IP MTU: 1500 bytes (using\ + \ link MTU)\r\n IP primary address route-preference: 0, tag: 0\r\n IP proxy\ + \ ARP : disabled\r\n IP Local Proxy ARP : disabled\r\n IP multicast routing:\ + \ disabled\r\n IP icmp redirects: enabled\r\n IP directed-broadcast: disabled\ + \ \r\n IP Forwarding: disabled \r\n IP icmp unreachables (except port): disabled\r\ + \n IP icmp port-unreachable: enabled\r\n IP unicast reverse path forwarding:\ + \ none\r\n IP load sharing: none \r\n IP interface statistics last reset:\ + \ never\r\n IP interface software stats: (sent/received/forwarded/originated/consumed)\r\ + \n Unicast packets : 36/23043/0/36/23729\r\n Unicast bytes : 3566/1261358/0/3566/1323262\r\ + \n Multicast packets : 198473/182407/0/198473/364812\r\n Multicast bytes\ + \ : 17158002/18243376/0/17158002/18243280\r\n Broadcast packets : 0/16314/0/0/16314\r\ + \n Broadcast bytes : 0/819786/0/0/819786\r\n Labeled packets : 0/0/0/0/0\r\ + \n Labeled bytes : 0/0/0/0/0\r\n WCCP Redirect outbound: disabled\r\ + \n WCCP Redirect inbound: disabled\r\n WCCP Redirect exclude: disabled\r\n\ + \r\nIP Interface Status for VRF \"management\"" + show ipv6 interface vrf all: "IPv6 Interface Status for VRF \"default\"\r\n\r\n\ + IPv6 Interface Status for VRF \"management\"" + show routing ipv6 vrf all: "IPv6 Routing Table for VRF \"default\"\r\n'*' denotes\ + \ best ucast next-hop\r\n'**' denotes best mcast next-hop\r\n'[x/y]' denotes\ + \ [preference/metric]\r\n\r\n\r\nIPv6 Routing Table for VRF \"management\"\r\ + \n'*' denotes best ucast next-hop\r\n'**' denotes best mcast next-hop\r\n'[x/y]'\ + \ denotes [preference/metric]" + show routing vrf all: "IP Route Table for VRF \"default\"\r\n'*' denotes best\ + \ ucast next-hop\r\n'**' denotes best mcast next-hop\r\n'[x/y]' denotes [preference/metric]\r\ + \n'%' in via output denotes VRF \r\n\r\n10.0.1.0/24, ubest/mbest:\ + \ 1/0, attached\r\n *via 10.0.1.2, Eth2/1, [0/0], 2w5d, direct\r\n10.0.1.2/32,\ + \ ubest/mbest: 1/0, attached\r\n *via 10.0.1.2, Eth2/1, [0/0], 2w5d, local\r\ + \n10.0.2.0/24, ubest/mbest: 1/0, attached\r\n *via 10.0.2.2, Eth2/2, [0/0],\ + \ 2w5d, direct\r\n10.0.2.2/32, ubest/mbest: 1/0, attached\r\n *via 10.0.2.2,\ + \ Eth2/2, [0/0], 2w5d, local\r\n10.1.1.1/32, ubest/mbest: 2/0\r\n *via 10.0.1.1,\ + \ Eth2/1, [110/41], 5d05h, ospf-1, intra\r\n *via 10.0.2.1, Eth2/2, [110/41],\ + \ 5d05h, ospf-1, intra\r\n10.2.2.2/32, ubest/mbest: 2/0, attached\r\n *via\ + \ 10.2.2.2, Lo0, [0/0], 2w5d, local\r\n *via 10.2.2.2, Lo0, [0/0], 2w5d,\ + \ direct\r\n10.11.11.11/32, ubest/mbest: 1/0\r\n *via 10.1.1.1, [200/0],\ + \ 01:33:38, bgp-65000, internal, tag 65000, \r\n10.22.22.22/32, ubest/mbest:\ + \ 2/0, attached\r\n *via 10.22.22.22, Lo1, [0/0], 2w5d, local\r\n *via\ + \ 10.22.22.22, Lo1, [0/0], 2w5d, direct" + show running-config | inc peer-policy: '' + show running-config | inc peer-session: '' + show version: '' + show vrf: "VRF-Name VRF-ID State Reason \ + \ \r\ndefault 1 Up -- \ + \ \r\nmanagement 2 Up \ + \ --" + show vrf all interface: "Interface VRF-Name \ + \ VRF-ID Site-of-Origin\r\nloopback0 default \ + \ 1 --\r\nloopback1 default \ + \ 1 --\r\nNull0 default \ + \ 1 --\r\nEthernet2/1 default \ + \ 1 --\r\nEthernet2/2 default \ + \ 1 --\r\nEthernet2/3 default \ + \ 1 --\r\nEthernet2/4 default \ + \ 1 --\r\nEthernet2/5 default \ + \ 1 --\r\nEthernet2/6 default \ + \ 1 --\r\nEthernet2/7 default \ + \ 1 --\r\nEthernet2/8 default \ + \ 1 --\r\nEthernet2/9 default 1\ + \ --\r\nEthernet2/10 default 1 --\r\ + \nEthernet2/11 default 1 --\r\nEthernet2/12\ + \ default 1 --\r\nEthernet2/13 \ + \ default 1 --\r\nEthernet2/14 \ + \ default 1 --\r\nEthernet2/15 \ + \ default 1 --\r\nEthernet2/16 \ + \ default 1 --\r\nEthernet2/17 \ + \ default 1 --\r\nEthernet2/18 \ + \ default 1 --\r\nEthernet2/19 default\ + \ 1 --\r\nEthernet2/20 default \ + \ 1 --\r\nEthernet2/21 default \ + \ 1 --\r\nEthernet2/22 default \ + \ 1 --\r\nEthernet2/23 default \ + \ 1 --\r\nEthernet2/24 default \ + \ 1 --\r\nEthernet2/25 default \ + \ 1 --\r\nEthernet2/26 default \ + \ 1 --\r\nEthernet2/27 default \ + \ 1 --\r\nEthernet2/28 default \ + \ 1 --\r\nEthernet2/29 default \ + \ 1 --\r\nEthernet2/30 default \ + \ 1 --\r\nEthernet2/31 default \ + \ 1 --\r\nEthernet2/32 default \ + \ 1 --\r\nEthernet2/33 default \ + \ 1 --\r\nEthernet2/34 default 1\ + \ --\r\nEthernet2/35 default 1 --\r\ + \nEthernet2/36 default 1 --\r\nEthernet2/37\ + \ default 1 --\r\nEthernet2/38 \ + \ default 1 --\r\nEthernet2/39 \ + \ default 1 --\r\nEthernet2/40 \ + \ default 1 --\r\nEthernet2/41 \ + \ default 1 --\r\nEthernet2/42 \ + \ default 1 --\r\nEthernet2/43 \ + \ default 1 --\r\nEthernet2/44 default\ + \ 1 --\r\nEthernet2/45 default \ + \ 1 --\r\nEthernet2/46 default \ + \ 1 --\r\nEthernet2/47 default \ + \ 1 --\r\nEthernet2/48 default \ + \ 1 --\r\nEthernet3/1 default \ + \ 1 --\r\nEthernet3/2 default \ + \ 1 --\r\nEthernet3/3 default \ + \ 1 --\r\nEthernet3/4 default \ + \ 1 --\r\nEthernet3/5 default \ + \ 1 --\r\nEthernet3/6 default \ + \ 1 --\r\nEthernet3/7 default \ + \ 1 --\r\nEthernet3/8 default \ + \ 1 --\r\nEthernet3/9 default \ + \ 1 --\r\nEthernet3/10 default \ + \ 1 --\r\nEthernet3/11 default 1\ + \ --\r\nEthernet3/12 default 1 --\r\ + \nEthernet3/13 default 1 --\r\nEthernet3/14\ + \ default 1 --\r\nEthernet3/15 \ + \ default 1 --\r\nEthernet3/16 \ + \ default 1 --\r\nEthernet3/17 \ + \ default 1 --\r\nEthernet3/18 \ + \ default 1 --\r\nEthernet3/19 \ + \ default 1 --\r\nEthernet3/20 \ + \ default 1 --\r\nEthernet3/21 default\ + \ 1 --\r\nEthernet3/22 default \ + \ 1 --\r\nEthernet3/23 default \ + \ 1 --\r\nEthernet3/24 default \ + \ 1 --\r\nEthernet3/25 default \ + \ 1 --\r\nEthernet3/26 default \ + \ 1 --\r\nEthernet3/27 default \ + \ 1 --\r\nEthernet3/28 default \ + \ 1 --\r\nEthernet3/29 default \ + \ 1 --\r\nEthernet3/30 default \ + \ 1 --\r\nEthernet3/31 default \ + \ 1 --\r\nEthernet3/32 default \ + \ 1 --\r\nEthernet3/33 default \ + \ 1 --\r\nEthernet3/34 default \ + \ 1 --\r\nEthernet3/35 default \ + \ 1 --\r\nEthernet3/36 default 1\ + \ --\r\nEthernet3/37 default 1 --\r\ + \nEthernet3/38 default 1 --\r\nEthernet3/39\ + \ default 1 --\r\nEthernet3/40 \ + \ default 1 --\r\nEthernet3/41 \ + \ default 1 --\r\nEthernet3/42 \ + \ default 1 --\r\nEthernet3/43 \ + \ default 1 --\r\nEthernet3/44 \ + \ default 1 --\r\nEthernet3/45 \ + \ default 1 --\r\nEthernet3/46 default\ + \ 1 --\r\nEthernet3/47 default \ + \ 1 --\r\nEthernet3/48 default \ + \ 1 --\r\nmgmt0 management \ + \ 2 --" + term length 0: '' + term width 0: '' + prompt: switch# diff --git a/mocked_devices/0-setup/record/csr1000v-1 b/mocked_devices/0-setup/record/csr1000v-1 new file mode 100644 index 0000000..6c3bc0d Binary files /dev/null and b/mocked_devices/0-setup/record/csr1000v-1 differ diff --git a/mocked_devices/0-setup/record/nx-osv-1 b/mocked_devices/0-setup/record/nx-osv-1 new file mode 100644 index 0000000..ab2a5cf Binary files /dev/null and b/mocked_devices/0-setup/record/nx-osv-1 differ diff --git a/mocked_devices/0-setup/snapshot/bgp_iosxe_csr1000v-1_console.txt b/mocked_devices/0-setup/snapshot/bgp_iosxe_csr1000v-1_console.txt new file mode 100644 index 0000000..0e6b77a --- /dev/null +++ b/mocked_devices/0-setup/snapshot/bgp_iosxe_csr1000v-1_console.txt @@ -0,0 +1,306 @@ ++++ csr1000v-1: executing command 'show bgp summary' +++ +show bgp summary +% Command accepted but obsolete, unreleased or unsupported; see documentation. +BGP router identifier 10.1.1.1, local AS number 65000 +BGP table version is 165, main routing table version 165 +2 network entries using 496 bytes of memory +2 path entries using 272 bytes of memory +2/2 BGP path/bestpath attribute entries using 560 bytes of memory +0 BGP route-map cache entries using 0 bytes of memory +0 BGP filter-list cache entries using 0 bytes of memory +BGP using 1328 total bytes of memory +BGP activity 36/34 prefixes, 84/82 paths, scan interval 60 secs + +Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd +10.2.2.2 4 65000 98 107 165 0 0 01:33:37 1 +csr1000v-1# ++++ csr1000v-1: executing command 'show ip bgp template peer-session ' +++ +show ip bgp template peer-session +No templates configured + +csr1000v-1# ++++ csr1000v-1: executing command 'show ip bgp template peer-policy ' +++ +show ip bgp template peer-policy +No templates configured + +csr1000v-1# ++++ csr1000v-1: executing command 'show vrf detail | inc \(VRF' +++ +show vrf detail | inc \(VRF +csr1000v-1# ++++ csr1000v-1: executing command 'show bgp all cluster-ids' +++ +show bgp all cluster-ids +Global cluster-id: 10.1.1.1 (configured: 0.0.0.0) +BGP client-to-client reflection: Configured Used + all (inter-cluster and intra-cluster): ENABLED + intra-cluster: ENABLED ENABLED + +List of cluster-ids: +Cluster-id #-neighbors C2C-rfl-CFG C2C-rfl-USE +csr1000v-1# ++++ csr1000v-1: executing command 'show ip bgp all dampening parameters' +++ +show ip bgp all dampening parameters +For address family: IPv4 Unicast + +% dampening not enabled for base + +For address family: IPv6 Unicast + +% dampening not enabled for base + +For address family: IPv4 Multicast + +% dampening not enabled for base + +For address family: L2VPN E-VPN + +% dampening not enabled for base + +For address family: MVPNv4 Unicast + +% dampening not enabled for base + +For address family: MVPNv6 Unicast + +% dampening not enabled for base +csr1000v-1# ++++ csr1000v-1: executing command 'show bgp all neighbors' +++ +show bgp all neighbors +For address family: IPv4 Unicast +BGP neighbor is 10.2.2.2, remote AS 65000, internal link + BGP version 4, remote router ID 10.2.2.2 + BGP state = Established, up for 01:33:38 + Last read 00:00:36, last write 00:00:48, hold time is 180, keepalive interval is 60 seconds + Neighbor sessions: + 1 active, is not multisession capable (disabled) + Neighbor capabilities: + Route refresh: advertised and received(new) + Four-octets ASN Capability: advertised and received + Address family IPv4 Unicast: advertised and received + Graceful Restart Capability: received + Remote Restart timer is 120 seconds + Address families advertised by peer: + IPv4 Unicast (was not preserved + Enhanced Refresh Capability: advertised + Multisession Capability: + Stateful switchover support enabled: NO for session 1 + Message statistics: + InQ depth is 0 + OutQ depth is 0 + + Sent Rcvd + Opens: 1 1 + Notifications: 0 0 + Updates: 2 2 + Keepalives: 104 95 + Route Refresh: 0 0 + Total: 107 98 + Do log neighbor state changes (via global configuration) + Default minimum time between advertisement runs is 0 seconds + + Address tracking is enabled, the RIB does have a route to 10.2.2.2 + Route to peer address reachability Up: 2; Down: 0 + Last notification 5d05h + Connections established 82; dropped 81 + Last reset 01:33:46, due to BGP Notification received of session 1, Administrative Shutdown + Interface associated: (none) (peering address NOT in same link) + Transport(tcp) path-mtu-discovery is enabled + Graceful-Restart is disabled + SSO is disabled +Connection state is ESTAB, I/O status: 1, unread input bytes: 0 +Connection is ECN Disabled, Mininum incoming TTL 0, Outgoing TTL 255 +Local host: 10.1.1.1, Local port: 42266 +Foreign host: 10.2.2.2, Foreign port: 179 +Connection tableid (VRF): 0 +Maximum output segment queue size: 50 + +Enqueued packets for retransmit: 0, input: 0 mis-ordered: 0 (0 bytes) + +Event Timers (current time is 0x1B12CD63): +Timer Starts Wakeups Next +Retrans 105 0 0x0 +TimeWait 0 0 0x0 +AckHold 97 90 0x0 +SendWnd 0 0 0x0 +KeepAlive 0 0 0x0 +GiveUp 0 0 0x0 +PmtuAger 1 1 0x0 +DeadWait 0 0 0x0 +Linger 0 0 0x0 +ProcessQ 0 0 0x0 + +iss: 2680192098 snduna: 2680194211 sndnxt: 2680194211 +irs: 427990769 rcvnxt: 427992717 + +sndwnd: 16616 scale: 0 maxrcvwnd: 16384 +rcvwnd: 16080 scale: 0 delrcvwnd: 304 + +SRTT: 1000 ms, RTTO: 1003 ms, RTV: 3 ms, KRTT: 0 ms +minRTT: 2 ms, maxRTT: 1000 ms, ACK hold: 200 ms +uptime: 5618440 ms, Sent idletime: 35966 ms, Receive idletime: 36166 ms +Status Flags: active open +Option Flags: nagle, path mtu capable +IP Precedence value : 6 + +Datagrams (max data segment is 536 bytes): +Rcvd: 200 (out of order: 0), with data: 96, total data bytes: 1947 +Sent: 201 (retransmit: 0, fastretransmit: 0, partialack: 0, Second Congestion: 0), with data: 106, total data bytes: 2112 + + Packets received in fast path: 0, fast processed: 0, slow path: 0 + fast lock acquisition failures: 0, slow path: 0 +TCP Semaphore 0x7F1ACED9D348 FREE + + +For address family: IPv6 Unicast + +For address family: IPv4 Multicast + +For address family: L2VPN E-VPN + +For address family: MVPNv4 Unicast + +For address family: MVPNv6 Unicast +csr1000v-1# ++++ csr1000v-1: executing command 'show bgp all neighbors 10.2.2.2 policy' +++ +show bgp all neighbors 10.2.2.2 policy + Neighbor: 10.2.2.2, Address-Family: IPv4 Unicast +csr1000v-1# ++++ csr1000v-1: executing command 'show bgp all' +++ +show bgp all +For address family: IPv4 Unicast + +BGP table version is 165, local router ID is 10.1.1.1 +Status codes: s suppressed, d damped, h history, * valid, > best, i - internal, + r RIB-failure, S Stale, m multipath, b backup-path, f RT-Filter, + x best-external, a additional-path, c RIB-compressed, + t secondary path, L long-lived-stale, +Origin codes: i - IGP, e - EGP, ? - incomplete +RPKI validation codes: V valid, I invalid, N Not found + + Network Next Hop Metric LocPrf Weight Path + *> 10.11.11.11/32 0.0.0.0 0 32768 i + *>i 10.22.22.22/32 10.2.2.2 100 0 i + +For address family: IPv6 Unicast + + +For address family: IPv4 Multicast + + +For address family: L2VPN E-VPN + + +For address family: MVPNv4 Unicast + + +For address family: MVPNv6 Unicast + +csr1000v-1# ++++ csr1000v-1: executing command 'show bgp all detail' +++ +show bgp all detail +For address family: IPv4 Unicast + +BGP routing table entry for 10.11.11.11/32, version 2 + Paths: (1 available, best #1, table default) + Advertised to update-groups: + 82 + Refresh Epoch 1 + Local + 0.0.0.0 from 0.0.0.0 (10.1.1.1) + Origin IGP, metric 0, localpref 100, weight 32768, valid, sourced, local, best + rx pathid: 0, tx pathid: 0x0 +BGP routing table entry for 10.22.22.22/32, version 165 + Paths: (1 available, best #1, table default) + Not advertised to any peer + Refresh Epoch 1 + Local + 10.2.2.2 (metric 2) from 10.2.2.2 (10.2.2.2) + Origin IGP, localpref 100, valid, internal, best + rx pathid: 0, tx pathid: 0x0 + +For address family: IPv6 Unicast + + +For address family: IPv4 Multicast + + +For address family: L2VPN E-VPN + + +For address family: MVPNv4 Unicast + + +For address family: MVPNv6 Unicast + +csr1000v-1# ++++ csr1000v-1: executing command 'show bgp all neighbors 10.2.2.2 advertised-routes' +++ +show bgp all neighbors 10.2.2.2 advertised-routes +For address family: IPv4 Unicast +BGP table version is 165, local router ID is 10.1.1.1 +Status codes: s suppressed, d damped, h history, * valid, > best, i - internal, + r RIB-failure, S Stale, m multipath, b backup-path, f RT-Filter, + x best-external, a additional-path, c RIB-compressed, + t secondary path, L long-lived-stale, +Origin codes: i - IGP, e - EGP, ? - incomplete +RPKI validation codes: V valid, I invalid, N Not found + + Network Next Hop Metric LocPrf Weight Path + *> 10.11.11.11/32 0.0.0.0 0 32768 i + +Total number of prefixes 1 +csr1000v-1# ++++ csr1000v-1: executing command 'show bgp all neighbors | i BGP neighbor' +++ +show bgp all neighbors | i BGP neighbor +BGP neighbor is 10.2.2.2, remote AS 65000, internal link +csr1000v-1# ++++ csr1000v-1: executing command 'show bgp all neighbors 10.2.2.2 routes' +++ +show bgp all neighbors 10.2.2.2 routes +For address family: IPv4 Unicast +BGP table version is 165, local router ID is 10.1.1.1 +Status codes: s suppressed, d damped, h history, * valid, > best, i - internal, + r RIB-failure, S Stale, m multipath, b backup-path, f RT-Filter, + x best-external, a additional-path, c RIB-compressed, + t secondary path, L long-lived-stale, +Origin codes: i - IGP, e - EGP, ? - incomplete +RPKI validation codes: V valid, I invalid, N Not found + + Network Next Hop Metric LocPrf Weight Path + *>i 10.22.22.22/32 10.2.2.2 100 0 i + +Total number of prefixes 1 +csr1000v-1# ++++ csr1000v-1: executing command 'show bgp all neighbors | i BGP neighbor' +++ +show bgp all neighbors | i BGP neighbor +BGP neighbor is 10.2.2.2, remote AS 65000, internal link +csr1000v-1# ++++ csr1000v-1: executing command 'show bgp all neighbors 10.2.2.2 received-routes' +++ +show bgp all neighbors 10.2.2.2 received-routes +For address family: IPv4 Unicast +% Inbound soft reconfiguration not enabled on 10.2.2.2 +csr1000v-1# ++++ csr1000v-1: executing command 'show bgp all neighbors | i BGP neighbor' +++ +show bgp all neighbors | i BGP neighbor +BGP neighbor is 10.2.2.2, remote AS 65000, internal link +csr1000v-1# +Could not learn +Parser Output is empty ++====================================================================================================================================================+ +| Commands for learning feature 'Bgp' | ++====================================================================================================================================================+ +| - Parsed commands | +|----------------------------------------------------------------------------------------------------------------------------------------------------| +| cmd: | +| cmd: | +| cmd: | +| cmd: | +| cmd: | +| cmd: , arguments: {'neighbor':'10.2.2.2'} | +| cmd: , arguments: {'neighbor':'10.2.2.2'} | +|====================================================================================================================================================| +| - Commands with empty output | +|----------------------------------------------------------------------------------------------------------------------------------------------------| +| cmd: | +| cmd: | +| cmd: | +| cmd: , arguments: {'neighbor':'10.2.2.2'} | +| cmd: , arguments: {'neighbor':'10.2.2.2'} | +|====================================================================================================================================================| diff --git a/mocked_devices/0-setup/snapshot/bgp_iosxe_csr1000v-1_ops.txt b/mocked_devices/0-setup/snapshot/bgp_iosxe_csr1000v-1_ops.txt new file mode 100644 index 0000000..bca6caf --- /dev/null +++ b/mocked_devices/0-setup/snapshot/bgp_iosxe_csr1000v-1_ops.txt @@ -0,0 +1,181 @@ +{ + "attributes": null, + "commands": null, + "connections": null, + "context_manager": {}, + "info": { + "instance": { + "default": { + "bgp_id": 65000, + "vrf": { + "default": { + "cluster_id": "10.1.1.1", + "neighbor": { + "10.2.2.2": { + "address_family": { + "": { + "bgp_table_version": 165, + "path": { + "memory_usage": 272, + "total_entries": 2 + }, + "prefixes": { + "memory_usage": 496, + "total_entries": 2 + }, + "routing_table_version": 165, + "total_memory": 1328 + } + }, + "bgp_negotiated_capabilities": { + "enhanced_refresh": "advertised", + "four_octets_asn": "advertised and received", + "graceful_restart": "received", + "route_refresh": "advertised and received(new)", + "stateful_switchover": "NO for session 1" + }, + "bgp_negotiated_keepalive_timers": { + "hold_time": 180, + "keepalive_interval": 60 + }, + "bgp_neighbor_counters": { + "messages": { + "received": { + "keepalives": 95, + "notifications": 0, + "opens": 1, + "updates": 2 + }, + "sent": { + "keepalives": 104, + "notifications": 0, + "opens": 1, + "updates": 2 + } + } + }, + "bgp_session_transport": { + "connection": { + "last_reset": "01:33:46", + "reset_reason": "BGP Notification received of session 1, Administrative Shutdown", + "state": "Established" + }, + "transport": { + "foreign_host": "10.2.2.2", + "foreign_port": "179", + "local_host": "10.1.1.1", + "local_port": "42266", + "mss": 536 + } + }, + "bgp_version": 4, + "remote_as": 65000, + "session_state": "Established", + "shutdown": false + } + } + } + } + } + } + }, + "routes_per_peer": { + "instance": { + "default": { + "vrf": { + "default": { + "neighbor": { + "10.2.2.2": { + "address_family": { + "": { + "input_queue": 0, + "msg_rcvd": 98, + "msg_sent": 107, + "output_queue": 0, + "state_pfxrcd": "1", + "tbl_ver": 165, + "up_down": "01:33:37" + }, + "ipv4 unicast": { + "advertised": { + "10.11.11.11/32": { + "index": { + "1": { + "localprf": 0, + "next_hop": "0.0.0.0", + "origin_codes": "i", + "status_codes": "*>", + "weight": 32768 + } + } + } + }, + "routes": { + "10.22.22.22/32": { + "index": { + "1": { + "localprf": 100, + "next_hop": "10.2.2.2", + "origin_codes": "i", + "status_codes": "*>", + "weight": 0 + } + } + } + } + } + }, + "remote_as": 65000 + } + } + } + } + } + } + }, + "table": { + "instance": { + "default": { + "vrf": { + "default": { + "address_family": { + "ipv4 unicast": { + "prefixes": { + "10.11.11.11/32": { + "index": { + "1": { + "gateway": "0.0.0.0", + "localpref": 100, + "metric": 0, + "next_hop": "0.0.0.0", + "origin_codes": "i", + "originator": "10.1.1.1", + "status_codes": "*>", + "weight": "32768" + } + }, + "table_version": "2" + }, + "10.22.22.22/32": { + "index": { + "1": { + "gateway": "10.2.2.2", + "localpref": 100, + "next_hop": "10.2.2.2", + "next_hop_igp_metric": "2", + "origin_codes": "i", + "originator": "10.2.2.2", + "status_codes": "*>" + } + }, + "table_version": "165" + } + } + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/mocked_devices/0-setup/snapshot/bgp_nxos_nx-osv-1_console.txt b/mocked_devices/0-setup/snapshot/bgp_nxos_nx-osv-1_console.txt new file mode 100644 index 0000000..cc4bd80 --- /dev/null +++ b/mocked_devices/0-setup/snapshot/bgp_nxos_nx-osv-1_console.txt @@ -0,0 +1,368 @@ ++++ nx-osv-1: executing command 'show bgp process vrf all' +++ +show bgp process vrf all + +BGP Process Information +BGP Process ID : 8610 +BGP Protocol Started, reason: : configuration +BGP Protocol Tag : 65000 +BGP Protocol State : Running +BGP MMODE : Not Initialized +BGP Memory State : OK +BGP asformat : asplain + +BGP attributes information +Number of attribute entries : 2 +HWM of attribute entries : 2 +Bytes used by entries : 200 +Entries pending delete : 0 +HWM of entries pending delete : 0 +BGP paths per attribute HWM : 1 +BGP AS path entries : 0 +Bytes used by AS path entries : 0 + +Information regarding configured VRFs: + +BGP Information for VRF default +VRF Id : 1 +VRF state : UP +Router-ID : 10.2.2.2 +Configured Router-ID : 10.2.2.2 +Confed-ID : 0 +Cluster-ID : 0.0.0.0 +No. of configured peers : 1 +No. of pending config peers : 0 +No. of established peers : 1 +VRF RD : Not configured + + Information for address family IPv4 Unicast in VRF default + Table Id : 1 + Table state : UP + Peers Active-peers Routes Paths Networks Aggregates + 1 1 2 2 1 0 + + Redistribution + None + + Wait for IGP convergence is not configured + + + Nexthop trigger-delay + critical 3000 ms + non-critical 10000 ms + + Information for address family IPv6 Unicast in VRF default + Table Id : 80000001 + Table state : UP + Peers Active-peers Routes Paths Networks Aggregates + 0 0 0 0 0 0 + + Redistribution + None + + Wait for IGP convergence is not configured + + + Nexthop trigger-delay + critical 3000 ms + non-critical 10000 ms + nx-osv-1# ++++ nx-osv-1: executing command 'show running-config | inc peer-session' +++ +show running-config | inc peer-session + nx-osv-1# ++++ nx-osv-1: executing command 'show running-config | inc peer-policy' +++ +show running-config | inc peer-policy + nx-osv-1# ++++ nx-osv-1: executing command 'show bgp vrf all all dampening parameters' +++ +show bgp vrf all all dampening parameters + nx-osv-1# ++++ nx-osv-1: executing command 'show bgp vrf all all nexthop-database' +++ +show bgp vrf all all nexthop-database + +Next Hop table for VRF default, address family IPv4 Unicast: +Next-hop trigger-delay(miliseconds) + Critical: 3000 Non-critical: 10000 +IPv4 Next-hop table + +Nexthop: 0.0.0.0, Flags: 0x2, Refcount: 1, IGP cost: 0 +IGP Route type: 0, IGP preference: 0 +Nexthop is not-attached local unreachable not-labeled +Nexthop last resolved: never, using 0.0.0.0/0 +Metric next advertise: Never +RNH epoch: 0 + +Nexthop: 10.1.1.1, Flags: 0x1, Refcount: 1, IGP cost: 41 +IGP Route type: 0, IGP preference: 110 +Attached nexthop: 10.0.2.1, Interface: Ethernet2/2 +Attached nexthop: 10.0.1.1, Interface: Ethernet2/1 +Nexthop is not-attached not-local reachable not-labeled +Nexthop last resolved: 01:34:40, using 10.1.1.1/32 +Metric next advertise: Never +RNH epoch: 1 +IPv6 Next-hop table + +Next Hop table for VRF default, address family IPv6 Unicast: +Next-hop trigger-delay(miliseconds) + Critical: 3000 Non-critical: 10000 +IPv4 Next-hop table +IPv6 Next-hop table + nx-osv-1# ++++ nx-osv-1: executing command 'show routing vrf all' +++ +show routing vrf all +IP Route Table for VRF "default" +'*' denotes best ucast next-hop +'**' denotes best mcast next-hop +'[x/y]' denotes [preference/metric] +'%' in via output denotes VRF + +10.0.1.0/24, ubest/mbest: 1/0, attached + *via 10.0.1.2, Eth2/1, [0/0], 2w5d, direct +10.0.1.2/32, ubest/mbest: 1/0, attached + *via 10.0.1.2, Eth2/1, [0/0], 2w5d, local +10.0.2.0/24, ubest/mbest: 1/0, attached + *via 10.0.2.2, Eth2/2, [0/0], 2w5d, direct +10.0.2.2/32, ubest/mbest: 1/0, attached + *via 10.0.2.2, Eth2/2, [0/0], 2w5d, local +10.1.1.1/32, ubest/mbest: 2/0 + *via 10.0.1.1, Eth2/1, [110/41], 5d05h, ospf-1, intra + *via 10.0.2.1, Eth2/2, [110/41], 5d05h, ospf-1, intra +10.2.2.2/32, ubest/mbest: 2/0, attached + *via 10.2.2.2, Lo0, [0/0], 2w5d, local + *via 10.2.2.2, Lo0, [0/0], 2w5d, direct +10.11.11.11/32, ubest/mbest: 1/0 + *via 10.1.1.1, [200/0], 01:33:38, bgp-65000, internal, tag 65000, +10.22.22.22/32, ubest/mbest: 2/0, attached + *via 10.22.22.22, Lo1, [0/0], 2w5d, local + *via 10.22.22.22, Lo1, [0/0], 2w5d, direct + nx-osv-1# ++++ nx-osv-1: executing command 'show bgp vrf all all' +++ +show bgp vrf all all +BGP routing table information for VRF default, address family IPv4 Unicast +BGP table version is 340, local router ID is 10.2.2.2 +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup + + Network Next Hop Metric LocPrf Weight Path +*>i10.11.11.11/32 10.1.1.1 0 100 0 i +*>l10.22.22.22/32 0.0.0.0 100 32768 i + + nx-osv-1# ++++ nx-osv-1: executing command 'show vrf' +++ +show vrf +VRF-Name VRF-ID State Reason +default 1 Up -- +management 2 Up -- + nx-osv-1# ++++ nx-osv-1: executing command 'show bgp vrf management all neighbors' +++ +show bgp vrf management all neighbors +Unknown vrf management + nx-osv-1# ++++ nx-osv-1: executing command 'show bgp vrf default all neighbors' +++ +show bgp vrf default all neighbors +BGP neighbor is 10.1.1.1, remote AS 65000, ibgp link, Peer index 1 + BGP version 4, remote router ID 10.1.1.1 + BGP state = Established, up for 01:33:39 + Using loopback0 as update source for this peer + Last read 00:00:49, hold time = 180, keepalive interval is 60 seconds + Last written 00:00:37, keepalive timer expiry due 00:00:22 + Received 31794 messages, 1 notifications, 0 bytes in queue + Sent 29054 messages, 102 notifications, 0 bytes in queue + Connections established 103, dropped 102 + Last reset by us 01:33:47, due to administratively shutdown + Last reset by peer never, due to No error + + Neighbor capabilities: + Dynamic capability: advertised (mp, refresh, gr) + Dynamic capability (old): advertised + Route refresh capability (new): advertised received + Route refresh capability (old): advertised received + 4-Byte AS capability: advertised received + Address family IPv4 Unicast: advertised received + Graceful Restart capability: advertised + + Graceful Restart Parameters: + Address families advertised to peer: + IPv4 Unicast + Address families received from peer: + Forwarding state preserved by peer for: + Restart time advertised to peer: 120 seconds + Stale time for routes advertised by peer: 300 seconds + Extended Next Hop Encoding Capability: advertised + + Message statistics: + Sent Rcvd + Opens: 104 103 + Notifications: 102 1 + Updates: 218 206 + Keepalives: 28630 31484 + Route Refresh: 0 0 + Capability: 0 0 + Total: 29054 31794 + Total bytes: 551847 604376 + Bytes in queue: 0 0 + + For address family: IPv4 Unicast + BGP table version 340, neighbor version 340 + 1 accepted paths consume 80 bytes of memory + 1 sent paths + Third-party Nexthop will not be computed. + + Local host: 10.2.2.2, Local port: 179 + Foreign host: 10.1.1.1, Foreign port: 42266 + fd = 60 + + nx-osv-1# ++++ nx-osv-1: executing command 'show bgp vrf all all summary' +++ +show bgp vrf all all summary +BGP summary information for VRF default, address family IPv4 Unicast +BGP router identifier 10.2.2.2, local AS number 65000 +BGP table version is 340, IPv4 Unicast config peers 1, capable peers 1 +2 network entries and 2 paths using 288 bytes of memory +BGP attribute entries [2/288], BGP AS path entries [0/0] +BGP community entries [0/0], BGP clusterlist entries [0/0] + +Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd +10.1.1.1 4 65000 31794 29054 340 0 0 01:33:39 1 + +BGP summary information for VRF default, address family IPv6 Unicast + nx-osv-1# ++++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 advertised-routes' +++ +show bgp vrf default all neighbors 10.1.1.1 advertised-routes + +Peer 10.1.1.1 routes for address family IPv4 Unicast: +BGP table version is 340, local router ID is 10.2.2.2 +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup + + Network Next Hop Metric LocPrf Weight Path +*>l10.22.22.22/32 0.0.0.0 100 32768 i + + +Peer 10.1.1.1 routes for address family IPv4 Multicast: + +Peer 10.1.1.1 routes for address family IPv6 Unicast: +BGP table version is 2, local router ID is 10.2.2.2 +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup + + Network Next Hop Metric LocPrf Weight Path + +Peer 10.1.1.1 routes for address family IPv6 Multicast: + +Peer 10.1.1.1 routes for address family VPNv4 Unicast: + +Peer 10.1.1.1 routes for address family VPNv6 Unicast: + +Peer 10.1.1.1 routes for address family IPv4 MDT: + +Peer 10.1.1.1 routes for address family IPv6 Label Unicast: + +Peer 10.1.1.1 routes for address family L2VPN VPLS: + +Peer 10.1.1.1 routes for address family IPv4 MVPN: + +Peer 10.1.1.1 routes for address family IPv6 MVPN: + +Peer 10.1.1.1 routes for address family IPv4 Label Unicast: + +Peer 10.1.1.1 routes for address family L2VPN EVPN: + nx-osv-1# ++++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 routes' +++ +show bgp vrf default all neighbors 10.1.1.1 routes + +Peer 10.1.1.1 routes for address family IPv4 Unicast: +BGP table version is 340, local router ID is 10.2.2.2 +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup + + Network Next Hop Metric LocPrf Weight Path +*>i10.11.11.11/32 10.1.1.1 0 100 0 i + + +Peer 10.1.1.1 routes for address family IPv4 Multicast: + +Peer 10.1.1.1 routes for address family IPv6 Unicast: +BGP table version is 2, local router ID is 10.2.2.2 +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup + + Network Next Hop Metric LocPrf Weight Path + +Peer 10.1.1.1 routes for address family IPv6 Multicast: + +Peer 10.1.1.1 routes for address family VPNv4 Unicast: + +Peer 10.1.1.1 routes for address family VPNv6 Unicast: + +Peer 10.1.1.1 routes for address family IPv4 MDT: + +Peer 10.1.1.1 routes for address family IPv6 Label Unicast: + +Peer 10.1.1.1 routes for address family L2VPN VPLS: + +Peer 10.1.1.1 routes for address family IPv4 MVPN: + +Peer 10.1.1.1 routes for address family IPv6 MVPN: + +Peer 10.1.1.1 routes for address family IPv4 Label Unicast: + +Peer 10.1.1.1 routes for address family L2VPN EVPN: + nx-osv-1# ++++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 received-routes' +++ +show bgp vrf default all neighbors 10.1.1.1 received-routes + +Inbound soft reconfiguration for IPv4 Unicast not enabled on 10.1.1.1 + +Inbound soft reconfiguration for IPv4 Multicast not enabled on 10.1.1.1 + +Inbound soft reconfiguration for IPv6 Unicast not enabled on 10.1.1.1 + +Inbound soft reconfiguration for IPv6 Multicast not enabled on 10.1.1.1 + +Inbound soft reconfiguration for VPNv4 Unicast not enabled on 10.1.1.1 + +Inbound soft reconfiguration for VPNv6 Unicast not enabled on 10.1.1.1 + +Inbound soft reconfiguration for IPv4 MDT not enabled on 10.1.1.1 + +Inbound soft reconfiguration for IPv6 Label Unicast not enabled on 10.1.1.1 + +Inbound soft reconfiguration for L2VPN VPLS not enabled on 10.1.1.1 + +Inbound soft reconfiguration for IPv4 MVPN not enabled on 10.1.1.1 + +Inbound soft reconfiguration for IPv6 MVPN not enabled on 10.1.1.1 + +Inbound soft reconfiguration for IPv4 Label Unicast not enabled on 10.1.1.1 + +Inbound soft reconfiguration for L2VPN EVPN not enabled on 10.1.1.1 + nx-osv-1# +Could not learn +Parser Output is empty ++====================================================================================================================================================+ +| Commands for learning feature 'Bgp' | ++====================================================================================================================================================+ +| - Parsed commands | +|----------------------------------------------------------------------------------------------------------------------------------------------------| +| cmd: | +| cmd: | +| cmd: | +| cmd: | +| cmd: | +| cmd: , arguments: {'vrf':'default'} | +| cmd: | +| cmd: , arguments: {'neighbor':'10.1.1.1','vrf':'default'} | +| cmd: , arguments: {'neighbor':'10.1.1.1','vrf':'default'} | +|====================================================================================================================================================| +| - Commands with empty output | +|----------------------------------------------------------------------------------------------------------------------------------------------------| +| cmd: | +| cmd: | +| cmd: | +| cmd: , arguments: {'vrf':'management'} | +| cmd: , arguments: {'neighbor':'10.1.1.1','vrf':'default'} | +|====================================================================================================================================================| diff --git a/mocked_devices/0-setup/snapshot/bgp_nxos_nx-osv-1_ops.txt b/mocked_devices/0-setup/snapshot/bgp_nxos_nx-osv-1_ops.txt new file mode 100644 index 0000000..483ec12 --- /dev/null +++ b/mocked_devices/0-setup/snapshot/bgp_nxos_nx-osv-1_ops.txt @@ -0,0 +1,202 @@ +{ + "attributes": null, + "commands": null, + "connections": null, + "context_manager": {}, + "info": { + "instance": { + "default": { + "bgp_id": 65000, + "protocol_state": "running", + "vrf": { + "default": { + "address_family": { + "ipv4 unicast": { + "distance_internal_as": 200, + "nexthop_trigger_delay_critical": 3000, + "nexthop_trigger_delay_non_critical": 10000, + "nexthop_trigger_enable": true + }, + "ipv6 unicast": { + "nexthop_trigger_delay_critical": 3000, + "nexthop_trigger_delay_non_critical": 10000, + "nexthop_trigger_enable": true + } + }, + "cluster_id": "0.0.0.0", + "confederation_identifier": 0, + "neighbor": { + "10.1.1.1": { + "address_family": { + "ipv4 unicast": { + "bgp_table_version": 340, + "session_state": "established" + } + }, + "bgp_negotiated_capabilities": { + "dynamic_capability": "advertised (mp, refresh, gr)", + "dynamic_capability_old": "advertised", + "graceful_restart": "advertised", + "route_refresh": "advertised received", + "route_refresh_old": "advertised received" + }, + "bgp_negotiated_keepalive_timers": { + "hold_time": 180, + "keepalive_interval": 60 + }, + "bgp_neighbor_counters": { + "messages": { + "received": { + "bytes_in_queue": 0, + "capability": 0, + "keepalives": 31484, + "notifications": 1, + "opens": 103, + "route_refresh": 0, + "total": 31794, + "total_bytes": 604376, + "updates": 206 + }, + "sent": { + "bytes_in_queue": 0, + "capability": 0, + "keepalives": 28630, + "notifications": 102, + "opens": 104, + "route_refresh": 0, + "total": 29054, + "total_bytes": 551847, + "updates": 218 + } + } + }, + "bgp_session_transport": { + "connection": { + "last_reset": "never", + "reset_reason": "no error", + "state": "established" + }, + "transport": { + "foreign_host": "10.1.1.1", + "foreign_port": "42266", + "local_host": "10.2.2.2", + "local_port": "179" + } + }, + "bgp_version": 4, + "holdtime": 180, + "keepalive_interval": 60, + "local_as_as_no": "None", + "remote_as": 65000, + "session_state": "established", + "shutdown": false, + "up_time": "01:33:39", + "update_source": "loopback0" + } + }, + "router_id": "10.2.2.2" + } + } + } + } + }, + "routes_per_peer": { + "instance": { + "default": { + "vrf": { + "default": { + "neighbor": { + "10.1.1.1": { + "address_family": { + "ipv4 unicast": { + "advertised": { + "10.22.22.22/32": { + "index": { + "1": { + "locprf": 100, + "next_hop": "0.0.0.0", + "origin_codes": "i", + "path_type": "l", + "status_codes": "*>", + "weight": 32768 + } + } + } + }, + "input_queue": 0, + "msg_rcvd": 31794, + "msg_sent": 29054, + "output_queue": 0, + "routes": { + "10.11.11.11/32": { + "index": { + "1": { + "locprf": 100, + "metric": 0, + "next_hop": "10.1.1.1", + "origin_codes": "i", + "path_type": "i", + "status_codes": "*>", + "weight": 0 + } + } + } + }, + "state_pfxrcd": "1", + "tbl_ver": 340, + "up_down": "01:33:39" + }, + "ipv6 unicast": { + "advertised": {}, + "routes": {} + } + }, + "remote_as": 65000 + } + } + } + } + } + } + }, + "table": { + "instance": { + "default": { + "vrf": { + "default": { + "address_family": { + "ipv4 unicast": { + "bgp_table_version": 340, + "prefixes": { + "10.11.11.11/32": { + "index": { + "1": { + "localpref": 100, + "metric": 0, + "next_hop": "10.1.1.1", + "origin_codes": "i", + "status_codes": "*>", + "weight": 0 + } + } + }, + "10.22.22.22/32": { + "index": { + "1": { + "localpref": 100, + "next_hop": "0.0.0.0", + "origin_codes": "i", + "status_codes": "*>", + "weight": 32768 + } + } + } + } + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/mocked_devices/0-setup/snapshot/connection_csr1000v-1.txt b/mocked_devices/0-setup/snapshot/connection_csr1000v-1.txt new file mode 100644 index 0000000..3fd7601 --- /dev/null +++ b/mocked_devices/0-setup/snapshot/connection_csr1000v-1.txt @@ -0,0 +1,84 @@ +[2019-04-28 15:58:13,863] +++ csr1000v-1 logfile snapshot/connection_csr1000v-1.txt +++ +[2019-04-28 15:58:13,863] +++ Unicon plugin iosxe +++ +[2019-04-28 15:58:13,867] +++ connection to spawn: telnet 172.25.192.90 17000, id: 4623294136 +++ +[2019-04-28 15:58:13,868] connection to csr1000v-1 +Trying 172.25.192.90... +Connected to asg-virl-ubuntu.cisco.com. +Escape character is '^]'. + +csr1000v-1# +[2019-04-28 15:58:14,601] +++ initializing handle +++ +[2019-04-28 15:58:14,602] +++ csr1000v-1: executing command 'term length 0' +++ +term length 0 +csr1000v-1# +[2019-04-28 15:58:14,715] +++ csr1000v-1: executing command 'term width 0' +++ +term width 0 +csr1000v-1# +[2019-04-28 15:58:14,822] +++ csr1000v-1: executing command 'show version' +++ +show version +Cisco IOS XE Software, Version 16.09.01 +Cisco IOS Software [Fuji], Virtual XE Software (X86_64_LINUX_IOSD-UNIVERSALK9-M), Version 16.9.1, RELEASE SOFTWARE (fc2) +Technical Support: http://www.cisco.com/techsupport +Copyright (c) 1986-2018 by Cisco Systems, Inc. +Compiled Tue 17-Jul-18 16:57 by mcpre + + +Cisco IOS-XE software, Copyright (c) 2005-2018 by cisco Systems, Inc. +All rights reserved. Certain components of Cisco IOS-XE software are +licensed under the GNU General Public License ("GPL") Version 2.0. The +software code licensed under GPL Version 2.0 is free software that comes +with ABSOLUTELY NO WARRANTY. You can redistribute and/or modify such +GPL code under the terms of GPL Version 2.0. For more details, see the +documentation or "License Notice" file accompanying the IOS-XE software, +or the applicable URL provided on the flyer accompanying the IOS-XE +software. + + +ROM: IOS-XE ROMMON + +csr1000v-1 uptime is 5 days, 6 hours, 1 minute +Uptime for this control processor is 5 days, 6 hours, 10 minutes +System returned to ROM by reload +System image file is "bootflash:packages.conf" +Last reload reason: Critical software exception, check bootflash:crashinfo_RP_00_00_20190423-163950-UTC + + + +This product contains cryptographic features and is subject to United +States and local country laws governing import, export, transfer and +use. Delivery of Cisco cryptographic products does not imply +third-party authority to import, export, distribute or use encryption. +Importers, exporters, distributors and users are responsible for +compliance with U.S. and local country laws. By using this product you +agree to comply with applicable laws and regulations. If you are unable +to comply with U.S. and local laws, return this product immediately. + +A summary of U.S. laws governing Cisco cryptographic products may be found at: +http://www.cisco.com/wwl/export/crypto/tool/stqrg.html + +If you require further assistance please contact us by sending email to +export@cisco.com. + +License Level: ax +License Type: Default. No valid license found. +Next reload license Level: ax + +cisco CSR1000V (VXE) processor (revision VXE) with 1217428K/3075K bytes of memory. +Processor board ID 9P34NU3ZQ4L +3 Gigabit Ethernet interfaces +32768K bytes of non-volatile configuration memory. +3018864K bytes of physical memory. +7774207K bytes of virtual hard disk at bootflash:. +0K bytes of WebUI ODM Files at webui:. + +Configuration register is 0x2102 + +csr1000v-1# +[2019-04-28 15:58:14,940] +++ csr1000v-1: config +++ +config term +Enter configuration commands, one per line. End with CNTL/Z. +csr1000v-1(config)#no logging console +csr1000v-1(config)#line console 0 +csr1000v-1(config-line)#exec-timeout 0 +csr1000v-1(config-line)#end +csr1000v-1# diff --git a/mocked_devices/0-setup/snapshot/connection_nx-osv-1.txt b/mocked_devices/0-setup/snapshot/connection_nx-osv-1.txt new file mode 100644 index 0000000..a65e790 --- /dev/null +++ b/mocked_devices/0-setup/snapshot/connection_nx-osv-1.txt @@ -0,0 +1,28 @@ +[2019-04-28 15:58:12,028] +++ nx-osv-1 logfile snapshot/connection_nx-osv-1.txt +++ +[2019-04-28 15:58:12,028] +++ Unicon plugin nxos +++ +[2019-04-28 15:58:12,032] +++ connection to spawn: telnet 172.25.192.90 17002, id: 4617057672 +++ +[2019-04-28 15:58:12,033] connection to nx-osv-1 +Trying 172.25.192.90... +Connected to asg-virl-ubuntu.cisco.com. +Escape character is '^]'. + + nx-osv-1# +[2019-04-28 15:58:12,839] +++ initializing handle +++ +[2019-04-28 15:58:12,840] +++ nx-osv-1: executing command 'term length 0' +++ +term length 0 + nx-osv-1# +[2019-04-28 15:58:12,974] +++ nx-osv-1: executing command 'term width 511' +++ +term width 511 + nx-osv-1# +[2019-04-28 15:58:13,092] +++ nx-osv-1: executing command 'terminal session-timeout 0' +++ +terminal session-timeout 0 + nx-osv-1# +[2019-04-28 15:58:13,216] +++ nx-osv-1: config +++ +config term +Enter configuration commands, one per line. End with CNTL/Z. + nx-osv-1(config)# no logging console + nx-osv-1(config)# line console + nx-osv-1(config-console)# exec-timeout 0 + nx-osv-1(config-console)# terminal width 511 + nx-osv-1(config-console)# end + nx-osv-1# diff --git a/mocked_devices/0-setup/snapshot/interface_iosxe_csr1000v-1_console.txt b/mocked_devices/0-setup/snapshot/interface_iosxe_csr1000v-1_console.txt new file mode 100644 index 0000000..749d6d8 --- /dev/null +++ b/mocked_devices/0-setup/snapshot/interface_iosxe_csr1000v-1_console.txt @@ -0,0 +1,389 @@ ++++ csr1000v-1: executing command 'show interfaces' +++ +show interfaces +GigabitEthernet1 is up, line protocol is up + Hardware is CSR vNIC, address is 5e00.0000.0000 (bia 5e00.0000.0000) + Internet address is 10.255.8.122/16 + MTU 1500 bytes, BW 1000000 Kbit/sec, DLY 10 usec, + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, loopback not set + Keepalive set (10 sec) + Full Duplex, 1000Mbps, link type is auto, media type is Virtual + output flow-control is unsupported, input flow-control is unsupported + ARP type: ARPA, ARP Timeout 04:00:00 + Last input 00:00:08, output 00:00:05, output hang never + Last clearing of "show interface" counters never + Input queue: 0/375/0/0 (size/max/drops/flushes); Total output drops: 0 + Queueing strategy: fifo + Output queue: 0/40 (size/max) + 5 minute input rate 0 bits/sec, 0 packets/sec + 5 minute output rate 0 bits/sec, 0 packets/sec + 225477 packets input, 16038770 bytes, 0 no buffer + Received 0 broadcasts (0 IP multicasts) + 0 runts, 0 giants, 0 throttles + 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored + 0 watchdog, 0 multicast, 0 pause input + 82636 packets output, 7444946 bytes, 0 underruns + 0 output errors, 0 collisions, 0 interface resets + 15117 unknown protocol drops + 0 babbles, 0 late collision, 0 deferred + 0 lost carrier, 0 no carrier, 0 pause output + 0 output buffer failures, 0 output buffers swapped out +GigabitEthernet2 is up, line protocol is up + Hardware is CSR vNIC, address is fa16.3ebe.e48e (bia fa16.3ebe.e48e) + Internet address is 10.0.1.1/24 + MTU 1500 bytes, BW 1000000 Kbit/sec, DLY 10 usec, + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, loopback not set + Keepalive set (10 sec) + Full Duplex, 1000Mbps, link type is auto, media type is Virtual + output flow-control is unsupported, input flow-control is unsupported + ARP type: ARPA, ARP Timeout 04:00:00 + Last input 00:00:06, output 00:00:04, output hang never + Last clearing of "show interface" counters never + Input queue: 0/375/0/0 (size/max/drops/flushes); Total output drops: 0 + Queueing strategy: fifo + Output queue: 0/40 (size/max) + 5 minute input rate 0 bits/sec, 0 packets/sec + 5 minute output rate 0 bits/sec, 0 packets/sec + 82330 packets input, 7330625 bytes, 0 no buffer + Received 0 broadcasts (0 IP multicasts) + 0 runts, 0 giants, 0 throttles + 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored + 0 watchdog, 0 multicast, 0 pause input + 67510 packets output, 6724966 bytes, 0 underruns + 0 output errors, 0 collisions, 0 interface resets + 7559 unknown protocol drops + 0 babbles, 0 late collision, 0 deferred + 0 lost carrier, 0 no carrier, 0 pause output + 0 output buffer failures, 0 output buffers swapped out +GigabitEthernet3 is up, line protocol is up + Hardware is CSR vNIC, address is fa16.3e07.71e5 (bia fa16.3e07.71e5) + Internet address is 10.0.2.1/24 + MTU 1500 bytes, BW 1000000 Kbit/sec, DLY 10 usec, + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, loopback not set + Keepalive set (10 sec) + Full Duplex, 1000Mbps, link type is auto, media type is Virtual + output flow-control is unsupported, input flow-control is unsupported + ARP type: ARPA, ARP Timeout 04:00:00 + Last input 00:00:02, output 00:00:00, output hang never + Last clearing of "show interface" counters never + Input queue: 0/375/0/0 (size/max/drops/flushes); Total output drops: 0 + Queueing strategy: fifo + Output queue: 0/40 (size/max) + 5 minute input rate 0 bits/sec, 0 packets/sec + 5 minute output rate 0 bits/sec, 0 packets/sec + 60137 packets input, 5971972 bytes, 0 no buffer + Received 0 broadcasts (0 IP multicasts) + 0 runts, 0 giants, 0 throttles + 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored + 0 watchdog, 0 multicast, 0 pause input + 89867 packets output, 8164625 bytes, 0 underruns + 0 output errors, 0 collisions, 0 interface resets + 7559 unknown protocol drops + 0 babbles, 0 late collision, 0 deferred + 0 lost carrier, 0 no carrier, 0 pause output + 0 output buffer failures, 0 output buffers swapped out +Loopback0 is up, line protocol is up + Hardware is Loopback + Internet address is 10.1.1.1/32 + MTU 1514 bytes, BW 8000000 Kbit/sec, DLY 5000 usec, + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation LOOPBACK, loopback not set + Keepalive set (10 sec) + Last input 00:00:05, output never, output hang never + Last clearing of "show interface" counters never + Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0 + Queueing strategy: fifo + Output queue: 0/0 (size/max) + 5 minute input rate 0 bits/sec, 0 packets/sec + 5 minute output rate 0 bits/sec, 0 packets/sec + 0 packets input, 0 bytes, 0 no buffer + Received 0 broadcasts (0 IP multicasts) + 0 runts, 0 giants, 0 throttles + 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored, 0 abort + 16313 packets output, 819733 bytes, 0 underruns + 0 output errors, 0 collisions, 0 interface resets + 0 unknown protocol drops + 0 output buffer failures, 0 output buffers swapped out +Loopback1 is up, line protocol is up + Hardware is Loopback + Internet address is 10.11.11.11/32 + MTU 1514 bytes, BW 8000000 Kbit/sec, DLY 5000 usec, + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation LOOPBACK, loopback not set + Keepalive set (10 sec) + Last input 00:00:05, output never, output hang never + Last clearing of "show interface" counters never + Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0 + Queueing strategy: fifo + Output queue: 0/0 (size/max) + 5 minute input rate 0 bits/sec, 0 packets/sec + 5 minute output rate 0 bits/sec, 0 packets/sec + 0 packets input, 0 bytes, 0 no buffer + Received 0 broadcasts (0 IP multicasts) + 0 runts, 0 giants, 0 throttles + 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored, 0 abort + 16313 packets output, 819733 bytes, 0 underruns + 0 output errors, 0 collisions, 0 interface resets + 0 unknown protocol drops + 0 output buffer failures, 0 output buffers swapped out +csr1000v-1# ++++ csr1000v-1: executing command 'show vrf detail' +++ +show vrf detail +csr1000v-1# ++++ csr1000v-1: executing command 'show interfaces accounting' +++ +show interfaces accounting +GigabitEthernet1 + Protocol Pkts In Chars In Pkts Out Chars Out + Other 160207 11887020 2788 167280 + IP 96084 8329803 79849 7277733 + ARP 129973 5507646 2788 167280 + IPv6 22 1836 0 0 +GigabitEthernet2 + Protocol Pkts In Chars In Pkts Out Chars Out + Other 15149 3282466 2749 164940 + IP 74673 5681985 64763 6560207 + ARP 31 1860 2749 164940 +GigabitEthernet3 + Protocol Pkts In Chars In Pkts Out Chars Out + Other 15148 3282406 2748 164880 + IP 52481 4323392 87120 7999812 + ARP 30 1800 2748 164880 +Loopback0 + Protocol Pkts In Chars In Pkts Out Chars Out + IP 16313 819733 16313 819733 +Loopback1 + Protocol Pkts In Chars In Pkts Out Chars Out + IP 16313 819733 16313 819733 +csr1000v-1# ++++ csr1000v-1: executing command 'show ip interface' +++ +show ip interface +GigabitEthernet1 is up, line protocol is up + Internet address is 10.255.8.122/16 + Broadcast address is 255.255.255.255 + Address determined by DHCP + MTU is 1500 bytes + Helper address is not set + Directed broadcast forwarding is disabled + Outgoing Common access list is not set + Outgoing access list is not set + Inbound Common access list is not set + Inbound access list is not set + Proxy ARP is enabled + Local Proxy ARP is disabled + Security level is default + Split horizon is enabled + ICMP redirects are always sent + ICMP unreachables are always sent + ICMP mask replies are never sent + IP fast switching is enabled + IP Flow switching is disabled + IP CEF switching is enabled + IP CEF switching turbo vector + IP Null turbo vector + Associated unicast routing topologies: + Topology "base", operation state is UP + IP multicast fast switching is enabled + IP multicast distributed fast switching is disabled + IP route-cache flags are Fast, CEF + Router Discovery is disabled + IP output packet accounting is disabled + IP access violation accounting is disabled + TCP/IP header compression is disabled + RTP/IP header compression is disabled + Probe proxy name replies are disabled + Policy routing is disabled + Network address translation is disabled + BGP Policy Mapping is disabled + Input features: MCI Check + IPv4 WCCP Redirect outbound is disabled + IPv4 WCCP Redirect inbound is disabled + IPv4 WCCP Redirect exclude is disabled +GigabitEthernet2 is up, line protocol is up + Internet address is 10.0.1.1/24 + Broadcast address is 255.255.255.255 + Address determined by non-volatile memory + MTU is 1500 bytes + Helper address is not set + Directed broadcast forwarding is disabled + Multicast reserved groups joined: 224.0.0.5 224.0.0.6 + Outgoing Common access list is not set + Outgoing access list is not set + Inbound Common access list is not set + Inbound access list is not set + Proxy ARP is enabled + Local Proxy ARP is disabled + Security level is default + Split horizon is enabled + ICMP redirects are always sent + ICMP unreachables are always sent + ICMP mask replies are never sent + IP fast switching is enabled + IP Flow switching is disabled + IP CEF switching is enabled + IP CEF switching turbo vector + IP Null turbo vector + Associated unicast routing topologies: + Topology "base", operation state is UP + IP multicast fast switching is enabled + IP multicast distributed fast switching is disabled + IP route-cache flags are Fast, CEF + Router Discovery is disabled + IP output packet accounting is disabled + IP access violation accounting is disabled + TCP/IP header compression is disabled + RTP/IP header compression is disabled + Probe proxy name replies are disabled + Policy routing is disabled + Network address translation is disabled + BGP Policy Mapping is disabled + Input features: MCI Check + IPv4 WCCP Redirect outbound is disabled + IPv4 WCCP Redirect inbound is disabled + IPv4 WCCP Redirect exclude is disabled +GigabitEthernet3 is up, line protocol is up + Internet address is 10.0.2.1/24 + Broadcast address is 255.255.255.255 + Address determined by non-volatile memory + MTU is 1500 bytes + Helper address is not set + Directed broadcast forwarding is disabled + Multicast reserved groups joined: 224.0.0.5 224.0.0.6 + Outgoing Common access list is not set + Outgoing access list is not set + Inbound Common access list is not set + Inbound access list is not set + Proxy ARP is enabled + Local Proxy ARP is disabled + Security level is default + Split horizon is enabled + ICMP redirects are always sent + ICMP unreachables are always sent + ICMP mask replies are never sent + IP fast switching is enabled + IP Flow switching is disabled + IP CEF switching is enabled + IP CEF switching turbo vector + IP Null turbo vector + Associated unicast routing topologies: + Topology "base", operation state is UP + IP multicast fast switching is enabled + IP multicast distributed fast switching is disabled + IP route-cache flags are Fast, CEF + Router Discovery is disabled + IP output packet accounting is disabled + IP access violation accounting is disabled + TCP/IP header compression is disabled + RTP/IP header compression is disabled + Probe proxy name replies are disabled + Policy routing is disabled + Network address translation is disabled + BGP Policy Mapping is disabled + Input features: MCI Check + IPv4 WCCP Redirect outbound is disabled + IPv4 WCCP Redirect inbound is disabled + IPv4 WCCP Redirect exclude is disabled +Loopback0 is up, line protocol is up + Internet address is 10.1.1.1/32 + Broadcast address is 255.255.255.255 + Address determined by non-volatile memory + MTU is 1514 bytes + Helper address is not set + Directed broadcast forwarding is disabled + Multicast reserved groups joined: 224.0.0.5 + Outgoing Common access list is not set + Outgoing access list is not set + Inbound Common access list is not set + Inbound access list is not set + Proxy ARP is enabled + Local Proxy ARP is disabled + Security level is default + Split horizon is enabled + ICMP redirects are always sent + ICMP unreachables are always sent + ICMP mask replies are never sent + IP fast switching is enabled + IP Flow switching is disabled + IP CEF switching is enabled + IP CEF switching turbo vector + IP Null turbo vector + Associated unicast routing topologies: + Topology "base", operation state is UP + IP multicast fast switching is enabled + IP multicast distributed fast switching is disabled + IP route-cache flags are Fast, CEF + Router Discovery is disabled + IP output packet accounting is disabled + IP access violation accounting is disabled + TCP/IP header compression is disabled + RTP/IP header compression is disabled + Probe proxy name replies are disabled + Policy routing is disabled + Network address translation is disabled + BGP Policy Mapping is disabled + Input features: MCI Check + IPv4 WCCP Redirect outbound is disabled + IPv4 WCCP Redirect inbound is disabled + IPv4 WCCP Redirect exclude is disabled +Loopback1 is up, line protocol is up + Internet address is 10.11.11.11/32 + Broadcast address is 255.255.255.255 + Address determined by non-volatile memory + MTU is 1514 bytes + Helper address is not set + Directed broadcast forwarding is disabled + Outgoing Common access list is not set + Outgoing access list is not set + Inbound Common access list is not set + Inbound access list is not set + Proxy ARP is enabled + Local Proxy ARP is disabled + Security level is default + Split horizon is enabled + ICMP redirects are always sent + ICMP unreachables are always sent + ICMP mask replies are never sent + IP fast switching is enabled + IP Flow switching is disabled + IP CEF switching is enabled + IP CEF switching turbo vector + IP Null turbo vector + Associated unicast routing topologies: + Topology "base", operation state is UP + IP multicast fast switching is enabled + IP multicast distributed fast switching is disabled + IP route-cache flags are Fast, CEF + Router Discovery is disabled + IP output packet accounting is disabled + IP access violation accounting is disabled + TCP/IP header compression is disabled + RTP/IP header compression is disabled + Probe proxy name replies are disabled + Policy routing is disabled + Network address translation is disabled + BGP Policy Mapping is disabled + Input features: MCI Check + IPv4 WCCP Redirect outbound is disabled + IPv4 WCCP Redirect inbound is disabled + IPv4 WCCP Redirect exclude is disabled +csr1000v-1# ++++ csr1000v-1: executing command 'show ipv6 interface' +++ +show ipv6 interface +csr1000v-1# +Could not learn +Parser Output is empty ++====================================================================================================================================================+ +| Commands for learning feature 'Interface' | ++====================================================================================================================================================+ +| - Parsed commands | +|----------------------------------------------------------------------------------------------------------------------------------------------------| +| cmd: | +| cmd: | +| cmd: | +|====================================================================================================================================================| +| - Commands with empty output | +|----------------------------------------------------------------------------------------------------------------------------------------------------| +| cmd: | +| cmd: | +|====================================================================================================================================================| diff --git a/mocked_devices/0-setup/snapshot/interface_iosxe_csr1000v-1_ops.txt b/mocked_devices/0-setup/snapshot/interface_iosxe_csr1000v-1_ops.txt new file mode 100644 index 0000000..72df283 --- /dev/null +++ b/mocked_devices/0-setup/snapshot/interface_iosxe_csr1000v-1_ops.txt @@ -0,0 +1,328 @@ +{ + "attributes": null, + "commands": null, + "connections": null, + "context_manager": {}, + "info": { + "GigabitEthernet1": { + "accounting": { + "arp": { + "chars_in": 5507646, + "chars_out": 167280, + "pkts_in": 129973, + "pkts_out": 2788 + }, + "ip": { + "chars_in": 8329803, + "chars_out": 7277733, + "pkts_in": 96084, + "pkts_out": 79849 + }, + "ipv6": { + "chars_in": 1836, + "chars_out": 0, + "pkts_in": 22, + "pkts_out": 0 + }, + "other": { + "chars_in": 11887020, + "chars_out": 167280, + "pkts_in": 160207, + "pkts_out": 2788 + } + }, + "auto_negotiate": true, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 16038770, + "in_pkts": 225477, + "last_clear": "never", + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_octets": 7444946, + "out_pkts": 82636, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 300, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "duplex_mode": "full", + "enabled": true, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "ipv4": { + "10.255.8.122/16": { + "ip": "10.255.8.122", + "prefix_length": "16", + "secondary": false + } + }, + "mac_address": "5e00.0000.0000", + "mtu": 1500, + "oper_status": "up", + "phys_address": "5e00.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "port_speed": "1000", + "switchport_enable": false, + "type": "CSR vNIC" + }, + "GigabitEthernet2": { + "accounting": { + "arp": { + "chars_in": 1860, + "chars_out": 164940, + "pkts_in": 31, + "pkts_out": 2749 + }, + "ip": { + "chars_in": 5681985, + "chars_out": 6560207, + "pkts_in": 74673, + "pkts_out": 64763 + }, + "other": { + "chars_in": 3282466, + "chars_out": 164940, + "pkts_in": 15149, + "pkts_out": 2749 + } + }, + "auto_negotiate": true, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 7330625, + "in_pkts": 82330, + "last_clear": "never", + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_octets": 6724966, + "out_pkts": 67510, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 300, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "duplex_mode": "full", + "enabled": true, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "ipv4": { + "10.0.1.1/24": { + "ip": "10.0.1.1", + "prefix_length": "24", + "secondary": false + } + }, + "mac_address": "fa16.3ebe.e48e", + "mtu": 1500, + "oper_status": "up", + "phys_address": "fa16.3ebe.e48e", + "port_channel": { + "port_channel_member": false + }, + "port_speed": "1000", + "switchport_enable": false, + "type": "CSR vNIC" + }, + "GigabitEthernet3": { + "accounting": { + "arp": { + "chars_in": 1800, + "chars_out": 164880, + "pkts_in": 30, + "pkts_out": 2748 + }, + "ip": { + "chars_in": 4323392, + "chars_out": 7999812, + "pkts_in": 52481, + "pkts_out": 87120 + }, + "other": { + "chars_in": 3282406, + "chars_out": 164880, + "pkts_in": 15148, + "pkts_out": 2748 + } + }, + "auto_negotiate": true, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 5971972, + "in_pkts": 60137, + "last_clear": "never", + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_octets": 8164625, + "out_pkts": 89867, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 300, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "duplex_mode": "full", + "enabled": true, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "ipv4": { + "10.0.2.1/24": { + "ip": "10.0.2.1", + "prefix_length": "24", + "secondary": false + } + }, + "mac_address": "fa16.3e07.71e5", + "mtu": 1500, + "oper_status": "up", + "phys_address": "fa16.3e07.71e5", + "port_channel": { + "port_channel_member": false + }, + "port_speed": "1000", + "switchport_enable": false, + "type": "CSR vNIC" + }, + "Loopback0": { + "accounting": { + "ip": { + "chars_in": 819733, + "chars_out": 819733, + "pkts_in": 16313, + "pkts_out": 16313 + } + }, + "bandwidth": 8000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "last_clear": "never", + "out_errors": 0, + "out_octets": 819733, + "out_pkts": 16313, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 300, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 5000, + "enabled": true, + "encapsulation": { + "encapsulation": "loopback" + }, + "ipv4": { + "10.1.1.1/32": { + "ip": "10.1.1.1", + "prefix_length": "32", + "secondary": false + } + }, + "mtu": 1514, + "oper_status": "up", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": false, + "type": "Loopback" + }, + "Loopback1": { + "accounting": { + "ip": { + "chars_in": 819733, + "chars_out": 819733, + "pkts_in": 16313, + "pkts_out": 16313 + } + }, + "bandwidth": 8000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "last_clear": "never", + "out_errors": 0, + "out_octets": 819733, + "out_pkts": 16313, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 300, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 5000, + "enabled": true, + "encapsulation": { + "encapsulation": "loopback" + }, + "ipv4": { + "10.11.11.11/32": { + "ip": "10.11.11.11", + "prefix_length": "32", + "secondary": false + } + }, + "mtu": 1514, + "oper_status": "up", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": false, + "type": "Loopback" + } + } +} \ No newline at end of file diff --git a/mocked_devices/0-setup/snapshot/interface_nxos_nx-osv-1_console.txt b/mocked_devices/0-setup/snapshot/interface_nxos_nx-osv-1_console.txt new file mode 100644 index 0000000..5ae5273 --- /dev/null +++ b/mocked_devices/0-setup/snapshot/interface_nxos_nx-osv-1_console.txt @@ -0,0 +1,7315 @@ ++++ nx-osv-1: executing command 'show interface' +++ +show interface +mgmt0 is up +admin state is up + Hardware: Ethernet, address: 5e00.0001.0000 (bia 5e00.0001.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 32/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + full-duplex, 1000 Mb/s + Auto-Negotiation is turned on + Auto-mdix is turned off + EtherType is 0x0000 + 1 minute input rate 296 bits/sec, 0 packets/sec + 1 minute output rate 24 bits/sec, 0 packets/sec + Rx + 660056 input packets 0 unicast packets 18847 multicast packets + 641209 broadcast packets 45200491 bytes + Tx + 28697 output packets 0 unicast packets 28697 multicast packets + 0 broadcast packets 6169847 bytes + +Ethernet2/1 is up +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia fa16.3edd.c013) + Internet Address is 10.0.1.2/24 + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + full-duplex, 1000 Mb/s + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped 2week(s) 5day(s) + Last clearing of "show interface" counters never + 1 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/2 is up +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia fa16.3e8a.5b7d) + Internet Address is 10.0.2.2/24 + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + full-duplex, 1000 Mb/s + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped 2week(s) 5day(s) + Last clearing of "show interface" counters never + 1 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/3 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/4 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/5 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/6 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/7 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/8 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/9 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/10 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/11 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/12 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/13 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/14 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/15 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/16 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/17 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/18 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/19 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/20 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/21 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/22 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/23 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/24 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/25 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/26 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/27 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/28 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/29 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/30 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/31 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/32 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/33 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/34 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/35 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/36 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/37 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/38 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/39 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/40 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/41 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/42 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/43 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/44 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/45 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/46 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/47 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/48 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/1 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.002f) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/2 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.002f) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/3 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/4 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/5 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/6 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/7 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/8 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/9 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/10 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/11 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/12 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/13 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/14 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/15 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/16 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/17 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/18 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/19 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/20 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/21 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/22 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/23 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/24 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/25 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/26 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/27 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/28 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/29 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/30 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/31 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/32 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/33 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/34 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/35 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/36 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/37 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/38 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/39 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/40 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/41 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/42 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/43 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/44 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/45 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/46 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/47 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/48 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/1 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.002f) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/2 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.002f) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/3 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/4 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/5 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/6 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/7 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/8 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/9 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/10 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/11 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/12 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/13 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/14 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/15 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/16 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/17 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/18 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/19 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/20 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/21 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/22 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/23 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/24 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/25 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/26 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/27 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/28 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/29 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/30 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/31 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/32 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/33 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/34 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/35 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/36 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/37 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/38 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/39 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/40 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/41 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/42 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/43 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/44 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/45 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/46 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/47 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/48 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +loopback0 is up +admin state is up + Hardware: Loopback + Internet Address is 10.2.2.2/32 + MTU 1500 bytes, BW 8000000 Kbit, DLY 5000 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation LOOPBACK, medium is broadcast + Port mode is routed + Auto-mdix is turned off + 66810 packets input 3349686 bytes + 0 multicast frames 0 compressed + 0 input errors 0 frame 0 overrun 0 fifo + 0 packets output 0 bytes 0 underruns + 0 output errors 0 collisions 0 fifo + 0 out_carrier_errors + +loopback1 is up +admin state is up + Hardware: Loopback + Internet Address is 10.22.22.22/32 + MTU 1500 bytes, BW 8000000 Kbit, DLY 5000 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation LOOPBACK, medium is broadcast + Port mode is routed + Auto-mdix is turned off + 0 packets input 0 bytes + 0 multicast frames 0 compressed + 0 input errors 0 frame 0 overrun 0 fifo + 0 packets output 0 bytes 0 underruns + 0 output errors 0 collisions 0 fifo + 0 out_carrier_errors + + nx-osv-1# ++++ nx-osv-1: executing command 'show vrf all interface' +++ +show vrf all interface +Interface VRF-Name VRF-ID Site-of-Origin +loopback0 default 1 -- +loopback1 default 1 -- +Null0 default 1 -- +Ethernet2/1 default 1 -- +Ethernet2/2 default 1 -- +Ethernet2/3 default 1 -- +Ethernet2/4 default 1 -- +Ethernet2/5 default 1 -- +Ethernet2/6 default 1 -- +Ethernet2/7 default 1 -- +Ethernet2/8 default 1 -- +Ethernet2/9 default 1 -- +Ethernet2/10 default 1 -- +Ethernet2/11 default 1 -- +Ethernet2/12 default 1 -- +Ethernet2/13 default 1 -- +Ethernet2/14 default 1 -- +Ethernet2/15 default 1 -- +Ethernet2/16 default 1 -- +Ethernet2/17 default 1 -- +Ethernet2/18 default 1 -- +Ethernet2/19 default 1 -- +Ethernet2/20 default 1 -- +Ethernet2/21 default 1 -- +Ethernet2/22 default 1 -- +Ethernet2/23 default 1 -- +Ethernet2/24 default 1 -- +Ethernet2/25 default 1 -- +Ethernet2/26 default 1 -- +Ethernet2/27 default 1 -- +Ethernet2/28 default 1 -- +Ethernet2/29 default 1 -- +Ethernet2/30 default 1 -- +Ethernet2/31 default 1 -- +Ethernet2/32 default 1 -- +Ethernet2/33 default 1 -- +Ethernet2/34 default 1 -- +Ethernet2/35 default 1 -- +Ethernet2/36 default 1 -- +Ethernet2/37 default 1 -- +Ethernet2/38 default 1 -- +Ethernet2/39 default 1 -- +Ethernet2/40 default 1 -- +Ethernet2/41 default 1 -- +Ethernet2/42 default 1 -- +Ethernet2/43 default 1 -- +Ethernet2/44 default 1 -- +Ethernet2/45 default 1 -- +Ethernet2/46 default 1 -- +Ethernet2/47 default 1 -- +Ethernet2/48 default 1 -- +Ethernet3/1 default 1 -- +Ethernet3/2 default 1 -- +Ethernet3/3 default 1 -- +Ethernet3/4 default 1 -- +Ethernet3/5 default 1 -- +Ethernet3/6 default 1 -- +Ethernet3/7 default 1 -- +Ethernet3/8 default 1 -- +Ethernet3/9 default 1 -- +Ethernet3/10 default 1 -- +Ethernet3/11 default 1 -- +Ethernet3/12 default 1 -- +Ethernet3/13 default 1 -- +Ethernet3/14 default 1 -- +Ethernet3/15 default 1 -- +Ethernet3/16 default 1 -- +Ethernet3/17 default 1 -- +Ethernet3/18 default 1 -- +Ethernet3/19 default 1 -- +Ethernet3/20 default 1 -- +Ethernet3/21 default 1 -- +Ethernet3/22 default 1 -- +Ethernet3/23 default 1 -- +Ethernet3/24 default 1 -- +Ethernet3/25 default 1 -- +Ethernet3/26 default 1 -- +Ethernet3/27 default 1 -- +Ethernet3/28 default 1 -- +Ethernet3/29 default 1 -- +Ethernet3/30 default 1 -- +Ethernet3/31 default 1 -- +Ethernet3/32 default 1 -- +Ethernet3/33 default 1 -- +Ethernet3/34 default 1 -- +Ethernet3/35 default 1 -- +Ethernet3/36 default 1 -- +Ethernet3/37 default 1 -- +Ethernet3/38 default 1 -- +Ethernet3/39 default 1 -- +Ethernet3/40 default 1 -- +Ethernet3/41 default 1 -- +Ethernet3/42 default 1 -- +Ethernet3/43 default 1 -- +Ethernet3/44 default 1 -- +Ethernet3/45 default 1 -- +Ethernet3/46 default 1 -- +Ethernet3/47 default 1 -- +Ethernet3/48 default 1 -- +mgmt0 management 2 -- + nx-osv-1# ++++ nx-osv-1: executing command 'show interface switchport' +++ +show interface switchport +Name: Ethernet4/1 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/2 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/3 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/4 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/5 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/6 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/7 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/8 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/9 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/10 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/11 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/12 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/13 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/14 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/15 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/16 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/17 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/18 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/19 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/20 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/21 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/22 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/23 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/24 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/25 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/26 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/27 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/28 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/29 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/30 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/31 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/32 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/33 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/34 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/35 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/36 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/37 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/38 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/39 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/40 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/41 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/42 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/43 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/44 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/45 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/46 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/47 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/48 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none + nx-osv-1# ++++ nx-osv-1: executing command 'show ip interface vrf all' +++ +show ip interface vrf all +IP Interface Status for VRF "default" +loopback0, Interface status: protocol-up/link-up/admin-up, iod: 132, + IP address: 10.2.2.2, IP subnet: 10.2.2.2/32 route-preference: 0, tag: 0 + IP broadcast address: 255.255.255.255 + IP multicast groups locally joined: none + IP MTU: 1500 bytes (using link MTU) + IP primary address route-preference: 0, tag: 0 + IP proxy ARP : disabled + IP Local Proxy ARP : disabled + IP multicast routing: disabled + IP icmp redirects: enabled + IP directed-broadcast: disabled + IP Forwarding: disabled + IP icmp unreachables (except port): disabled + IP icmp port-unreachable: enabled + IP unicast reverse path forwarding: none + IP load sharing: none + IP interface statistics last reset: never + IP interface software stats: (sent/received/forwarded/originated/consumed) + Unicast packets : 0/0/0/0/66811 + Unicast bytes : 0/0/0/0/3349745 + Multicast packets : 0/0/0/0/0 + Multicast bytes : 0/0/0/0/0 + Broadcast packets : 0/0/0/0/0 + Broadcast bytes : 0/0/0/0/0 + Labeled packets : 0/0/0/0/0 + Labeled bytes : 0/0/0/0/0 + WCCP Redirect outbound: disabled + WCCP Redirect inbound: disabled + WCCP Redirect exclude: disabled +loopback1, Interface status: protocol-up/link-up/admin-up, iod: 133, + IP address: 10.22.22.22, IP subnet: 10.22.22.22/32 route-preference: 0, tag: 0 + IP broadcast address: 255.255.255.255 + IP multicast groups locally joined: none + IP MTU: 1500 bytes (using link MTU) + IP primary address route-preference: 0, tag: 0 + IP proxy ARP : disabled + IP Local Proxy ARP : disabled + IP multicast routing: disabled + IP icmp redirects: enabled + IP directed-broadcast: disabled + IP Forwarding: disabled + IP icmp unreachables (except port): disabled + IP icmp port-unreachable: enabled + IP unicast reverse path forwarding: none + IP load sharing: none + IP interface statistics last reset: never + IP interface software stats: (sent/received/forwarded/originated/consumed) + Unicast packets : 0/0/0/0/0 + Unicast bytes : 0/0/0/0/0 + Multicast packets : 0/0/0/0/0 + Multicast bytes : 0/0/0/0/0 + Broadcast packets : 0/0/0/0/0 + Broadcast bytes : 0/0/0/0/0 + Labeled packets : 0/0/0/0/0 + Labeled bytes : 0/0/0/0/0 + WCCP Redirect outbound: disabled + WCCP Redirect inbound: disabled + WCCP Redirect exclude: disabled +Ethernet2/1, Interface status: protocol-up/link-up/admin-up, iod: 36, + IP address: 10.0.1.2, IP subnet: 10.0.1.0/24 route-preference: 0, tag: 0 + IP broadcast address: 255.255.255.255 + IP multicast groups locally joined: + 224.0.0.6 224.0.0.5 + IP MTU: 1500 bytes (using link MTU) + IP primary address route-preference: 0, tag: 0 + IP proxy ARP : disabled + IP Local Proxy ARP : disabled + IP multicast routing: disabled + IP icmp redirects: enabled + IP directed-broadcast: disabled + IP Forwarding: disabled + IP icmp unreachables (except port): disabled + IP icmp port-unreachable: enabled + IP unicast reverse path forwarding: none + IP load sharing: none + IP interface statistics last reset: never + IP interface software stats: (sent/received/forwarded/originated/consumed) + Unicast packets : 66709/45035/0/66709/45616 + Unicast bytes : 4436646/2403329/0/4436646/2456689 + Multicast packets : 198546/182532/0/198546/365062 + Multicast bytes : 17164132/18254004/0/17164132/18253908 + Broadcast packets : 0/16314/0/0/16314 + Broadcast bytes : 0/819786/0/0/819786 + Labeled packets : 0/0/0/0/0 + Labeled bytes : 0/0/0/0/0 + WCCP Redirect outbound: disabled + WCCP Redirect inbound: disabled + WCCP Redirect exclude: disabled +Ethernet2/2, Interface status: protocol-up/link-up/admin-up, iod: 37, + IP address: 10.0.2.2, IP subnet: 10.0.2.0/24 route-preference: 0, tag: 0 + IP broadcast address: 255.255.255.255 + IP multicast groups locally joined: + 224.0.0.6 224.0.0.5 + IP MTU: 1500 bytes (using link MTU) + IP primary address route-preference: 0, tag: 0 + IP proxy ARP : disabled + IP Local Proxy ARP : disabled + IP multicast routing: disabled + IP icmp redirects: enabled + IP directed-broadcast: disabled + IP Forwarding: disabled + IP icmp unreachables (except port): disabled + IP icmp port-unreachable: enabled + IP unicast reverse path forwarding: none + IP load sharing: none + IP interface statistics last reset: never + IP interface software stats: (sent/received/forwarded/originated/consumed) + Unicast packets : 36/23043/0/36/23729 + Unicast bytes : 3566/1261358/0/3566/1323262 + Multicast packets : 198473/182407/0/198473/364812 + Multicast bytes : 17158002/18243376/0/17158002/18243280 + Broadcast packets : 0/16314/0/0/16314 + Broadcast bytes : 0/819786/0/0/819786 + Labeled packets : 0/0/0/0/0 + Labeled bytes : 0/0/0/0/0 + WCCP Redirect outbound: disabled + WCCP Redirect inbound: disabled + WCCP Redirect exclude: disabled + +IP Interface Status for VRF "management" + + nx-osv-1# ++++ nx-osv-1: executing command 'show ipv6 interface vrf all' +++ +show ipv6 interface vrf all +IPv6 Interface Status for VRF "default" + +IPv6 Interface Status for VRF "management" + + nx-osv-1# ++++ nx-osv-1: executing command 'show routing ipv6 vrf all' +++ +show routing ipv6 vrf all +IPv6 Routing Table for VRF "default" +'*' denotes best ucast next-hop +'**' denotes best mcast next-hop +'[x/y]' denotes [preference/metric] + + +IPv6 Routing Table for VRF "management" +'*' denotes best ucast next-hop +'**' denotes best mcast next-hop +'[x/y]' denotes [preference/metric] + + + nx-osv-1# ++++ nx-osv-1: executing command 'show routing vrf all' +++ +show routing vrf all +IP Route Table for VRF "default" +'*' denotes best ucast next-hop +'**' denotes best mcast next-hop +'[x/y]' denotes [preference/metric] +'%' in via output denotes VRF + +10.0.1.0/24, ubest/mbest: 1/0, attached + *via 10.0.1.2, Eth2/1, [0/0], 2w5d, direct +10.0.1.2/32, ubest/mbest: 1/0, attached + *via 10.0.1.2, Eth2/1, [0/0], 2w5d, local +10.0.2.0/24, ubest/mbest: 1/0, attached + *via 10.0.2.2, Eth2/2, [0/0], 2w5d, direct +10.0.2.2/32, ubest/mbest: 1/0, attached + *via 10.0.2.2, Eth2/2, [0/0], 2w5d, local +10.1.1.1/32, ubest/mbest: 2/0 + *via 10.0.1.1, Eth2/1, [110/41], 5d05h, ospf-1, intra + *via 10.0.2.1, Eth2/2, [110/41], 5d05h, ospf-1, intra +10.2.2.2/32, ubest/mbest: 2/0, attached + *via 10.2.2.2, Lo0, [0/0], 2w5d, local + *via 10.2.2.2, Lo0, [0/0], 2w5d, direct +10.11.11.11/32, ubest/mbest: 1/0 + *via 10.1.1.1, [200/0], 01:33:50, bgp-65000, internal, tag 65000, +10.22.22.22/32, ubest/mbest: 2/0, attached + *via 10.22.22.22, Lo1, [0/0], 2w5d, local + *via 10.22.22.22, Lo1, [0/0], 2w5d, direct + nx-osv-1# ++====================================================================================================================================================+ +| Commands for learning feature 'Interface' | ++====================================================================================================================================================+ +| - Parsed commands | +|----------------------------------------------------------------------------------------------------------------------------------------------------| +| cmd: | +| cmd: | +| cmd: | +| cmd: | +| cmd: | +|====================================================================================================================================================| +| - Commands with empty output | +|----------------------------------------------------------------------------------------------------------------------------------------------------| +| cmd: | +| cmd: | +|====================================================================================================================================================| diff --git a/mocked_devices/0-setup/snapshot/interface_nxos_nx-osv-1_ops.txt b/mocked_devices/0-setup/snapshot/interface_nxos_nx-osv-1_ops.txt new file mode 100644 index 0000000..db30620 --- /dev/null +++ b/mocked_devices/0-setup/snapshot/interface_nxos_nx-osv-1_ops.txt @@ -0,0 +1,7490 @@ +{ + "attributes": null, + "commands": null, + "connections": null, + "context_manager": {}, + "info": { + "Ethernet2/1": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "duplex_mode": "full", + "enabled": true, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "ipv4": { + "10.0.1.2/24": { + "ip": "10.0.1.2", + "prefix_length": "24" + } + }, + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "up", + "phys_address": "fa16.3edd.c013", + "port_channel": { + "port_channel_member": false + }, + "port_speed": "1000", + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/10": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/11": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/12": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/13": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/14": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/15": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/16": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/17": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/18": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/19": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/2": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "duplex_mode": "full", + "enabled": true, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "ipv4": { + "10.0.2.2/24": { + "ip": "10.0.2.2", + "prefix_length": "24" + } + }, + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "up", + "phys_address": "fa16.3e8a.5b7d", + "port_channel": { + "port_channel_member": false + }, + "port_speed": "1000", + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/20": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/21": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/22": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/23": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/24": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/25": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/26": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/27": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/28": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/29": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/3": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/30": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/31": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/32": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/33": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/34": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/35": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/36": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/37": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/38": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/39": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/4": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/40": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/41": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/42": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/43": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/44": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/45": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/46": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/47": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/48": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/5": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/6": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/7": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/8": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/9": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/1": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.002f", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/10": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/11": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/12": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/13": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/14": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/15": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/16": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/17": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/18": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/19": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/2": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.002f", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/20": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/21": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/22": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/23": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/24": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/25": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/26": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/27": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/28": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/29": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/3": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/30": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/31": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/32": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/33": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/34": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/35": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/36": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/37": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/38": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/39": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/4": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/40": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/41": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/42": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/43": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/44": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/45": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/46": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/47": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/48": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/5": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/6": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/7": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/8": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/9": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet4/1": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.002f", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/10": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/11": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/12": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/13": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/14": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/15": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/16": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/17": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/18": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/19": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/2": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.002f", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/20": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/21": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/22": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/23": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/24": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/25": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/26": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/27": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/28": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/29": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/3": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/30": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/31": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/32": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/33": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/34": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/35": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/36": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/37": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/38": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/39": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/4": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/40": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/41": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/42": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/43": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/44": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/45": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/46": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/47": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/48": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/5": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/6": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/7": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/8": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/9": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Null0": { + "vrf": "default" + }, + "loopback0": { + "bandwidth": 8000000, + "delay": 5000, + "enabled": true, + "encapsulation": { + "encapsulation": "loopback" + }, + "ipv4": { + "10.2.2.2/32": { + "ip": "10.2.2.2", + "prefix_length": "32" + } + }, + "medium": "broadcast", + "mtu": 1500, + "oper_status": "up", + "port_channel": { + "port_channel_member": false + }, + "vrf": "default" + }, + "loopback1": { + "bandwidth": 8000000, + "delay": 5000, + "enabled": true, + "encapsulation": { + "encapsulation": "loopback" + }, + "ipv4": { + "10.22.22.22/32": { + "ip": "10.22.22.22", + "prefix_length": "32" + } + }, + "medium": "broadcast", + "mtu": 1500, + "oper_status": "up", + "port_channel": { + "port_channel_member": false + }, + "vrf": "default" + }, + "mgmt0": { + "auto_negotiate": true, + "bandwidth": 1000000, + "counters": { + "rate": { + "in_rate": 296, + "in_rate_pkts": 0, + "load_interval": 1, + "out_rate": 24, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "duplex_mode": "full", + "enabled": true, + "encapsulation": { + "encapsulation": "arpa" + }, + "mac_address": "5e00.0001.0000", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "up", + "phys_address": "5e00.0001.0000", + "port_channel": { + "port_channel_member": false + }, + "port_speed": "1000", + "type": "Ethernet", + "vrf": "management" + } + }, + "ret_dict": {} +} \ No newline at end of file diff --git a/mocked_devices/2-manual/initial/playback/iosxe/csr1000v-1.yaml b/mocked_devices/2-manual/initial/playback/iosxe/csr1000v-1.yaml new file mode 100644 index 0000000..a836971 --- /dev/null +++ b/mocked_devices/2-manual/initial/playback/iosxe/csr1000v-1.yaml @@ -0,0 +1,373 @@ +configure: + commands: + end: + new_state: exec + line console 0: + new_state: configure_line + no logging console: '' + prompt: switch(config)# +configure_line: + commands: + end: + new_state: execute + exec-timeout 0: '' + prompt: switch(config-line)# +connect: + commands: + ? '' + : new_state: execute + preface: 'Trying mock_device ... + + Connected to mock_device. + + Escape character is ''^]''.' + prompt: '' +execute: + commands: + config term: + new_state: configure + show bgp all: "For address family: IPv4 Unicast\r\n\r\nBGP table version is 165,\ + \ local router ID is 10.1.1.1\r\nStatus codes: s suppressed, d damped, h history,\ + \ * valid, > best, i - internal, \r\n r RIB-failure, S Stale, m\ + \ multipath, b backup-path, f RT-Filter, \r\n x best-external,\ + \ a additional-path, c RIB-compressed, \r\n t secondary path, L\ + \ long-lived-stale,\r\nOrigin codes: i - IGP, e - EGP, ? - incomplete\r\nRPKI\ + \ validation codes: V valid, I invalid, N Not found\r\n\r\n Network \ + \ Next Hop Metric LocPrf Weight Path\r\n *> 10.11.11.11/32\ + \ 0.0.0.0 0 32768 i\r\n *>i 10.22.22.22/32 10.2.2.2\ + \ 100 0 i\r\n\r\nFor address family: IPv6 Unicast\r\ + \n\r\n\r\nFor address family: IPv4 Multicast\r\n\r\n\r\nFor address family:\ + \ L2VPN E-VPN\r\n\r\n\r\nFor address family: MVPNv4 Unicast\r\n\r\n\r\nFor address\ + \ family: MVPNv6 Unicast" + show bgp all cluster-ids: "Global cluster-id: 10.1.1.1 (configured: 0.0.0.0)\r\ + \nBGP client-to-client reflection: Configured Used\r\n all (inter-cluster\ + \ and intra-cluster): ENABLED\r\n intra-cluster: ENABLED\ + \ ENABLED\r\n\r\nList of cluster-ids:\r\nCluster-id #-neighbors C2C-rfl-CFG\ + \ C2C-rfl-USE" + show bgp all detail: "For address family: IPv4 Unicast\r\n\r\nBGP routing table\ + \ entry for 10.11.11.11/32, version 2\r\n Paths: (1 available, best #1, table\ + \ default)\r\n Advertised to update-groups:\r\n 82 \r\n Refresh\ + \ Epoch 1\r\n Local\r\n 0.0.0.0 from 0.0.0.0 (10.1.1.1)\r\n Origin\ + \ IGP, metric 0, localpref 100, weight 32768, valid, sourced, local, best\r\n\ + \ rx pathid: 0, tx pathid: 0x0\r\nBGP routing table entry for 10.22.22.22/32,\ + \ version 165\r\n Paths: (1 available, best #1, table default)\r\n Not advertised\ + \ to any peer\r\n Refresh Epoch 1\r\n Local\r\n 10.2.2.2 (metric 2) from\ + \ 10.2.2.2 (10.2.2.2)\r\n Origin IGP, localpref 100, valid, internal, best\r\ + \n rx pathid: 0, tx pathid: 0x0\r\n\r\nFor address family: IPv6 Unicast\r\ + \n\r\n\r\nFor address family: IPv4 Multicast\r\n\r\n\r\nFor address family:\ + \ L2VPN E-VPN\r\n\r\n\r\nFor address family: MVPNv4 Unicast\r\n\r\n\r\nFor address\ + \ family: MVPNv6 Unicast" + show bgp all neighbors: "For address family: IPv4 Unicast\r\nBGP neighbor is 10.2.2.2,\ + \ remote AS 65000, internal link\r\n BGP version 4, remote router ID 10.2.2.2\r\ + \n BGP state = Established, up for 01:33:38\r\n Last read 00:00:36, last write\ + \ 00:00:48, hold time is 180, keepalive interval is 60 seconds\r\n Neighbor\ + \ sessions:\r\n 1 active, is not multisession capable (disabled)\r\n Neighbor\ + \ capabilities:\r\n Route refresh: advertised and received(new)\r\n Four-octets\ + \ ASN Capability: advertised and received\r\n Address family IPv4 Unicast:\ + \ advertised and received\r\n Graceful Restart Capability: received\r\n \ + \ Remote Restart timer is 120 seconds\r\n Address families advertised\ + \ by peer:\r\n IPv4 Unicast (was not preserved\r\n Enhanced Refresh\ + \ Capability: advertised\r\n Multisession Capability: \r\n Stateful switchover\ + \ support enabled: NO for session 1\r\n Message statistics:\r\n InQ depth\ + \ is 0\r\n OutQ depth is 0\r\n \r\n Sent \ + \ Rcvd\r\n Opens: 1 1\r\n Notifications: \ + \ 0 0\r\n Updates: 2 2\r\n Keepalives:\ + \ 104 95\r\n Route Refresh: 0 0\r\n \ + \ Total: 107 98\r\n Do log neighbor state changes\ + \ (via global configuration)\r\n Default minimum time between advertisement\ + \ runs is 0 seconds\r\n\r\n Address tracking is enabled, the RIB does have\ + \ a route to 10.2.2.2\r\n Route to peer address reachability Up: 2; Down: 0\r\ + \n Last notification 5d05h\r\n Connections established 82; dropped 81\r\n\ + \ Last reset 01:33:46, due to BGP Notification received of session 1, Administrative\ + \ Shutdown\r\n Interface associated: (none) (peering address NOT in same link)\r\ + \n Transport(tcp) path-mtu-discovery is enabled\r\n Graceful-Restart is disabled\r\ + \n SSO is disabled\r\nConnection state is ESTAB, I/O status: 1, unread input\ + \ bytes: 0 \r\nConnection is ECN Disabled, Mininum incoming TTL 0,\ + \ Outgoing TTL 255\r\nLocal host: 10.1.1.1, Local port: 42266\r\nForeign host:\ + \ 10.2.2.2, Foreign port: 179\r\nConnection tableid (VRF): 0\r\nMaximum output\ + \ segment queue size: 50\r\n\r\nEnqueued packets for retransmit: 0, input: 0\ + \ mis-ordered: 0 (0 bytes)\r\n\r\nEvent Timers (current time is 0x1B12CD63):\r\ + \nTimer Starts Wakeups Next\r\nRetrans 105\ + \ 0 0x0\r\nTimeWait 0 0 \ + \ 0x0\r\nAckHold 97 90 0x0\r\nSendWnd \ + \ 0 0 0x0\r\nKeepAlive 0 0 \ + \ 0x0\r\nGiveUp 0 0 0x0\r\nPmtuAger\ + \ 1 1 0x0\r\nDeadWait 0 \ + \ 0 0x0\r\nLinger 0 0 0x0\r\n\ + ProcessQ 0 0 0x0\r\n\r\niss: 2680192098 snduna:\ + \ 2680194211 sndnxt: 2680194211\r\nirs: 427990769 rcvnxt: 427992717\r\n\r\ + \nsndwnd: 16616 scale: 0 maxrcvwnd: 16384\r\nrcvwnd: 16080 scale:\ + \ 0 delrcvwnd: 304\r\n\r\nSRTT: 1000 ms, RTTO: 1003 ms, RTV: 3 ms,\ + \ KRTT: 0 ms\r\nminRTT: 2 ms, maxRTT: 1000 ms, ACK hold: 200 ms\r\nuptime: 5618440\ + \ ms, Sent idletime: 35966 ms, Receive idletime: 36166 ms \r\nStatus Flags:\ + \ active open\r\nOption Flags: nagle, path mtu capable\r\nIP Precedence value\ + \ : 6\r\n\r\nDatagrams (max data segment is 536 bytes):\r\nRcvd: 200 (out of\ + \ order: 0), with data: 96, total data bytes: 1947\r\nSent: 201 (retransmit:\ + \ 0, fastretransmit: 0, partialack: 0, Second Congestion: 0), with data: 106,\ + \ total data bytes: 2112\r\n\r\n Packets received in fast path: 0, fast processed:\ + \ 0, slow path: 0\r\n fast lock acquisition failures: 0, slow path: 0\r\nTCP\ + \ Semaphore 0x7F1ACED9D348 FREE \r\n\r\n\r\nFor address family: IPv6 Unicast\r\ + \n\r\nFor address family: IPv4 Multicast\r\n\r\nFor address family: L2VPN E-VPN\r\ + \n\r\nFor address family: MVPNv4 Unicast\r\n\r\nFor address family: MVPNv6 Unicast" + show bgp all neighbors 10.2.2.2 advertised-routes: "For address family: IPv4 Unicast\r\ + \nBGP table version is 165, local router ID is 10.1.1.1\r\nStatus codes: s suppressed,\ + \ d damped, h history, * valid, > best, i - internal, \r\n r RIB-failure,\ + \ S Stale, m multipath, b backup-path, f RT-Filter, \r\n x best-external,\ + \ a additional-path, c RIB-compressed, \r\n t secondary path, L\ + \ long-lived-stale,\r\nOrigin codes: i - IGP, e - EGP, ? - incomplete\r\nRPKI\ + \ validation codes: V valid, I invalid, N Not found\r\n\r\n Network \ + \ Next Hop Metric LocPrf Weight Path\r\n *> 10.11.11.11/32\ + \ 0.0.0.0 0 32768 i\r\n\r\nTotal number of prefixes\ + \ 1" + show bgp all neighbors 10.2.2.2 policy: ' Neighbor: 10.2.2.2, Address-Family: + IPv4 Unicast' + show bgp all neighbors 10.2.2.2 received-routes: "For address family: IPv4 Unicast\r\ + \n% Inbound soft reconfiguration not enabled on 10.2.2.2" + show bgp all neighbors 10.2.2.2 routes: "For address family: IPv4 Unicast\r\n\ + BGP table version is 165, local router ID is 10.1.1.1\r\nStatus codes: s suppressed,\ + \ d damped, h history, * valid, > best, i - internal, \r\n r RIB-failure,\ + \ S Stale, m multipath, b backup-path, f RT-Filter, \r\n x best-external,\ + \ a additional-path, c RIB-compressed, \r\n t secondary path, L\ + \ long-lived-stale,\r\nOrigin codes: i - IGP, e - EGP, ? - incomplete\r\nRPKI\ + \ validation codes: V valid, I invalid, N Not found\r\n\r\n Network \ + \ Next Hop Metric LocPrf Weight Path\r\n *>i 10.22.22.22/32\ + \ 10.2.2.2 100 0 i\r\n\r\nTotal number of prefixes\ + \ 1" + show bgp all neighbors | i BGP neighbor: BGP neighbor is 10.2.2.2, remote AS + 65000, internal link + show bgp summary: "% Command accepted but obsolete, unreleased or unsupported;\ + \ see documentation.\r\nBGP router identifier 10.1.1.1, local AS number 65000\r\ + \nBGP table version is 165, main routing table version 165\r\n2 network entries\ + \ using 496 bytes of memory\r\n2 path entries using 272 bytes of memory\r\n\ + 2/2 BGP path/bestpath attribute entries using 560 bytes of memory\r\n0 BGP route-map\ + \ cache entries using 0 bytes of memory\r\n0 BGP filter-list cache entries using\ + \ 0 bytes of memory\r\nBGP using 1328 total bytes of memory\r\nBGP activity\ + \ 36/34 prefixes, 84/82 paths, scan interval 60 secs\r\n\r\nNeighbor \ + \ V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd\r\n\ + 10.2.2.2 4 65000 98 107 165 0 0 01:33:37 \ + \ 1" + show interfaces: "GigabitEthernet1 is up, line protocol is up \r\n Hardware is\ + \ CSR vNIC, address is 5e00.0000.0000 (bia 5e00.0000.0000)\r\n Internet address\ + \ is 10.255.8.122/16\r\n MTU 1500 bytes, BW 1000000 Kbit/sec, DLY 10 usec,\ + \ \r\n reliability 255/255, txload 1/255, rxload 1/255\r\n Encapsulation\ + \ ARPA, loopback not set\r\n Keepalive set (10 sec)\r\n Full Duplex, 1000Mbps,\ + \ link type is auto, media type is Virtual\r\n output flow-control is unsupported,\ + \ input flow-control is unsupported\r\n ARP type: ARPA, ARP Timeout 04:00:00\r\ + \n Last input 00:00:08, output 00:00:05, output hang never\r\n Last clearing\ + \ of \"show interface\" counters never\r\n Input queue: 0/375/0/0 (size/max/drops/flushes);\ + \ Total output drops: 0\r\n Queueing strategy: fifo\r\n Output queue: 0/40\ + \ (size/max)\r\n 5 minute input rate 0 bits/sec, 0 packets/sec\r\n 5 minute\ + \ output rate 0 bits/sec, 0 packets/sec\r\n 225477 packets input, 16038770\ + \ bytes, 0 no buffer\r\n Received 0 broadcasts (0 IP multicasts)\r\n \ + \ 0 runts, 0 giants, 0 throttles \r\n 0 input errors, 0 CRC, 0 frame, 0\ + \ overrun, 0 ignored\r\n 0 watchdog, 0 multicast, 0 pause input\r\n \ + \ 82636 packets output, 7444946 bytes, 0 underruns\r\n 0 output errors,\ + \ 0 collisions, 0 interface resets\r\n 15117 unknown protocol drops\r\n\ + \ 0 babbles, 0 late collision, 0 deferred\r\n 0 lost carrier, 0 no carrier,\ + \ 0 pause output\r\n 0 output buffer failures, 0 output buffers swapped\ + \ out\r\nGigabitEthernet2 is up, line protocol is up \r\n Hardware is CSR vNIC,\ + \ address is fa16.3ebe.e48e (bia fa16.3ebe.e48e)\r\n Internet address is 10.0.1.1/24\r\ + \n MTU 1500 bytes, BW 1000000 Kbit/sec, DLY 10 usec, \r\n reliability 255/255,\ + \ txload 1/255, rxload 1/255\r\n Encapsulation ARPA, loopback not set\r\n \ + \ Keepalive set (10 sec)\r\n Full Duplex, 1000Mbps, link type is auto, media\ + \ type is Virtual\r\n output flow-control is unsupported, input flow-control\ + \ is unsupported\r\n ARP type: ARPA, ARP Timeout 04:00:00\r\n Last input 00:00:06,\ + \ output 00:00:04, output hang never\r\n Last clearing of \"show interface\"\ + \ counters never\r\n Input queue: 0/375/0/0 (size/max/drops/flushes); Total\ + \ output drops: 0\r\n Queueing strategy: fifo\r\n Output queue: 0/40 (size/max)\r\ + \n 5 minute input rate 0 bits/sec, 0 packets/sec\r\n 5 minute output rate\ + \ 0 bits/sec, 0 packets/sec\r\n 82330 packets input, 7330625 bytes, 0 no\ + \ buffer\r\n Received 0 broadcasts (0 IP multicasts)\r\n 0 runts, 0\ + \ giants, 0 throttles \r\n 0 input errors, 0 CRC, 0 frame, 0 overrun, 0\ + \ ignored\r\n 0 watchdog, 0 multicast, 0 pause input\r\n 67510 packets\ + \ output, 6724966 bytes, 0 underruns\r\n 0 output errors, 0 collisions,\ + \ 0 interface resets\r\n 7559 unknown protocol drops\r\n 0 babbles,\ + \ 0 late collision, 0 deferred\r\n 0 lost carrier, 0 no carrier, 0 pause\ + \ output\r\n 0 output buffer failures, 0 output buffers swapped out\r\n\ + GigabitEthernet3 is up, line protocol is up \r\n Hardware is CSR vNIC, address\ + \ is fa16.3e07.71e5 (bia fa16.3e07.71e5)\r\n Internet address is 10.0.2.1/24\r\ + \n MTU 1500 bytes, BW 1000000 Kbit/sec, DLY 10 usec, \r\n reliability 255/255,\ + \ txload 1/255, rxload 1/255\r\n Encapsulation ARPA, loopback not set\r\n \ + \ Keepalive set (10 sec)\r\n Full Duplex, 1000Mbps, link type is auto, media\ + \ type is Virtual\r\n output flow-control is unsupported, input flow-control\ + \ is unsupported\r\n ARP type: ARPA, ARP Timeout 04:00:00\r\n Last input 00:00:02,\ + \ output 00:00:00, output hang never\r\n Last clearing of \"show interface\"\ + \ counters never\r\n Input queue: 0/375/0/0 (size/max/drops/flushes); Total\ + \ output drops: 0\r\n Queueing strategy: fifo\r\n Output queue: 0/40 (size/max)\r\ + \n 5 minute input rate 0 bits/sec, 0 packets/sec\r\n 5 minute output rate\ + \ 0 bits/sec, 0 packets/sec\r\n 60137 packets input, 5971972 bytes, 0 no\ + \ buffer\r\n Received 0 broadcasts (0 IP multicasts)\r\n 0 runts, 0\ + \ giants, 0 throttles \r\n 0 input errors, 0 CRC, 0 frame, 0 overrun, 0\ + \ ignored\r\n 0 watchdog, 0 multicast, 0 pause input\r\n 89867 packets\ + \ output, 8164625 bytes, 0 underruns\r\n 0 output errors, 0 collisions,\ + \ 0 interface resets\r\n 7559 unknown protocol drops\r\n 0 babbles,\ + \ 0 late collision, 0 deferred\r\n 0 lost carrier, 0 no carrier, 0 pause\ + \ output\r\n 0 output buffer failures, 0 output buffers swapped out\r\n\ + Loopback0 is up, line protocol is up \r\n Hardware is Loopback\r\n Internet\ + \ address is 10.1.1.1/32\r\n MTU 1514 bytes, BW 8000000 Kbit/sec, DLY 5000\ + \ usec, \r\n reliability 255/255, txload 1/255, rxload 1/255\r\n Encapsulation\ + \ LOOPBACK, loopback not set\r\n Keepalive set (10 sec)\r\n Last input 00:00:05,\ + \ output never, output hang never\r\n Last clearing of \"show interface\" counters\ + \ never\r\n Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops:\ + \ 0\r\n Queueing strategy: fifo\r\n Output queue: 0/0 (size/max)\r\n 5 minute\ + \ input rate 0 bits/sec, 0 packets/sec\r\n 5 minute output rate 0 bits/sec,\ + \ 0 packets/sec\r\n 0 packets input, 0 bytes, 0 no buffer\r\n Received\ + \ 0 broadcasts (0 IP multicasts)\r\n 0 runts, 0 giants, 0 throttles \r\n\ + \ 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored, 0 abort\r\n \ + \ 16313 packets output, 819733 bytes, 0 underruns\r\n 0 output errors, 0\ + \ collisions, 0 interface resets\r\n 0 unknown protocol drops\r\n 0\ + \ output buffer failures, 0 output buffers swapped out\r\nLoopback1 is up, line\ + \ protocol is up \r\n Hardware is Loopback\r\n Internet address is 10.11.11.11/32\r\ + \n MTU 1514 bytes, BW 8000000 Kbit/sec, DLY 5000 usec, \r\n reliability\ + \ 255/255, txload 1/255, rxload 1/255\r\n Encapsulation LOOPBACK, loopback\ + \ not set\r\n Keepalive set (10 sec)\r\n Last input 00:00:05, output never,\ + \ output hang never\r\n Last clearing of \"show interface\" counters never\r\ + \n Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0\r\n\ + \ Queueing strategy: fifo\r\n Output queue: 0/0 (size/max)\r\n 5 minute input\ + \ rate 0 bits/sec, 0 packets/sec\r\n 5 minute output rate 0 bits/sec, 0 packets/sec\r\ + \n 0 packets input, 0 bytes, 0 no buffer\r\n Received 0 broadcasts (0\ + \ IP multicasts)\r\n 0 runts, 0 giants, 0 throttles \r\n 0 input errors,\ + \ 0 CRC, 0 frame, 0 overrun, 0 ignored, 0 abort\r\n 16313 packets output,\ + \ 819733 bytes, 0 underruns\r\n 0 output errors, 0 collisions, 0 interface\ + \ resets\r\n 0 unknown protocol drops\r\n 0 output buffer failures,\ + \ 0 output buffers swapped out" + show interfaces accounting: "GigabitEthernet1 \r\n Protocol \ + \ Pkts In Chars In Pkts Out Chars Out\r\n Other 160207\ + \ 11887020 2788 167280\r\n IP 96084 \ + \ 8329803 79849 7277733\r\n ARP 129973 5507646\ + \ 2788 167280\r\n IPv6 22 1836 \ + \ 0 0\r\nGigabitEthernet2 \r\n Protocol Pkts\ + \ In Chars In Pkts Out Chars Out\r\n Other 15149\ + \ 3282466 2749 164940\r\n IP 74673 \ + \ 5681985 64763 6560207\r\n ARP 31 \ + \ 1860 2749 164940\r\nGigabitEthernet3 \r\n Protocol\ + \ Pkts In Chars In Pkts Out Chars Out\r\n Other \ + \ 15148 3282406 2748 164880\r\n IP \ + \ 52481 4323392 87120 7999812\r\n ARP \ + \ 30 1800 2748 164880\r\nLoopback0 \r\n Protocol\ + \ Pkts In Chars In Pkts Out Chars Out\r\n IP \ + \ 16313 819733 16313 819733\r\nLoopback1 \r\n \ + \ Protocol Pkts In Chars In Pkts Out Chars Out\r\n \ + \ IP 16313 819733 16313 819733" + show ip bgp all dampening parameters: "For address family: IPv4 Unicast\r\n\r\n\ + % dampening not enabled for base\r\n\r\nFor address family: IPv6 Unicast\r\n\ + \r\n% dampening not enabled for base\r\n\r\nFor address family: IPv4 Multicast\r\ + \n\r\n% dampening not enabled for base\r\n\r\nFor address family: L2VPN E-VPN\r\ + \n\r\n% dampening not enabled for base\r\n\r\nFor address family: MVPNv4 Unicast\r\ + \n\r\n% dampening not enabled for base\r\n\r\nFor address family: MVPNv6 Unicast\r\ + \n\r\n% dampening not enabled for base" + 'show ip bgp template peer-policy ': No templates configured + 'show ip bgp template peer-session ': No templates configured + show ip interface: "GigabitEthernet1 is up, line protocol is up\r\n Internet\ + \ address is 10.255.8.122/16\r\n Broadcast address is 255.255.255.255\r\n \ + \ Address determined by DHCP\r\n MTU is 1500 bytes\r\n Helper address is not\ + \ set\r\n Directed broadcast forwarding is disabled\r\n Outgoing Common access\ + \ list is not set \r\n Outgoing access list is not set\r\n Inbound Common\ + \ access list is not set \r\n Inbound access list is not set\r\n Proxy ARP\ + \ is enabled\r\n Local Proxy ARP is disabled\r\n Security level is default\r\ + \n Split horizon is enabled\r\n ICMP redirects are always sent\r\n ICMP unreachables\ + \ are always sent\r\n ICMP mask replies are never sent\r\n IP fast switching\ + \ is enabled\r\n IP Flow switching is disabled\r\n IP CEF switching is enabled\r\ + \n IP CEF switching turbo vector\r\n IP Null turbo vector\r\n Associated\ + \ unicast routing topologies:\r\n Topology \"base\", operation state\ + \ is UP\r\n IP multicast fast switching is enabled\r\n IP multicast distributed\ + \ fast switching is disabled\r\n IP route-cache flags are Fast, CEF\r\n Router\ + \ Discovery is disabled\r\n IP output packet accounting is disabled\r\n IP\ + \ access violation accounting is disabled\r\n TCP/IP header compression is\ + \ disabled\r\n RTP/IP header compression is disabled\r\n Probe proxy name\ + \ replies are disabled\r\n Policy routing is disabled\r\n Network address\ + \ translation is disabled\r\n BGP Policy Mapping is disabled\r\n Input features:\ + \ MCI Check\r\n IPv4 WCCP Redirect outbound is disabled\r\n IPv4 WCCP Redirect\ + \ inbound is disabled\r\n IPv4 WCCP Redirect exclude is disabled\r\nGigabitEthernet2\ + \ is up, line protocol is up\r\n Internet address is 10.0.1.1/24\r\n Broadcast\ + \ address is 255.255.255.255\r\n Address determined by non-volatile memory\r\ + \n MTU is 1500 bytes\r\n Helper address is not set\r\n Directed broadcast\ + \ forwarding is disabled\r\n Multicast reserved groups joined: 224.0.0.5 224.0.0.6\r\ + \n Outgoing Common access list is not set \r\n Outgoing access list is not\ + \ set\r\n Inbound Common access list is not set \r\n Inbound access list\ + \ is not set\r\n Proxy ARP is enabled\r\n Local Proxy ARP is disabled\r\n\ + \ Security level is default\r\n Split horizon is enabled\r\n ICMP redirects\ + \ are always sent\r\n ICMP unreachables are always sent\r\n ICMP mask replies\ + \ are never sent\r\n IP fast switching is enabled\r\n IP Flow switching is\ + \ disabled\r\n IP CEF switching is enabled\r\n IP CEF switching turbo vector\r\ + \n IP Null turbo vector\r\n Associated unicast routing topologies:\r\n \ + \ Topology \"base\", operation state is UP\r\n IP multicast fast switching\ + \ is enabled\r\n IP multicast distributed fast switching is disabled\r\n IP\ + \ route-cache flags are Fast, CEF\r\n Router Discovery is disabled\r\n IP\ + \ output packet accounting is disabled\r\n IP access violation accounting is\ + \ disabled\r\n TCP/IP header compression is disabled\r\n RTP/IP header compression\ + \ is disabled\r\n Probe proxy name replies are disabled\r\n Policy routing\ + \ is disabled\r\n Network address translation is disabled\r\n BGP Policy Mapping\ + \ is disabled\r\n Input features: MCI Check\r\n IPv4 WCCP Redirect outbound\ + \ is disabled\r\n IPv4 WCCP Redirect inbound is disabled\r\n IPv4 WCCP Redirect\ + \ exclude is disabled\r\nGigabitEthernet3 is up, line protocol is up\r\n Internet\ + \ address is 10.0.2.1/24\r\n Broadcast address is 255.255.255.255\r\n Address\ + \ determined by non-volatile memory\r\n MTU is 1500 bytes\r\n Helper address\ + \ is not set\r\n Directed broadcast forwarding is disabled\r\n Multicast reserved\ + \ groups joined: 224.0.0.5 224.0.0.6\r\n Outgoing Common access list is not\ + \ set \r\n Outgoing access list is not set\r\n Inbound Common access list\ + \ is not set \r\n Inbound access list is not set\r\n Proxy ARP is enabled\r\ + \n Local Proxy ARP is disabled\r\n Security level is default\r\n Split horizon\ + \ is enabled\r\n ICMP redirects are always sent\r\n ICMP unreachables are\ + \ always sent\r\n ICMP mask replies are never sent\r\n IP fast switching is\ + \ enabled\r\n IP Flow switching is disabled\r\n IP CEF switching is enabled\r\ + \n IP CEF switching turbo vector\r\n IP Null turbo vector\r\n Associated\ + \ unicast routing topologies:\r\n Topology \"base\", operation state\ + \ is UP\r\n IP multicast fast switching is enabled\r\n IP multicast distributed\ + \ fast switching is disabled\r\n IP route-cache flags are Fast, CEF\r\n Router\ + \ Discovery is disabled\r\n IP output packet accounting is disabled\r\n IP\ + \ access violation accounting is disabled\r\n TCP/IP header compression is\ + \ disabled\r\n RTP/IP header compression is disabled\r\n Probe proxy name\ + \ replies are disabled\r\n Policy routing is disabled\r\n Network address\ + \ translation is disabled\r\n BGP Policy Mapping is disabled\r\n Input features:\ + \ MCI Check\r\n IPv4 WCCP Redirect outbound is disabled\r\n IPv4 WCCP Redirect\ + \ inbound is disabled\r\n IPv4 WCCP Redirect exclude is disabled\r\nLoopback0\ + \ is up, line protocol is up\r\n Internet address is 10.1.1.1/32\r\n Broadcast\ + \ address is 255.255.255.255\r\n Address determined by non-volatile memory\r\ + \n MTU is 1514 bytes\r\n Helper address is not set\r\n Directed broadcast\ + \ forwarding is disabled\r\n Multicast reserved groups joined: 224.0.0.5\r\n\ + \ Outgoing Common access list is not set \r\n Outgoing access list is not\ + \ set\r\n Inbound Common access list is not set \r\n Inbound access list\ + \ is not set\r\n Proxy ARP is enabled\r\n Local Proxy ARP is disabled\r\n\ + \ Security level is default\r\n Split horizon is enabled\r\n ICMP redirects\ + \ are always sent\r\n ICMP unreachables are always sent\r\n ICMP mask replies\ + \ are never sent\r\n IP fast switching is enabled\r\n IP Flow switching is\ + \ disabled\r\n IP CEF switching is enabled\r\n IP CEF switching turbo vector\r\ + \n IP Null turbo vector\r\n Associated unicast routing topologies:\r\n \ + \ Topology \"base\", operation state is UP\r\n IP multicast fast switching\ + \ is enabled\r\n IP multicast distributed fast switching is disabled\r\n IP\ + \ route-cache flags are Fast, CEF\r\n Router Discovery is disabled\r\n IP\ + \ output packet accounting is disabled\r\n IP access violation accounting is\ + \ disabled\r\n TCP/IP header compression is disabled\r\n RTP/IP header compression\ + \ is disabled\r\n Probe proxy name replies are disabled\r\n Policy routing\ + \ is disabled\r\n Network address translation is disabled\r\n BGP Policy Mapping\ + \ is disabled\r\n Input features: MCI Check\r\n IPv4 WCCP Redirect outbound\ + \ is disabled\r\n IPv4 WCCP Redirect inbound is disabled\r\n IPv4 WCCP Redirect\ + \ exclude is disabled\r\nLoopback1 is up, line protocol is up\r\n Internet\ + \ address is 10.11.11.11/32\r\n Broadcast address is 255.255.255.255\r\n Address\ + \ determined by non-volatile memory\r\n MTU is 1514 bytes\r\n Helper address\ + \ is not set\r\n Directed broadcast forwarding is disabled\r\n Outgoing Common\ + \ access list is not set \r\n Outgoing access list is not set\r\n Inbound\ + \ Common access list is not set \r\n Inbound access list is not set\r\n Proxy\ + \ ARP is enabled\r\n Local Proxy ARP is disabled\r\n Security level is default\r\ + \n Split horizon is enabled\r\n ICMP redirects are always sent\r\n ICMP unreachables\ + \ are always sent\r\n ICMP mask replies are never sent\r\n IP fast switching\ + \ is enabled\r\n IP Flow switching is disabled\r\n IP CEF switching is enabled\r\ + \n IP CEF switching turbo vector\r\n IP Null turbo vector\r\n Associated\ + \ unicast routing topologies:\r\n Topology \"base\", operation state\ + \ is UP\r\n IP multicast fast switching is enabled\r\n IP multicast distributed\ + \ fast switching is disabled\r\n IP route-cache flags are Fast, CEF\r\n Router\ + \ Discovery is disabled\r\n IP output packet accounting is disabled\r\n IP\ + \ access violation accounting is disabled\r\n TCP/IP header compression is\ + \ disabled\r\n RTP/IP header compression is disabled\r\n Probe proxy name\ + \ replies are disabled\r\n Policy routing is disabled\r\n Network address\ + \ translation is disabled\r\n BGP Policy Mapping is disabled\r\n Input features:\ + \ MCI Check\r\n IPv4 WCCP Redirect outbound is disabled\r\n IPv4 WCCP Redirect\ + \ inbound is disabled\r\n IPv4 WCCP Redirect exclude is disabled" + show ipv6 interface: '' + show version: '' + show vrf detail: '' + show vrf detail | inc \(VRF: '' + term length 0: '' + term width 0: '' + prompt: switch# diff --git a/mocked_devices/2-manual/initial/playback/nxos/nx-osv-1.yaml b/mocked_devices/2-manual/initial/playback/nxos/nx-osv-1.yaml new file mode 100644 index 0000000..19f6840 --- /dev/null +++ b/mocked_devices/2-manual/initial/playback/nxos/nx-osv-1.yaml @@ -0,0 +1,4172 @@ +configure: + commands: + end: + new_state: exec + line console 0: + new_state: configure_line + no logging console: '' + prompt: switch(config)# +configure_line: + commands: + end: + new_state: execute + exec-timeout 0: '' + prompt: switch(config-line)# +connect: + commands: + ? '' + : new_state: execute + preface: 'Trying mock_device ... + + Connected to mock_device. + + Escape character is ''^]''.' + prompt: '' +execute: + commands: + config term: + new_state: configure + show bgp process vrf all: "\r\nBGP Process Information\r\nBGP Process ID \ + \ : 8610\r\nBGP Protocol Started, reason: : configuration\r\nBGP\ + \ Protocol Tag : 65000\r\nBGP Protocol State : Running\r\ + \nBGP MMODE : Not Initialized\r\nBGP Memory State \ + \ : OK\r\nBGP asformat : asplain\r\n\r\nBGP attributes\ + \ information\r\nNumber of attribute entries : 2\r\nHWM of attribute entries\ + \ : 2\r\nBytes used by entries : 200\r\nEntries pending delete\ + \ : 0\r\nHWM of entries pending delete : 0\r\nBGP paths per attribute\ + \ HWM : 1\r\nBGP AS path entries : 0\r\nBytes used by AS path\ + \ entries : 0\r\n\r\nInformation regarding configured VRFs:\r\n\r\nBGP Information\ + \ for VRF default\r\nVRF Id : 1\r\nVRF state \ + \ : UP\r\nRouter-ID : 10.2.2.2\r\nConfigured\ + \ Router-ID : 10.2.2.2\r\nConfed-ID : 0\r\nCluster-ID\ + \ : 0.0.0.0\r\nNo. of configured peers : 1\r\nNo.\ + \ of pending config peers : 0\r\nNo. of established peers : 1\r\nVRF\ + \ RD : Not configured\r\n\r\n Information for address\ + \ family IPv4 Unicast in VRF default\r\n Table Id : 1\r\ + \n Table state : UP\r\n Peers Active-peers Routes\ + \ Paths Networks Aggregates\r\n 1 1 2 \ + \ 2 1 0 \r\n\r\n Redistribution \ + \ \r\n None\r\n\r\n Wait for IGP convergence is not configured\r\ + \n\r\n\r\n Nexthop trigger-delay\r\n critical 3000 ms\r\n non-critical\ + \ 10000 ms\r\n\r\n Information for address family IPv6 Unicast in VRF default\r\ + \n Table Id : 80000001\r\n Table state \ + \ : UP\r\n Peers Active-peers Routes Paths Networks \ + \ Aggregates\r\n 0 0 0 0 0 \ + \ 0 \r\n\r\n Redistribution \r\n None\r\ + \n\r\n Wait for IGP convergence is not configured\r\n\r\n\r\n Nexthop\ + \ trigger-delay\r\n critical 3000 ms\r\n non-critical 10000 ms" + show bgp vrf all all: "BGP routing table information for VRF default, address\ + \ family IPv4 Unicast\r\nBGP table version is 340, local router ID is 10.2.2.2\r\ + \nStatus: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid,\ + \ >-best\r\nPath type: i-internal, e-external, c-confed, l-local, a-aggregate,\ + \ r-redist, I-injected\r\nOrigin codes: i - IGP, e - EGP, ? - incomplete, |\ + \ - multipath, & - backup\r\n\r\n Network Next Hop Metric\ + \ LocPrf Weight Path\r\n*>i10.11.11.11/32 10.1.1.1 \ + \ 0 100 0 i\r\n*>l10.22.22.22/32 0.0.0.0 \ + \ 100 32768 i" + show bgp vrf all all dampening parameters: '' + show bgp vrf all all nexthop-database: "\r\nNext Hop table for VRF default, address\ + \ family IPv4 Unicast:\r\nNext-hop trigger-delay(miliseconds)\r\n Critical:\ + \ 3000 Non-critical: 10000\r\nIPv4 Next-hop table\r\n\r\nNexthop: 0.0.0.0, Flags:\ + \ 0x2, Refcount: 1, IGP cost: 0\r\nIGP Route type: 0, IGP preference: 0\r\n\ + Nexthop is not-attached local unreachable not-labeled\r\nNexthop last resolved:\ + \ never, using 0.0.0.0/0\r\nMetric next advertise: Never\r\nRNH epoch: 0\r\n\ + \r\nNexthop: 10.1.1.1, Flags: 0x1, Refcount: 1, IGP cost: 41\r\nIGP Route type:\ + \ 0, IGP preference: 110\r\nAttached nexthop: 10.0.2.1, Interface: Ethernet2/2\r\ + \nAttached nexthop: 10.0.1.1, Interface: Ethernet2/1\r\nNexthop is not-attached\ + \ not-local reachable not-labeled\r\nNexthop last resolved: 01:34:40, using\ + \ 10.1.1.1/32\r\nMetric next advertise: Never\r\nRNH epoch: 1\r\nIPv6 Next-hop\ + \ table\r\n\r\nNext Hop table for VRF default, address family IPv6 Unicast:\r\ + \nNext-hop trigger-delay(miliseconds)\r\n Critical: 3000 Non-critical: 10000\r\ + \nIPv4 Next-hop table\r\nIPv6 Next-hop table" + show bgp vrf all all summary: "BGP summary information for VRF default, address\ + \ family IPv4 Unicast\r\nBGP router identifier 10.2.2.2, local AS number 65000\r\ + \nBGP table version is 340, IPv4 Unicast config peers 1, capable peers 1\r\n\ + 2 network entries and 2 paths using 288 bytes of memory\r\nBGP attribute entries\ + \ [2/288], BGP AS path entries [0/0]\r\nBGP community entries [0/0], BGP clusterlist\ + \ entries [0/0]\r\n\r\nNeighbor V AS MsgRcvd MsgSent TblVer InQ\ + \ OutQ Up/Down State/PfxRcd\r\n10.1.1.1 4 65000 31794 29054 \ + \ 340 0 0 01:33:39 1 \r\n\r\nBGP summary information for VRF\ + \ default, address family IPv6 Unicast" + show bgp vrf default all neighbors: "BGP neighbor is 10.1.1.1, remote AS 65000,\ + \ ibgp link, Peer index 1\r\n BGP version 4, remote router ID 10.1.1.1\r\n\ + \ BGP state = Established, up for 01:33:39\r\n Using loopback0 as update source\ + \ for this peer\r\n Last read 00:00:49, hold time = 180, keepalive interval\ + \ is 60 seconds\r\n Last written 00:00:37, keepalive timer expiry due 00:00:22\r\ + \n Received 31794 messages, 1 notifications, 0 bytes in queue\r\n Sent 29054\ + \ messages, 102 notifications, 0 bytes in queue\r\n Connections established\ + \ 103, dropped 102\r\n Last reset by us 01:33:47, due to administratively shutdown\r\ + \n Last reset by peer never, due to No error\r\n\r\n Neighbor capabilities:\r\ + \n Dynamic capability: advertised (mp, refresh, gr) \r\n Dynamic capability\ + \ (old): advertised \r\n Route refresh capability (new): advertised received\ + \ \r\n Route refresh capability (old): advertised received \r\n 4-Byte AS\ + \ capability: advertised received \r\n Address family IPv4 Unicast: advertised\ + \ received \r\n Graceful Restart capability: advertised \r\n\r\n Graceful\ + \ Restart Parameters:\r\n Address families advertised to peer:\r\n IPv4\ + \ Unicast \r\n Address families received from peer:\r\n Forwarding state\ + \ preserved by peer for:\r\n Restart time advertised to peer: 120 seconds\r\ + \n Stale time for routes advertised by peer: 300 seconds\r\n Extended Next\ + \ Hop Encoding Capability: advertised \r\n\r\n Message statistics:\r\n \ + \ Sent Rcvd\r\n Opens: \ + \ 104 103 \r\n Notifications: 102 \ + \ 1 \r\n Updates: 218 206\ + \ \r\n Keepalives: 28630 31484 \r\n Route Refresh:\ + \ 0 0 \r\n Capability: \ + \ 0 0 \r\n Total: 29054 \ + \ 31794 \r\n Total bytes: 551847 604376 \r\n Bytes\ + \ in queue: 0 0 \r\n\r\n For address family:\ + \ IPv4 Unicast\r\n BGP table version 340, neighbor version 340\r\n 1 accepted\ + \ paths consume 80 bytes of memory\r\n 1 sent paths\r\n Third-party Nexthop\ + \ will not be computed.\r\n\r\n Local host: 10.2.2.2, Local port: 179\r\n \ + \ Foreign host: 10.1.1.1, Foreign port: 42266\r\n fd = 60" + show bgp vrf default all neighbors 10.1.1.1 advertised-routes: "\r\nPeer 10.1.1.1\ + \ routes for address family IPv4 Unicast:\r\nBGP table version is 340, local\ + \ router ID is 10.2.2.2\r\nStatus: s-suppressed, x-deleted, S-stale, d-dampened,\ + \ h-history, *-valid, >-best\r\nPath type: i-internal, e-external, c-confed,\ + \ l-local, a-aggregate, r-redist, I-injected\r\nOrigin codes: i - IGP, e - EGP,\ + \ ? - incomplete, | - multipath, & - backup\r\n\r\n Network Next\ + \ Hop Metric LocPrf Weight Path\r\n*>l10.22.22.22/32 \ + \ 0.0.0.0 100 32768 i\r\n\r\n\r\nPeer 10.1.1.1\ + \ routes for address family IPv4 Multicast:\r\n\r\nPeer 10.1.1.1 routes for\ + \ address family IPv6 Unicast:\r\nBGP table version is 2, local router ID is\ + \ 10.2.2.2\r\nStatus: s-suppressed, x-deleted, S-stale, d-dampened, h-history,\ + \ *-valid, >-best\r\nPath type: i-internal, e-external, c-confed, l-local, a-aggregate,\ + \ r-redist, I-injected\r\nOrigin codes: i - IGP, e - EGP, ? - incomplete, |\ + \ - multipath, & - backup\r\n\r\n Network Next Hop Metric\ + \ LocPrf Weight Path\r\n\r\nPeer 10.1.1.1 routes for address family\ + \ IPv6 Multicast:\r\n\r\nPeer 10.1.1.1 routes for address family VPNv4 Unicast:\r\ + \n\r\nPeer 10.1.1.1 routes for address family VPNv6 Unicast:\r\n\r\nPeer 10.1.1.1\ + \ routes for address family IPv4 MDT:\r\n\r\nPeer 10.1.1.1 routes for address\ + \ family IPv6 Label Unicast:\r\n\r\nPeer 10.1.1.1 routes for address family\ + \ L2VPN VPLS:\r\n\r\nPeer 10.1.1.1 routes for address family IPv4 MVPN:\r\n\r\ + \nPeer 10.1.1.1 routes for address family IPv6 MVPN:\r\n\r\nPeer 10.1.1.1 routes\ + \ for address family IPv4 Label Unicast:\r\n\r\nPeer 10.1.1.1 routes for address\ + \ family L2VPN EVPN:" + show bgp vrf default all neighbors 10.1.1.1 received-routes: "\r\nInbound soft\ + \ reconfiguration for IPv4 Unicast not enabled on 10.1.1.1\r\n\r\nInbound soft\ + \ reconfiguration for IPv4 Multicast not enabled on 10.1.1.1\r\n\r\nInbound\ + \ soft reconfiguration for IPv6 Unicast not enabled on 10.1.1.1\r\n\r\nInbound\ + \ soft reconfiguration for IPv6 Multicast not enabled on 10.1.1.1\r\n\r\nInbound\ + \ soft reconfiguration for VPNv4 Unicast not enabled on 10.1.1.1\r\n\r\nInbound\ + \ soft reconfiguration for VPNv6 Unicast not enabled on 10.1.1.1\r\n\r\nInbound\ + \ soft reconfiguration for IPv4 MDT not enabled on 10.1.1.1\r\n\r\nInbound soft\ + \ reconfiguration for IPv6 Label Unicast not enabled on 10.1.1.1\r\n\r\nInbound\ + \ soft reconfiguration for L2VPN VPLS not enabled on 10.1.1.1\r\n\r\nInbound\ + \ soft reconfiguration for IPv4 MVPN not enabled on 10.1.1.1\r\n\r\nInbound\ + \ soft reconfiguration for IPv6 MVPN not enabled on 10.1.1.1\r\n\r\nInbound\ + \ soft reconfiguration for IPv4 Label Unicast not enabled on 10.1.1.1\r\n\r\n\ + Inbound soft reconfiguration for L2VPN EVPN not enabled on 10.1.1.1" + show bgp vrf default all neighbors 10.1.1.1 routes: "\r\nPeer 10.1.1.1 routes\ + \ for address family IPv4 Unicast:\r\nBGP table version is 340, local router\ + \ ID is 10.2.2.2\r\nStatus: s-suppressed, x-deleted, S-stale, d-dampened, h-history,\ + \ *-valid, >-best\r\nPath type: i-internal, e-external, c-confed, l-local, a-aggregate,\ + \ r-redist, I-injected\r\nOrigin codes: i - IGP, e - EGP, ? - incomplete, |\ + \ - multipath, & - backup\r\n\r\n Network Next Hop Metric\ + \ LocPrf Weight Path\r\n*>i10.11.11.11/32 10.1.1.1 \ + \ 0 100 0 i\r\n\r\n\r\nPeer 10.1.1.1 routes for address family\ + \ IPv4 Multicast:\r\n\r\nPeer 10.1.1.1 routes for address family IPv6 Unicast:\r\ + \nBGP table version is 2, local router ID is 10.2.2.2\r\nStatus: s-suppressed,\ + \ x-deleted, S-stale, d-dampened, h-history, *-valid, >-best\r\nPath type: i-internal,\ + \ e-external, c-confed, l-local, a-aggregate, r-redist, I-injected\r\nOrigin\ + \ codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup\r\n\r\n\ + \ Network Next Hop Metric LocPrf Weight Path\r\ + \n\r\nPeer 10.1.1.1 routes for address family IPv6 Multicast:\r\n\r\nPeer 10.1.1.1\ + \ routes for address family VPNv4 Unicast:\r\n\r\nPeer 10.1.1.1 routes for address\ + \ family VPNv6 Unicast:\r\n\r\nPeer 10.1.1.1 routes for address family IPv4\ + \ MDT:\r\n\r\nPeer 10.1.1.1 routes for address family IPv6 Label Unicast:\r\n\ + \r\nPeer 10.1.1.1 routes for address family L2VPN VPLS:\r\n\r\nPeer 10.1.1.1\ + \ routes for address family IPv4 MVPN:\r\n\r\nPeer 10.1.1.1 routes for address\ + \ family IPv6 MVPN:\r\n\r\nPeer 10.1.1.1 routes for address family IPv4 Label\ + \ Unicast:\r\n\r\nPeer 10.1.1.1 routes for address family L2VPN EVPN:" + show bgp vrf management all neighbors: Unknown vrf management + show interface: "mgmt0 is up\r\nadmin state is up\r\n Hardware: Ethernet, address:\ + \ 5e00.0001.0000 (bia 5e00.0001.0000)\r\n MTU 1500 bytes, BW 1000000 Kbit,\ + \ DLY 10 usec\r\n reliability 32/255, txload 1/255, rxload 1/255\r\n Encapsulation\ + \ ARPA, medium is broadcast\r\n Port mode is routed\r\n full-duplex, 1000\ + \ Mb/s\r\n Auto-Negotiation is turned on\r\n Auto-mdix is turned off\r\n \ + \ EtherType is 0x0000 \r\n 1 minute input rate 296 bits/sec, 0 packets/sec\r\ + \n 1 minute output rate 24 bits/sec, 0 packets/sec\r\n Rx\r\n 660056 input\ + \ packets 0 unicast packets 18847 multicast packets\r\n 641209 broadcast\ + \ packets 45200491 bytes\r\n Tx\r\n 28697 output packets 0 unicast packets\ + \ 28697 multicast packets\r\n 0 broadcast packets 6169847 bytes\r\n\r\nEthernet2/1\ + \ is up\r\nadmin state is up, Dedicated Interface\r\n Hardware: Ethernet,\ + \ address: 0000.0000.002f (bia fa16.3edd.c013)\r\n Internet Address is 10.0.1.2/24\r\ + \n MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n full-duplex, 1000 Mb/s\r\n Beacon is turned off\r\n \ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped 2week(s)\ + \ 5day(s)\r\n Last clearing of \"show interface\" counters never\r\n 1 interface\ + \ resets\r\n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec,\ + \ 0 packets/sec\r\n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n \ + \ input rate 0 bps, 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2:\ + \ 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds\ + \ output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output\ + \ rate 0 bps, 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0\ + \ broadcast packets\r\n 0 input packets 0 bytes\r\n 0 jumbo packets \ + \ 0 storm suppression packets\r\n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\ + \n 0 input error 0 short frame 0 overrun 0 underrun 0 ignored\r\n \ + \ 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop\r\n 0 input\ + \ with dribble 0 input discard\r\n 0 Rx pause\r\n TX\r\n 0 unicast packets\ + \ 0 multicast packets 0 broadcast packets\r\n 0 output packets 0 bytes\r\ + \n 0 jumbo packets\r\n 0 output error 0 collision 0 deferred 0 late\ + \ collision\r\n 0 lost carrier 0 no carrier 0 babble 0 output discard\r\ + \n 0 Tx pause\r\n\r\nEthernet2/2 is up\r\nadmin state is up, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia fa16.3e8a.5b7d)\r\n Internet\ + \ Address is 10.0.2.2/24\r\n MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\ + \n reliability 255/255, txload 1/255, rxload 1/255\r\n Encapsulation ARPA,\ + \ medium is broadcast\r\n Port mode is routed\r\n full-duplex, 1000 Mb/s\r\ + \n Beacon is turned off\r\n Auto-Negotiation is turned off\r\n Input flow-control\ + \ is off, output flow-control is off\r\n Auto-mdix is turned off\r\n Switchport\ + \ monitor is off \r\n EtherType is 0x8100 \r\n EEE (efficient-ethernet) :\ + \ n/a\r\n Last link flapped 2week(s) 5day(s)\r\n Last clearing of \"show interface\"\ + \ counters never\r\n 1 interface resets\r\n Load-Interval #1: 0 seconds\r\n\ + \ 0 seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output\ + \ rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate\ + \ 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0 seconds input rate\ + \ 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\ + \n input rate 0 bps, 0 pps; output rate 0 bps, 0 pps\r\n RX\r\n 0 unicast\ + \ packets 0 multicast packets 0 broadcast packets\r\n 0 input packets \ + \ 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\n 0 runts\ + \ 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short frame 0 overrun\ + \ 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop 0 bad proto drop\ + \ 0 if down drop\r\n 0 input with dribble 0 input discard\r\n 0 Rx pause\r\ + \n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\n\ + \ 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output error\ + \ 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0 no carrier\ + \ 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/3 is down (Administratively\ + \ down)\r\nadmin state is down, Dedicated Interface\r\n Hardware: Ethernet,\ + \ address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU 1500 bytes, BW 1000000\ + \ Kbit, DLY 10 usec\r\n reliability 255/255, txload 1/255, rxload 1/255\r\n\ + \ Encapsulation ARPA, medium is broadcast\r\n Port mode is routed\r\n auto-duplex,\ + \ auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation is turned off\r\ + \n Input flow-control is off, output flow-control is off\r\n Auto-mdix is\ + \ turned off\r\n Switchport monitor is off \r\n EtherType is 0x8100 \r\n \ + \ EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\n Last clearing\ + \ of \"show interface\" counters never\r\n 0 interface resets\r\n Load-Interval\ + \ #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\n \ + \ 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/4\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/5\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/6\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/7\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/8\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/9\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/10\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/11\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/12\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/13\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/14\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/15\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/16\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/17\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/18\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/19\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/20\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/21\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/22\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/23\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/24\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/25\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/26\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/27\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/28\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/29\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/30\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/31\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/32\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/33\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/34\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/35\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/36\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/37\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/38\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/39\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/40\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/41\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/42\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/43\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/44\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/45\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/46\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/47\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/48\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/1\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.002f)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/2\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.002f)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/3\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/4\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/5\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/6\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/7\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/8\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/9\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/10\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/11\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/12\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/13\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/14\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/15\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/16\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/17\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/18\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/19\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/20\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/21\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/22\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/23\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/24\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/25\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/26\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/27\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/28\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/29\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/30\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/31\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/32\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/33\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/34\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/35\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/36\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/37\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/38\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/39\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/40\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/41\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/42\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/43\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/44\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/45\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/46\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/47\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/48\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/1\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.002f)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/2\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.002f)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/3\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/4\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/5\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/6\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/7\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/8\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/9\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/10\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/11\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/12\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/13\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/14\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/15\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/16\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/17\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/18\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/19\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/20\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/21\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/22\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/23\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/24\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/25\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/26\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/27\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/28\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/29\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/30\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/31\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/32\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/33\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/34\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/35\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/36\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/37\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/38\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/39\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/40\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/41\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/42\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/43\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/44\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/45\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/46\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/47\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/48\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nloopback0\ + \ is up\r\nadmin state is up\r\n Hardware: Loopback\r\n Internet Address is\ + \ 10.2.2.2/32\r\n MTU 1500 bytes, BW 8000000 Kbit, DLY 5000 usec\r\n reliability\ + \ 255/255, txload 1/255, rxload 1/255\r\n Encapsulation LOOPBACK, medium is\ + \ broadcast\r\n Port mode is routed\r\n Auto-mdix is turned off\r\n 66810\ + \ packets input 3349686 bytes\r\n 0 multicast frames 0 compressed\r\n \ + \ 0 input errors 0 frame 0 overrun 0 fifo\r\n 0 packets output 0 bytes 0\ + \ underruns\r\n 0 output errors 0 collisions 0 fifo\r\n 0 out_carrier_errors\r\ + \n\r\nloopback1 is up\r\nadmin state is up\r\n Hardware: Loopback\r\n Internet\ + \ Address is 10.22.22.22/32\r\n MTU 1500 bytes, BW 8000000 Kbit, DLY 5000 usec\r\ + \n reliability 255/255, txload 1/255, rxload 1/255\r\n Encapsulation LOOPBACK,\ + \ medium is broadcast\r\n Port mode is routed\r\n Auto-mdix is turned off\r\ + \n 0 packets input 0 bytes\r\n 0 multicast frames 0 compressed\r\n \ + \ 0 input errors 0 frame 0 overrun 0 fifo\r\n 0 packets output 0 bytes 0\ + \ underruns\r\n 0 output errors 0 collisions 0 fifo\r\n 0 out_carrier_errors" + show interface switchport: "Name: Ethernet4/1\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/2\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/3\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/4\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/5\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/6\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/7\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/8\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/9\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/10\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/11\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/12\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/13\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/14\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/15\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/16\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/17\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/18\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/19\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/20\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/21\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/22\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/23\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/24\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/25\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/26\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/27\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/28\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/29\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/30\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/31\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/32\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/33\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/34\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/35\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/36\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/37\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/38\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/39\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/40\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/41\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/42\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/43\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/44\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/45\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/46\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/47\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/48\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none" + show ip interface vrf all: "IP Interface Status for VRF \"default\"\r\nloopback0,\ + \ Interface status: protocol-up/link-up/admin-up, iod: 132,\r\n IP address:\ + \ 10.2.2.2, IP subnet: 10.2.2.2/32 route-preference: 0, tag: 0 \r\n IP broadcast\ + \ address: 255.255.255.255\r\n IP multicast groups locally joined: none\r\n\ + \ IP MTU: 1500 bytes (using link MTU)\r\n IP primary address route-preference:\ + \ 0, tag: 0\r\n IP proxy ARP : disabled\r\n IP Local Proxy ARP : disabled\r\ + \n IP multicast routing: disabled\r\n IP icmp redirects: enabled\r\n IP directed-broadcast:\ + \ disabled \r\n IP Forwarding: disabled \r\n IP icmp unreachables (except\ + \ port): disabled\r\n IP icmp port-unreachable: enabled\r\n IP unicast reverse\ + \ path forwarding: none\r\n IP load sharing: none \r\n IP interface statistics\ + \ last reset: never\r\n IP interface software stats: (sent/received/forwarded/originated/consumed)\r\ + \n Unicast packets : 0/0/0/0/66811\r\n Unicast bytes : 0/0/0/0/3349745\r\ + \n Multicast packets : 0/0/0/0/0\r\n Multicast bytes : 0/0/0/0/0\r\ + \n Broadcast packets : 0/0/0/0/0\r\n Broadcast bytes : 0/0/0/0/0\r\ + \n Labeled packets : 0/0/0/0/0\r\n Labeled bytes : 0/0/0/0/0\r\ + \n WCCP Redirect outbound: disabled\r\n WCCP Redirect inbound: disabled\r\n\ + \ WCCP Redirect exclude: disabled\r\nloopback1, Interface status: protocol-up/link-up/admin-up,\ + \ iod: 133,\r\n IP address: 10.22.22.22, IP subnet: 10.22.22.22/32 route-preference:\ + \ 0, tag: 0 \r\n IP broadcast address: 255.255.255.255\r\n IP multicast groups\ + \ locally joined: none\r\n IP MTU: 1500 bytes (using link MTU)\r\n IP primary\ + \ address route-preference: 0, tag: 0\r\n IP proxy ARP : disabled\r\n IP Local\ + \ Proxy ARP : disabled\r\n IP multicast routing: disabled\r\n IP icmp redirects:\ + \ enabled\r\n IP directed-broadcast: disabled \r\n IP Forwarding: disabled\ + \ \r\n IP icmp unreachables (except port): disabled\r\n IP icmp port-unreachable:\ + \ enabled\r\n IP unicast reverse path forwarding: none\r\n IP load sharing:\ + \ none \r\n IP interface statistics last reset: never\r\n IP interface software\ + \ stats: (sent/received/forwarded/originated/consumed)\r\n Unicast packets\ + \ : 0/0/0/0/0\r\n Unicast bytes : 0/0/0/0/0\r\n Multicast packets\ + \ : 0/0/0/0/0\r\n Multicast bytes : 0/0/0/0/0\r\n Broadcast packets\ + \ : 0/0/0/0/0\r\n Broadcast bytes : 0/0/0/0/0\r\n Labeled packets\ + \ : 0/0/0/0/0\r\n Labeled bytes : 0/0/0/0/0\r\n WCCP Redirect outbound:\ + \ disabled\r\n WCCP Redirect inbound: disabled\r\n WCCP Redirect exclude:\ + \ disabled\r\nEthernet2/1, Interface status: protocol-up/link-up/admin-up, iod:\ + \ 36,\r\n IP address: 10.0.1.2, IP subnet: 10.0.1.0/24 route-preference: 0,\ + \ tag: 0 \r\n IP broadcast address: 255.255.255.255\r\n IP multicast groups\ + \ locally joined: \r\n 224.0.0.6 224.0.0.5 \r\n IP MTU: 1500 bytes (using\ + \ link MTU)\r\n IP primary address route-preference: 0, tag: 0\r\n IP proxy\ + \ ARP : disabled\r\n IP Local Proxy ARP : disabled\r\n IP multicast routing:\ + \ disabled\r\n IP icmp redirects: enabled\r\n IP directed-broadcast: disabled\ + \ \r\n IP Forwarding: disabled \r\n IP icmp unreachables (except port): disabled\r\ + \n IP icmp port-unreachable: enabled\r\n IP unicast reverse path forwarding:\ + \ none\r\n IP load sharing: none \r\n IP interface statistics last reset:\ + \ never\r\n IP interface software stats: (sent/received/forwarded/originated/consumed)\r\ + \n Unicast packets : 66709/45035/0/66709/45616\r\n Unicast bytes \ + \ : 4436646/2403329/0/4436646/2456689\r\n Multicast packets : 198546/182532/0/198546/365062\r\ + \n Multicast bytes : 17164132/18254004/0/17164132/18253908\r\n Broadcast\ + \ packets : 0/16314/0/0/16314\r\n Broadcast bytes : 0/819786/0/0/819786\r\ + \n Labeled packets : 0/0/0/0/0\r\n Labeled bytes : 0/0/0/0/0\r\ + \n WCCP Redirect outbound: disabled\r\n WCCP Redirect inbound: disabled\r\n\ + \ WCCP Redirect exclude: disabled\r\nEthernet2/2, Interface status: protocol-up/link-up/admin-up,\ + \ iod: 37,\r\n IP address: 10.0.2.2, IP subnet: 10.0.2.0/24 route-preference:\ + \ 0, tag: 0 \r\n IP broadcast address: 255.255.255.255\r\n IP multicast groups\ + \ locally joined: \r\n 224.0.0.6 224.0.0.5 \r\n IP MTU: 1500 bytes (using\ + \ link MTU)\r\n IP primary address route-preference: 0, tag: 0\r\n IP proxy\ + \ ARP : disabled\r\n IP Local Proxy ARP : disabled\r\n IP multicast routing:\ + \ disabled\r\n IP icmp redirects: enabled\r\n IP directed-broadcast: disabled\ + \ \r\n IP Forwarding: disabled \r\n IP icmp unreachables (except port): disabled\r\ + \n IP icmp port-unreachable: enabled\r\n IP unicast reverse path forwarding:\ + \ none\r\n IP load sharing: none \r\n IP interface statistics last reset:\ + \ never\r\n IP interface software stats: (sent/received/forwarded/originated/consumed)\r\ + \n Unicast packets : 36/23043/0/36/23729\r\n Unicast bytes : 3566/1261358/0/3566/1323262\r\ + \n Multicast packets : 198473/182407/0/198473/364812\r\n Multicast bytes\ + \ : 17158002/18243376/0/17158002/18243280\r\n Broadcast packets : 0/16314/0/0/16314\r\ + \n Broadcast bytes : 0/819786/0/0/819786\r\n Labeled packets : 0/0/0/0/0\r\ + \n Labeled bytes : 0/0/0/0/0\r\n WCCP Redirect outbound: disabled\r\ + \n WCCP Redirect inbound: disabled\r\n WCCP Redirect exclude: disabled\r\n\ + \r\nIP Interface Status for VRF \"management\"" + show ipv6 interface vrf all: "IPv6 Interface Status for VRF \"default\"\r\n\r\n\ + IPv6 Interface Status for VRF \"management\"" + show routing ipv6 vrf all: "IPv6 Routing Table for VRF \"default\"\r\n'*' denotes\ + \ best ucast next-hop\r\n'**' denotes best mcast next-hop\r\n'[x/y]' denotes\ + \ [preference/metric]\r\n\r\n\r\nIPv6 Routing Table for VRF \"management\"\r\ + \n'*' denotes best ucast next-hop\r\n'**' denotes best mcast next-hop\r\n'[x/y]'\ + \ denotes [preference/metric]" + show routing vrf all: "IP Route Table for VRF \"default\"\r\n'*' denotes best\ + \ ucast next-hop\r\n'**' denotes best mcast next-hop\r\n'[x/y]' denotes [preference/metric]\r\ + \n'%' in via output denotes VRF \r\n\r\n10.0.1.0/24, ubest/mbest:\ + \ 1/0, attached\r\n *via 10.0.1.2, Eth2/1, [0/0], 2w5d, direct\r\n10.0.1.2/32,\ + \ ubest/mbest: 1/0, attached\r\n *via 10.0.1.2, Eth2/1, [0/0], 2w5d, local\r\ + \n10.0.2.0/24, ubest/mbest: 1/0, attached\r\n *via 10.0.2.2, Eth2/2, [0/0],\ + \ 2w5d, direct\r\n10.0.2.2/32, ubest/mbest: 1/0, attached\r\n *via 10.0.2.2,\ + \ Eth2/2, [0/0], 2w5d, local\r\n10.1.1.1/32, ubest/mbest: 2/0\r\n *via 10.0.1.1,\ + \ Eth2/1, [110/41], 5d05h, ospf-1, intra\r\n *via 10.0.2.1, Eth2/2, [110/41],\ + \ 5d05h, ospf-1, intra\r\n10.2.2.2/32, ubest/mbest: 2/0, attached\r\n *via\ + \ 10.2.2.2, Lo0, [0/0], 2w5d, local\r\n *via 10.2.2.2, Lo0, [0/0], 2w5d,\ + \ direct\r\n10.11.11.11/32, ubest/mbest: 1/0\r\n *via 10.1.1.1, [200/0],\ + \ 01:33:38, bgp-65000, internal, tag 65000, \r\n10.22.22.22/32, ubest/mbest:\ + \ 2/0, attached\r\n *via 10.22.22.22, Lo1, [0/0], 2w5d, local\r\n *via\ + \ 10.22.22.22, Lo1, [0/0], 2w5d, direct" + show running-config | inc peer-policy: '' + show running-config | inc peer-session: '' + show version: '' + show vrf: "VRF-Name VRF-ID State Reason \ + \ \r\ndefault 1 Up -- \ + \ \r\nmanagement 2 Up \ + \ --" + show vrf all interface: "Interface VRF-Name \ + \ VRF-ID Site-of-Origin\r\nloopback0 default \ + \ 1 --\r\nloopback1 default \ + \ 1 --\r\nNull0 default \ + \ 1 --\r\nEthernet2/1 default \ + \ 1 --\r\nEthernet2/2 default \ + \ 1 --\r\nEthernet2/3 default \ + \ 1 --\r\nEthernet2/4 default \ + \ 1 --\r\nEthernet2/5 default \ + \ 1 --\r\nEthernet2/6 default \ + \ 1 --\r\nEthernet2/7 default \ + \ 1 --\r\nEthernet2/8 default \ + \ 1 --\r\nEthernet2/9 default 1\ + \ --\r\nEthernet2/10 default 1 --\r\ + \nEthernet2/11 default 1 --\r\nEthernet2/12\ + \ default 1 --\r\nEthernet2/13 \ + \ default 1 --\r\nEthernet2/14 \ + \ default 1 --\r\nEthernet2/15 \ + \ default 1 --\r\nEthernet2/16 \ + \ default 1 --\r\nEthernet2/17 \ + \ default 1 --\r\nEthernet2/18 \ + \ default 1 --\r\nEthernet2/19 default\ + \ 1 --\r\nEthernet2/20 default \ + \ 1 --\r\nEthernet2/21 default \ + \ 1 --\r\nEthernet2/22 default \ + \ 1 --\r\nEthernet2/23 default \ + \ 1 --\r\nEthernet2/24 default \ + \ 1 --\r\nEthernet2/25 default \ + \ 1 --\r\nEthernet2/26 default \ + \ 1 --\r\nEthernet2/27 default \ + \ 1 --\r\nEthernet2/28 default \ + \ 1 --\r\nEthernet2/29 default \ + \ 1 --\r\nEthernet2/30 default \ + \ 1 --\r\nEthernet2/31 default \ + \ 1 --\r\nEthernet2/32 default \ + \ 1 --\r\nEthernet2/33 default \ + \ 1 --\r\nEthernet2/34 default 1\ + \ --\r\nEthernet2/35 default 1 --\r\ + \nEthernet2/36 default 1 --\r\nEthernet2/37\ + \ default 1 --\r\nEthernet2/38 \ + \ default 1 --\r\nEthernet2/39 \ + \ default 1 --\r\nEthernet2/40 \ + \ default 1 --\r\nEthernet2/41 \ + \ default 1 --\r\nEthernet2/42 \ + \ default 1 --\r\nEthernet2/43 \ + \ default 1 --\r\nEthernet2/44 default\ + \ 1 --\r\nEthernet2/45 default \ + \ 1 --\r\nEthernet2/46 default \ + \ 1 --\r\nEthernet2/47 default \ + \ 1 --\r\nEthernet2/48 default \ + \ 1 --\r\nEthernet3/1 default \ + \ 1 --\r\nEthernet3/2 default \ + \ 1 --\r\nEthernet3/3 default \ + \ 1 --\r\nEthernet3/4 default \ + \ 1 --\r\nEthernet3/5 default \ + \ 1 --\r\nEthernet3/6 default \ + \ 1 --\r\nEthernet3/7 default \ + \ 1 --\r\nEthernet3/8 default \ + \ 1 --\r\nEthernet3/9 default \ + \ 1 --\r\nEthernet3/10 default \ + \ 1 --\r\nEthernet3/11 default 1\ + \ --\r\nEthernet3/12 default 1 --\r\ + \nEthernet3/13 default 1 --\r\nEthernet3/14\ + \ default 1 --\r\nEthernet3/15 \ + \ default 1 --\r\nEthernet3/16 \ + \ default 1 --\r\nEthernet3/17 \ + \ default 1 --\r\nEthernet3/18 \ + \ default 1 --\r\nEthernet3/19 \ + \ default 1 --\r\nEthernet3/20 \ + \ default 1 --\r\nEthernet3/21 default\ + \ 1 --\r\nEthernet3/22 default \ + \ 1 --\r\nEthernet3/23 default \ + \ 1 --\r\nEthernet3/24 default \ + \ 1 --\r\nEthernet3/25 default \ + \ 1 --\r\nEthernet3/26 default \ + \ 1 --\r\nEthernet3/27 default \ + \ 1 --\r\nEthernet3/28 default \ + \ 1 --\r\nEthernet3/29 default \ + \ 1 --\r\nEthernet3/30 default \ + \ 1 --\r\nEthernet3/31 default \ + \ 1 --\r\nEthernet3/32 default \ + \ 1 --\r\nEthernet3/33 default \ + \ 1 --\r\nEthernet3/34 default \ + \ 1 --\r\nEthernet3/35 default \ + \ 1 --\r\nEthernet3/36 default 1\ + \ --\r\nEthernet3/37 default 1 --\r\ + \nEthernet3/38 default 1 --\r\nEthernet3/39\ + \ default 1 --\r\nEthernet3/40 \ + \ default 1 --\r\nEthernet3/41 \ + \ default 1 --\r\nEthernet3/42 \ + \ default 1 --\r\nEthernet3/43 \ + \ default 1 --\r\nEthernet3/44 \ + \ default 1 --\r\nEthernet3/45 \ + \ default 1 --\r\nEthernet3/46 default\ + \ 1 --\r\nEthernet3/47 default \ + \ 1 --\r\nEthernet3/48 default \ + \ 1 --\r\nmgmt0 management \ + \ 2 --" + term length 0: '' + term width 0: '' + prompt: switch# diff --git a/mocked_devices/2-manual/initial/record/csr1000v-1 b/mocked_devices/2-manual/initial/record/csr1000v-1 new file mode 100644 index 0000000..6c3bc0d Binary files /dev/null and b/mocked_devices/2-manual/initial/record/csr1000v-1 differ diff --git a/mocked_devices/2-manual/initial/record/nx-osv-1 b/mocked_devices/2-manual/initial/record/nx-osv-1 new file mode 100644 index 0000000..ab2a5cf Binary files /dev/null and b/mocked_devices/2-manual/initial/record/nx-osv-1 differ diff --git a/mocked_devices/2-manual/initial/snapshot/bgp_iosxe_csr1000v-1_console.txt b/mocked_devices/2-manual/initial/snapshot/bgp_iosxe_csr1000v-1_console.txt new file mode 100644 index 0000000..0e6b77a --- /dev/null +++ b/mocked_devices/2-manual/initial/snapshot/bgp_iosxe_csr1000v-1_console.txt @@ -0,0 +1,306 @@ ++++ csr1000v-1: executing command 'show bgp summary' +++ +show bgp summary +% Command accepted but obsolete, unreleased or unsupported; see documentation. +BGP router identifier 10.1.1.1, local AS number 65000 +BGP table version is 165, main routing table version 165 +2 network entries using 496 bytes of memory +2 path entries using 272 bytes of memory +2/2 BGP path/bestpath attribute entries using 560 bytes of memory +0 BGP route-map cache entries using 0 bytes of memory +0 BGP filter-list cache entries using 0 bytes of memory +BGP using 1328 total bytes of memory +BGP activity 36/34 prefixes, 84/82 paths, scan interval 60 secs + +Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd +10.2.2.2 4 65000 98 107 165 0 0 01:33:37 1 +csr1000v-1# ++++ csr1000v-1: executing command 'show ip bgp template peer-session ' +++ +show ip bgp template peer-session +No templates configured + +csr1000v-1# ++++ csr1000v-1: executing command 'show ip bgp template peer-policy ' +++ +show ip bgp template peer-policy +No templates configured + +csr1000v-1# ++++ csr1000v-1: executing command 'show vrf detail | inc \(VRF' +++ +show vrf detail | inc \(VRF +csr1000v-1# ++++ csr1000v-1: executing command 'show bgp all cluster-ids' +++ +show bgp all cluster-ids +Global cluster-id: 10.1.1.1 (configured: 0.0.0.0) +BGP client-to-client reflection: Configured Used + all (inter-cluster and intra-cluster): ENABLED + intra-cluster: ENABLED ENABLED + +List of cluster-ids: +Cluster-id #-neighbors C2C-rfl-CFG C2C-rfl-USE +csr1000v-1# ++++ csr1000v-1: executing command 'show ip bgp all dampening parameters' +++ +show ip bgp all dampening parameters +For address family: IPv4 Unicast + +% dampening not enabled for base + +For address family: IPv6 Unicast + +% dampening not enabled for base + +For address family: IPv4 Multicast + +% dampening not enabled for base + +For address family: L2VPN E-VPN + +% dampening not enabled for base + +For address family: MVPNv4 Unicast + +% dampening not enabled for base + +For address family: MVPNv6 Unicast + +% dampening not enabled for base +csr1000v-1# ++++ csr1000v-1: executing command 'show bgp all neighbors' +++ +show bgp all neighbors +For address family: IPv4 Unicast +BGP neighbor is 10.2.2.2, remote AS 65000, internal link + BGP version 4, remote router ID 10.2.2.2 + BGP state = Established, up for 01:33:38 + Last read 00:00:36, last write 00:00:48, hold time is 180, keepalive interval is 60 seconds + Neighbor sessions: + 1 active, is not multisession capable (disabled) + Neighbor capabilities: + Route refresh: advertised and received(new) + Four-octets ASN Capability: advertised and received + Address family IPv4 Unicast: advertised and received + Graceful Restart Capability: received + Remote Restart timer is 120 seconds + Address families advertised by peer: + IPv4 Unicast (was not preserved + Enhanced Refresh Capability: advertised + Multisession Capability: + Stateful switchover support enabled: NO for session 1 + Message statistics: + InQ depth is 0 + OutQ depth is 0 + + Sent Rcvd + Opens: 1 1 + Notifications: 0 0 + Updates: 2 2 + Keepalives: 104 95 + Route Refresh: 0 0 + Total: 107 98 + Do log neighbor state changes (via global configuration) + Default minimum time between advertisement runs is 0 seconds + + Address tracking is enabled, the RIB does have a route to 10.2.2.2 + Route to peer address reachability Up: 2; Down: 0 + Last notification 5d05h + Connections established 82; dropped 81 + Last reset 01:33:46, due to BGP Notification received of session 1, Administrative Shutdown + Interface associated: (none) (peering address NOT in same link) + Transport(tcp) path-mtu-discovery is enabled + Graceful-Restart is disabled + SSO is disabled +Connection state is ESTAB, I/O status: 1, unread input bytes: 0 +Connection is ECN Disabled, Mininum incoming TTL 0, Outgoing TTL 255 +Local host: 10.1.1.1, Local port: 42266 +Foreign host: 10.2.2.2, Foreign port: 179 +Connection tableid (VRF): 0 +Maximum output segment queue size: 50 + +Enqueued packets for retransmit: 0, input: 0 mis-ordered: 0 (0 bytes) + +Event Timers (current time is 0x1B12CD63): +Timer Starts Wakeups Next +Retrans 105 0 0x0 +TimeWait 0 0 0x0 +AckHold 97 90 0x0 +SendWnd 0 0 0x0 +KeepAlive 0 0 0x0 +GiveUp 0 0 0x0 +PmtuAger 1 1 0x0 +DeadWait 0 0 0x0 +Linger 0 0 0x0 +ProcessQ 0 0 0x0 + +iss: 2680192098 snduna: 2680194211 sndnxt: 2680194211 +irs: 427990769 rcvnxt: 427992717 + +sndwnd: 16616 scale: 0 maxrcvwnd: 16384 +rcvwnd: 16080 scale: 0 delrcvwnd: 304 + +SRTT: 1000 ms, RTTO: 1003 ms, RTV: 3 ms, KRTT: 0 ms +minRTT: 2 ms, maxRTT: 1000 ms, ACK hold: 200 ms +uptime: 5618440 ms, Sent idletime: 35966 ms, Receive idletime: 36166 ms +Status Flags: active open +Option Flags: nagle, path mtu capable +IP Precedence value : 6 + +Datagrams (max data segment is 536 bytes): +Rcvd: 200 (out of order: 0), with data: 96, total data bytes: 1947 +Sent: 201 (retransmit: 0, fastretransmit: 0, partialack: 0, Second Congestion: 0), with data: 106, total data bytes: 2112 + + Packets received in fast path: 0, fast processed: 0, slow path: 0 + fast lock acquisition failures: 0, slow path: 0 +TCP Semaphore 0x7F1ACED9D348 FREE + + +For address family: IPv6 Unicast + +For address family: IPv4 Multicast + +For address family: L2VPN E-VPN + +For address family: MVPNv4 Unicast + +For address family: MVPNv6 Unicast +csr1000v-1# ++++ csr1000v-1: executing command 'show bgp all neighbors 10.2.2.2 policy' +++ +show bgp all neighbors 10.2.2.2 policy + Neighbor: 10.2.2.2, Address-Family: IPv4 Unicast +csr1000v-1# ++++ csr1000v-1: executing command 'show bgp all' +++ +show bgp all +For address family: IPv4 Unicast + +BGP table version is 165, local router ID is 10.1.1.1 +Status codes: s suppressed, d damped, h history, * valid, > best, i - internal, + r RIB-failure, S Stale, m multipath, b backup-path, f RT-Filter, + x best-external, a additional-path, c RIB-compressed, + t secondary path, L long-lived-stale, +Origin codes: i - IGP, e - EGP, ? - incomplete +RPKI validation codes: V valid, I invalid, N Not found + + Network Next Hop Metric LocPrf Weight Path + *> 10.11.11.11/32 0.0.0.0 0 32768 i + *>i 10.22.22.22/32 10.2.2.2 100 0 i + +For address family: IPv6 Unicast + + +For address family: IPv4 Multicast + + +For address family: L2VPN E-VPN + + +For address family: MVPNv4 Unicast + + +For address family: MVPNv6 Unicast + +csr1000v-1# ++++ csr1000v-1: executing command 'show bgp all detail' +++ +show bgp all detail +For address family: IPv4 Unicast + +BGP routing table entry for 10.11.11.11/32, version 2 + Paths: (1 available, best #1, table default) + Advertised to update-groups: + 82 + Refresh Epoch 1 + Local + 0.0.0.0 from 0.0.0.0 (10.1.1.1) + Origin IGP, metric 0, localpref 100, weight 32768, valid, sourced, local, best + rx pathid: 0, tx pathid: 0x0 +BGP routing table entry for 10.22.22.22/32, version 165 + Paths: (1 available, best #1, table default) + Not advertised to any peer + Refresh Epoch 1 + Local + 10.2.2.2 (metric 2) from 10.2.2.2 (10.2.2.2) + Origin IGP, localpref 100, valid, internal, best + rx pathid: 0, tx pathid: 0x0 + +For address family: IPv6 Unicast + + +For address family: IPv4 Multicast + + +For address family: L2VPN E-VPN + + +For address family: MVPNv4 Unicast + + +For address family: MVPNv6 Unicast + +csr1000v-1# ++++ csr1000v-1: executing command 'show bgp all neighbors 10.2.2.2 advertised-routes' +++ +show bgp all neighbors 10.2.2.2 advertised-routes +For address family: IPv4 Unicast +BGP table version is 165, local router ID is 10.1.1.1 +Status codes: s suppressed, d damped, h history, * valid, > best, i - internal, + r RIB-failure, S Stale, m multipath, b backup-path, f RT-Filter, + x best-external, a additional-path, c RIB-compressed, + t secondary path, L long-lived-stale, +Origin codes: i - IGP, e - EGP, ? - incomplete +RPKI validation codes: V valid, I invalid, N Not found + + Network Next Hop Metric LocPrf Weight Path + *> 10.11.11.11/32 0.0.0.0 0 32768 i + +Total number of prefixes 1 +csr1000v-1# ++++ csr1000v-1: executing command 'show bgp all neighbors | i BGP neighbor' +++ +show bgp all neighbors | i BGP neighbor +BGP neighbor is 10.2.2.2, remote AS 65000, internal link +csr1000v-1# ++++ csr1000v-1: executing command 'show bgp all neighbors 10.2.2.2 routes' +++ +show bgp all neighbors 10.2.2.2 routes +For address family: IPv4 Unicast +BGP table version is 165, local router ID is 10.1.1.1 +Status codes: s suppressed, d damped, h history, * valid, > best, i - internal, + r RIB-failure, S Stale, m multipath, b backup-path, f RT-Filter, + x best-external, a additional-path, c RIB-compressed, + t secondary path, L long-lived-stale, +Origin codes: i - IGP, e - EGP, ? - incomplete +RPKI validation codes: V valid, I invalid, N Not found + + Network Next Hop Metric LocPrf Weight Path + *>i 10.22.22.22/32 10.2.2.2 100 0 i + +Total number of prefixes 1 +csr1000v-1# ++++ csr1000v-1: executing command 'show bgp all neighbors | i BGP neighbor' +++ +show bgp all neighbors | i BGP neighbor +BGP neighbor is 10.2.2.2, remote AS 65000, internal link +csr1000v-1# ++++ csr1000v-1: executing command 'show bgp all neighbors 10.2.2.2 received-routes' +++ +show bgp all neighbors 10.2.2.2 received-routes +For address family: IPv4 Unicast +% Inbound soft reconfiguration not enabled on 10.2.2.2 +csr1000v-1# ++++ csr1000v-1: executing command 'show bgp all neighbors | i BGP neighbor' +++ +show bgp all neighbors | i BGP neighbor +BGP neighbor is 10.2.2.2, remote AS 65000, internal link +csr1000v-1# +Could not learn +Parser Output is empty ++====================================================================================================================================================+ +| Commands for learning feature 'Bgp' | ++====================================================================================================================================================+ +| - Parsed commands | +|----------------------------------------------------------------------------------------------------------------------------------------------------| +| cmd: | +| cmd: | +| cmd: | +| cmd: | +| cmd: | +| cmd: , arguments: {'neighbor':'10.2.2.2'} | +| cmd: , arguments: {'neighbor':'10.2.2.2'} | +|====================================================================================================================================================| +| - Commands with empty output | +|----------------------------------------------------------------------------------------------------------------------------------------------------| +| cmd: | +| cmd: | +| cmd: | +| cmd: , arguments: {'neighbor':'10.2.2.2'} | +| cmd: , arguments: {'neighbor':'10.2.2.2'} | +|====================================================================================================================================================| diff --git a/mocked_devices/2-manual/initial/snapshot/bgp_iosxe_csr1000v-1_ops.txt b/mocked_devices/2-manual/initial/snapshot/bgp_iosxe_csr1000v-1_ops.txt new file mode 100644 index 0000000..bca6caf --- /dev/null +++ b/mocked_devices/2-manual/initial/snapshot/bgp_iosxe_csr1000v-1_ops.txt @@ -0,0 +1,181 @@ +{ + "attributes": null, + "commands": null, + "connections": null, + "context_manager": {}, + "info": { + "instance": { + "default": { + "bgp_id": 65000, + "vrf": { + "default": { + "cluster_id": "10.1.1.1", + "neighbor": { + "10.2.2.2": { + "address_family": { + "": { + "bgp_table_version": 165, + "path": { + "memory_usage": 272, + "total_entries": 2 + }, + "prefixes": { + "memory_usage": 496, + "total_entries": 2 + }, + "routing_table_version": 165, + "total_memory": 1328 + } + }, + "bgp_negotiated_capabilities": { + "enhanced_refresh": "advertised", + "four_octets_asn": "advertised and received", + "graceful_restart": "received", + "route_refresh": "advertised and received(new)", + "stateful_switchover": "NO for session 1" + }, + "bgp_negotiated_keepalive_timers": { + "hold_time": 180, + "keepalive_interval": 60 + }, + "bgp_neighbor_counters": { + "messages": { + "received": { + "keepalives": 95, + "notifications": 0, + "opens": 1, + "updates": 2 + }, + "sent": { + "keepalives": 104, + "notifications": 0, + "opens": 1, + "updates": 2 + } + } + }, + "bgp_session_transport": { + "connection": { + "last_reset": "01:33:46", + "reset_reason": "BGP Notification received of session 1, Administrative Shutdown", + "state": "Established" + }, + "transport": { + "foreign_host": "10.2.2.2", + "foreign_port": "179", + "local_host": "10.1.1.1", + "local_port": "42266", + "mss": 536 + } + }, + "bgp_version": 4, + "remote_as": 65000, + "session_state": "Established", + "shutdown": false + } + } + } + } + } + } + }, + "routes_per_peer": { + "instance": { + "default": { + "vrf": { + "default": { + "neighbor": { + "10.2.2.2": { + "address_family": { + "": { + "input_queue": 0, + "msg_rcvd": 98, + "msg_sent": 107, + "output_queue": 0, + "state_pfxrcd": "1", + "tbl_ver": 165, + "up_down": "01:33:37" + }, + "ipv4 unicast": { + "advertised": { + "10.11.11.11/32": { + "index": { + "1": { + "localprf": 0, + "next_hop": "0.0.0.0", + "origin_codes": "i", + "status_codes": "*>", + "weight": 32768 + } + } + } + }, + "routes": { + "10.22.22.22/32": { + "index": { + "1": { + "localprf": 100, + "next_hop": "10.2.2.2", + "origin_codes": "i", + "status_codes": "*>", + "weight": 0 + } + } + } + } + } + }, + "remote_as": 65000 + } + } + } + } + } + } + }, + "table": { + "instance": { + "default": { + "vrf": { + "default": { + "address_family": { + "ipv4 unicast": { + "prefixes": { + "10.11.11.11/32": { + "index": { + "1": { + "gateway": "0.0.0.0", + "localpref": 100, + "metric": 0, + "next_hop": "0.0.0.0", + "origin_codes": "i", + "originator": "10.1.1.1", + "status_codes": "*>", + "weight": "32768" + } + }, + "table_version": "2" + }, + "10.22.22.22/32": { + "index": { + "1": { + "gateway": "10.2.2.2", + "localpref": 100, + "next_hop": "10.2.2.2", + "next_hop_igp_metric": "2", + "origin_codes": "i", + "originator": "10.2.2.2", + "status_codes": "*>" + } + }, + "table_version": "165" + } + } + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/mocked_devices/2-manual/initial/snapshot/bgp_nxos_nx-osv-1_console.txt b/mocked_devices/2-manual/initial/snapshot/bgp_nxos_nx-osv-1_console.txt new file mode 100644 index 0000000..cc4bd80 --- /dev/null +++ b/mocked_devices/2-manual/initial/snapshot/bgp_nxos_nx-osv-1_console.txt @@ -0,0 +1,368 @@ ++++ nx-osv-1: executing command 'show bgp process vrf all' +++ +show bgp process vrf all + +BGP Process Information +BGP Process ID : 8610 +BGP Protocol Started, reason: : configuration +BGP Protocol Tag : 65000 +BGP Protocol State : Running +BGP MMODE : Not Initialized +BGP Memory State : OK +BGP asformat : asplain + +BGP attributes information +Number of attribute entries : 2 +HWM of attribute entries : 2 +Bytes used by entries : 200 +Entries pending delete : 0 +HWM of entries pending delete : 0 +BGP paths per attribute HWM : 1 +BGP AS path entries : 0 +Bytes used by AS path entries : 0 + +Information regarding configured VRFs: + +BGP Information for VRF default +VRF Id : 1 +VRF state : UP +Router-ID : 10.2.2.2 +Configured Router-ID : 10.2.2.2 +Confed-ID : 0 +Cluster-ID : 0.0.0.0 +No. of configured peers : 1 +No. of pending config peers : 0 +No. of established peers : 1 +VRF RD : Not configured + + Information for address family IPv4 Unicast in VRF default + Table Id : 1 + Table state : UP + Peers Active-peers Routes Paths Networks Aggregates + 1 1 2 2 1 0 + + Redistribution + None + + Wait for IGP convergence is not configured + + + Nexthop trigger-delay + critical 3000 ms + non-critical 10000 ms + + Information for address family IPv6 Unicast in VRF default + Table Id : 80000001 + Table state : UP + Peers Active-peers Routes Paths Networks Aggregates + 0 0 0 0 0 0 + + Redistribution + None + + Wait for IGP convergence is not configured + + + Nexthop trigger-delay + critical 3000 ms + non-critical 10000 ms + nx-osv-1# ++++ nx-osv-1: executing command 'show running-config | inc peer-session' +++ +show running-config | inc peer-session + nx-osv-1# ++++ nx-osv-1: executing command 'show running-config | inc peer-policy' +++ +show running-config | inc peer-policy + nx-osv-1# ++++ nx-osv-1: executing command 'show bgp vrf all all dampening parameters' +++ +show bgp vrf all all dampening parameters + nx-osv-1# ++++ nx-osv-1: executing command 'show bgp vrf all all nexthop-database' +++ +show bgp vrf all all nexthop-database + +Next Hop table for VRF default, address family IPv4 Unicast: +Next-hop trigger-delay(miliseconds) + Critical: 3000 Non-critical: 10000 +IPv4 Next-hop table + +Nexthop: 0.0.0.0, Flags: 0x2, Refcount: 1, IGP cost: 0 +IGP Route type: 0, IGP preference: 0 +Nexthop is not-attached local unreachable not-labeled +Nexthop last resolved: never, using 0.0.0.0/0 +Metric next advertise: Never +RNH epoch: 0 + +Nexthop: 10.1.1.1, Flags: 0x1, Refcount: 1, IGP cost: 41 +IGP Route type: 0, IGP preference: 110 +Attached nexthop: 10.0.2.1, Interface: Ethernet2/2 +Attached nexthop: 10.0.1.1, Interface: Ethernet2/1 +Nexthop is not-attached not-local reachable not-labeled +Nexthop last resolved: 01:34:40, using 10.1.1.1/32 +Metric next advertise: Never +RNH epoch: 1 +IPv6 Next-hop table + +Next Hop table for VRF default, address family IPv6 Unicast: +Next-hop trigger-delay(miliseconds) + Critical: 3000 Non-critical: 10000 +IPv4 Next-hop table +IPv6 Next-hop table + nx-osv-1# ++++ nx-osv-1: executing command 'show routing vrf all' +++ +show routing vrf all +IP Route Table for VRF "default" +'*' denotes best ucast next-hop +'**' denotes best mcast next-hop +'[x/y]' denotes [preference/metric] +'%' in via output denotes VRF + +10.0.1.0/24, ubest/mbest: 1/0, attached + *via 10.0.1.2, Eth2/1, [0/0], 2w5d, direct +10.0.1.2/32, ubest/mbest: 1/0, attached + *via 10.0.1.2, Eth2/1, [0/0], 2w5d, local +10.0.2.0/24, ubest/mbest: 1/0, attached + *via 10.0.2.2, Eth2/2, [0/0], 2w5d, direct +10.0.2.2/32, ubest/mbest: 1/0, attached + *via 10.0.2.2, Eth2/2, [0/0], 2w5d, local +10.1.1.1/32, ubest/mbest: 2/0 + *via 10.0.1.1, Eth2/1, [110/41], 5d05h, ospf-1, intra + *via 10.0.2.1, Eth2/2, [110/41], 5d05h, ospf-1, intra +10.2.2.2/32, ubest/mbest: 2/0, attached + *via 10.2.2.2, Lo0, [0/0], 2w5d, local + *via 10.2.2.2, Lo0, [0/0], 2w5d, direct +10.11.11.11/32, ubest/mbest: 1/0 + *via 10.1.1.1, [200/0], 01:33:38, bgp-65000, internal, tag 65000, +10.22.22.22/32, ubest/mbest: 2/0, attached + *via 10.22.22.22, Lo1, [0/0], 2w5d, local + *via 10.22.22.22, Lo1, [0/0], 2w5d, direct + nx-osv-1# ++++ nx-osv-1: executing command 'show bgp vrf all all' +++ +show bgp vrf all all +BGP routing table information for VRF default, address family IPv4 Unicast +BGP table version is 340, local router ID is 10.2.2.2 +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup + + Network Next Hop Metric LocPrf Weight Path +*>i10.11.11.11/32 10.1.1.1 0 100 0 i +*>l10.22.22.22/32 0.0.0.0 100 32768 i + + nx-osv-1# ++++ nx-osv-1: executing command 'show vrf' +++ +show vrf +VRF-Name VRF-ID State Reason +default 1 Up -- +management 2 Up -- + nx-osv-1# ++++ nx-osv-1: executing command 'show bgp vrf management all neighbors' +++ +show bgp vrf management all neighbors +Unknown vrf management + nx-osv-1# ++++ nx-osv-1: executing command 'show bgp vrf default all neighbors' +++ +show bgp vrf default all neighbors +BGP neighbor is 10.1.1.1, remote AS 65000, ibgp link, Peer index 1 + BGP version 4, remote router ID 10.1.1.1 + BGP state = Established, up for 01:33:39 + Using loopback0 as update source for this peer + Last read 00:00:49, hold time = 180, keepalive interval is 60 seconds + Last written 00:00:37, keepalive timer expiry due 00:00:22 + Received 31794 messages, 1 notifications, 0 bytes in queue + Sent 29054 messages, 102 notifications, 0 bytes in queue + Connections established 103, dropped 102 + Last reset by us 01:33:47, due to administratively shutdown + Last reset by peer never, due to No error + + Neighbor capabilities: + Dynamic capability: advertised (mp, refresh, gr) + Dynamic capability (old): advertised + Route refresh capability (new): advertised received + Route refresh capability (old): advertised received + 4-Byte AS capability: advertised received + Address family IPv4 Unicast: advertised received + Graceful Restart capability: advertised + + Graceful Restart Parameters: + Address families advertised to peer: + IPv4 Unicast + Address families received from peer: + Forwarding state preserved by peer for: + Restart time advertised to peer: 120 seconds + Stale time for routes advertised by peer: 300 seconds + Extended Next Hop Encoding Capability: advertised + + Message statistics: + Sent Rcvd + Opens: 104 103 + Notifications: 102 1 + Updates: 218 206 + Keepalives: 28630 31484 + Route Refresh: 0 0 + Capability: 0 0 + Total: 29054 31794 + Total bytes: 551847 604376 + Bytes in queue: 0 0 + + For address family: IPv4 Unicast + BGP table version 340, neighbor version 340 + 1 accepted paths consume 80 bytes of memory + 1 sent paths + Third-party Nexthop will not be computed. + + Local host: 10.2.2.2, Local port: 179 + Foreign host: 10.1.1.1, Foreign port: 42266 + fd = 60 + + nx-osv-1# ++++ nx-osv-1: executing command 'show bgp vrf all all summary' +++ +show bgp vrf all all summary +BGP summary information for VRF default, address family IPv4 Unicast +BGP router identifier 10.2.2.2, local AS number 65000 +BGP table version is 340, IPv4 Unicast config peers 1, capable peers 1 +2 network entries and 2 paths using 288 bytes of memory +BGP attribute entries [2/288], BGP AS path entries [0/0] +BGP community entries [0/0], BGP clusterlist entries [0/0] + +Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd +10.1.1.1 4 65000 31794 29054 340 0 0 01:33:39 1 + +BGP summary information for VRF default, address family IPv6 Unicast + nx-osv-1# ++++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 advertised-routes' +++ +show bgp vrf default all neighbors 10.1.1.1 advertised-routes + +Peer 10.1.1.1 routes for address family IPv4 Unicast: +BGP table version is 340, local router ID is 10.2.2.2 +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup + + Network Next Hop Metric LocPrf Weight Path +*>l10.22.22.22/32 0.0.0.0 100 32768 i + + +Peer 10.1.1.1 routes for address family IPv4 Multicast: + +Peer 10.1.1.1 routes for address family IPv6 Unicast: +BGP table version is 2, local router ID is 10.2.2.2 +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup + + Network Next Hop Metric LocPrf Weight Path + +Peer 10.1.1.1 routes for address family IPv6 Multicast: + +Peer 10.1.1.1 routes for address family VPNv4 Unicast: + +Peer 10.1.1.1 routes for address family VPNv6 Unicast: + +Peer 10.1.1.1 routes for address family IPv4 MDT: + +Peer 10.1.1.1 routes for address family IPv6 Label Unicast: + +Peer 10.1.1.1 routes for address family L2VPN VPLS: + +Peer 10.1.1.1 routes for address family IPv4 MVPN: + +Peer 10.1.1.1 routes for address family IPv6 MVPN: + +Peer 10.1.1.1 routes for address family IPv4 Label Unicast: + +Peer 10.1.1.1 routes for address family L2VPN EVPN: + nx-osv-1# ++++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 routes' +++ +show bgp vrf default all neighbors 10.1.1.1 routes + +Peer 10.1.1.1 routes for address family IPv4 Unicast: +BGP table version is 340, local router ID is 10.2.2.2 +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup + + Network Next Hop Metric LocPrf Weight Path +*>i10.11.11.11/32 10.1.1.1 0 100 0 i + + +Peer 10.1.1.1 routes for address family IPv4 Multicast: + +Peer 10.1.1.1 routes for address family IPv6 Unicast: +BGP table version is 2, local router ID is 10.2.2.2 +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup + + Network Next Hop Metric LocPrf Weight Path + +Peer 10.1.1.1 routes for address family IPv6 Multicast: + +Peer 10.1.1.1 routes for address family VPNv4 Unicast: + +Peer 10.1.1.1 routes for address family VPNv6 Unicast: + +Peer 10.1.1.1 routes for address family IPv4 MDT: + +Peer 10.1.1.1 routes for address family IPv6 Label Unicast: + +Peer 10.1.1.1 routes for address family L2VPN VPLS: + +Peer 10.1.1.1 routes for address family IPv4 MVPN: + +Peer 10.1.1.1 routes for address family IPv6 MVPN: + +Peer 10.1.1.1 routes for address family IPv4 Label Unicast: + +Peer 10.1.1.1 routes for address family L2VPN EVPN: + nx-osv-1# ++++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 received-routes' +++ +show bgp vrf default all neighbors 10.1.1.1 received-routes + +Inbound soft reconfiguration for IPv4 Unicast not enabled on 10.1.1.1 + +Inbound soft reconfiguration for IPv4 Multicast not enabled on 10.1.1.1 + +Inbound soft reconfiguration for IPv6 Unicast not enabled on 10.1.1.1 + +Inbound soft reconfiguration for IPv6 Multicast not enabled on 10.1.1.1 + +Inbound soft reconfiguration for VPNv4 Unicast not enabled on 10.1.1.1 + +Inbound soft reconfiguration for VPNv6 Unicast not enabled on 10.1.1.1 + +Inbound soft reconfiguration for IPv4 MDT not enabled on 10.1.1.1 + +Inbound soft reconfiguration for IPv6 Label Unicast not enabled on 10.1.1.1 + +Inbound soft reconfiguration for L2VPN VPLS not enabled on 10.1.1.1 + +Inbound soft reconfiguration for IPv4 MVPN not enabled on 10.1.1.1 + +Inbound soft reconfiguration for IPv6 MVPN not enabled on 10.1.1.1 + +Inbound soft reconfiguration for IPv4 Label Unicast not enabled on 10.1.1.1 + +Inbound soft reconfiguration for L2VPN EVPN not enabled on 10.1.1.1 + nx-osv-1# +Could not learn +Parser Output is empty ++====================================================================================================================================================+ +| Commands for learning feature 'Bgp' | ++====================================================================================================================================================+ +| - Parsed commands | +|----------------------------------------------------------------------------------------------------------------------------------------------------| +| cmd: | +| cmd: | +| cmd: | +| cmd: | +| cmd: | +| cmd: , arguments: {'vrf':'default'} | +| cmd: | +| cmd: , arguments: {'neighbor':'10.1.1.1','vrf':'default'} | +| cmd: , arguments: {'neighbor':'10.1.1.1','vrf':'default'} | +|====================================================================================================================================================| +| - Commands with empty output | +|----------------------------------------------------------------------------------------------------------------------------------------------------| +| cmd: | +| cmd: | +| cmd: | +| cmd: , arguments: {'vrf':'management'} | +| cmd: , arguments: {'neighbor':'10.1.1.1','vrf':'default'} | +|====================================================================================================================================================| diff --git a/mocked_devices/2-manual/initial/snapshot/bgp_nxos_nx-osv-1_ops.txt b/mocked_devices/2-manual/initial/snapshot/bgp_nxos_nx-osv-1_ops.txt new file mode 100644 index 0000000..483ec12 --- /dev/null +++ b/mocked_devices/2-manual/initial/snapshot/bgp_nxos_nx-osv-1_ops.txt @@ -0,0 +1,202 @@ +{ + "attributes": null, + "commands": null, + "connections": null, + "context_manager": {}, + "info": { + "instance": { + "default": { + "bgp_id": 65000, + "protocol_state": "running", + "vrf": { + "default": { + "address_family": { + "ipv4 unicast": { + "distance_internal_as": 200, + "nexthop_trigger_delay_critical": 3000, + "nexthop_trigger_delay_non_critical": 10000, + "nexthop_trigger_enable": true + }, + "ipv6 unicast": { + "nexthop_trigger_delay_critical": 3000, + "nexthop_trigger_delay_non_critical": 10000, + "nexthop_trigger_enable": true + } + }, + "cluster_id": "0.0.0.0", + "confederation_identifier": 0, + "neighbor": { + "10.1.1.1": { + "address_family": { + "ipv4 unicast": { + "bgp_table_version": 340, + "session_state": "established" + } + }, + "bgp_negotiated_capabilities": { + "dynamic_capability": "advertised (mp, refresh, gr)", + "dynamic_capability_old": "advertised", + "graceful_restart": "advertised", + "route_refresh": "advertised received", + "route_refresh_old": "advertised received" + }, + "bgp_negotiated_keepalive_timers": { + "hold_time": 180, + "keepalive_interval": 60 + }, + "bgp_neighbor_counters": { + "messages": { + "received": { + "bytes_in_queue": 0, + "capability": 0, + "keepalives": 31484, + "notifications": 1, + "opens": 103, + "route_refresh": 0, + "total": 31794, + "total_bytes": 604376, + "updates": 206 + }, + "sent": { + "bytes_in_queue": 0, + "capability": 0, + "keepalives": 28630, + "notifications": 102, + "opens": 104, + "route_refresh": 0, + "total": 29054, + "total_bytes": 551847, + "updates": 218 + } + } + }, + "bgp_session_transport": { + "connection": { + "last_reset": "never", + "reset_reason": "no error", + "state": "established" + }, + "transport": { + "foreign_host": "10.1.1.1", + "foreign_port": "42266", + "local_host": "10.2.2.2", + "local_port": "179" + } + }, + "bgp_version": 4, + "holdtime": 180, + "keepalive_interval": 60, + "local_as_as_no": "None", + "remote_as": 65000, + "session_state": "established", + "shutdown": false, + "up_time": "01:33:39", + "update_source": "loopback0" + } + }, + "router_id": "10.2.2.2" + } + } + } + } + }, + "routes_per_peer": { + "instance": { + "default": { + "vrf": { + "default": { + "neighbor": { + "10.1.1.1": { + "address_family": { + "ipv4 unicast": { + "advertised": { + "10.22.22.22/32": { + "index": { + "1": { + "locprf": 100, + "next_hop": "0.0.0.0", + "origin_codes": "i", + "path_type": "l", + "status_codes": "*>", + "weight": 32768 + } + } + } + }, + "input_queue": 0, + "msg_rcvd": 31794, + "msg_sent": 29054, + "output_queue": 0, + "routes": { + "10.11.11.11/32": { + "index": { + "1": { + "locprf": 100, + "metric": 0, + "next_hop": "10.1.1.1", + "origin_codes": "i", + "path_type": "i", + "status_codes": "*>", + "weight": 0 + } + } + } + }, + "state_pfxrcd": "1", + "tbl_ver": 340, + "up_down": "01:33:39" + }, + "ipv6 unicast": { + "advertised": {}, + "routes": {} + } + }, + "remote_as": 65000 + } + } + } + } + } + } + }, + "table": { + "instance": { + "default": { + "vrf": { + "default": { + "address_family": { + "ipv4 unicast": { + "bgp_table_version": 340, + "prefixes": { + "10.11.11.11/32": { + "index": { + "1": { + "localpref": 100, + "metric": 0, + "next_hop": "10.1.1.1", + "origin_codes": "i", + "status_codes": "*>", + "weight": 0 + } + } + }, + "10.22.22.22/32": { + "index": { + "1": { + "localpref": 100, + "next_hop": "0.0.0.0", + "origin_codes": "i", + "status_codes": "*>", + "weight": 32768 + } + } + } + } + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/mocked_devices/2-manual/initial/snapshot/connection_csr1000v-1.txt b/mocked_devices/2-manual/initial/snapshot/connection_csr1000v-1.txt new file mode 100644 index 0000000..3fd7601 --- /dev/null +++ b/mocked_devices/2-manual/initial/snapshot/connection_csr1000v-1.txt @@ -0,0 +1,84 @@ +[2019-04-28 15:58:13,863] +++ csr1000v-1 logfile snapshot/connection_csr1000v-1.txt +++ +[2019-04-28 15:58:13,863] +++ Unicon plugin iosxe +++ +[2019-04-28 15:58:13,867] +++ connection to spawn: telnet 172.25.192.90 17000, id: 4623294136 +++ +[2019-04-28 15:58:13,868] connection to csr1000v-1 +Trying 172.25.192.90... +Connected to asg-virl-ubuntu.cisco.com. +Escape character is '^]'. + +csr1000v-1# +[2019-04-28 15:58:14,601] +++ initializing handle +++ +[2019-04-28 15:58:14,602] +++ csr1000v-1: executing command 'term length 0' +++ +term length 0 +csr1000v-1# +[2019-04-28 15:58:14,715] +++ csr1000v-1: executing command 'term width 0' +++ +term width 0 +csr1000v-1# +[2019-04-28 15:58:14,822] +++ csr1000v-1: executing command 'show version' +++ +show version +Cisco IOS XE Software, Version 16.09.01 +Cisco IOS Software [Fuji], Virtual XE Software (X86_64_LINUX_IOSD-UNIVERSALK9-M), Version 16.9.1, RELEASE SOFTWARE (fc2) +Technical Support: http://www.cisco.com/techsupport +Copyright (c) 1986-2018 by Cisco Systems, Inc. +Compiled Tue 17-Jul-18 16:57 by mcpre + + +Cisco IOS-XE software, Copyright (c) 2005-2018 by cisco Systems, Inc. +All rights reserved. Certain components of Cisco IOS-XE software are +licensed under the GNU General Public License ("GPL") Version 2.0. The +software code licensed under GPL Version 2.0 is free software that comes +with ABSOLUTELY NO WARRANTY. You can redistribute and/or modify such +GPL code under the terms of GPL Version 2.0. For more details, see the +documentation or "License Notice" file accompanying the IOS-XE software, +or the applicable URL provided on the flyer accompanying the IOS-XE +software. + + +ROM: IOS-XE ROMMON + +csr1000v-1 uptime is 5 days, 6 hours, 1 minute +Uptime for this control processor is 5 days, 6 hours, 10 minutes +System returned to ROM by reload +System image file is "bootflash:packages.conf" +Last reload reason: Critical software exception, check bootflash:crashinfo_RP_00_00_20190423-163950-UTC + + + +This product contains cryptographic features and is subject to United +States and local country laws governing import, export, transfer and +use. Delivery of Cisco cryptographic products does not imply +third-party authority to import, export, distribute or use encryption. +Importers, exporters, distributors and users are responsible for +compliance with U.S. and local country laws. By using this product you +agree to comply with applicable laws and regulations. If you are unable +to comply with U.S. and local laws, return this product immediately. + +A summary of U.S. laws governing Cisco cryptographic products may be found at: +http://www.cisco.com/wwl/export/crypto/tool/stqrg.html + +If you require further assistance please contact us by sending email to +export@cisco.com. + +License Level: ax +License Type: Default. No valid license found. +Next reload license Level: ax + +cisco CSR1000V (VXE) processor (revision VXE) with 1217428K/3075K bytes of memory. +Processor board ID 9P34NU3ZQ4L +3 Gigabit Ethernet interfaces +32768K bytes of non-volatile configuration memory. +3018864K bytes of physical memory. +7774207K bytes of virtual hard disk at bootflash:. +0K bytes of WebUI ODM Files at webui:. + +Configuration register is 0x2102 + +csr1000v-1# +[2019-04-28 15:58:14,940] +++ csr1000v-1: config +++ +config term +Enter configuration commands, one per line. End with CNTL/Z. +csr1000v-1(config)#no logging console +csr1000v-1(config)#line console 0 +csr1000v-1(config-line)#exec-timeout 0 +csr1000v-1(config-line)#end +csr1000v-1# diff --git a/mocked_devices/2-manual/initial/snapshot/connection_nx-osv-1.txt b/mocked_devices/2-manual/initial/snapshot/connection_nx-osv-1.txt new file mode 100644 index 0000000..a65e790 --- /dev/null +++ b/mocked_devices/2-manual/initial/snapshot/connection_nx-osv-1.txt @@ -0,0 +1,28 @@ +[2019-04-28 15:58:12,028] +++ nx-osv-1 logfile snapshot/connection_nx-osv-1.txt +++ +[2019-04-28 15:58:12,028] +++ Unicon plugin nxos +++ +[2019-04-28 15:58:12,032] +++ connection to spawn: telnet 172.25.192.90 17002, id: 4617057672 +++ +[2019-04-28 15:58:12,033] connection to nx-osv-1 +Trying 172.25.192.90... +Connected to asg-virl-ubuntu.cisco.com. +Escape character is '^]'. + + nx-osv-1# +[2019-04-28 15:58:12,839] +++ initializing handle +++ +[2019-04-28 15:58:12,840] +++ nx-osv-1: executing command 'term length 0' +++ +term length 0 + nx-osv-1# +[2019-04-28 15:58:12,974] +++ nx-osv-1: executing command 'term width 511' +++ +term width 511 + nx-osv-1# +[2019-04-28 15:58:13,092] +++ nx-osv-1: executing command 'terminal session-timeout 0' +++ +terminal session-timeout 0 + nx-osv-1# +[2019-04-28 15:58:13,216] +++ nx-osv-1: config +++ +config term +Enter configuration commands, one per line. End with CNTL/Z. + nx-osv-1(config)# no logging console + nx-osv-1(config)# line console + nx-osv-1(config-console)# exec-timeout 0 + nx-osv-1(config-console)# terminal width 511 + nx-osv-1(config-console)# end + nx-osv-1# diff --git a/mocked_devices/2-manual/initial/snapshot/interface_iosxe_csr1000v-1_console.txt b/mocked_devices/2-manual/initial/snapshot/interface_iosxe_csr1000v-1_console.txt new file mode 100644 index 0000000..749d6d8 --- /dev/null +++ b/mocked_devices/2-manual/initial/snapshot/interface_iosxe_csr1000v-1_console.txt @@ -0,0 +1,389 @@ ++++ csr1000v-1: executing command 'show interfaces' +++ +show interfaces +GigabitEthernet1 is up, line protocol is up + Hardware is CSR vNIC, address is 5e00.0000.0000 (bia 5e00.0000.0000) + Internet address is 10.255.8.122/16 + MTU 1500 bytes, BW 1000000 Kbit/sec, DLY 10 usec, + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, loopback not set + Keepalive set (10 sec) + Full Duplex, 1000Mbps, link type is auto, media type is Virtual + output flow-control is unsupported, input flow-control is unsupported + ARP type: ARPA, ARP Timeout 04:00:00 + Last input 00:00:08, output 00:00:05, output hang never + Last clearing of "show interface" counters never + Input queue: 0/375/0/0 (size/max/drops/flushes); Total output drops: 0 + Queueing strategy: fifo + Output queue: 0/40 (size/max) + 5 minute input rate 0 bits/sec, 0 packets/sec + 5 minute output rate 0 bits/sec, 0 packets/sec + 225477 packets input, 16038770 bytes, 0 no buffer + Received 0 broadcasts (0 IP multicasts) + 0 runts, 0 giants, 0 throttles + 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored + 0 watchdog, 0 multicast, 0 pause input + 82636 packets output, 7444946 bytes, 0 underruns + 0 output errors, 0 collisions, 0 interface resets + 15117 unknown protocol drops + 0 babbles, 0 late collision, 0 deferred + 0 lost carrier, 0 no carrier, 0 pause output + 0 output buffer failures, 0 output buffers swapped out +GigabitEthernet2 is up, line protocol is up + Hardware is CSR vNIC, address is fa16.3ebe.e48e (bia fa16.3ebe.e48e) + Internet address is 10.0.1.1/24 + MTU 1500 bytes, BW 1000000 Kbit/sec, DLY 10 usec, + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, loopback not set + Keepalive set (10 sec) + Full Duplex, 1000Mbps, link type is auto, media type is Virtual + output flow-control is unsupported, input flow-control is unsupported + ARP type: ARPA, ARP Timeout 04:00:00 + Last input 00:00:06, output 00:00:04, output hang never + Last clearing of "show interface" counters never + Input queue: 0/375/0/0 (size/max/drops/flushes); Total output drops: 0 + Queueing strategy: fifo + Output queue: 0/40 (size/max) + 5 minute input rate 0 bits/sec, 0 packets/sec + 5 minute output rate 0 bits/sec, 0 packets/sec + 82330 packets input, 7330625 bytes, 0 no buffer + Received 0 broadcasts (0 IP multicasts) + 0 runts, 0 giants, 0 throttles + 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored + 0 watchdog, 0 multicast, 0 pause input + 67510 packets output, 6724966 bytes, 0 underruns + 0 output errors, 0 collisions, 0 interface resets + 7559 unknown protocol drops + 0 babbles, 0 late collision, 0 deferred + 0 lost carrier, 0 no carrier, 0 pause output + 0 output buffer failures, 0 output buffers swapped out +GigabitEthernet3 is up, line protocol is up + Hardware is CSR vNIC, address is fa16.3e07.71e5 (bia fa16.3e07.71e5) + Internet address is 10.0.2.1/24 + MTU 1500 bytes, BW 1000000 Kbit/sec, DLY 10 usec, + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, loopback not set + Keepalive set (10 sec) + Full Duplex, 1000Mbps, link type is auto, media type is Virtual + output flow-control is unsupported, input flow-control is unsupported + ARP type: ARPA, ARP Timeout 04:00:00 + Last input 00:00:02, output 00:00:00, output hang never + Last clearing of "show interface" counters never + Input queue: 0/375/0/0 (size/max/drops/flushes); Total output drops: 0 + Queueing strategy: fifo + Output queue: 0/40 (size/max) + 5 minute input rate 0 bits/sec, 0 packets/sec + 5 minute output rate 0 bits/sec, 0 packets/sec + 60137 packets input, 5971972 bytes, 0 no buffer + Received 0 broadcasts (0 IP multicasts) + 0 runts, 0 giants, 0 throttles + 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored + 0 watchdog, 0 multicast, 0 pause input + 89867 packets output, 8164625 bytes, 0 underruns + 0 output errors, 0 collisions, 0 interface resets + 7559 unknown protocol drops + 0 babbles, 0 late collision, 0 deferred + 0 lost carrier, 0 no carrier, 0 pause output + 0 output buffer failures, 0 output buffers swapped out +Loopback0 is up, line protocol is up + Hardware is Loopback + Internet address is 10.1.1.1/32 + MTU 1514 bytes, BW 8000000 Kbit/sec, DLY 5000 usec, + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation LOOPBACK, loopback not set + Keepalive set (10 sec) + Last input 00:00:05, output never, output hang never + Last clearing of "show interface" counters never + Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0 + Queueing strategy: fifo + Output queue: 0/0 (size/max) + 5 minute input rate 0 bits/sec, 0 packets/sec + 5 minute output rate 0 bits/sec, 0 packets/sec + 0 packets input, 0 bytes, 0 no buffer + Received 0 broadcasts (0 IP multicasts) + 0 runts, 0 giants, 0 throttles + 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored, 0 abort + 16313 packets output, 819733 bytes, 0 underruns + 0 output errors, 0 collisions, 0 interface resets + 0 unknown protocol drops + 0 output buffer failures, 0 output buffers swapped out +Loopback1 is up, line protocol is up + Hardware is Loopback + Internet address is 10.11.11.11/32 + MTU 1514 bytes, BW 8000000 Kbit/sec, DLY 5000 usec, + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation LOOPBACK, loopback not set + Keepalive set (10 sec) + Last input 00:00:05, output never, output hang never + Last clearing of "show interface" counters never + Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0 + Queueing strategy: fifo + Output queue: 0/0 (size/max) + 5 minute input rate 0 bits/sec, 0 packets/sec + 5 minute output rate 0 bits/sec, 0 packets/sec + 0 packets input, 0 bytes, 0 no buffer + Received 0 broadcasts (0 IP multicasts) + 0 runts, 0 giants, 0 throttles + 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored, 0 abort + 16313 packets output, 819733 bytes, 0 underruns + 0 output errors, 0 collisions, 0 interface resets + 0 unknown protocol drops + 0 output buffer failures, 0 output buffers swapped out +csr1000v-1# ++++ csr1000v-1: executing command 'show vrf detail' +++ +show vrf detail +csr1000v-1# ++++ csr1000v-1: executing command 'show interfaces accounting' +++ +show interfaces accounting +GigabitEthernet1 + Protocol Pkts In Chars In Pkts Out Chars Out + Other 160207 11887020 2788 167280 + IP 96084 8329803 79849 7277733 + ARP 129973 5507646 2788 167280 + IPv6 22 1836 0 0 +GigabitEthernet2 + Protocol Pkts In Chars In Pkts Out Chars Out + Other 15149 3282466 2749 164940 + IP 74673 5681985 64763 6560207 + ARP 31 1860 2749 164940 +GigabitEthernet3 + Protocol Pkts In Chars In Pkts Out Chars Out + Other 15148 3282406 2748 164880 + IP 52481 4323392 87120 7999812 + ARP 30 1800 2748 164880 +Loopback0 + Protocol Pkts In Chars In Pkts Out Chars Out + IP 16313 819733 16313 819733 +Loopback1 + Protocol Pkts In Chars In Pkts Out Chars Out + IP 16313 819733 16313 819733 +csr1000v-1# ++++ csr1000v-1: executing command 'show ip interface' +++ +show ip interface +GigabitEthernet1 is up, line protocol is up + Internet address is 10.255.8.122/16 + Broadcast address is 255.255.255.255 + Address determined by DHCP + MTU is 1500 bytes + Helper address is not set + Directed broadcast forwarding is disabled + Outgoing Common access list is not set + Outgoing access list is not set + Inbound Common access list is not set + Inbound access list is not set + Proxy ARP is enabled + Local Proxy ARP is disabled + Security level is default + Split horizon is enabled + ICMP redirects are always sent + ICMP unreachables are always sent + ICMP mask replies are never sent + IP fast switching is enabled + IP Flow switching is disabled + IP CEF switching is enabled + IP CEF switching turbo vector + IP Null turbo vector + Associated unicast routing topologies: + Topology "base", operation state is UP + IP multicast fast switching is enabled + IP multicast distributed fast switching is disabled + IP route-cache flags are Fast, CEF + Router Discovery is disabled + IP output packet accounting is disabled + IP access violation accounting is disabled + TCP/IP header compression is disabled + RTP/IP header compression is disabled + Probe proxy name replies are disabled + Policy routing is disabled + Network address translation is disabled + BGP Policy Mapping is disabled + Input features: MCI Check + IPv4 WCCP Redirect outbound is disabled + IPv4 WCCP Redirect inbound is disabled + IPv4 WCCP Redirect exclude is disabled +GigabitEthernet2 is up, line protocol is up + Internet address is 10.0.1.1/24 + Broadcast address is 255.255.255.255 + Address determined by non-volatile memory + MTU is 1500 bytes + Helper address is not set + Directed broadcast forwarding is disabled + Multicast reserved groups joined: 224.0.0.5 224.0.0.6 + Outgoing Common access list is not set + Outgoing access list is not set + Inbound Common access list is not set + Inbound access list is not set + Proxy ARP is enabled + Local Proxy ARP is disabled + Security level is default + Split horizon is enabled + ICMP redirects are always sent + ICMP unreachables are always sent + ICMP mask replies are never sent + IP fast switching is enabled + IP Flow switching is disabled + IP CEF switching is enabled + IP CEF switching turbo vector + IP Null turbo vector + Associated unicast routing topologies: + Topology "base", operation state is UP + IP multicast fast switching is enabled + IP multicast distributed fast switching is disabled + IP route-cache flags are Fast, CEF + Router Discovery is disabled + IP output packet accounting is disabled + IP access violation accounting is disabled + TCP/IP header compression is disabled + RTP/IP header compression is disabled + Probe proxy name replies are disabled + Policy routing is disabled + Network address translation is disabled + BGP Policy Mapping is disabled + Input features: MCI Check + IPv4 WCCP Redirect outbound is disabled + IPv4 WCCP Redirect inbound is disabled + IPv4 WCCP Redirect exclude is disabled +GigabitEthernet3 is up, line protocol is up + Internet address is 10.0.2.1/24 + Broadcast address is 255.255.255.255 + Address determined by non-volatile memory + MTU is 1500 bytes + Helper address is not set + Directed broadcast forwarding is disabled + Multicast reserved groups joined: 224.0.0.5 224.0.0.6 + Outgoing Common access list is not set + Outgoing access list is not set + Inbound Common access list is not set + Inbound access list is not set + Proxy ARP is enabled + Local Proxy ARP is disabled + Security level is default + Split horizon is enabled + ICMP redirects are always sent + ICMP unreachables are always sent + ICMP mask replies are never sent + IP fast switching is enabled + IP Flow switching is disabled + IP CEF switching is enabled + IP CEF switching turbo vector + IP Null turbo vector + Associated unicast routing topologies: + Topology "base", operation state is UP + IP multicast fast switching is enabled + IP multicast distributed fast switching is disabled + IP route-cache flags are Fast, CEF + Router Discovery is disabled + IP output packet accounting is disabled + IP access violation accounting is disabled + TCP/IP header compression is disabled + RTP/IP header compression is disabled + Probe proxy name replies are disabled + Policy routing is disabled + Network address translation is disabled + BGP Policy Mapping is disabled + Input features: MCI Check + IPv4 WCCP Redirect outbound is disabled + IPv4 WCCP Redirect inbound is disabled + IPv4 WCCP Redirect exclude is disabled +Loopback0 is up, line protocol is up + Internet address is 10.1.1.1/32 + Broadcast address is 255.255.255.255 + Address determined by non-volatile memory + MTU is 1514 bytes + Helper address is not set + Directed broadcast forwarding is disabled + Multicast reserved groups joined: 224.0.0.5 + Outgoing Common access list is not set + Outgoing access list is not set + Inbound Common access list is not set + Inbound access list is not set + Proxy ARP is enabled + Local Proxy ARP is disabled + Security level is default + Split horizon is enabled + ICMP redirects are always sent + ICMP unreachables are always sent + ICMP mask replies are never sent + IP fast switching is enabled + IP Flow switching is disabled + IP CEF switching is enabled + IP CEF switching turbo vector + IP Null turbo vector + Associated unicast routing topologies: + Topology "base", operation state is UP + IP multicast fast switching is enabled + IP multicast distributed fast switching is disabled + IP route-cache flags are Fast, CEF + Router Discovery is disabled + IP output packet accounting is disabled + IP access violation accounting is disabled + TCP/IP header compression is disabled + RTP/IP header compression is disabled + Probe proxy name replies are disabled + Policy routing is disabled + Network address translation is disabled + BGP Policy Mapping is disabled + Input features: MCI Check + IPv4 WCCP Redirect outbound is disabled + IPv4 WCCP Redirect inbound is disabled + IPv4 WCCP Redirect exclude is disabled +Loopback1 is up, line protocol is up + Internet address is 10.11.11.11/32 + Broadcast address is 255.255.255.255 + Address determined by non-volatile memory + MTU is 1514 bytes + Helper address is not set + Directed broadcast forwarding is disabled + Outgoing Common access list is not set + Outgoing access list is not set + Inbound Common access list is not set + Inbound access list is not set + Proxy ARP is enabled + Local Proxy ARP is disabled + Security level is default + Split horizon is enabled + ICMP redirects are always sent + ICMP unreachables are always sent + ICMP mask replies are never sent + IP fast switching is enabled + IP Flow switching is disabled + IP CEF switching is enabled + IP CEF switching turbo vector + IP Null turbo vector + Associated unicast routing topologies: + Topology "base", operation state is UP + IP multicast fast switching is enabled + IP multicast distributed fast switching is disabled + IP route-cache flags are Fast, CEF + Router Discovery is disabled + IP output packet accounting is disabled + IP access violation accounting is disabled + TCP/IP header compression is disabled + RTP/IP header compression is disabled + Probe proxy name replies are disabled + Policy routing is disabled + Network address translation is disabled + BGP Policy Mapping is disabled + Input features: MCI Check + IPv4 WCCP Redirect outbound is disabled + IPv4 WCCP Redirect inbound is disabled + IPv4 WCCP Redirect exclude is disabled +csr1000v-1# ++++ csr1000v-1: executing command 'show ipv6 interface' +++ +show ipv6 interface +csr1000v-1# +Could not learn +Parser Output is empty ++====================================================================================================================================================+ +| Commands for learning feature 'Interface' | ++====================================================================================================================================================+ +| - Parsed commands | +|----------------------------------------------------------------------------------------------------------------------------------------------------| +| cmd: | +| cmd: | +| cmd: | +|====================================================================================================================================================| +| - Commands with empty output | +|----------------------------------------------------------------------------------------------------------------------------------------------------| +| cmd: | +| cmd: | +|====================================================================================================================================================| diff --git a/mocked_devices/2-manual/initial/snapshot/interface_iosxe_csr1000v-1_ops.txt b/mocked_devices/2-manual/initial/snapshot/interface_iosxe_csr1000v-1_ops.txt new file mode 100644 index 0000000..72df283 --- /dev/null +++ b/mocked_devices/2-manual/initial/snapshot/interface_iosxe_csr1000v-1_ops.txt @@ -0,0 +1,328 @@ +{ + "attributes": null, + "commands": null, + "connections": null, + "context_manager": {}, + "info": { + "GigabitEthernet1": { + "accounting": { + "arp": { + "chars_in": 5507646, + "chars_out": 167280, + "pkts_in": 129973, + "pkts_out": 2788 + }, + "ip": { + "chars_in": 8329803, + "chars_out": 7277733, + "pkts_in": 96084, + "pkts_out": 79849 + }, + "ipv6": { + "chars_in": 1836, + "chars_out": 0, + "pkts_in": 22, + "pkts_out": 0 + }, + "other": { + "chars_in": 11887020, + "chars_out": 167280, + "pkts_in": 160207, + "pkts_out": 2788 + } + }, + "auto_negotiate": true, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 16038770, + "in_pkts": 225477, + "last_clear": "never", + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_octets": 7444946, + "out_pkts": 82636, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 300, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "duplex_mode": "full", + "enabled": true, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "ipv4": { + "10.255.8.122/16": { + "ip": "10.255.8.122", + "prefix_length": "16", + "secondary": false + } + }, + "mac_address": "5e00.0000.0000", + "mtu": 1500, + "oper_status": "up", + "phys_address": "5e00.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "port_speed": "1000", + "switchport_enable": false, + "type": "CSR vNIC" + }, + "GigabitEthernet2": { + "accounting": { + "arp": { + "chars_in": 1860, + "chars_out": 164940, + "pkts_in": 31, + "pkts_out": 2749 + }, + "ip": { + "chars_in": 5681985, + "chars_out": 6560207, + "pkts_in": 74673, + "pkts_out": 64763 + }, + "other": { + "chars_in": 3282466, + "chars_out": 164940, + "pkts_in": 15149, + "pkts_out": 2749 + } + }, + "auto_negotiate": true, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 7330625, + "in_pkts": 82330, + "last_clear": "never", + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_octets": 6724966, + "out_pkts": 67510, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 300, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "duplex_mode": "full", + "enabled": true, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "ipv4": { + "10.0.1.1/24": { + "ip": "10.0.1.1", + "prefix_length": "24", + "secondary": false + } + }, + "mac_address": "fa16.3ebe.e48e", + "mtu": 1500, + "oper_status": "up", + "phys_address": "fa16.3ebe.e48e", + "port_channel": { + "port_channel_member": false + }, + "port_speed": "1000", + "switchport_enable": false, + "type": "CSR vNIC" + }, + "GigabitEthernet3": { + "accounting": { + "arp": { + "chars_in": 1800, + "chars_out": 164880, + "pkts_in": 30, + "pkts_out": 2748 + }, + "ip": { + "chars_in": 4323392, + "chars_out": 7999812, + "pkts_in": 52481, + "pkts_out": 87120 + }, + "other": { + "chars_in": 3282406, + "chars_out": 164880, + "pkts_in": 15148, + "pkts_out": 2748 + } + }, + "auto_negotiate": true, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 5971972, + "in_pkts": 60137, + "last_clear": "never", + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_octets": 8164625, + "out_pkts": 89867, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 300, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "duplex_mode": "full", + "enabled": true, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "ipv4": { + "10.0.2.1/24": { + "ip": "10.0.2.1", + "prefix_length": "24", + "secondary": false + } + }, + "mac_address": "fa16.3e07.71e5", + "mtu": 1500, + "oper_status": "up", + "phys_address": "fa16.3e07.71e5", + "port_channel": { + "port_channel_member": false + }, + "port_speed": "1000", + "switchport_enable": false, + "type": "CSR vNIC" + }, + "Loopback0": { + "accounting": { + "ip": { + "chars_in": 819733, + "chars_out": 819733, + "pkts_in": 16313, + "pkts_out": 16313 + } + }, + "bandwidth": 8000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "last_clear": "never", + "out_errors": 0, + "out_octets": 819733, + "out_pkts": 16313, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 300, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 5000, + "enabled": true, + "encapsulation": { + "encapsulation": "loopback" + }, + "ipv4": { + "10.1.1.1/32": { + "ip": "10.1.1.1", + "prefix_length": "32", + "secondary": false + } + }, + "mtu": 1514, + "oper_status": "up", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": false, + "type": "Loopback" + }, + "Loopback1": { + "accounting": { + "ip": { + "chars_in": 819733, + "chars_out": 819733, + "pkts_in": 16313, + "pkts_out": 16313 + } + }, + "bandwidth": 8000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "last_clear": "never", + "out_errors": 0, + "out_octets": 819733, + "out_pkts": 16313, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 300, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 5000, + "enabled": true, + "encapsulation": { + "encapsulation": "loopback" + }, + "ipv4": { + "10.11.11.11/32": { + "ip": "10.11.11.11", + "prefix_length": "32", + "secondary": false + } + }, + "mtu": 1514, + "oper_status": "up", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": false, + "type": "Loopback" + } + } +} \ No newline at end of file diff --git a/mocked_devices/2-manual/initial/snapshot/interface_nxos_nx-osv-1_console.txt b/mocked_devices/2-manual/initial/snapshot/interface_nxos_nx-osv-1_console.txt new file mode 100644 index 0000000..5ae5273 --- /dev/null +++ b/mocked_devices/2-manual/initial/snapshot/interface_nxos_nx-osv-1_console.txt @@ -0,0 +1,7315 @@ ++++ nx-osv-1: executing command 'show interface' +++ +show interface +mgmt0 is up +admin state is up + Hardware: Ethernet, address: 5e00.0001.0000 (bia 5e00.0001.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 32/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + full-duplex, 1000 Mb/s + Auto-Negotiation is turned on + Auto-mdix is turned off + EtherType is 0x0000 + 1 minute input rate 296 bits/sec, 0 packets/sec + 1 minute output rate 24 bits/sec, 0 packets/sec + Rx + 660056 input packets 0 unicast packets 18847 multicast packets + 641209 broadcast packets 45200491 bytes + Tx + 28697 output packets 0 unicast packets 28697 multicast packets + 0 broadcast packets 6169847 bytes + +Ethernet2/1 is up +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia fa16.3edd.c013) + Internet Address is 10.0.1.2/24 + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + full-duplex, 1000 Mb/s + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped 2week(s) 5day(s) + Last clearing of "show interface" counters never + 1 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/2 is up +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia fa16.3e8a.5b7d) + Internet Address is 10.0.2.2/24 + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + full-duplex, 1000 Mb/s + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped 2week(s) 5day(s) + Last clearing of "show interface" counters never + 1 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/3 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/4 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/5 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/6 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/7 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/8 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/9 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/10 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/11 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/12 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/13 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/14 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/15 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/16 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/17 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/18 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/19 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/20 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/21 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/22 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/23 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/24 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/25 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/26 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/27 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/28 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/29 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/30 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/31 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/32 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/33 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/34 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/35 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/36 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/37 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/38 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/39 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/40 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/41 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/42 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/43 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/44 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/45 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/46 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/47 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/48 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/1 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.002f) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/2 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.002f) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/3 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/4 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/5 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/6 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/7 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/8 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/9 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/10 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/11 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/12 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/13 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/14 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/15 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/16 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/17 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/18 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/19 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/20 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/21 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/22 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/23 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/24 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/25 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/26 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/27 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/28 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/29 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/30 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/31 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/32 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/33 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/34 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/35 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/36 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/37 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/38 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/39 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/40 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/41 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/42 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/43 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/44 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/45 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/46 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/47 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/48 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/1 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.002f) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/2 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.002f) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/3 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/4 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/5 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/6 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/7 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/8 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/9 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/10 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/11 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/12 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/13 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/14 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/15 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/16 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/17 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/18 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/19 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/20 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/21 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/22 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/23 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/24 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/25 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/26 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/27 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/28 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/29 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/30 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/31 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/32 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/33 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/34 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/35 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/36 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/37 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/38 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/39 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/40 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/41 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/42 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/43 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/44 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/45 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/46 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/47 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/48 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +loopback0 is up +admin state is up + Hardware: Loopback + Internet Address is 10.2.2.2/32 + MTU 1500 bytes, BW 8000000 Kbit, DLY 5000 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation LOOPBACK, medium is broadcast + Port mode is routed + Auto-mdix is turned off + 66810 packets input 3349686 bytes + 0 multicast frames 0 compressed + 0 input errors 0 frame 0 overrun 0 fifo + 0 packets output 0 bytes 0 underruns + 0 output errors 0 collisions 0 fifo + 0 out_carrier_errors + +loopback1 is up +admin state is up + Hardware: Loopback + Internet Address is 10.22.22.22/32 + MTU 1500 bytes, BW 8000000 Kbit, DLY 5000 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation LOOPBACK, medium is broadcast + Port mode is routed + Auto-mdix is turned off + 0 packets input 0 bytes + 0 multicast frames 0 compressed + 0 input errors 0 frame 0 overrun 0 fifo + 0 packets output 0 bytes 0 underruns + 0 output errors 0 collisions 0 fifo + 0 out_carrier_errors + + nx-osv-1# ++++ nx-osv-1: executing command 'show vrf all interface' +++ +show vrf all interface +Interface VRF-Name VRF-ID Site-of-Origin +loopback0 default 1 -- +loopback1 default 1 -- +Null0 default 1 -- +Ethernet2/1 default 1 -- +Ethernet2/2 default 1 -- +Ethernet2/3 default 1 -- +Ethernet2/4 default 1 -- +Ethernet2/5 default 1 -- +Ethernet2/6 default 1 -- +Ethernet2/7 default 1 -- +Ethernet2/8 default 1 -- +Ethernet2/9 default 1 -- +Ethernet2/10 default 1 -- +Ethernet2/11 default 1 -- +Ethernet2/12 default 1 -- +Ethernet2/13 default 1 -- +Ethernet2/14 default 1 -- +Ethernet2/15 default 1 -- +Ethernet2/16 default 1 -- +Ethernet2/17 default 1 -- +Ethernet2/18 default 1 -- +Ethernet2/19 default 1 -- +Ethernet2/20 default 1 -- +Ethernet2/21 default 1 -- +Ethernet2/22 default 1 -- +Ethernet2/23 default 1 -- +Ethernet2/24 default 1 -- +Ethernet2/25 default 1 -- +Ethernet2/26 default 1 -- +Ethernet2/27 default 1 -- +Ethernet2/28 default 1 -- +Ethernet2/29 default 1 -- +Ethernet2/30 default 1 -- +Ethernet2/31 default 1 -- +Ethernet2/32 default 1 -- +Ethernet2/33 default 1 -- +Ethernet2/34 default 1 -- +Ethernet2/35 default 1 -- +Ethernet2/36 default 1 -- +Ethernet2/37 default 1 -- +Ethernet2/38 default 1 -- +Ethernet2/39 default 1 -- +Ethernet2/40 default 1 -- +Ethernet2/41 default 1 -- +Ethernet2/42 default 1 -- +Ethernet2/43 default 1 -- +Ethernet2/44 default 1 -- +Ethernet2/45 default 1 -- +Ethernet2/46 default 1 -- +Ethernet2/47 default 1 -- +Ethernet2/48 default 1 -- +Ethernet3/1 default 1 -- +Ethernet3/2 default 1 -- +Ethernet3/3 default 1 -- +Ethernet3/4 default 1 -- +Ethernet3/5 default 1 -- +Ethernet3/6 default 1 -- +Ethernet3/7 default 1 -- +Ethernet3/8 default 1 -- +Ethernet3/9 default 1 -- +Ethernet3/10 default 1 -- +Ethernet3/11 default 1 -- +Ethernet3/12 default 1 -- +Ethernet3/13 default 1 -- +Ethernet3/14 default 1 -- +Ethernet3/15 default 1 -- +Ethernet3/16 default 1 -- +Ethernet3/17 default 1 -- +Ethernet3/18 default 1 -- +Ethernet3/19 default 1 -- +Ethernet3/20 default 1 -- +Ethernet3/21 default 1 -- +Ethernet3/22 default 1 -- +Ethernet3/23 default 1 -- +Ethernet3/24 default 1 -- +Ethernet3/25 default 1 -- +Ethernet3/26 default 1 -- +Ethernet3/27 default 1 -- +Ethernet3/28 default 1 -- +Ethernet3/29 default 1 -- +Ethernet3/30 default 1 -- +Ethernet3/31 default 1 -- +Ethernet3/32 default 1 -- +Ethernet3/33 default 1 -- +Ethernet3/34 default 1 -- +Ethernet3/35 default 1 -- +Ethernet3/36 default 1 -- +Ethernet3/37 default 1 -- +Ethernet3/38 default 1 -- +Ethernet3/39 default 1 -- +Ethernet3/40 default 1 -- +Ethernet3/41 default 1 -- +Ethernet3/42 default 1 -- +Ethernet3/43 default 1 -- +Ethernet3/44 default 1 -- +Ethernet3/45 default 1 -- +Ethernet3/46 default 1 -- +Ethernet3/47 default 1 -- +Ethernet3/48 default 1 -- +mgmt0 management 2 -- + nx-osv-1# ++++ nx-osv-1: executing command 'show interface switchport' +++ +show interface switchport +Name: Ethernet4/1 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/2 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/3 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/4 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/5 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/6 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/7 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/8 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/9 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/10 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/11 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/12 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/13 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/14 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/15 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/16 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/17 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/18 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/19 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/20 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/21 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/22 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/23 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/24 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/25 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/26 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/27 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/28 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/29 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/30 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/31 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/32 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/33 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/34 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/35 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/36 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/37 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/38 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/39 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/40 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/41 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/42 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/43 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/44 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/45 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/46 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/47 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/48 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none + nx-osv-1# ++++ nx-osv-1: executing command 'show ip interface vrf all' +++ +show ip interface vrf all +IP Interface Status for VRF "default" +loopback0, Interface status: protocol-up/link-up/admin-up, iod: 132, + IP address: 10.2.2.2, IP subnet: 10.2.2.2/32 route-preference: 0, tag: 0 + IP broadcast address: 255.255.255.255 + IP multicast groups locally joined: none + IP MTU: 1500 bytes (using link MTU) + IP primary address route-preference: 0, tag: 0 + IP proxy ARP : disabled + IP Local Proxy ARP : disabled + IP multicast routing: disabled + IP icmp redirects: enabled + IP directed-broadcast: disabled + IP Forwarding: disabled + IP icmp unreachables (except port): disabled + IP icmp port-unreachable: enabled + IP unicast reverse path forwarding: none + IP load sharing: none + IP interface statistics last reset: never + IP interface software stats: (sent/received/forwarded/originated/consumed) + Unicast packets : 0/0/0/0/66811 + Unicast bytes : 0/0/0/0/3349745 + Multicast packets : 0/0/0/0/0 + Multicast bytes : 0/0/0/0/0 + Broadcast packets : 0/0/0/0/0 + Broadcast bytes : 0/0/0/0/0 + Labeled packets : 0/0/0/0/0 + Labeled bytes : 0/0/0/0/0 + WCCP Redirect outbound: disabled + WCCP Redirect inbound: disabled + WCCP Redirect exclude: disabled +loopback1, Interface status: protocol-up/link-up/admin-up, iod: 133, + IP address: 10.22.22.22, IP subnet: 10.22.22.22/32 route-preference: 0, tag: 0 + IP broadcast address: 255.255.255.255 + IP multicast groups locally joined: none + IP MTU: 1500 bytes (using link MTU) + IP primary address route-preference: 0, tag: 0 + IP proxy ARP : disabled + IP Local Proxy ARP : disabled + IP multicast routing: disabled + IP icmp redirects: enabled + IP directed-broadcast: disabled + IP Forwarding: disabled + IP icmp unreachables (except port): disabled + IP icmp port-unreachable: enabled + IP unicast reverse path forwarding: none + IP load sharing: none + IP interface statistics last reset: never + IP interface software stats: (sent/received/forwarded/originated/consumed) + Unicast packets : 0/0/0/0/0 + Unicast bytes : 0/0/0/0/0 + Multicast packets : 0/0/0/0/0 + Multicast bytes : 0/0/0/0/0 + Broadcast packets : 0/0/0/0/0 + Broadcast bytes : 0/0/0/0/0 + Labeled packets : 0/0/0/0/0 + Labeled bytes : 0/0/0/0/0 + WCCP Redirect outbound: disabled + WCCP Redirect inbound: disabled + WCCP Redirect exclude: disabled +Ethernet2/1, Interface status: protocol-up/link-up/admin-up, iod: 36, + IP address: 10.0.1.2, IP subnet: 10.0.1.0/24 route-preference: 0, tag: 0 + IP broadcast address: 255.255.255.255 + IP multicast groups locally joined: + 224.0.0.6 224.0.0.5 + IP MTU: 1500 bytes (using link MTU) + IP primary address route-preference: 0, tag: 0 + IP proxy ARP : disabled + IP Local Proxy ARP : disabled + IP multicast routing: disabled + IP icmp redirects: enabled + IP directed-broadcast: disabled + IP Forwarding: disabled + IP icmp unreachables (except port): disabled + IP icmp port-unreachable: enabled + IP unicast reverse path forwarding: none + IP load sharing: none + IP interface statistics last reset: never + IP interface software stats: (sent/received/forwarded/originated/consumed) + Unicast packets : 66709/45035/0/66709/45616 + Unicast bytes : 4436646/2403329/0/4436646/2456689 + Multicast packets : 198546/182532/0/198546/365062 + Multicast bytes : 17164132/18254004/0/17164132/18253908 + Broadcast packets : 0/16314/0/0/16314 + Broadcast bytes : 0/819786/0/0/819786 + Labeled packets : 0/0/0/0/0 + Labeled bytes : 0/0/0/0/0 + WCCP Redirect outbound: disabled + WCCP Redirect inbound: disabled + WCCP Redirect exclude: disabled +Ethernet2/2, Interface status: protocol-up/link-up/admin-up, iod: 37, + IP address: 10.0.2.2, IP subnet: 10.0.2.0/24 route-preference: 0, tag: 0 + IP broadcast address: 255.255.255.255 + IP multicast groups locally joined: + 224.0.0.6 224.0.0.5 + IP MTU: 1500 bytes (using link MTU) + IP primary address route-preference: 0, tag: 0 + IP proxy ARP : disabled + IP Local Proxy ARP : disabled + IP multicast routing: disabled + IP icmp redirects: enabled + IP directed-broadcast: disabled + IP Forwarding: disabled + IP icmp unreachables (except port): disabled + IP icmp port-unreachable: enabled + IP unicast reverse path forwarding: none + IP load sharing: none + IP interface statistics last reset: never + IP interface software stats: (sent/received/forwarded/originated/consumed) + Unicast packets : 36/23043/0/36/23729 + Unicast bytes : 3566/1261358/0/3566/1323262 + Multicast packets : 198473/182407/0/198473/364812 + Multicast bytes : 17158002/18243376/0/17158002/18243280 + Broadcast packets : 0/16314/0/0/16314 + Broadcast bytes : 0/819786/0/0/819786 + Labeled packets : 0/0/0/0/0 + Labeled bytes : 0/0/0/0/0 + WCCP Redirect outbound: disabled + WCCP Redirect inbound: disabled + WCCP Redirect exclude: disabled + +IP Interface Status for VRF "management" + + nx-osv-1# ++++ nx-osv-1: executing command 'show ipv6 interface vrf all' +++ +show ipv6 interface vrf all +IPv6 Interface Status for VRF "default" + +IPv6 Interface Status for VRF "management" + + nx-osv-1# ++++ nx-osv-1: executing command 'show routing ipv6 vrf all' +++ +show routing ipv6 vrf all +IPv6 Routing Table for VRF "default" +'*' denotes best ucast next-hop +'**' denotes best mcast next-hop +'[x/y]' denotes [preference/metric] + + +IPv6 Routing Table for VRF "management" +'*' denotes best ucast next-hop +'**' denotes best mcast next-hop +'[x/y]' denotes [preference/metric] + + + nx-osv-1# ++++ nx-osv-1: executing command 'show routing vrf all' +++ +show routing vrf all +IP Route Table for VRF "default" +'*' denotes best ucast next-hop +'**' denotes best mcast next-hop +'[x/y]' denotes [preference/metric] +'%' in via output denotes VRF + +10.0.1.0/24, ubest/mbest: 1/0, attached + *via 10.0.1.2, Eth2/1, [0/0], 2w5d, direct +10.0.1.2/32, ubest/mbest: 1/0, attached + *via 10.0.1.2, Eth2/1, [0/0], 2w5d, local +10.0.2.0/24, ubest/mbest: 1/0, attached + *via 10.0.2.2, Eth2/2, [0/0], 2w5d, direct +10.0.2.2/32, ubest/mbest: 1/0, attached + *via 10.0.2.2, Eth2/2, [0/0], 2w5d, local +10.1.1.1/32, ubest/mbest: 2/0 + *via 10.0.1.1, Eth2/1, [110/41], 5d05h, ospf-1, intra + *via 10.0.2.1, Eth2/2, [110/41], 5d05h, ospf-1, intra +10.2.2.2/32, ubest/mbest: 2/0, attached + *via 10.2.2.2, Lo0, [0/0], 2w5d, local + *via 10.2.2.2, Lo0, [0/0], 2w5d, direct +10.11.11.11/32, ubest/mbest: 1/0 + *via 10.1.1.1, [200/0], 01:33:50, bgp-65000, internal, tag 65000, +10.22.22.22/32, ubest/mbest: 2/0, attached + *via 10.22.22.22, Lo1, [0/0], 2w5d, local + *via 10.22.22.22, Lo1, [0/0], 2w5d, direct + nx-osv-1# ++====================================================================================================================================================+ +| Commands for learning feature 'Interface' | ++====================================================================================================================================================+ +| - Parsed commands | +|----------------------------------------------------------------------------------------------------------------------------------------------------| +| cmd: | +| cmd: | +| cmd: | +| cmd: | +| cmd: | +|====================================================================================================================================================| +| - Commands with empty output | +|----------------------------------------------------------------------------------------------------------------------------------------------------| +| cmd: | +| cmd: | +|====================================================================================================================================================| diff --git a/mocked_devices/2-manual/initial/snapshot/interface_nxos_nx-osv-1_ops.txt b/mocked_devices/2-manual/initial/snapshot/interface_nxos_nx-osv-1_ops.txt new file mode 100644 index 0000000..db30620 --- /dev/null +++ b/mocked_devices/2-manual/initial/snapshot/interface_nxos_nx-osv-1_ops.txt @@ -0,0 +1,7490 @@ +{ + "attributes": null, + "commands": null, + "connections": null, + "context_manager": {}, + "info": { + "Ethernet2/1": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "duplex_mode": "full", + "enabled": true, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "ipv4": { + "10.0.1.2/24": { + "ip": "10.0.1.2", + "prefix_length": "24" + } + }, + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "up", + "phys_address": "fa16.3edd.c013", + "port_channel": { + "port_channel_member": false + }, + "port_speed": "1000", + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/10": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/11": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/12": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/13": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/14": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/15": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/16": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/17": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/18": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/19": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/2": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "duplex_mode": "full", + "enabled": true, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "ipv4": { + "10.0.2.2/24": { + "ip": "10.0.2.2", + "prefix_length": "24" + } + }, + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "up", + "phys_address": "fa16.3e8a.5b7d", + "port_channel": { + "port_channel_member": false + }, + "port_speed": "1000", + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/20": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/21": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/22": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/23": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/24": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/25": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/26": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/27": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/28": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/29": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/3": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/30": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/31": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/32": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/33": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/34": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/35": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/36": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/37": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/38": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/39": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/4": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/40": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/41": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/42": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/43": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/44": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/45": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/46": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/47": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/48": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/5": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/6": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/7": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/8": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/9": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/1": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.002f", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/10": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/11": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/12": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/13": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/14": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/15": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/16": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/17": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/18": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/19": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/2": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.002f", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/20": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/21": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/22": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/23": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/24": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/25": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/26": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/27": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/28": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/29": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/3": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/30": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/31": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/32": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/33": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/34": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/35": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/36": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/37": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/38": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/39": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/4": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/40": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/41": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/42": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/43": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/44": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/45": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/46": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/47": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/48": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/5": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/6": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/7": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/8": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/9": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet4/1": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.002f", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/10": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/11": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/12": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/13": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/14": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/15": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/16": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/17": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/18": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/19": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/2": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.002f", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/20": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/21": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/22": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/23": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/24": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/25": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/26": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/27": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/28": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/29": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/3": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/30": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/31": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/32": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/33": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/34": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/35": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/36": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/37": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/38": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/39": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/4": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/40": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/41": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/42": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/43": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/44": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/45": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/46": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/47": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/48": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/5": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/6": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/7": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/8": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/9": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Null0": { + "vrf": "default" + }, + "loopback0": { + "bandwidth": 8000000, + "delay": 5000, + "enabled": true, + "encapsulation": { + "encapsulation": "loopback" + }, + "ipv4": { + "10.2.2.2/32": { + "ip": "10.2.2.2", + "prefix_length": "32" + } + }, + "medium": "broadcast", + "mtu": 1500, + "oper_status": "up", + "port_channel": { + "port_channel_member": false + }, + "vrf": "default" + }, + "loopback1": { + "bandwidth": 8000000, + "delay": 5000, + "enabled": true, + "encapsulation": { + "encapsulation": "loopback" + }, + "ipv4": { + "10.22.22.22/32": { + "ip": "10.22.22.22", + "prefix_length": "32" + } + }, + "medium": "broadcast", + "mtu": 1500, + "oper_status": "up", + "port_channel": { + "port_channel_member": false + }, + "vrf": "default" + }, + "mgmt0": { + "auto_negotiate": true, + "bandwidth": 1000000, + "counters": { + "rate": { + "in_rate": 296, + "in_rate_pkts": 0, + "load_interval": 1, + "out_rate": 24, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "duplex_mode": "full", + "enabled": true, + "encapsulation": { + "encapsulation": "arpa" + }, + "mac_address": "5e00.0001.0000", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "up", + "phys_address": "5e00.0001.0000", + "port_channel": { + "port_channel_member": false + }, + "port_speed": "1000", + "type": "Ethernet", + "vrf": "management" + } + }, + "ret_dict": {} +} \ No newline at end of file diff --git a/mocked_devices/2-manual/modified/playback/iosxe/csr1000v-1.yaml b/mocked_devices/2-manual/modified/playback/iosxe/csr1000v-1.yaml new file mode 100644 index 0000000..d95ee0a --- /dev/null +++ b/mocked_devices/2-manual/modified/playback/iosxe/csr1000v-1.yaml @@ -0,0 +1,313 @@ +configure: + commands: + end: + new_state: exec + line console 0: + new_state: configure_line + no logging console: '' + prompt: switch(config)# +configure_line: + commands: + end: + new_state: execute + exec-timeout 0: '' + prompt: switch(config-line)# +connect: + commands: + ? '' + : new_state: execute + preface: 'Trying mock_device ... + + Connected to mock_device. + + Escape character is ''^]''.' + prompt: '' +execute: + commands: + config term: + new_state: configure + show bgp all: "For address family: IPv4 Unicast\r\n\r\nBGP table version is 166,\ + \ local router ID is 10.1.1.1\r\nStatus codes: s suppressed, d damped, h history,\ + \ * valid, > best, i - internal, \r\n r RIB-failure, S Stale, m\ + \ multipath, b backup-path, f RT-Filter, \r\n x best-external,\ + \ a additional-path, c RIB-compressed, \r\n t secondary path, L\ + \ long-lived-stale,\r\nOrigin codes: i - IGP, e - EGP, ? - incomplete\r\nRPKI\ + \ validation codes: V valid, I invalid, N Not found\r\n\r\n Network \ + \ Next Hop Metric LocPrf Weight Path\r\n *> 10.11.11.11/32\ + \ 0.0.0.0 0 32768 i\r\n\r\nFor address family: IPv6\ + \ Unicast\r\n\r\n\r\nFor address family: IPv4 Multicast\r\n\r\n\r\nFor address\ + \ family: L2VPN E-VPN\r\n\r\n\r\nFor address family: MVPNv4 Unicast\r\n\r\n\r\ + \nFor address family: MVPNv6 Unicast" + show bgp all cluster-ids: "Global cluster-id: 10.1.1.1 (configured: 0.0.0.0)\r\ + \nBGP client-to-client reflection: Configured Used\r\n all (inter-cluster\ + \ and intra-cluster): ENABLED\r\n intra-cluster: ENABLED\ + \ ENABLED\r\n\r\nList of cluster-ids:\r\nCluster-id #-neighbors C2C-rfl-CFG\ + \ C2C-rfl-USE" + show bgp all detail: "For address family: IPv4 Unicast\r\n\r\nBGP routing table\ + \ entry for 10.11.11.11/32, version 2\r\n Paths: (1 available, best #1, table\ + \ default)\r\n Not advertised to any peer\r\n Refresh Epoch 1\r\n Local\r\ + \n 0.0.0.0 from 0.0.0.0 (10.1.1.1)\r\n Origin IGP, metric 0, localpref\ + \ 100, weight 32768, valid, sourced, local, best\r\n rx pathid: 0, tx pathid:\ + \ 0x0\r\n\r\nFor address family: IPv6 Unicast\r\n\r\n\r\nFor address family:\ + \ IPv4 Multicast\r\n\r\n\r\nFor address family: L2VPN E-VPN\r\n\r\n\r\nFor address\ + \ family: MVPNv4 Unicast\r\n\r\n\r\nFor address family: MVPNv6 Unicast" + show bgp all neighbors: "For address family: IPv4 Unicast\r\nBGP neighbor is 10.2.2.2,\ + \ remote AS 65000, internal link\r\n BGP version 4, remote router ID 0.0.0.0\r\ + \n BGP state = Idle, down for 00:00:37\r\n Neighbor sessions:\r\n 0 active,\ + \ is not multisession capable (disabled)\r\n Stateful switchover support\ + \ enabled: NO\r\n Do log neighbor state changes (via global configuration)\r\ + \n Default minimum time between advertisement runs is 0 seconds\r\n\r\n Address\ + \ tracking is enabled, the RIB does have a route to 10.2.2.2\r\n Route to peer\ + \ address reachability Up: 2; Down: 0\r\n Last notification 5d06h\r\n Connections\ + \ established 82; dropped 82\r\n Last reset 00:00:37, due to Peer closed the\ + \ session\r\n Interface associated: (none) (peering address NOT in same link)\r\ + \n Transport(tcp) path-mtu-discovery is enabled\r\n Graceful-Restart is disabled\r\ + \n SSO is disabled\r\n No active TCP connection\r\n\r\n\r\nFor address family:\ + \ IPv6 Unicast\r\n\r\nFor address family: IPv4 Multicast\r\n\r\nFor address\ + \ family: L2VPN E-VPN\r\n\r\nFor address family: MVPNv4 Unicast\r\n\r\nFor address\ + \ family: MVPNv6 Unicast" + show bgp all neighbors 10.2.2.2 advertised-routes: "For address family: IPv4 Unicast\r\ + \n\r\nTotal number of prefixes 0" + show bgp all neighbors 10.2.2.2 policy: ' Neighbor: 10.2.2.2, Address-Family: + IPv4 Unicast' + show bgp all neighbors 10.2.2.2 received-routes: "For address family: IPv4 Unicast\r\ + \n% Inbound soft reconfiguration not enabled on 10.2.2.2" + show bgp all neighbors 10.2.2.2 routes: "For address family: IPv4 Unicast\r\n\r\ + \nTotal number of prefixes 0" + show bgp all neighbors | i BGP neighbor: BGP neighbor is 10.2.2.2, remote AS + 65000, internal link + show bgp summary: "% Command accepted but obsolete, unreleased or unsupported;\ + \ see documentation.\r\nBGP router identifier 10.1.1.1, local AS number 65000\r\ + \nBGP table version is 166, main routing table version 166\r\n1 network entries\ + \ using 248 bytes of memory\r\n1 path entries using 136 bytes of memory\r\n\ + 1/1 BGP path/bestpath attribute entries using 280 bytes of memory\r\n0 BGP route-map\ + \ cache entries using 0 bytes of memory\r\n0 BGP filter-list cache entries using\ + \ 0 bytes of memory\r\nBGP using 664 total bytes of memory\r\nBGP activity 36/35\ + \ prefixes, 84/83 paths, scan interval 60 secs\r\n\r\nNeighbor V \ + \ AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd\r\n10.2.2.2\ + \ 4 65000 0 0 1 0 0 00:00:36 Idle" + show interfaces: "GigabitEthernet1 is up, line protocol is up \r\n Hardware is\ + \ CSR vNIC, address is 5e00.0000.0000 (bia 5e00.0000.0000)\r\n Internet address\ + \ is 10.255.8.122/16\r\n MTU 1500 bytes, BW 1000000 Kbit/sec, DLY 10 usec,\ + \ \r\n reliability 255/255, txload 1/255, rxload 1/255\r\n Encapsulation\ + \ ARPA, loopback not set\r\n Keepalive set (10 sec)\r\n Full Duplex, 1000Mbps,\ + \ link type is auto, media type is Virtual\r\n output flow-control is unsupported,\ + \ input flow-control is unsupported\r\n ARP type: ARPA, ARP Timeout 04:00:00\r\ + \n Last input 00:00:00, output 00:01:09, output hang never\r\n Last clearing\ + \ of \"show interface\" counters never\r\n Input queue: 0/375/0/0 (size/max/drops/flushes);\ + \ Total output drops: 0\r\n Queueing strategy: fifo\r\n Output queue: 0/40\ + \ (size/max)\r\n 5 minute input rate 0 bits/sec, 0 packets/sec\r\n 5 minute\ + \ output rate 0 bits/sec, 0 packets/sec\r\n 226238 packets input, 16092320\ + \ bytes, 0 no buffer\r\n Received 0 broadcasts (0 IP multicasts)\r\n \ + \ 0 runts, 0 giants, 0 throttles \r\n 0 input errors, 0 CRC, 0 frame, 0\ + \ overrun, 0 ignored\r\n 0 watchdog, 0 multicast, 0 pause input\r\n \ + \ 82920 packets output, 7470544 bytes, 0 underruns\r\n 0 output errors,\ + \ 0 collisions, 0 interface resets\r\n 15165 unknown protocol drops\r\n\ + \ 0 babbles, 0 late collision, 0 deferred\r\n 0 lost carrier, 0 no carrier,\ + \ 0 pause output\r\n 0 output buffer failures, 0 output buffers swapped\ + \ out\r\nGigabitEthernet2 is up, line protocol is up \r\n Hardware is CSR vNIC,\ + \ address is fa16.3ebe.e48e (bia fa16.3ebe.e48e)\r\n Internet address is 10.0.1.1/24\r\ + \n MTU 1500 bytes, BW 1000000 Kbit/sec, DLY 10 usec, \r\n reliability 255/255,\ + \ txload 1/255, rxload 1/255\r\n Encapsulation ARPA, loopback not set\r\n \ + \ Keepalive set (10 sec)\r\n Full Duplex, 1000Mbps, link type is auto, media\ + \ type is Virtual\r\n output flow-control is unsupported, input flow-control\ + \ is unsupported\r\n ARP type: ARPA, ARP Timeout 04:00:00\r\n Last input 00:00:00,\ + \ output 00:00:00, output hang never\r\n Last clearing of \"show interface\"\ + \ counters never\r\n Input queue: 0/375/0/0 (size/max/drops/flushes); Total\ + \ output drops: 0\r\n Queueing strategy: fifo\r\n Output queue: 0/40 (size/max)\r\ + \n 5 minute input rate 0 bits/sec, 0 packets/sec\r\n 5 minute output rate\ + \ 0 bits/sec, 0 packets/sec\r\n 82594 packets input, 7354066 bytes, 0 no\ + \ buffer\r\n Received 0 broadcasts (0 IP multicasts)\r\n 0 runts, 0\ + \ giants, 0 throttles \r\n 0 input errors, 0 CRC, 0 frame, 0 overrun, 0\ + \ ignored\r\n 0 watchdog, 0 multicast, 0 pause input\r\n 67732 packets\ + \ output, 6746956 bytes, 0 underruns\r\n 0 output errors, 0 collisions,\ + \ 0 interface resets\r\n 7583 unknown protocol drops\r\n 0 babbles,\ + \ 0 late collision, 0 deferred\r\n 0 lost carrier, 0 no carrier, 0 pause\ + \ output\r\n 0 output buffer failures, 0 output buffers swapped out\r\n\ + GigabitEthernet3 is up, line protocol is up \r\n Hardware is CSR vNIC, address\ + \ is fa16.3e07.71e5 (bia fa16.3e07.71e5)\r\n Internet address is 10.0.2.1/24\r\ + \n MTU 1500 bytes, BW 1000000 Kbit/sec, DLY 10 usec, \r\n reliability 255/255,\ + \ txload 1/255, rxload 1/255\r\n Encapsulation ARPA, loopback not set\r\n \ + \ Keepalive set (10 sec)\r\n Full Duplex, 1000Mbps, link type is auto, media\ + \ type is Virtual\r\n output flow-control is unsupported, input flow-control\ + \ is unsupported\r\n ARP type: ARPA, ARP Timeout 04:00:00\r\n Last input 00:00:03,\ + \ output 00:00:00, output hang never\r\n Last clearing of \"show interface\"\ + \ counters never\r\n Input queue: 0/375/0/0 (size/max/drops/flushes); Total\ + \ output drops: 0\r\n Queueing strategy: fifo\r\n Output queue: 0/40 (size/max)\r\ + \n 5 minute input rate 0 bits/sec, 0 packets/sec\r\n 5 minute output rate\ + \ 0 bits/sec, 0 packets/sec\r\n 60332 packets input, 5991282 bytes, 0 no\ + \ buffer\r\n Received 0 broadcasts (0 IP multicasts)\r\n 0 runts, 0\ + \ giants, 0 throttles \r\n 0 input errors, 0 CRC, 0 frame, 0 overrun, 0\ + \ ignored\r\n 0 watchdog, 0 multicast, 0 pause input\r\n 90160 packets\ + \ output, 8191145 bytes, 0 underruns\r\n 0 output errors, 0 collisions,\ + \ 0 interface resets\r\n 7583 unknown protocol drops\r\n 0 babbles,\ + \ 0 late collision, 0 deferred\r\n 0 lost carrier, 0 no carrier, 0 pause\ + \ output\r\n 0 output buffer failures, 0 output buffers swapped out\r\n\ + Loopback0 is up, line protocol is up \r\n Hardware is Loopback\r\n Internet\ + \ address is 10.1.1.1/32\r\n MTU 1514 bytes, BW 8000000 Kbit/sec, DLY 5000\ + \ usec, \r\n reliability 255/255, txload 1/255, rxload 1/255\r\n Encapsulation\ + \ LOOPBACK, loopback not set\r\n Keepalive set (10 sec)\r\n Last input 00:01:09,\ + \ output never, output hang never\r\n Last clearing of \"show interface\" counters\ + \ never\r\n Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops:\ + \ 0\r\n Queueing strategy: fifo\r\n Output queue: 0/0 (size/max)\r\n 5 minute\ + \ input rate 0 bits/sec, 0 packets/sec\r\n 5 minute output rate 0 bits/sec,\ + \ 0 packets/sec\r\n 0 packets input, 0 bytes, 0 no buffer\r\n Received\ + \ 0 broadcasts (0 IP multicasts)\r\n 0 runts, 0 giants, 0 throttles \r\n\ + \ 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored, 0 abort\r\n \ + \ 16368 packets output, 822492 bytes, 0 underruns\r\n 0 output errors, 0\ + \ collisions, 0 interface resets\r\n 0 unknown protocol drops\r\n 0\ + \ output buffer failures, 0 output buffers swapped out\r\nLoopback1 is up, line\ + \ protocol is up \r\n Hardware is Loopback\r\n Internet address is 10.11.11.11/32\r\ + \n MTU 1514 bytes, BW 8000000 Kbit/sec, DLY 5000 usec, \r\n reliability\ + \ 255/255, txload 1/255, rxload 1/255\r\n Encapsulation LOOPBACK, loopback\ + \ not set\r\n Keepalive set (10 sec)\r\n Last input 00:01:09, output never,\ + \ output hang never\r\n Last clearing of \"show interface\" counters never\r\ + \n Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0\r\n\ + \ Queueing strategy: fifo\r\n Output queue: 0/0 (size/max)\r\n 5 minute input\ + \ rate 0 bits/sec, 0 packets/sec\r\n 5 minute output rate 0 bits/sec, 0 packets/sec\r\ + \n 0 packets input, 0 bytes, 0 no buffer\r\n Received 0 broadcasts (0\ + \ IP multicasts)\r\n 0 runts, 0 giants, 0 throttles \r\n 0 input errors,\ + \ 0 CRC, 0 frame, 0 overrun, 0 ignored, 0 abort\r\n 16368 packets output,\ + \ 822492 bytes, 0 underruns\r\n 0 output errors, 0 collisions, 0 interface\ + \ resets\r\n 0 unknown protocol drops\r\n 0 output buffer failures,\ + \ 0 output buffers swapped out" + show interfaces accounting: "GigabitEthernet1 \r\n Protocol \ + \ Pkts In Chars In Pkts Out Chars Out\r\n Other 160749\ + \ 11926152 2797 167820\r\n IP 96399 \ + \ 8357433 80123 7302724\r\n ARP 130422 5526648\ + \ 2797 167820\r\n IPv6 22 1836 \ + \ 0 0\r\nGigabitEthernet2 \r\n Protocol Pkts\ + \ In Chars In Pkts Out Chars Out\r\n Other 15197\ + \ 3292882 2758 165480\r\n IP 74913 \ + \ 5700218 64974 6581476\r\n ARP 31 \ + \ 1860 2758 165480\r\nGigabitEthernet3 \r\n Protocol\ + \ Pkts In Chars In Pkts Out Chars Out\r\n Other \ + \ 15196 3292822 2757 165420\r\n IP \ + \ 52652 4337494 87403 8025725\r\n ARP \ + \ 30 1800 2757 165420\r\nLoopback0 \r\n Protocol\ + \ Pkts In Chars In Pkts Out Chars Out\r\n IP \ + \ 16368 822492 16368 822492\r\nLoopback1 \r\n \ + \ Protocol Pkts In Chars In Pkts Out Chars Out\r\n \ + \ IP 16368 822492 16368 822492" + show ip bgp all dampening parameters: "For address family: IPv4 Unicast\r\n\r\n\ + % dampening not enabled for base\r\n\r\nFor address family: IPv6 Unicast\r\n\ + \r\n% dampening not enabled for base\r\n\r\nFor address family: IPv4 Multicast\r\ + \n\r\n% dampening not enabled for base\r\n\r\nFor address family: L2VPN E-VPN\r\ + \n\r\n% dampening not enabled for base\r\n\r\nFor address family: MVPNv4 Unicast\r\ + \n\r\n% dampening not enabled for base\r\n\r\nFor address family: MVPNv6 Unicast\r\ + \n\r\n% dampening not enabled for base" + 'show ip bgp template peer-policy ': No templates configured + 'show ip bgp template peer-session ': No templates configured + show ip interface: "GigabitEthernet1 is up, line protocol is up\r\n Internet\ + \ address is 10.255.8.122/16\r\n Broadcast address is 255.255.255.255\r\n \ + \ Address determined by DHCP\r\n MTU is 1500 bytes\r\n Helper address is not\ + \ set\r\n Directed broadcast forwarding is disabled\r\n Outgoing Common access\ + \ list is not set \r\n Outgoing access list is not set\r\n Inbound Common\ + \ access list is not set \r\n Inbound access list is not set\r\n Proxy ARP\ + \ is enabled\r\n Local Proxy ARP is disabled\r\n Security level is default\r\ + \n Split horizon is enabled\r\n ICMP redirects are always sent\r\n ICMP unreachables\ + \ are always sent\r\n ICMP mask replies are never sent\r\n IP fast switching\ + \ is enabled\r\n IP Flow switching is disabled\r\n IP CEF switching is enabled\r\ + \n IP CEF switching turbo vector\r\n IP Null turbo vector\r\n Associated\ + \ unicast routing topologies:\r\n Topology \"base\", operation state\ + \ is UP\r\n IP multicast fast switching is enabled\r\n IP multicast distributed\ + \ fast switching is disabled\r\n IP route-cache flags are Fast, CEF\r\n Router\ + \ Discovery is disabled\r\n IP output packet accounting is disabled\r\n IP\ + \ access violation accounting is disabled\r\n TCP/IP header compression is\ + \ disabled\r\n RTP/IP header compression is disabled\r\n Probe proxy name\ + \ replies are disabled\r\n Policy routing is disabled\r\n Network address\ + \ translation is disabled\r\n BGP Policy Mapping is disabled\r\n Input features:\ + \ MCI Check\r\n IPv4 WCCP Redirect outbound is disabled\r\n IPv4 WCCP Redirect\ + \ inbound is disabled\r\n IPv4 WCCP Redirect exclude is disabled\r\nGigabitEthernet2\ + \ is up, line protocol is up\r\n Internet address is 10.0.1.1/24\r\n Broadcast\ + \ address is 255.255.255.255\r\n Address determined by non-volatile memory\r\ + \n MTU is 1500 bytes\r\n Helper address is not set\r\n Directed broadcast\ + \ forwarding is disabled\r\n Multicast reserved groups joined: 224.0.0.5 224.0.0.6\r\ + \n Outgoing Common access list is not set \r\n Outgoing access list is not\ + \ set\r\n Inbound Common access list is not set \r\n Inbound access list\ + \ is not set\r\n Proxy ARP is enabled\r\n Local Proxy ARP is disabled\r\n\ + \ Security level is default\r\n Split horizon is enabled\r\n ICMP redirects\ + \ are always sent\r\n ICMP unreachables are always sent\r\n ICMP mask replies\ + \ are never sent\r\n IP fast switching is enabled\r\n IP Flow switching is\ + \ disabled\r\n IP CEF switching is enabled\r\n IP CEF switching turbo vector\r\ + \n IP Null turbo vector\r\n Associated unicast routing topologies:\r\n \ + \ Topology \"base\", operation state is UP\r\n IP multicast fast switching\ + \ is enabled\r\n IP multicast distributed fast switching is disabled\r\n IP\ + \ route-cache flags are Fast, CEF\r\n Router Discovery is disabled\r\n IP\ + \ output packet accounting is disabled\r\n IP access violation accounting is\ + \ disabled\r\n TCP/IP header compression is disabled\r\n RTP/IP header compression\ + \ is disabled\r\n Probe proxy name replies are disabled\r\n Policy routing\ + \ is disabled\r\n Network address translation is disabled\r\n BGP Policy Mapping\ + \ is disabled\r\n Input features: MCI Check\r\n IPv4 WCCP Redirect outbound\ + \ is disabled\r\n IPv4 WCCP Redirect inbound is disabled\r\n IPv4 WCCP Redirect\ + \ exclude is disabled\r\nGigabitEthernet3 is up, line protocol is up\r\n Internet\ + \ address is 10.0.2.1/24\r\n Broadcast address is 255.255.255.255\r\n Address\ + \ determined by non-volatile memory\r\n MTU is 1500 bytes\r\n Helper address\ + \ is not set\r\n Directed broadcast forwarding is disabled\r\n Multicast reserved\ + \ groups joined: 224.0.0.5 224.0.0.6\r\n Outgoing Common access list is not\ + \ set \r\n Outgoing access list is not set\r\n Inbound Common access list\ + \ is not set \r\n Inbound access list is not set\r\n Proxy ARP is enabled\r\ + \n Local Proxy ARP is disabled\r\n Security level is default\r\n Split horizon\ + \ is enabled\r\n ICMP redirects are always sent\r\n ICMP unreachables are\ + \ always sent\r\n ICMP mask replies are never sent\r\n IP fast switching is\ + \ enabled\r\n IP Flow switching is disabled\r\n IP CEF switching is enabled\r\ + \n IP CEF switching turbo vector\r\n IP Null turbo vector\r\n Associated\ + \ unicast routing topologies:\r\n Topology \"base\", operation state\ + \ is UP\r\n IP multicast fast switching is enabled\r\n IP multicast distributed\ + \ fast switching is disabled\r\n IP route-cache flags are Fast, CEF\r\n Router\ + \ Discovery is disabled\r\n IP output packet accounting is disabled\r\n IP\ + \ access violation accounting is disabled\r\n TCP/IP header compression is\ + \ disabled\r\n RTP/IP header compression is disabled\r\n Probe proxy name\ + \ replies are disabled\r\n Policy routing is disabled\r\n Network address\ + \ translation is disabled\r\n BGP Policy Mapping is disabled\r\n Input features:\ + \ MCI Check\r\n IPv4 WCCP Redirect outbound is disabled\r\n IPv4 WCCP Redirect\ + \ inbound is disabled\r\n IPv4 WCCP Redirect exclude is disabled\r\nLoopback0\ + \ is up, line protocol is up\r\n Internet address is 10.1.1.1/32\r\n Broadcast\ + \ address is 255.255.255.255\r\n Address determined by non-volatile memory\r\ + \n MTU is 1514 bytes\r\n Helper address is not set\r\n Directed broadcast\ + \ forwarding is disabled\r\n Multicast reserved groups joined: 224.0.0.5\r\n\ + \ Outgoing Common access list is not set \r\n Outgoing access list is not\ + \ set\r\n Inbound Common access list is not set \r\n Inbound access list\ + \ is not set\r\n Proxy ARP is enabled\r\n Local Proxy ARP is disabled\r\n\ + \ Security level is default\r\n Split horizon is enabled\r\n ICMP redirects\ + \ are always sent\r\n ICMP unreachables are always sent\r\n ICMP mask replies\ + \ are never sent\r\n IP fast switching is enabled\r\n IP Flow switching is\ + \ disabled\r\n IP CEF switching is enabled\r\n IP CEF switching turbo vector\r\ + \n IP Null turbo vector\r\n Associated unicast routing topologies:\r\n \ + \ Topology \"base\", operation state is UP\r\n IP multicast fast switching\ + \ is enabled\r\n IP multicast distributed fast switching is disabled\r\n IP\ + \ route-cache flags are Fast, CEF\r\n Router Discovery is disabled\r\n IP\ + \ output packet accounting is disabled\r\n IP access violation accounting is\ + \ disabled\r\n TCP/IP header compression is disabled\r\n RTP/IP header compression\ + \ is disabled\r\n Probe proxy name replies are disabled\r\n Policy routing\ + \ is disabled\r\n Network address translation is disabled\r\n BGP Policy Mapping\ + \ is disabled\r\n Input features: MCI Check\r\n IPv4 WCCP Redirect outbound\ + \ is disabled\r\n IPv4 WCCP Redirect inbound is disabled\r\n IPv4 WCCP Redirect\ + \ exclude is disabled\r\nLoopback1 is up, line protocol is up\r\n Internet\ + \ address is 10.11.11.11/32\r\n Broadcast address is 255.255.255.255\r\n Address\ + \ determined by non-volatile memory\r\n MTU is 1514 bytes\r\n Helper address\ + \ is not set\r\n Directed broadcast forwarding is disabled\r\n Outgoing Common\ + \ access list is not set \r\n Outgoing access list is not set\r\n Inbound\ + \ Common access list is not set \r\n Inbound access list is not set\r\n Proxy\ + \ ARP is enabled\r\n Local Proxy ARP is disabled\r\n Security level is default\r\ + \n Split horizon is enabled\r\n ICMP redirects are always sent\r\n ICMP unreachables\ + \ are always sent\r\n ICMP mask replies are never sent\r\n IP fast switching\ + \ is enabled\r\n IP Flow switching is disabled\r\n IP CEF switching is enabled\r\ + \n IP CEF switching turbo vector\r\n IP Null turbo vector\r\n Associated\ + \ unicast routing topologies:\r\n Topology \"base\", operation state\ + \ is UP\r\n IP multicast fast switching is enabled\r\n IP multicast distributed\ + \ fast switching is disabled\r\n IP route-cache flags are Fast, CEF\r\n Router\ + \ Discovery is disabled\r\n IP output packet accounting is disabled\r\n IP\ + \ access violation accounting is disabled\r\n TCP/IP header compression is\ + \ disabled\r\n RTP/IP header compression is disabled\r\n Probe proxy name\ + \ replies are disabled\r\n Policy routing is disabled\r\n Network address\ + \ translation is disabled\r\n BGP Policy Mapping is disabled\r\n Input features:\ + \ MCI Check\r\n IPv4 WCCP Redirect outbound is disabled\r\n IPv4 WCCP Redirect\ + \ inbound is disabled\r\n IPv4 WCCP Redirect exclude is disabled" + show ipv6 interface: '' + show version: '' + show vrf detail: '' + show vrf detail | inc \(VRF: '' + term length 0: '' + term width 0: '' + prompt: switch# diff --git a/mocked_devices/2-manual/modified/playback/nxos/nx-osv-1.yaml b/mocked_devices/2-manual/modified/playback/nxos/nx-osv-1.yaml new file mode 100644 index 0000000..9489fd1 --- /dev/null +++ b/mocked_devices/2-manual/modified/playback/nxos/nx-osv-1.yaml @@ -0,0 +1,4151 @@ +configure: + commands: + end: + new_state: exec + line console 0: + new_state: configure_line + no logging console: '' + prompt: switch(config)# +configure_line: + commands: + end: + new_state: execute + exec-timeout 0: '' + prompt: switch(config-line)# +connect: + commands: + ? '' + : new_state: execute + preface: 'Trying mock_device ... + + Connected to mock_device. + + Escape character is ''^]''.' + prompt: '' +execute: + commands: + config term: + new_state: configure + show bgp process vrf all: "\r\nBGP Process Information\r\nBGP Process ID \ + \ : 8610\r\nBGP Protocol Started, reason: : configuration\r\nBGP\ + \ Protocol Tag : 65000\r\nBGP Protocol State : Shutdown\r\ + \nBGP MMODE : Not Initialized\r\nBGP Memory State \ + \ : OK\r\nBGP asformat : asplain\r\n\r\nBGP attributes\ + \ information\r\nNumber of attribute entries : 1\r\nHWM of attribute entries\ + \ : 2\r\nBytes used by entries : 100\r\nEntries pending delete\ + \ : 0\r\nHWM of entries pending delete : 0\r\nBGP paths per attribute\ + \ HWM : 1\r\nBGP AS path entries : 0\r\nBytes used by AS path\ + \ entries : 0\r\n\r\nInformation regarding configured VRFs:\r\n\r\nBGP Information\ + \ for VRF default\r\nVRF Id : 1\r\nVRF state \ + \ : UP\r\nRouter-ID : 10.2.2.2\r\nConfigured\ + \ Router-ID : 10.2.2.2\r\nConfed-ID : 0\r\nCluster-ID\ + \ : 0.0.0.0\r\nNo. of configured peers : 1\r\nNo.\ + \ of pending config peers : 0\r\nNo. of established peers : 0\r\nVRF\ + \ RD : Not configured\r\n\r\n Information for address\ + \ family IPv4 Unicast in VRF default\r\n Table Id : 1\r\ + \n Table state : UP\r\n Peers Active-peers Routes\ + \ Paths Networks Aggregates\r\n 1 0 1 \ + \ 1 1 0 \r\n\r\n Redistribution \ + \ \r\n None\r\n\r\n Wait for IGP convergence is not configured\r\ + \n\r\n\r\n Nexthop trigger-delay\r\n critical 3000 ms\r\n non-critical\ + \ 10000 ms\r\n\r\n Information for address family IPv6 Unicast in VRF default\r\ + \n Table Id : 80000001\r\n Table state \ + \ : UP\r\n Peers Active-peers Routes Paths Networks \ + \ Aggregates\r\n 0 0 0 0 0 \ + \ 0 \r\n\r\n Redistribution \r\n None\r\ + \n\r\n Wait for IGP convergence is not configured\r\n\r\n\r\n Nexthop\ + \ trigger-delay\r\n critical 3000 ms\r\n non-critical 10000 ms" + show bgp vrf all all: "BGP routing table information for VRF default, address\ + \ family IPv4 Unicast\r\nBGP table version is 341, local router ID is 10.2.2.2\r\ + \nStatus: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid,\ + \ >-best\r\nPath type: i-internal, e-external, c-confed, l-local, a-aggregate,\ + \ r-redist, I-injected\r\nOrigin codes: i - IGP, e - EGP, ? - incomplete, |\ + \ - multipath, & - backup\r\n\r\n Network Next Hop Metric\ + \ LocPrf Weight Path\r\n*>l10.22.22.22/32 0.0.0.0 \ + \ 100 32768 i" + show bgp vrf all all dampening parameters: '' + show bgp vrf all all nexthop-database: "\r\nNext Hop table for VRF default, address\ + \ family IPv4 Unicast:\r\nNext-hop trigger-delay(miliseconds)\r\n Critical:\ + \ 3000 Non-critical: 10000\r\nIPv4 Next-hop table\r\n\r\nNexthop: 0.0.0.0, Flags:\ + \ 0x2, Refcount: 1, IGP cost: 0\r\nIGP Route type: 0, IGP preference: 0\r\n\ + Nexthop is not-attached local unreachable not-labeled\r\nNexthop last resolved:\ + \ never, using 0.0.0.0/0\r\nMetric next advertise: Never\r\nRNH epoch: 0\r\n\ + IPv6 Next-hop table\r\n\r\nNext Hop table for VRF default, address family IPv6\ + \ Unicast:\r\nNext-hop trigger-delay(miliseconds)\r\n Critical: 3000 Non-critical:\ + \ 10000\r\nIPv4 Next-hop table\r\nIPv6 Next-hop table" + show bgp vrf all all summary: "BGP summary information for VRF default, address\ + \ family IPv4 Unicast\r\nBGP router identifier 10.2.2.2, local AS number 65000\r\ + \nBGP table version is 341, IPv4 Unicast config peers 1, capable peers 0\r\n\ + 1 network entries and 1 paths using 144 bytes of memory\r\nBGP attribute entries\ + \ [1/144], BGP AS path entries [0/0]\r\nBGP community entries [0/0], BGP clusterlist\ + \ entries [0/0]\r\n\r\nNeighbor V AS MsgRcvd MsgSent TblVer InQ\ + \ OutQ Up/Down State/PfxRcd\r\n10.1.1.1 4 65000 31821 29079 \ + \ 0 0 0 00:00:38 Shut (Admin)\r\n\r\nBGP summary information for VRF\ + \ default, address family IPv6 Unicast" + show bgp vrf default all neighbors: "BGP neighbor is 10.1.1.1, remote AS 65000,\ + \ ibgp link, Peer index 1\r\n BGP version 4, remote router ID 0.0.0.0\r\n \ + \ BGP state = Shut (Admin), down for 00:00:38\r\n Using loopback0 as update\ + \ source for this peer\r\n Last read never, hold time = 180, keepalive interval\ + \ is 60 seconds\r\n Last written never, keepalive timer not running\r\n Received\ + \ 31821 messages, 1 notifications, 0 bytes in queue\r\n Sent 29079 messages,\ + \ 103 notifications, 0 bytes in queue\r\n Connections established 103, dropped\ + \ 103\r\n Last reset by us 00:00:38, due to administratively shutdown\r\n \ + \ Last reset by peer never, due to No error\r\n\r\n Message statistics:\r\n\ + \ Sent Rcvd\r\n Opens: \ + \ 104 103 \r\n Notifications: 103\ + \ 1 \r\n Updates: 218 \ + \ 206 \r\n Keepalives: 28654 31511 \r\n Route\ + \ Refresh: 0 0 \r\n Capability: \ + \ 0 0 \r\n Total: 29079 \ + \ 31821 \r\n Total bytes: 552324 604889\ + \ \r\n Bytes in queue: 0 0 \r\n\r\n For\ + \ address family: IPv4 Unicast\r\n BGP table version 341, neighbor version\ + \ 0\r\n 0 accepted paths consume 0 bytes of memory\r\n 0 sent paths\r\n Third-party\ + \ Nexthop will not be computed.\r\n\r\n No established BGP session with peer" + show bgp vrf default all neighbors 10.1.1.1 advertised-routes: "\r\nPeer 10.1.1.1\ + \ routes for address family IPv4 Unicast:\r\nBGP table version is 341, local\ + \ router ID is 10.2.2.2\r\nStatus: s-suppressed, x-deleted, S-stale, d-dampened,\ + \ h-history, *-valid, >-best\r\nPath type: i-internal, e-external, c-confed,\ + \ l-local, a-aggregate, r-redist, I-injected\r\nOrigin codes: i - IGP, e - EGP,\ + \ ? - incomplete, | - multipath, & - backup\r\n\r\n Network Next\ + \ Hop Metric LocPrf Weight Path\r\n\r\n\r\nPeer 10.1.1.1\ + \ routes for address family IPv4 Multicast:\r\n\r\nPeer 10.1.1.1 routes for\ + \ address family IPv6 Unicast:\r\nBGP table version is 2, local router ID is\ + \ 10.2.2.2\r\nStatus: s-suppressed, x-deleted, S-stale, d-dampened, h-history,\ + \ *-valid, >-best\r\nPath type: i-internal, e-external, c-confed, l-local, a-aggregate,\ + \ r-redist, I-injected\r\nOrigin codes: i - IGP, e - EGP, ? - incomplete, |\ + \ - multipath, & - backup\r\n\r\n Network Next Hop Metric\ + \ LocPrf Weight Path\r\n\r\nPeer 10.1.1.1 routes for address family\ + \ IPv6 Multicast:\r\n\r\nPeer 10.1.1.1 routes for address family VPNv4 Unicast:\r\ + \n\r\nPeer 10.1.1.1 routes for address family VPNv6 Unicast:\r\n\r\nPeer 10.1.1.1\ + \ routes for address family IPv4 MDT:\r\n\r\nPeer 10.1.1.1 routes for address\ + \ family IPv6 Label Unicast:\r\n\r\nPeer 10.1.1.1 routes for address family\ + \ L2VPN VPLS:\r\n\r\nPeer 10.1.1.1 routes for address family IPv4 MVPN:\r\n\r\ + \nPeer 10.1.1.1 routes for address family IPv6 MVPN:\r\n\r\nPeer 10.1.1.1 routes\ + \ for address family IPv4 Label Unicast:\r\n\r\nPeer 10.1.1.1 routes for address\ + \ family L2VPN EVPN:" + show bgp vrf default all neighbors 10.1.1.1 received-routes: "\r\nInbound soft\ + \ reconfiguration for IPv4 Unicast not enabled on 10.1.1.1\r\n\r\nInbound soft\ + \ reconfiguration for IPv4 Multicast not enabled on 10.1.1.1\r\n\r\nInbound\ + \ soft reconfiguration for IPv6 Unicast not enabled on 10.1.1.1\r\n\r\nInbound\ + \ soft reconfiguration for IPv6 Multicast not enabled on 10.1.1.1\r\n\r\nInbound\ + \ soft reconfiguration for VPNv4 Unicast not enabled on 10.1.1.1\r\n\r\nInbound\ + \ soft reconfiguration for VPNv6 Unicast not enabled on 10.1.1.1\r\n\r\nInbound\ + \ soft reconfiguration for IPv4 MDT not enabled on 10.1.1.1\r\n\r\nInbound soft\ + \ reconfiguration for IPv6 Label Unicast not enabled on 10.1.1.1\r\n\r\nInbound\ + \ soft reconfiguration for L2VPN VPLS not enabled on 10.1.1.1\r\n\r\nInbound\ + \ soft reconfiguration for IPv4 MVPN not enabled on 10.1.1.1\r\n\r\nInbound\ + \ soft reconfiguration for IPv6 MVPN not enabled on 10.1.1.1\r\n\r\nInbound\ + \ soft reconfiguration for IPv4 Label Unicast not enabled on 10.1.1.1\r\n\r\n\ + Inbound soft reconfiguration for L2VPN EVPN not enabled on 10.1.1.1" + show bgp vrf default all neighbors 10.1.1.1 routes: "\r\nPeer 10.1.1.1 routes\ + \ for address family IPv4 Unicast:\r\nBGP table version is 341, local router\ + \ ID is 10.2.2.2\r\nStatus: s-suppressed, x-deleted, S-stale, d-dampened, h-history,\ + \ *-valid, >-best\r\nPath type: i-internal, e-external, c-confed, l-local, a-aggregate,\ + \ r-redist, I-injected\r\nOrigin codes: i - IGP, e - EGP, ? - incomplete, |\ + \ - multipath, & - backup\r\n\r\n Network Next Hop Metric\ + \ LocPrf Weight Path\r\n\r\n\r\nPeer 10.1.1.1 routes for address family\ + \ IPv4 Multicast:\r\n\r\nPeer 10.1.1.1 routes for address family IPv6 Unicast:\r\ + \nBGP table version is 2, local router ID is 10.2.2.2\r\nStatus: s-suppressed,\ + \ x-deleted, S-stale, d-dampened, h-history, *-valid, >-best\r\nPath type: i-internal,\ + \ e-external, c-confed, l-local, a-aggregate, r-redist, I-injected\r\nOrigin\ + \ codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup\r\n\r\n\ + \ Network Next Hop Metric LocPrf Weight Path\r\ + \n\r\nPeer 10.1.1.1 routes for address family IPv6 Multicast:\r\n\r\nPeer 10.1.1.1\ + \ routes for address family VPNv4 Unicast:\r\n\r\nPeer 10.1.1.1 routes for address\ + \ family VPNv6 Unicast:\r\n\r\nPeer 10.1.1.1 routes for address family IPv4\ + \ MDT:\r\n\r\nPeer 10.1.1.1 routes for address family IPv6 Label Unicast:\r\n\ + \r\nPeer 10.1.1.1 routes for address family L2VPN VPLS:\r\n\r\nPeer 10.1.1.1\ + \ routes for address family IPv4 MVPN:\r\n\r\nPeer 10.1.1.1 routes for address\ + \ family IPv6 MVPN:\r\n\r\nPeer 10.1.1.1 routes for address family IPv4 Label\ + \ Unicast:\r\n\r\nPeer 10.1.1.1 routes for address family L2VPN EVPN:" + show bgp vrf management all neighbors: Unknown vrf management + show interface: "mgmt0 is up\r\nadmin state is up\r\n Hardware: Ethernet, address:\ + \ 5e00.0001.0000 (bia 5e00.0001.0000)\r\n MTU 1500 bytes, BW 1000000 Kbit,\ + \ DLY 10 usec\r\n reliability 32/255, txload 1/255, rxload 1/255\r\n Encapsulation\ + \ ARPA, medium is broadcast\r\n Port mode is routed\r\n full-duplex, 1000\ + \ Mb/s\r\n Auto-Negotiation is turned on\r\n Auto-mdix is turned off\r\n \ + \ EtherType is 0x0000 \r\n 1 minute input rate 216 bits/sec, 0 packets/sec\r\ + \n 1 minute output rate 24 bits/sec, 0 packets/sec\r\n Rx\r\n 660640 input\ + \ packets 0 unicast packets 18871 multicast packets\r\n 641769 broadcast\ + \ packets 45241924 bytes\r\n Tx\r\n 28721 output packets 0 unicast packets\ + \ 28721 multicast packets\r\n 0 broadcast packets 6175007 bytes\r\n\r\nEthernet2/1\ + \ is up\r\nadmin state is up, Dedicated Interface\r\n Hardware: Ethernet,\ + \ address: 0000.0000.002f (bia fa16.3edd.c013)\r\n Internet Address is 10.0.1.2/24\r\ + \n MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n full-duplex, 1000 Mb/s\r\n Beacon is turned off\r\n \ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped 2week(s)\ + \ 5day(s)\r\n Last clearing of \"show interface\" counters never\r\n 1 interface\ + \ resets\r\n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec,\ + \ 0 packets/sec\r\n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n \ + \ input rate 0 bps, 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2:\ + \ 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds\ + \ output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output\ + \ rate 0 bps, 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0\ + \ broadcast packets\r\n 0 input packets 0 bytes\r\n 0 jumbo packets \ + \ 0 storm suppression packets\r\n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\ + \n 0 input error 0 short frame 0 overrun 0 underrun 0 ignored\r\n \ + \ 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop\r\n 0 input\ + \ with dribble 0 input discard\r\n 0 Rx pause\r\n TX\r\n 0 unicast packets\ + \ 0 multicast packets 0 broadcast packets\r\n 0 output packets 0 bytes\r\ + \n 0 jumbo packets\r\n 0 output error 0 collision 0 deferred 0 late\ + \ collision\r\n 0 lost carrier 0 no carrier 0 babble 0 output discard\r\ + \n 0 Tx pause\r\n\r\nEthernet2/2 is up\r\nadmin state is up, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia fa16.3e8a.5b7d)\r\n Internet\ + \ Address is 10.0.2.2/24\r\n MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\ + \n reliability 255/255, txload 1/255, rxload 1/255\r\n Encapsulation ARPA,\ + \ medium is broadcast\r\n Port mode is routed\r\n full-duplex, 1000 Mb/s\r\ + \n Beacon is turned off\r\n Auto-Negotiation is turned off\r\n Input flow-control\ + \ is off, output flow-control is off\r\n Auto-mdix is turned off\r\n Switchport\ + \ monitor is off \r\n EtherType is 0x8100 \r\n EEE (efficient-ethernet) :\ + \ n/a\r\n Last link flapped 2week(s) 5day(s)\r\n Last clearing of \"show interface\"\ + \ counters never\r\n 1 interface resets\r\n Load-Interval #1: 0 seconds\r\n\ + \ 0 seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output\ + \ rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate\ + \ 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0 seconds input rate\ + \ 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\ + \n input rate 0 bps, 0 pps; output rate 0 bps, 0 pps\r\n RX\r\n 0 unicast\ + \ packets 0 multicast packets 0 broadcast packets\r\n 0 input packets \ + \ 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\n 0 runts\ + \ 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short frame 0 overrun\ + \ 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop 0 bad proto drop\ + \ 0 if down drop\r\n 0 input with dribble 0 input discard\r\n 0 Rx pause\r\ + \n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\n\ + \ 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output error\ + \ 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0 no carrier\ + \ 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/3 is down (Administratively\ + \ down)\r\nadmin state is down, Dedicated Interface\r\n Hardware: Ethernet,\ + \ address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU 1500 bytes, BW 1000000\ + \ Kbit, DLY 10 usec\r\n reliability 255/255, txload 1/255, rxload 1/255\r\n\ + \ Encapsulation ARPA, medium is broadcast\r\n Port mode is routed\r\n auto-duplex,\ + \ auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation is turned off\r\ + \n Input flow-control is off, output flow-control is off\r\n Auto-mdix is\ + \ turned off\r\n Switchport monitor is off \r\n EtherType is 0x8100 \r\n \ + \ EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\n Last clearing\ + \ of \"show interface\" counters never\r\n 0 interface resets\r\n Load-Interval\ + \ #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\n \ + \ 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/4\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/5\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/6\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/7\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/8\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/9\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/10\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/11\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/12\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/13\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/14\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/15\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/16\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/17\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/18\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/19\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/20\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/21\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/22\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/23\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/24\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/25\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/26\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/27\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/28\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/29\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/30\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/31\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/32\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/33\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/34\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/35\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/36\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/37\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/38\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/39\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/40\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/41\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/42\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/43\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/44\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/45\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/46\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/47\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/48\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/1\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.002f)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/2\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.002f)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/3\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/4\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/5\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/6\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/7\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/8\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/9\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/10\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/11\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/12\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/13\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/14\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/15\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/16\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/17\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/18\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/19\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/20\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/21\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/22\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/23\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/24\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/25\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/26\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/27\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/28\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/29\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/30\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/31\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/32\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/33\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/34\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/35\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/36\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/37\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/38\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/39\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/40\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/41\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/42\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/43\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/44\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/45\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/46\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/47\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/48\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/1\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.002f)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/2\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.002f)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/3\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/4\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/5\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/6\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/7\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/8\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/9\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/10\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/11\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/12\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/13\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/14\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/15\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/16\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/17\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/18\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/19\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/20\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/21\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/22\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/23\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/24\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/25\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/26\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/27\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/28\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/29\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/30\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/31\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/32\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/33\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/34\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/35\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/36\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/37\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/38\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/39\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/40\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/41\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/42\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/43\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/44\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/45\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/46\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/47\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/48\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nloopback0\ + \ is up\r\nadmin state is up\r\n Hardware: Loopback\r\n Internet Address is\ + \ 10.2.2.2/32\r\n MTU 1500 bytes, BW 8000000 Kbit, DLY 5000 usec\r\n reliability\ + \ 255/255, txload 1/255, rxload 1/255\r\n Encapsulation LOOPBACK, medium is\ + \ broadcast\r\n Port mode is routed\r\n Auto-mdix is turned off\r\n 66887\ + \ packets input 3353523 bytes\r\n 0 multicast frames 0 compressed\r\n \ + \ 0 input errors 0 frame 0 overrun 0 fifo\r\n 0 packets output 0 bytes 0\ + \ underruns\r\n 0 output errors 0 collisions 0 fifo\r\n 0 out_carrier_errors\r\ + \n\r\nloopback1 is up\r\nadmin state is up\r\n Hardware: Loopback\r\n Internet\ + \ Address is 10.22.22.22/32\r\n MTU 1500 bytes, BW 8000000 Kbit, DLY 5000 usec\r\ + \n reliability 255/255, txload 1/255, rxload 1/255\r\n Encapsulation LOOPBACK,\ + \ medium is broadcast\r\n Port mode is routed\r\n Auto-mdix is turned off\r\ + \n 0 packets input 0 bytes\r\n 0 multicast frames 0 compressed\r\n \ + \ 0 input errors 0 frame 0 overrun 0 fifo\r\n 0 packets output 0 bytes 0\ + \ underruns\r\n 0 output errors 0 collisions 0 fifo\r\n 0 out_carrier_errors" + show interface switchport: "Name: Ethernet4/1\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/2\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/3\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/4\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/5\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/6\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/7\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/8\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/9\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/10\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/11\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/12\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/13\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/14\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/15\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/16\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/17\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/18\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/19\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/20\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/21\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/22\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/23\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/24\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/25\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/26\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/27\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/28\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/29\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/30\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/31\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/32\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/33\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/34\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/35\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/36\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/37\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/38\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/39\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/40\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/41\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/42\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/43\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/44\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/45\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/46\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/47\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/48\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none" + show ip interface vrf all: "IP Interface Status for VRF \"default\"\r\nloopback0,\ + \ Interface status: protocol-up/link-up/admin-up, iod: 132,\r\n IP address:\ + \ 10.2.2.2, IP subnet: 10.2.2.2/32 route-preference: 0, tag: 0 \r\n IP broadcast\ + \ address: 255.255.255.255\r\n IP multicast groups locally joined: none\r\n\ + \ IP MTU: 1500 bytes (using link MTU)\r\n IP primary address route-preference:\ + \ 0, tag: 0\r\n IP proxy ARP : disabled\r\n IP Local Proxy ARP : disabled\r\ + \n IP multicast routing: disabled\r\n IP icmp redirects: enabled\r\n IP directed-broadcast:\ + \ disabled \r\n IP Forwarding: disabled \r\n IP icmp unreachables (except\ + \ port): disabled\r\n IP icmp port-unreachable: enabled\r\n IP unicast reverse\ + \ path forwarding: none\r\n IP load sharing: none \r\n IP interface statistics\ + \ last reset: never\r\n IP interface software stats: (sent/received/forwarded/originated/consumed)\r\ + \n Unicast packets : 0/0/0/0/66887\r\n Unicast bytes : 0/0/0/0/3353523\r\ + \n Multicast packets : 0/0/0/0/0\r\n Multicast bytes : 0/0/0/0/0\r\ + \n Broadcast packets : 0/0/0/0/0\r\n Broadcast bytes : 0/0/0/0/0\r\ + \n Labeled packets : 0/0/0/0/0\r\n Labeled bytes : 0/0/0/0/0\r\ + \n WCCP Redirect outbound: disabled\r\n WCCP Redirect inbound: disabled\r\n\ + \ WCCP Redirect exclude: disabled\r\nloopback1, Interface status: protocol-up/link-up/admin-up,\ + \ iod: 133,\r\n IP address: 10.22.22.22, IP subnet: 10.22.22.22/32 route-preference:\ + \ 0, tag: 0 \r\n IP broadcast address: 255.255.255.255\r\n IP multicast groups\ + \ locally joined: none\r\n IP MTU: 1500 bytes (using link MTU)\r\n IP primary\ + \ address route-preference: 0, tag: 0\r\n IP proxy ARP : disabled\r\n IP Local\ + \ Proxy ARP : disabled\r\n IP multicast routing: disabled\r\n IP icmp redirects:\ + \ enabled\r\n IP directed-broadcast: disabled \r\n IP Forwarding: disabled\ + \ \r\n IP icmp unreachables (except port): disabled\r\n IP icmp port-unreachable:\ + \ enabled\r\n IP unicast reverse path forwarding: none\r\n IP load sharing:\ + \ none \r\n IP interface statistics last reset: never\r\n IP interface software\ + \ stats: (sent/received/forwarded/originated/consumed)\r\n Unicast packets\ + \ : 0/0/0/0/0\r\n Unicast bytes : 0/0/0/0/0\r\n Multicast packets\ + \ : 0/0/0/0/0\r\n Multicast bytes : 0/0/0/0/0\r\n Broadcast packets\ + \ : 0/0/0/0/0\r\n Broadcast bytes : 0/0/0/0/0\r\n Labeled packets\ + \ : 0/0/0/0/0\r\n Labeled bytes : 0/0/0/0/0\r\n WCCP Redirect outbound:\ + \ disabled\r\n WCCP Redirect inbound: disabled\r\n WCCP Redirect exclude:\ + \ disabled\r\nEthernet2/1, Interface status: protocol-up/link-up/admin-up, iod:\ + \ 36,\r\n IP address: 10.0.1.2, IP subnet: 10.0.1.0/24 route-preference: 0,\ + \ tag: 0 \r\n IP broadcast address: 255.255.255.255\r\n IP multicast groups\ + \ locally joined: \r\n 224.0.0.6 224.0.0.5 \r\n IP MTU: 1500 bytes (using\ + \ link MTU)\r\n IP primary address route-preference: 0, tag: 0\r\n IP proxy\ + \ ARP : disabled\r\n IP Local Proxy ARP : disabled\r\n IP multicast routing:\ + \ disabled\r\n IP icmp redirects: enabled\r\n IP directed-broadcast: disabled\ + \ \r\n IP Forwarding: disabled \r\n IP icmp unreachables (except port): disabled\r\ + \n IP icmp port-unreachable: enabled\r\n IP unicast reverse path forwarding:\ + \ none\r\n IP load sharing: none \r\n IP interface statistics last reset:\ + \ never\r\n IP interface software stats: (sent/received/forwarded/originated/consumed)\r\ + \n Unicast packets : 66786/45035/0/66786/45616\r\n Unicast bytes \ + \ : 4441605/2403329/0/4441605/2456689\r\n Multicast packets : 198714/182688/0/198714/365374\r\ + \n Multicast bytes : 17178660/18269560/0/17178660/18269464\r\n Broadcast\ + \ packets : 0/16368/0/0/16368\r\n Broadcast bytes : 0/822492/0/0/822492\r\ + \n Labeled packets : 0/0/0/0/0\r\n Labeled bytes : 0/0/0/0/0\r\ + \n WCCP Redirect outbound: disabled\r\n WCCP Redirect inbound: disabled\r\n\ + \ WCCP Redirect exclude: disabled\r\nEthernet2/2, Interface status: protocol-up/link-up/admin-up,\ + \ iod: 37,\r\n IP address: 10.0.2.2, IP subnet: 10.0.2.0/24 route-preference:\ + \ 0, tag: 0 \r\n IP broadcast address: 255.255.255.255\r\n IP multicast groups\ + \ locally joined: \r\n 224.0.0.6 224.0.0.5 \r\n IP MTU: 1500 bytes (using\ + \ link MTU)\r\n IP primary address route-preference: 0, tag: 0\r\n IP proxy\ + \ ARP : disabled\r\n IP Local Proxy ARP : disabled\r\n IP multicast routing:\ + \ disabled\r\n IP icmp redirects: enabled\r\n IP directed-broadcast: disabled\ + \ \r\n IP Forwarding: disabled \r\n IP icmp unreachables (except port): disabled\r\ + \n IP icmp port-unreachable: enabled\r\n IP unicast reverse path forwarding:\ + \ none\r\n IP load sharing: none \r\n IP interface statistics last reset:\ + \ never\r\n IP interface software stats: (sent/received/forwarded/originated/consumed)\r\ + \n Unicast packets : 36/23121/0/36/23809\r\n Unicast bytes : 3566/1265544/0/3566/1327596\r\ + \n Multicast packets : 198644/182562/0/198644/365122\r\n Multicast bytes\ + \ : 17172788/18258884/0/17172788/18258788\r\n Broadcast packets : 0/16368/0/0/16368\r\ + \n Broadcast bytes : 0/822492/0/0/822492\r\n Labeled packets : 0/0/0/0/0\r\ + \n Labeled bytes : 0/0/0/0/0\r\n WCCP Redirect outbound: disabled\r\ + \n WCCP Redirect inbound: disabled\r\n WCCP Redirect exclude: disabled\r\n\ + \r\nIP Interface Status for VRF \"management\"" + show ipv6 interface vrf all: "IPv6 Interface Status for VRF \"default\"\r\n\r\n\ + IPv6 Interface Status for VRF \"management\"" + show routing ipv6 vrf all: "IPv6 Routing Table for VRF \"default\"\r\n'*' denotes\ + \ best ucast next-hop\r\n'**' denotes best mcast next-hop\r\n'[x/y]' denotes\ + \ [preference/metric]\r\n\r\n\r\nIPv6 Routing Table for VRF \"management\"\r\ + \n'*' denotes best ucast next-hop\r\n'**' denotes best mcast next-hop\r\n'[x/y]'\ + \ denotes [preference/metric]" + show routing vrf all: "IP Route Table for VRF \"default\"\r\n'*' denotes best\ + \ ucast next-hop\r\n'**' denotes best mcast next-hop\r\n'[x/y]' denotes [preference/metric]\r\ + \n'%' in via output denotes VRF \r\n\r\n10.0.1.0/24, ubest/mbest:\ + \ 1/0, attached\r\n *via 10.0.1.2, Eth2/1, [0/0], 2w5d, direct\r\n10.0.1.2/32,\ + \ ubest/mbest: 1/0, attached\r\n *via 10.0.1.2, Eth2/1, [0/0], 2w5d, local\r\ + \n10.0.2.0/24, ubest/mbest: 1/0, attached\r\n *via 10.0.2.2, Eth2/2, [0/0],\ + \ 2w5d, direct\r\n10.0.2.2/32, ubest/mbest: 1/0, attached\r\n *via 10.0.2.2,\ + \ Eth2/2, [0/0], 2w5d, local\r\n10.1.1.1/32, ubest/mbest: 2/0\r\n *via 10.0.1.1,\ + \ Eth2/1, [110/41], 5d06h, ospf-1, intra\r\n *via 10.0.2.1, Eth2/2, [110/41],\ + \ 5d06h, ospf-1, intra\r\n10.2.2.2/32, ubest/mbest: 2/0, attached\r\n *via\ + \ 10.2.2.2, Lo0, [0/0], 2w5d, local\r\n *via 10.2.2.2, Lo0, [0/0], 2w5d,\ + \ direct\r\n10.22.22.22/32, ubest/mbest: 2/0, attached\r\n *via 10.22.22.22,\ + \ Lo1, [0/0], 2w5d, local\r\n *via 10.22.22.22, Lo1, [0/0], 2w5d, direct" + show running-config | inc peer-policy: '' + show running-config | inc peer-session: '' + show version: '' + show vrf: "VRF-Name VRF-ID State Reason \ + \ \r\ndefault 1 Up -- \ + \ \r\nmanagement 2 Up \ + \ --" + show vrf all interface: "Interface VRF-Name \ + \ VRF-ID Site-of-Origin\r\nloopback0 default \ + \ 1 --\r\nloopback1 default \ + \ 1 --\r\nNull0 default \ + \ 1 --\r\nEthernet2/1 default \ + \ 1 --\r\nEthernet2/2 default \ + \ 1 --\r\nEthernet2/3 default \ + \ 1 --\r\nEthernet2/4 default \ + \ 1 --\r\nEthernet2/5 default \ + \ 1 --\r\nEthernet2/6 default \ + \ 1 --\r\nEthernet2/7 default \ + \ 1 --\r\nEthernet2/8 default \ + \ 1 --\r\nEthernet2/9 default 1\ + \ --\r\nEthernet2/10 default 1 --\r\ + \nEthernet2/11 default 1 --\r\nEthernet2/12\ + \ default 1 --\r\nEthernet2/13 \ + \ default 1 --\r\nEthernet2/14 \ + \ default 1 --\r\nEthernet2/15 \ + \ default 1 --\r\nEthernet2/16 \ + \ default 1 --\r\nEthernet2/17 \ + \ default 1 --\r\nEthernet2/18 \ + \ default 1 --\r\nEthernet2/19 default\ + \ 1 --\r\nEthernet2/20 default \ + \ 1 --\r\nEthernet2/21 default \ + \ 1 --\r\nEthernet2/22 default \ + \ 1 --\r\nEthernet2/23 default \ + \ 1 --\r\nEthernet2/24 default \ + \ 1 --\r\nEthernet2/25 default \ + \ 1 --\r\nEthernet2/26 default \ + \ 1 --\r\nEthernet2/27 default \ + \ 1 --\r\nEthernet2/28 default \ + \ 1 --\r\nEthernet2/29 default \ + \ 1 --\r\nEthernet2/30 default \ + \ 1 --\r\nEthernet2/31 default \ + \ 1 --\r\nEthernet2/32 default \ + \ 1 --\r\nEthernet2/33 default \ + \ 1 --\r\nEthernet2/34 default 1\ + \ --\r\nEthernet2/35 default 1 --\r\ + \nEthernet2/36 default 1 --\r\nEthernet2/37\ + \ default 1 --\r\nEthernet2/38 \ + \ default 1 --\r\nEthernet2/39 \ + \ default 1 --\r\nEthernet2/40 \ + \ default 1 --\r\nEthernet2/41 \ + \ default 1 --\r\nEthernet2/42 \ + \ default 1 --\r\nEthernet2/43 \ + \ default 1 --\r\nEthernet2/44 default\ + \ 1 --\r\nEthernet2/45 default \ + \ 1 --\r\nEthernet2/46 default \ + \ 1 --\r\nEthernet2/47 default \ + \ 1 --\r\nEthernet2/48 default \ + \ 1 --\r\nEthernet3/1 default \ + \ 1 --\r\nEthernet3/2 default \ + \ 1 --\r\nEthernet3/3 default \ + \ 1 --\r\nEthernet3/4 default \ + \ 1 --\r\nEthernet3/5 default \ + \ 1 --\r\nEthernet3/6 default \ + \ 1 --\r\nEthernet3/7 default \ + \ 1 --\r\nEthernet3/8 default \ + \ 1 --\r\nEthernet3/9 default \ + \ 1 --\r\nEthernet3/10 default \ + \ 1 --\r\nEthernet3/11 default 1\ + \ --\r\nEthernet3/12 default 1 --\r\ + \nEthernet3/13 default 1 --\r\nEthernet3/14\ + \ default 1 --\r\nEthernet3/15 \ + \ default 1 --\r\nEthernet3/16 \ + \ default 1 --\r\nEthernet3/17 \ + \ default 1 --\r\nEthernet3/18 \ + \ default 1 --\r\nEthernet3/19 \ + \ default 1 --\r\nEthernet3/20 \ + \ default 1 --\r\nEthernet3/21 default\ + \ 1 --\r\nEthernet3/22 default \ + \ 1 --\r\nEthernet3/23 default \ + \ 1 --\r\nEthernet3/24 default \ + \ 1 --\r\nEthernet3/25 default \ + \ 1 --\r\nEthernet3/26 default \ + \ 1 --\r\nEthernet3/27 default \ + \ 1 --\r\nEthernet3/28 default \ + \ 1 --\r\nEthernet3/29 default \ + \ 1 --\r\nEthernet3/30 default \ + \ 1 --\r\nEthernet3/31 default \ + \ 1 --\r\nEthernet3/32 default \ + \ 1 --\r\nEthernet3/33 default \ + \ 1 --\r\nEthernet3/34 default \ + \ 1 --\r\nEthernet3/35 default \ + \ 1 --\r\nEthernet3/36 default 1\ + \ --\r\nEthernet3/37 default 1 --\r\ + \nEthernet3/38 default 1 --\r\nEthernet3/39\ + \ default 1 --\r\nEthernet3/40 \ + \ default 1 --\r\nEthernet3/41 \ + \ default 1 --\r\nEthernet3/42 \ + \ default 1 --\r\nEthernet3/43 \ + \ default 1 --\r\nEthernet3/44 \ + \ default 1 --\r\nEthernet3/45 \ + \ default 1 --\r\nEthernet3/46 default\ + \ 1 --\r\nEthernet3/47 default \ + \ 1 --\r\nEthernet3/48 default \ + \ 1 --\r\nmgmt0 management \ + \ 2 --" + term length 0: '' + term width 0: '' + prompt: switch# diff --git a/mocked_devices/2-manual/modified/record/csr1000v-1 b/mocked_devices/2-manual/modified/record/csr1000v-1 new file mode 100644 index 0000000..82a566e Binary files /dev/null and b/mocked_devices/2-manual/modified/record/csr1000v-1 differ diff --git a/mocked_devices/2-manual/modified/record/nx-osv-1 b/mocked_devices/2-manual/modified/record/nx-osv-1 new file mode 100644 index 0000000..abc87b2 Binary files /dev/null and b/mocked_devices/2-manual/modified/record/nx-osv-1 differ diff --git a/mocked_devices/2-manual/modified/snapshot/bgp_iosxe_csr1000v-1_console.txt b/mocked_devices/2-manual/modified/snapshot/bgp_iosxe_csr1000v-1_console.txt new file mode 100644 index 0000000..d8af510 --- /dev/null +++ b/mocked_devices/2-manual/modified/snapshot/bgp_iosxe_csr1000v-1_console.txt @@ -0,0 +1,213 @@ ++++ csr1000v-1: executing command 'show bgp summary' +++ +show bgp summary +% Command accepted but obsolete, unreleased or unsupported; see documentation. +BGP router identifier 10.1.1.1, local AS number 65000 +BGP table version is 166, main routing table version 166 +1 network entries using 248 bytes of memory +1 path entries using 136 bytes of memory +1/1 BGP path/bestpath attribute entries using 280 bytes of memory +0 BGP route-map cache entries using 0 bytes of memory +0 BGP filter-list cache entries using 0 bytes of memory +BGP using 664 total bytes of memory +BGP activity 36/35 prefixes, 84/83 paths, scan interval 60 secs + +Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd +10.2.2.2 4 65000 0 0 1 0 0 00:00:36 Idle +csr1000v-1# ++++ csr1000v-1: executing command 'show ip bgp template peer-session ' +++ +show ip bgp template peer-session +No templates configured + +csr1000v-1# ++++ csr1000v-1: executing command 'show ip bgp template peer-policy ' +++ +show ip bgp template peer-policy +No templates configured + +csr1000v-1# ++++ csr1000v-1: executing command 'show vrf detail | inc \(VRF' +++ +show vrf detail | inc \(VRF +csr1000v-1# ++++ csr1000v-1: executing command 'show bgp all cluster-ids' +++ +show bgp all cluster-ids +Global cluster-id: 10.1.1.1 (configured: 0.0.0.0) +BGP client-to-client reflection: Configured Used + all (inter-cluster and intra-cluster): ENABLED + intra-cluster: ENABLED ENABLED + +List of cluster-ids: +Cluster-id #-neighbors C2C-rfl-CFG C2C-rfl-USE +csr1000v-1# ++++ csr1000v-1: executing command 'show ip bgp all dampening parameters' +++ +show ip bgp all dampening parameters +For address family: IPv4 Unicast + +% dampening not enabled for base + +For address family: IPv6 Unicast + +% dampening not enabled for base + +For address family: IPv4 Multicast + +% dampening not enabled for base + +For address family: L2VPN E-VPN + +% dampening not enabled for base + +For address family: MVPNv4 Unicast + +% dampening not enabled for base + +For address family: MVPNv6 Unicast + +% dampening not enabled for base +csr1000v-1# ++++ csr1000v-1: executing command 'show bgp all neighbors' +++ +show bgp all neighbors +For address family: IPv4 Unicast +BGP neighbor is 10.2.2.2, remote AS 65000, internal link + BGP version 4, remote router ID 0.0.0.0 + BGP state = Idle, down for 00:00:37 + Neighbor sessions: + 0 active, is not multisession capable (disabled) + Stateful switchover support enabled: NO + Do log neighbor state changes (via global configuration) + Default minimum time between advertisement runs is 0 seconds + + Address tracking is enabled, the RIB does have a route to 10.2.2.2 + Route to peer address reachability Up: 2; Down: 0 + Last notification 5d06h + Connections established 82; dropped 82 + Last reset 00:00:37, due to Peer closed the session + Interface associated: (none) (peering address NOT in same link) + Transport(tcp) path-mtu-discovery is enabled + Graceful-Restart is disabled + SSO is disabled + No active TCP connection + + +For address family: IPv6 Unicast + +For address family: IPv4 Multicast + +For address family: L2VPN E-VPN + +For address family: MVPNv4 Unicast + +For address family: MVPNv6 Unicast +csr1000v-1# ++++ csr1000v-1: executing command 'show bgp all neighbors 10.2.2.2 policy' +++ +show bgp all neighbors 10.2.2.2 policy + Neighbor: 10.2.2.2, Address-Family: IPv4 Unicast +csr1000v-1# ++++ csr1000v-1: executing command 'show bgp all' +++ +show bgp all +For address family: IPv4 Unicast + +BGP table version is 166, local router ID is 10.1.1.1 +Status codes: s suppressed, d damped, h history, * valid, > best, i - internal, + r RIB-failure, S Stale, m multipath, b backup-path, f RT-Filter, + x best-external, a additional-path, c RIB-compressed, + t secondary path, L long-lived-stale, +Origin codes: i - IGP, e - EGP, ? - incomplete +RPKI validation codes: V valid, I invalid, N Not found + + Network Next Hop Metric LocPrf Weight Path + *> 10.11.11.11/32 0.0.0.0 0 32768 i + +For address family: IPv6 Unicast + + +For address family: IPv4 Multicast + + +For address family: L2VPN E-VPN + + +For address family: MVPNv4 Unicast + + +For address family: MVPNv6 Unicast + +csr1000v-1# ++++ csr1000v-1: executing command 'show bgp all detail' +++ +show bgp all detail +For address family: IPv4 Unicast + +BGP routing table entry for 10.11.11.11/32, version 2 + Paths: (1 available, best #1, table default) + Not advertised to any peer + Refresh Epoch 1 + Local + 0.0.0.0 from 0.0.0.0 (10.1.1.1) + Origin IGP, metric 0, localpref 100, weight 32768, valid, sourced, local, best + rx pathid: 0, tx pathid: 0x0 + +For address family: IPv6 Unicast + + +For address family: IPv4 Multicast + + +For address family: L2VPN E-VPN + + +For address family: MVPNv4 Unicast + + +For address family: MVPNv6 Unicast + +csr1000v-1# ++++ csr1000v-1: executing command 'show bgp all neighbors 10.2.2.2 advertised-routes' +++ +show bgp all neighbors 10.2.2.2 advertised-routes +For address family: IPv4 Unicast + +Total number of prefixes 0 +csr1000v-1# ++++ csr1000v-1: executing command 'show bgp all neighbors | i BGP neighbor' +++ +show bgp all neighbors | i BGP neighbor +BGP neighbor is 10.2.2.2, remote AS 65000, internal link +csr1000v-1# ++++ csr1000v-1: executing command 'show bgp all neighbors 10.2.2.2 routes' +++ +show bgp all neighbors 10.2.2.2 routes +For address family: IPv4 Unicast + +Total number of prefixes 0 +csr1000v-1# ++++ csr1000v-1: executing command 'show bgp all neighbors | i BGP neighbor' +++ +show bgp all neighbors | i BGP neighbor +BGP neighbor is 10.2.2.2, remote AS 65000, internal link +csr1000v-1# ++++ csr1000v-1: executing command 'show bgp all neighbors 10.2.2.2 received-routes' +++ +show bgp all neighbors 10.2.2.2 received-routes +For address family: IPv4 Unicast +% Inbound soft reconfiguration not enabled on 10.2.2.2 +csr1000v-1# ++++ csr1000v-1: executing command 'show bgp all neighbors | i BGP neighbor' +++ +show bgp all neighbors | i BGP neighbor +BGP neighbor is 10.2.2.2, remote AS 65000, internal link +csr1000v-1# +Could not learn +Parser Output is empty ++====================================================================================================================================================+ +| Commands for learning feature 'Bgp' | ++====================================================================================================================================================+ +| - Parsed commands | +|----------------------------------------------------------------------------------------------------------------------------------------------------| +| cmd: | +| cmd: | +| cmd: | +| cmd: | +| cmd: | +|====================================================================================================================================================| +| - Commands with empty output | +|----------------------------------------------------------------------------------------------------------------------------------------------------| +| cmd: | +| cmd: | +| cmd: | +| cmd: , arguments: {'neighbor':'10.2.2.2'} | +| cmd: , arguments: {'neighbor':'10.2.2.2'} | +| cmd: , arguments: {'neighbor':'10.2.2.2'} | +| cmd: , arguments: {'neighbor':'10.2.2.2'} | +|====================================================================================================================================================| diff --git a/mocked_devices/2-manual/modified/snapshot/bgp_iosxe_csr1000v-1_ops.txt b/mocked_devices/2-manual/modified/snapshot/bgp_iosxe_csr1000v-1_ops.txt new file mode 100644 index 0000000..4414c51 --- /dev/null +++ b/mocked_devices/2-manual/modified/snapshot/bgp_iosxe_csr1000v-1_ops.txt @@ -0,0 +1,106 @@ +{ + "attributes": null, + "commands": null, + "connections": null, + "context_manager": {}, + "info": { + "instance": { + "default": { + "bgp_id": 65000, + "vrf": { + "default": { + "cluster_id": "10.1.1.1", + "neighbor": { + "10.2.2.2": { + "address_family": { + "": { + "bgp_table_version": 166, + "path": { + "memory_usage": 136, + "total_entries": 1 + }, + "prefixes": { + "memory_usage": 248, + "total_entries": 1 + }, + "routing_table_version": 166, + "total_memory": 664 + } + }, + "bgp_session_transport": { + "connection": { + "last_reset": "00:00:37", + "reset_reason": "Peer closed the session", + "state": "Idle" + } + }, + "bgp_version": 4, + "remote_as": 65000, + "session_state": "Idle", + "shutdown": false + } + } + } + } + } + } + }, + "routes_per_peer": { + "instance": { + "default": { + "vrf": { + "default": { + "neighbor": { + "10.2.2.2": { + "address_family": { + "": { + "input_queue": 0, + "msg_rcvd": 0, + "msg_sent": 0, + "output_queue": 0, + "state_pfxrcd": "Idle", + "tbl_ver": 1, + "up_down": "00:00:36" + } + }, + "remote_as": 65000 + } + } + } + } + } + } + }, + "table": { + "instance": { + "default": { + "vrf": { + "default": { + "address_family": { + "ipv4 unicast": { + "paths": "1 available, best #1, table default", + "prefixes": { + "10.11.11.11/32": { + "index": { + "1": { + "gateway": "0.0.0.0", + "localpref": 100, + "metric": 0, + "next_hop": "0.0.0.0", + "origin_codes": "i", + "originator": "10.1.1.1", + "status_codes": "*>", + "weight": "32768" + } + }, + "table_version": "2" + } + } + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/mocked_devices/2-manual/modified/snapshot/bgp_nxos_nx-osv-1_console.txt b/mocked_devices/2-manual/modified/snapshot/bgp_nxos_nx-osv-1_console.txt new file mode 100644 index 0000000..911e3fa --- /dev/null +++ b/mocked_devices/2-manual/modified/snapshot/bgp_nxos_nx-osv-1_console.txt @@ -0,0 +1,334 @@ ++++ nx-osv-1: executing command 'show bgp process vrf all' +++ +show bgp process vrf all + +BGP Process Information +BGP Process ID : 8610 +BGP Protocol Started, reason: : configuration +BGP Protocol Tag : 65000 +BGP Protocol State : Shutdown +BGP MMODE : Not Initialized +BGP Memory State : OK +BGP asformat : asplain + +BGP attributes information +Number of attribute entries : 1 +HWM of attribute entries : 2 +Bytes used by entries : 100 +Entries pending delete : 0 +HWM of entries pending delete : 0 +BGP paths per attribute HWM : 1 +BGP AS path entries : 0 +Bytes used by AS path entries : 0 + +Information regarding configured VRFs: + +BGP Information for VRF default +VRF Id : 1 +VRF state : UP +Router-ID : 10.2.2.2 +Configured Router-ID : 10.2.2.2 +Confed-ID : 0 +Cluster-ID : 0.0.0.0 +No. of configured peers : 1 +No. of pending config peers : 0 +No. of established peers : 0 +VRF RD : Not configured + + Information for address family IPv4 Unicast in VRF default + Table Id : 1 + Table state : UP + Peers Active-peers Routes Paths Networks Aggregates + 1 0 1 1 1 0 + + Redistribution + None + + Wait for IGP convergence is not configured + + + Nexthop trigger-delay + critical 3000 ms + non-critical 10000 ms + + Information for address family IPv6 Unicast in VRF default + Table Id : 80000001 + Table state : UP + Peers Active-peers Routes Paths Networks Aggregates + 0 0 0 0 0 0 + + Redistribution + None + + Wait for IGP convergence is not configured + + + Nexthop trigger-delay + critical 3000 ms + non-critical 10000 ms + nx-osv-1# ++++ nx-osv-1: executing command 'show running-config | inc peer-session' +++ +show running-config | inc peer-session + nx-osv-1# ++++ nx-osv-1: executing command 'show running-config | inc peer-policy' +++ +show running-config | inc peer-policy + nx-osv-1# ++++ nx-osv-1: executing command 'show bgp vrf all all dampening parameters' +++ +show bgp vrf all all dampening parameters + nx-osv-1# ++++ nx-osv-1: executing command 'show bgp vrf all all nexthop-database' +++ +show bgp vrf all all nexthop-database + +Next Hop table for VRF default, address family IPv4 Unicast: +Next-hop trigger-delay(miliseconds) + Critical: 3000 Non-critical: 10000 +IPv4 Next-hop table + +Nexthop: 0.0.0.0, Flags: 0x2, Refcount: 1, IGP cost: 0 +IGP Route type: 0, IGP preference: 0 +Nexthop is not-attached local unreachable not-labeled +Nexthop last resolved: never, using 0.0.0.0/0 +Metric next advertise: Never +RNH epoch: 0 +IPv6 Next-hop table + +Next Hop table for VRF default, address family IPv6 Unicast: +Next-hop trigger-delay(miliseconds) + Critical: 3000 Non-critical: 10000 +IPv4 Next-hop table +IPv6 Next-hop table + nx-osv-1# ++++ nx-osv-1: executing command 'show routing vrf all' +++ +show routing vrf all +IP Route Table for VRF "default" +'*' denotes best ucast next-hop +'**' denotes best mcast next-hop +'[x/y]' denotes [preference/metric] +'%' in via output denotes VRF + +10.0.1.0/24, ubest/mbest: 1/0, attached + *via 10.0.1.2, Eth2/1, [0/0], 2w5d, direct +10.0.1.2/32, ubest/mbest: 1/0, attached + *via 10.0.1.2, Eth2/1, [0/0], 2w5d, local +10.0.2.0/24, ubest/mbest: 1/0, attached + *via 10.0.2.2, Eth2/2, [0/0], 2w5d, direct +10.0.2.2/32, ubest/mbest: 1/0, attached + *via 10.0.2.2, Eth2/2, [0/0], 2w5d, local +10.1.1.1/32, ubest/mbest: 2/0 + *via 10.0.1.1, Eth2/1, [110/41], 5d06h, ospf-1, intra + *via 10.0.2.1, Eth2/2, [110/41], 5d06h, ospf-1, intra +10.2.2.2/32, ubest/mbest: 2/0, attached + *via 10.2.2.2, Lo0, [0/0], 2w5d, local + *via 10.2.2.2, Lo0, [0/0], 2w5d, direct +10.22.22.22/32, ubest/mbest: 2/0, attached + *via 10.22.22.22, Lo1, [0/0], 2w5d, local + *via 10.22.22.22, Lo1, [0/0], 2w5d, direct + nx-osv-1# ++++ nx-osv-1: executing command 'show bgp vrf all all' +++ +show bgp vrf all all +BGP routing table information for VRF default, address family IPv4 Unicast +BGP table version is 341, local router ID is 10.2.2.2 +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup + + Network Next Hop Metric LocPrf Weight Path +*>l10.22.22.22/32 0.0.0.0 100 32768 i + + nx-osv-1# ++++ nx-osv-1: executing command 'show vrf' +++ +show vrf +VRF-Name VRF-ID State Reason +default 1 Up -- +management 2 Up -- + nx-osv-1# ++++ nx-osv-1: executing command 'show bgp vrf management all neighbors' +++ +show bgp vrf management all neighbors +Unknown vrf management + nx-osv-1# ++++ nx-osv-1: executing command 'show bgp vrf default all neighbors' +++ +show bgp vrf default all neighbors +BGP neighbor is 10.1.1.1, remote AS 65000, ibgp link, Peer index 1 + BGP version 4, remote router ID 0.0.0.0 + BGP state = Shut (Admin), down for 00:00:38 + Using loopback0 as update source for this peer + Last read never, hold time = 180, keepalive interval is 60 seconds + Last written never, keepalive timer not running + Received 31821 messages, 1 notifications, 0 bytes in queue + Sent 29079 messages, 103 notifications, 0 bytes in queue + Connections established 103, dropped 103 + Last reset by us 00:00:38, due to administratively shutdown + Last reset by peer never, due to No error + + Message statistics: + Sent Rcvd + Opens: 104 103 + Notifications: 103 1 + Updates: 218 206 + Keepalives: 28654 31511 + Route Refresh: 0 0 + Capability: 0 0 + Total: 29079 31821 + Total bytes: 552324 604889 + Bytes in queue: 0 0 + + For address family: IPv4 Unicast + BGP table version 341, neighbor version 0 + 0 accepted paths consume 0 bytes of memory + 0 sent paths + Third-party Nexthop will not be computed. + + No established BGP session with peer + + nx-osv-1# ++++ nx-osv-1: executing command 'show bgp vrf all all summary' +++ +show bgp vrf all all summary +BGP summary information for VRF default, address family IPv4 Unicast +BGP router identifier 10.2.2.2, local AS number 65000 +BGP table version is 341, IPv4 Unicast config peers 1, capable peers 0 +1 network entries and 1 paths using 144 bytes of memory +BGP attribute entries [1/144], BGP AS path entries [0/0] +BGP community entries [0/0], BGP clusterlist entries [0/0] + +Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd +10.1.1.1 4 65000 31821 29079 0 0 0 00:00:38 Shut (Admin) + +BGP summary information for VRF default, address family IPv6 Unicast + nx-osv-1# ++++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 advertised-routes' +++ +show bgp vrf default all neighbors 10.1.1.1 advertised-routes + +Peer 10.1.1.1 routes for address family IPv4 Unicast: +BGP table version is 341, local router ID is 10.2.2.2 +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup + + Network Next Hop Metric LocPrf Weight Path + + +Peer 10.1.1.1 routes for address family IPv4 Multicast: + +Peer 10.1.1.1 routes for address family IPv6 Unicast: +BGP table version is 2, local router ID is 10.2.2.2 +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup + + Network Next Hop Metric LocPrf Weight Path + +Peer 10.1.1.1 routes for address family IPv6 Multicast: + +Peer 10.1.1.1 routes for address family VPNv4 Unicast: + +Peer 10.1.1.1 routes for address family VPNv6 Unicast: + +Peer 10.1.1.1 routes for address family IPv4 MDT: + +Peer 10.1.1.1 routes for address family IPv6 Label Unicast: + +Peer 10.1.1.1 routes for address family L2VPN VPLS: + +Peer 10.1.1.1 routes for address family IPv4 MVPN: + +Peer 10.1.1.1 routes for address family IPv6 MVPN: + +Peer 10.1.1.1 routes for address family IPv4 Label Unicast: + +Peer 10.1.1.1 routes for address family L2VPN EVPN: + nx-osv-1# ++++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 routes' +++ +show bgp vrf default all neighbors 10.1.1.1 routes + +Peer 10.1.1.1 routes for address family IPv4 Unicast: +BGP table version is 341, local router ID is 10.2.2.2 +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup + + Network Next Hop Metric LocPrf Weight Path + + +Peer 10.1.1.1 routes for address family IPv4 Multicast: + +Peer 10.1.1.1 routes for address family IPv6 Unicast: +BGP table version is 2, local router ID is 10.2.2.2 +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup + + Network Next Hop Metric LocPrf Weight Path + +Peer 10.1.1.1 routes for address family IPv6 Multicast: + +Peer 10.1.1.1 routes for address family VPNv4 Unicast: + +Peer 10.1.1.1 routes for address family VPNv6 Unicast: + +Peer 10.1.1.1 routes for address family IPv4 MDT: + +Peer 10.1.1.1 routes for address family IPv6 Label Unicast: + +Peer 10.1.1.1 routes for address family L2VPN VPLS: + +Peer 10.1.1.1 routes for address family IPv4 MVPN: + +Peer 10.1.1.1 routes for address family IPv6 MVPN: + +Peer 10.1.1.1 routes for address family IPv4 Label Unicast: + +Peer 10.1.1.1 routes for address family L2VPN EVPN: + nx-osv-1# ++++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 received-routes' +++ +show bgp vrf default all neighbors 10.1.1.1 received-routes + +Inbound soft reconfiguration for IPv4 Unicast not enabled on 10.1.1.1 + +Inbound soft reconfiguration for IPv4 Multicast not enabled on 10.1.1.1 + +Inbound soft reconfiguration for IPv6 Unicast not enabled on 10.1.1.1 + +Inbound soft reconfiguration for IPv6 Multicast not enabled on 10.1.1.1 + +Inbound soft reconfiguration for VPNv4 Unicast not enabled on 10.1.1.1 + +Inbound soft reconfiguration for VPNv6 Unicast not enabled on 10.1.1.1 + +Inbound soft reconfiguration for IPv4 MDT not enabled on 10.1.1.1 + +Inbound soft reconfiguration for IPv6 Label Unicast not enabled on 10.1.1.1 + +Inbound soft reconfiguration for L2VPN VPLS not enabled on 10.1.1.1 + +Inbound soft reconfiguration for IPv4 MVPN not enabled on 10.1.1.1 + +Inbound soft reconfiguration for IPv6 MVPN not enabled on 10.1.1.1 + +Inbound soft reconfiguration for IPv4 Label Unicast not enabled on 10.1.1.1 + +Inbound soft reconfiguration for L2VPN EVPN not enabled on 10.1.1.1 + nx-osv-1# +Could not learn +Parser Output is empty ++====================================================================================================================================================+ +| Commands for learning feature 'Bgp' | ++====================================================================================================================================================+ +| - Parsed commands | +|----------------------------------------------------------------------------------------------------------------------------------------------------| +| cmd: | +| cmd: | +| cmd: | +| cmd: | +| cmd: | +| cmd: , arguments: {'vrf':'default'} | +| cmd: | +| cmd: , arguments: {'neighbor':'10.1.1.1','vrf':'default'} | +| cmd: , arguments: {'neighbor':'10.1.1.1','vrf':'default'} | +|====================================================================================================================================================| +| - Commands with empty output | +|----------------------------------------------------------------------------------------------------------------------------------------------------| +| cmd: | +| cmd: | +| cmd: | +| cmd: , arguments: {'vrf':'management'} | +| cmd: , arguments: {'neighbor':'10.1.1.1','vrf':'default'} | +|====================================================================================================================================================| diff --git a/mocked_devices/2-manual/modified/snapshot/bgp_nxos_nx-osv-1_ops.txt b/mocked_devices/2-manual/modified/snapshot/bgp_nxos_nx-osv-1_ops.txt new file mode 100644 index 0000000..c92e7b1 --- /dev/null +++ b/mocked_devices/2-manual/modified/snapshot/bgp_nxos_nx-osv-1_ops.txt @@ -0,0 +1,149 @@ +{ + "attributes": null, + "commands": null, + "connections": null, + "context_manager": {}, + "info": { + "instance": { + "default": { + "bgp_id": 65000, + "protocol_state": "shutdown", + "vrf": { + "default": { + "address_family": { + "ipv4 unicast": { + "nexthop_trigger_delay_critical": 3000, + "nexthop_trigger_delay_non_critical": 10000, + "nexthop_trigger_enable": true + }, + "ipv6 unicast": { + "nexthop_trigger_delay_critical": 3000, + "nexthop_trigger_delay_non_critical": 10000, + "nexthop_trigger_enable": true + } + }, + "cluster_id": "0.0.0.0", + "confederation_identifier": 0, + "neighbor": { + "10.1.1.1": { + "address_family": { + "ipv4 unicast": { + "bgp_table_version": 341, + "session_state": "shut" + } + }, + "bgp_negotiated_keepalive_timers": { + "hold_time": 180, + "keepalive_interval": 60 + }, + "bgp_neighbor_counters": { + "messages": { + "received": { + "bytes_in_queue": 0, + "capability": 0, + "keepalives": 31511, + "notifications": 1, + "opens": 103, + "route_refresh": 0, + "total": 31821, + "total_bytes": 604889, + "updates": 206 + }, + "sent": { + "bytes_in_queue": 0, + "capability": 0, + "keepalives": 28654, + "notifications": 103, + "opens": 104, + "route_refresh": 0, + "total": 29079, + "total_bytes": 552324, + "updates": 218 + } + } + }, + "bgp_session_transport": { + "connection": { + "last_reset": "never", + "reset_reason": "no error", + "state": "shut" + } + }, + "bgp_version": 4, + "holdtime": 180, + "keepalive_interval": 60, + "local_as_as_no": "None", + "remote_as": 65000, + "session_state": "shut", + "shutdown": true, + "up_time": "00:00:38", + "update_source": "loopback0" + } + }, + "router_id": "10.2.2.2" + } + } + } + } + }, + "routes_per_peer": { + "instance": { + "default": { + "vrf": { + "default": { + "neighbor": { + "10.1.1.1": { + "address_family": { + "ipv4 unicast": { + "advertised": {}, + "input_queue": 0, + "msg_rcvd": 31821, + "msg_sent": 29079, + "output_queue": 0, + "routes": {}, + "state_pfxrcd": "shut (admin)", + "tbl_ver": 0, + "up_down": "00:00:38" + }, + "ipv6 unicast": { + "advertised": {}, + "routes": {} + } + }, + "remote_as": 65000 + } + } + } + } + } + } + }, + "table": { + "instance": { + "default": { + "vrf": { + "default": { + "address_family": { + "ipv4 unicast": { + "bgp_table_version": 341, + "prefixes": { + "10.22.22.22/32": { + "index": { + "1": { + "localpref": 100, + "next_hop": "0.0.0.0", + "origin_codes": "i", + "status_codes": "*>", + "weight": 32768 + } + } + } + } + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/mocked_devices/2-manual/modified/snapshot/connection_csr1000v-1.txt b/mocked_devices/2-manual/modified/snapshot/connection_csr1000v-1.txt new file mode 100644 index 0000000..58df658 --- /dev/null +++ b/mocked_devices/2-manual/modified/snapshot/connection_csr1000v-1.txt @@ -0,0 +1,84 @@ +[2019-04-28 16:22:35,314] +++ csr1000v-1 logfile snapshot/connection_csr1000v-1.txt +++ +[2019-04-28 16:22:35,315] +++ Unicon plugin iosxe +++ +[2019-04-28 16:22:35,320] +++ connection to spawn: telnet 172.25.192.90 17000, id: 4644725032 +++ +[2019-04-28 16:22:35,322] connection to csr1000v-1 +Trying 172.25.192.90... +Connected to asg-virl-ubuntu.cisco.com. +Escape character is '^]'. + +csr1000v-1# +[2019-04-28 16:22:36,119] +++ initializing handle +++ +[2019-04-28 16:22:36,120] +++ csr1000v-1: executing command 'term length 0' +++ +term length 0 +csr1000v-1# +[2019-04-28 16:22:36,242] +++ csr1000v-1: executing command 'term width 0' +++ +term width 0 +csr1000v-1# +[2019-04-28 16:22:36,354] +++ csr1000v-1: executing command 'show version' +++ +show version +Cisco IOS XE Software, Version 16.09.01 +Cisco IOS Software [Fuji], Virtual XE Software (X86_64_LINUX_IOSD-UNIVERSALK9-M), Version 16.9.1, RELEASE SOFTWARE (fc2) +Technical Support: http://www.cisco.com/techsupport +Copyright (c) 1986-2018 by Cisco Systems, Inc. +Compiled Tue 17-Jul-18 16:57 by mcpre + + +Cisco IOS-XE software, Copyright (c) 2005-2018 by cisco Systems, Inc. +All rights reserved. Certain components of Cisco IOS-XE software are +licensed under the GNU General Public License ("GPL") Version 2.0. The +software code licensed under GPL Version 2.0 is free software that comes +with ABSOLUTELY NO WARRANTY. You can redistribute and/or modify such +GPL code under the terms of GPL Version 2.0. For more details, see the +documentation or "License Notice" file accompanying the IOS-XE software, +or the applicable URL provided on the flyer accompanying the IOS-XE +software. + + +ROM: IOS-XE ROMMON + +csr1000v-1 uptime is 5 days, 6 hours, 25 minutes +Uptime for this control processor is 5 days, 6 hours, 34 minutes +System returned to ROM by reload +System image file is "bootflash:packages.conf" +Last reload reason: Critical software exception, check bootflash:crashinfo_RP_00_00_20190423-163950-UTC + + + +This product contains cryptographic features and is subject to United +States and local country laws governing import, export, transfer and +use. Delivery of Cisco cryptographic products does not imply +third-party authority to import, export, distribute or use encryption. +Importers, exporters, distributors and users are responsible for +compliance with U.S. and local country laws. By using this product you +agree to comply with applicable laws and regulations. If you are unable +to comply with U.S. and local laws, return this product immediately. + +A summary of U.S. laws governing Cisco cryptographic products may be found at: +http://www.cisco.com/wwl/export/crypto/tool/stqrg.html + +If you require further assistance please contact us by sending email to +export@cisco.com. + +License Level: ax +License Type: Default. No valid license found. +Next reload license Level: ax + +cisco CSR1000V (VXE) processor (revision VXE) with 1217428K/3075K bytes of memory. +Processor board ID 9P34NU3ZQ4L +3 Gigabit Ethernet interfaces +32768K bytes of non-volatile configuration memory. +3018864K bytes of physical memory. +7774207K bytes of virtual hard disk at bootflash:. +0K bytes of WebUI ODM Files at webui:. + +Configuration register is 0x2102 + +csr1000v-1# +[2019-04-28 16:22:36,460] +++ csr1000v-1: config +++ +config term +Enter configuration commands, one per line. End with CNTL/Z. +csr1000v-1(config)#no logging console +csr1000v-1(config)#line console 0 +csr1000v-1(config-line)#exec-timeout 0 +csr1000v-1(config-line)#end +csr1000v-1# diff --git a/mocked_devices/2-manual/modified/snapshot/connection_nx-osv-1.txt b/mocked_devices/2-manual/modified/snapshot/connection_nx-osv-1.txt new file mode 100644 index 0000000..004cea8 --- /dev/null +++ b/mocked_devices/2-manual/modified/snapshot/connection_nx-osv-1.txt @@ -0,0 +1,30 @@ +[2019-04-28 16:22:33,205] +++ nx-osv-1 logfile snapshot/connection_nx-osv-1.txt +++ +[2019-04-28 16:22:33,206] +++ Unicon plugin nxos +++ +[2019-04-28 16:22:33,214] +++ connection to spawn: telnet 172.25.192.90 17002, id: 4599832472 +++ +[2019-04-28 16:22:33,217] connection to nx-osv-1 +Trying 172.25.192.90... +Connected to asg-virl-ubuntu.cisco.com. +Escape character is '^]'. + + nx-osv-1(config-router)# +[2019-04-28 16:22:34,044] +++ initializing handle +++ +end + nx-osv-1# +[2019-04-28 16:22:34,193] +++ nx-osv-1: executing command 'term length 0' +++ +term length 0 + nx-osv-1# +[2019-04-28 16:22:34,375] +++ nx-osv-1: executing command 'term width 511' +++ +term width 511 + nx-osv-1# +[2019-04-28 16:22:34,518] +++ nx-osv-1: executing command 'terminal session-timeout 0' +++ +terminal session-timeout 0 + nx-osv-1# +[2019-04-28 16:22:34,640] +++ nx-osv-1: config +++ +config term +Enter configuration commands, one per line. End with CNTL/Z. + nx-osv-1(config)# no logging console + nx-osv-1(config)# line console + nx-osv-1(config-console)# exec-timeout 0 + nx-osv-1(config-console)# terminal width 511 + nx-osv-1(config-console)# end + nx-osv-1# diff --git a/mocked_devices/2-manual/modified/snapshot/interface_iosxe_csr1000v-1_console.txt b/mocked_devices/2-manual/modified/snapshot/interface_iosxe_csr1000v-1_console.txt new file mode 100644 index 0000000..36e428d --- /dev/null +++ b/mocked_devices/2-manual/modified/snapshot/interface_iosxe_csr1000v-1_console.txt @@ -0,0 +1,389 @@ ++++ csr1000v-1: executing command 'show interfaces' +++ +show interfaces +GigabitEthernet1 is up, line protocol is up + Hardware is CSR vNIC, address is 5e00.0000.0000 (bia 5e00.0000.0000) + Internet address is 10.255.8.122/16 + MTU 1500 bytes, BW 1000000 Kbit/sec, DLY 10 usec, + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, loopback not set + Keepalive set (10 sec) + Full Duplex, 1000Mbps, link type is auto, media type is Virtual + output flow-control is unsupported, input flow-control is unsupported + ARP type: ARPA, ARP Timeout 04:00:00 + Last input 00:00:00, output 00:01:09, output hang never + Last clearing of "show interface" counters never + Input queue: 0/375/0/0 (size/max/drops/flushes); Total output drops: 0 + Queueing strategy: fifo + Output queue: 0/40 (size/max) + 5 minute input rate 0 bits/sec, 0 packets/sec + 5 minute output rate 0 bits/sec, 0 packets/sec + 226238 packets input, 16092320 bytes, 0 no buffer + Received 0 broadcasts (0 IP multicasts) + 0 runts, 0 giants, 0 throttles + 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored + 0 watchdog, 0 multicast, 0 pause input + 82920 packets output, 7470544 bytes, 0 underruns + 0 output errors, 0 collisions, 0 interface resets + 15165 unknown protocol drops + 0 babbles, 0 late collision, 0 deferred + 0 lost carrier, 0 no carrier, 0 pause output + 0 output buffer failures, 0 output buffers swapped out +GigabitEthernet2 is up, line protocol is up + Hardware is CSR vNIC, address is fa16.3ebe.e48e (bia fa16.3ebe.e48e) + Internet address is 10.0.1.1/24 + MTU 1500 bytes, BW 1000000 Kbit/sec, DLY 10 usec, + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, loopback not set + Keepalive set (10 sec) + Full Duplex, 1000Mbps, link type is auto, media type is Virtual + output flow-control is unsupported, input flow-control is unsupported + ARP type: ARPA, ARP Timeout 04:00:00 + Last input 00:00:00, output 00:00:00, output hang never + Last clearing of "show interface" counters never + Input queue: 0/375/0/0 (size/max/drops/flushes); Total output drops: 0 + Queueing strategy: fifo + Output queue: 0/40 (size/max) + 5 minute input rate 0 bits/sec, 0 packets/sec + 5 minute output rate 0 bits/sec, 0 packets/sec + 82594 packets input, 7354066 bytes, 0 no buffer + Received 0 broadcasts (0 IP multicasts) + 0 runts, 0 giants, 0 throttles + 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored + 0 watchdog, 0 multicast, 0 pause input + 67732 packets output, 6746956 bytes, 0 underruns + 0 output errors, 0 collisions, 0 interface resets + 7583 unknown protocol drops + 0 babbles, 0 late collision, 0 deferred + 0 lost carrier, 0 no carrier, 0 pause output + 0 output buffer failures, 0 output buffers swapped out +GigabitEthernet3 is up, line protocol is up + Hardware is CSR vNIC, address is fa16.3e07.71e5 (bia fa16.3e07.71e5) + Internet address is 10.0.2.1/24 + MTU 1500 bytes, BW 1000000 Kbit/sec, DLY 10 usec, + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, loopback not set + Keepalive set (10 sec) + Full Duplex, 1000Mbps, link type is auto, media type is Virtual + output flow-control is unsupported, input flow-control is unsupported + ARP type: ARPA, ARP Timeout 04:00:00 + Last input 00:00:03, output 00:00:00, output hang never + Last clearing of "show interface" counters never + Input queue: 0/375/0/0 (size/max/drops/flushes); Total output drops: 0 + Queueing strategy: fifo + Output queue: 0/40 (size/max) + 5 minute input rate 0 bits/sec, 0 packets/sec + 5 minute output rate 0 bits/sec, 0 packets/sec + 60332 packets input, 5991282 bytes, 0 no buffer + Received 0 broadcasts (0 IP multicasts) + 0 runts, 0 giants, 0 throttles + 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored + 0 watchdog, 0 multicast, 0 pause input + 90160 packets output, 8191145 bytes, 0 underruns + 0 output errors, 0 collisions, 0 interface resets + 7583 unknown protocol drops + 0 babbles, 0 late collision, 0 deferred + 0 lost carrier, 0 no carrier, 0 pause output + 0 output buffer failures, 0 output buffers swapped out +Loopback0 is up, line protocol is up + Hardware is Loopback + Internet address is 10.1.1.1/32 + MTU 1514 bytes, BW 8000000 Kbit/sec, DLY 5000 usec, + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation LOOPBACK, loopback not set + Keepalive set (10 sec) + Last input 00:01:09, output never, output hang never + Last clearing of "show interface" counters never + Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0 + Queueing strategy: fifo + Output queue: 0/0 (size/max) + 5 minute input rate 0 bits/sec, 0 packets/sec + 5 minute output rate 0 bits/sec, 0 packets/sec + 0 packets input, 0 bytes, 0 no buffer + Received 0 broadcasts (0 IP multicasts) + 0 runts, 0 giants, 0 throttles + 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored, 0 abort + 16368 packets output, 822492 bytes, 0 underruns + 0 output errors, 0 collisions, 0 interface resets + 0 unknown protocol drops + 0 output buffer failures, 0 output buffers swapped out +Loopback1 is up, line protocol is up + Hardware is Loopback + Internet address is 10.11.11.11/32 + MTU 1514 bytes, BW 8000000 Kbit/sec, DLY 5000 usec, + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation LOOPBACK, loopback not set + Keepalive set (10 sec) + Last input 00:01:09, output never, output hang never + Last clearing of "show interface" counters never + Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0 + Queueing strategy: fifo + Output queue: 0/0 (size/max) + 5 minute input rate 0 bits/sec, 0 packets/sec + 5 minute output rate 0 bits/sec, 0 packets/sec + 0 packets input, 0 bytes, 0 no buffer + Received 0 broadcasts (0 IP multicasts) + 0 runts, 0 giants, 0 throttles + 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored, 0 abort + 16368 packets output, 822492 bytes, 0 underruns + 0 output errors, 0 collisions, 0 interface resets + 0 unknown protocol drops + 0 output buffer failures, 0 output buffers swapped out +csr1000v-1# ++++ csr1000v-1: executing command 'show vrf detail' +++ +show vrf detail +csr1000v-1# ++++ csr1000v-1: executing command 'show interfaces accounting' +++ +show interfaces accounting +GigabitEthernet1 + Protocol Pkts In Chars In Pkts Out Chars Out + Other 160749 11926152 2797 167820 + IP 96399 8357433 80123 7302724 + ARP 130422 5526648 2797 167820 + IPv6 22 1836 0 0 +GigabitEthernet2 + Protocol Pkts In Chars In Pkts Out Chars Out + Other 15197 3292882 2758 165480 + IP 74913 5700218 64974 6581476 + ARP 31 1860 2758 165480 +GigabitEthernet3 + Protocol Pkts In Chars In Pkts Out Chars Out + Other 15196 3292822 2757 165420 + IP 52652 4337494 87403 8025725 + ARP 30 1800 2757 165420 +Loopback0 + Protocol Pkts In Chars In Pkts Out Chars Out + IP 16368 822492 16368 822492 +Loopback1 + Protocol Pkts In Chars In Pkts Out Chars Out + IP 16368 822492 16368 822492 +csr1000v-1# ++++ csr1000v-1: executing command 'show ip interface' +++ +show ip interface +GigabitEthernet1 is up, line protocol is up + Internet address is 10.255.8.122/16 + Broadcast address is 255.255.255.255 + Address determined by DHCP + MTU is 1500 bytes + Helper address is not set + Directed broadcast forwarding is disabled + Outgoing Common access list is not set + Outgoing access list is not set + Inbound Common access list is not set + Inbound access list is not set + Proxy ARP is enabled + Local Proxy ARP is disabled + Security level is default + Split horizon is enabled + ICMP redirects are always sent + ICMP unreachables are always sent + ICMP mask replies are never sent + IP fast switching is enabled + IP Flow switching is disabled + IP CEF switching is enabled + IP CEF switching turbo vector + IP Null turbo vector + Associated unicast routing topologies: + Topology "base", operation state is UP + IP multicast fast switching is enabled + IP multicast distributed fast switching is disabled + IP route-cache flags are Fast, CEF + Router Discovery is disabled + IP output packet accounting is disabled + IP access violation accounting is disabled + TCP/IP header compression is disabled + RTP/IP header compression is disabled + Probe proxy name replies are disabled + Policy routing is disabled + Network address translation is disabled + BGP Policy Mapping is disabled + Input features: MCI Check + IPv4 WCCP Redirect outbound is disabled + IPv4 WCCP Redirect inbound is disabled + IPv4 WCCP Redirect exclude is disabled +GigabitEthernet2 is up, line protocol is up + Internet address is 10.0.1.1/24 + Broadcast address is 255.255.255.255 + Address determined by non-volatile memory + MTU is 1500 bytes + Helper address is not set + Directed broadcast forwarding is disabled + Multicast reserved groups joined: 224.0.0.5 224.0.0.6 + Outgoing Common access list is not set + Outgoing access list is not set + Inbound Common access list is not set + Inbound access list is not set + Proxy ARP is enabled + Local Proxy ARP is disabled + Security level is default + Split horizon is enabled + ICMP redirects are always sent + ICMP unreachables are always sent + ICMP mask replies are never sent + IP fast switching is enabled + IP Flow switching is disabled + IP CEF switching is enabled + IP CEF switching turbo vector + IP Null turbo vector + Associated unicast routing topologies: + Topology "base", operation state is UP + IP multicast fast switching is enabled + IP multicast distributed fast switching is disabled + IP route-cache flags are Fast, CEF + Router Discovery is disabled + IP output packet accounting is disabled + IP access violation accounting is disabled + TCP/IP header compression is disabled + RTP/IP header compression is disabled + Probe proxy name replies are disabled + Policy routing is disabled + Network address translation is disabled + BGP Policy Mapping is disabled + Input features: MCI Check + IPv4 WCCP Redirect outbound is disabled + IPv4 WCCP Redirect inbound is disabled + IPv4 WCCP Redirect exclude is disabled +GigabitEthernet3 is up, line protocol is up + Internet address is 10.0.2.1/24 + Broadcast address is 255.255.255.255 + Address determined by non-volatile memory + MTU is 1500 bytes + Helper address is not set + Directed broadcast forwarding is disabled + Multicast reserved groups joined: 224.0.0.5 224.0.0.6 + Outgoing Common access list is not set + Outgoing access list is not set + Inbound Common access list is not set + Inbound access list is not set + Proxy ARP is enabled + Local Proxy ARP is disabled + Security level is default + Split horizon is enabled + ICMP redirects are always sent + ICMP unreachables are always sent + ICMP mask replies are never sent + IP fast switching is enabled + IP Flow switching is disabled + IP CEF switching is enabled + IP CEF switching turbo vector + IP Null turbo vector + Associated unicast routing topologies: + Topology "base", operation state is UP + IP multicast fast switching is enabled + IP multicast distributed fast switching is disabled + IP route-cache flags are Fast, CEF + Router Discovery is disabled + IP output packet accounting is disabled + IP access violation accounting is disabled + TCP/IP header compression is disabled + RTP/IP header compression is disabled + Probe proxy name replies are disabled + Policy routing is disabled + Network address translation is disabled + BGP Policy Mapping is disabled + Input features: MCI Check + IPv4 WCCP Redirect outbound is disabled + IPv4 WCCP Redirect inbound is disabled + IPv4 WCCP Redirect exclude is disabled +Loopback0 is up, line protocol is up + Internet address is 10.1.1.1/32 + Broadcast address is 255.255.255.255 + Address determined by non-volatile memory + MTU is 1514 bytes + Helper address is not set + Directed broadcast forwarding is disabled + Multicast reserved groups joined: 224.0.0.5 + Outgoing Common access list is not set + Outgoing access list is not set + Inbound Common access list is not set + Inbound access list is not set + Proxy ARP is enabled + Local Proxy ARP is disabled + Security level is default + Split horizon is enabled + ICMP redirects are always sent + ICMP unreachables are always sent + ICMP mask replies are never sent + IP fast switching is enabled + IP Flow switching is disabled + IP CEF switching is enabled + IP CEF switching turbo vector + IP Null turbo vector + Associated unicast routing topologies: + Topology "base", operation state is UP + IP multicast fast switching is enabled + IP multicast distributed fast switching is disabled + IP route-cache flags are Fast, CEF + Router Discovery is disabled + IP output packet accounting is disabled + IP access violation accounting is disabled + TCP/IP header compression is disabled + RTP/IP header compression is disabled + Probe proxy name replies are disabled + Policy routing is disabled + Network address translation is disabled + BGP Policy Mapping is disabled + Input features: MCI Check + IPv4 WCCP Redirect outbound is disabled + IPv4 WCCP Redirect inbound is disabled + IPv4 WCCP Redirect exclude is disabled +Loopback1 is up, line protocol is up + Internet address is 10.11.11.11/32 + Broadcast address is 255.255.255.255 + Address determined by non-volatile memory + MTU is 1514 bytes + Helper address is not set + Directed broadcast forwarding is disabled + Outgoing Common access list is not set + Outgoing access list is not set + Inbound Common access list is not set + Inbound access list is not set + Proxy ARP is enabled + Local Proxy ARP is disabled + Security level is default + Split horizon is enabled + ICMP redirects are always sent + ICMP unreachables are always sent + ICMP mask replies are never sent + IP fast switching is enabled + IP Flow switching is disabled + IP CEF switching is enabled + IP CEF switching turbo vector + IP Null turbo vector + Associated unicast routing topologies: + Topology "base", operation state is UP + IP multicast fast switching is enabled + IP multicast distributed fast switching is disabled + IP route-cache flags are Fast, CEF + Router Discovery is disabled + IP output packet accounting is disabled + IP access violation accounting is disabled + TCP/IP header compression is disabled + RTP/IP header compression is disabled + Probe proxy name replies are disabled + Policy routing is disabled + Network address translation is disabled + BGP Policy Mapping is disabled + Input features: MCI Check + IPv4 WCCP Redirect outbound is disabled + IPv4 WCCP Redirect inbound is disabled + IPv4 WCCP Redirect exclude is disabled +csr1000v-1# ++++ csr1000v-1: executing command 'show ipv6 interface' +++ +show ipv6 interface +csr1000v-1# +Could not learn +Parser Output is empty ++====================================================================================================================================================+ +| Commands for learning feature 'Interface' | ++====================================================================================================================================================+ +| - Parsed commands | +|----------------------------------------------------------------------------------------------------------------------------------------------------| +| cmd: | +| cmd: | +| cmd: | +|====================================================================================================================================================| +| - Commands with empty output | +|----------------------------------------------------------------------------------------------------------------------------------------------------| +| cmd: | +| cmd: | +|====================================================================================================================================================| diff --git a/mocked_devices/2-manual/modified/snapshot/interface_iosxe_csr1000v-1_ops.txt b/mocked_devices/2-manual/modified/snapshot/interface_iosxe_csr1000v-1_ops.txt new file mode 100644 index 0000000..65849d1 --- /dev/null +++ b/mocked_devices/2-manual/modified/snapshot/interface_iosxe_csr1000v-1_ops.txt @@ -0,0 +1,328 @@ +{ + "attributes": null, + "commands": null, + "connections": null, + "context_manager": {}, + "info": { + "GigabitEthernet1": { + "accounting": { + "arp": { + "chars_in": 5526648, + "chars_out": 167820, + "pkts_in": 130422, + "pkts_out": 2797 + }, + "ip": { + "chars_in": 8357433, + "chars_out": 7302724, + "pkts_in": 96399, + "pkts_out": 80123 + }, + "ipv6": { + "chars_in": 1836, + "chars_out": 0, + "pkts_in": 22, + "pkts_out": 0 + }, + "other": { + "chars_in": 11926152, + "chars_out": 167820, + "pkts_in": 160749, + "pkts_out": 2797 + } + }, + "auto_negotiate": true, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 16092320, + "in_pkts": 226238, + "last_clear": "never", + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_octets": 7470544, + "out_pkts": 82920, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 300, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "duplex_mode": "full", + "enabled": true, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "ipv4": { + "10.255.8.122/16": { + "ip": "10.255.8.122", + "prefix_length": "16", + "secondary": false + } + }, + "mac_address": "5e00.0000.0000", + "mtu": 1500, + "oper_status": "up", + "phys_address": "5e00.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "port_speed": "1000", + "switchport_enable": false, + "type": "CSR vNIC" + }, + "GigabitEthernet2": { + "accounting": { + "arp": { + "chars_in": 1860, + "chars_out": 165480, + "pkts_in": 31, + "pkts_out": 2758 + }, + "ip": { + "chars_in": 5700218, + "chars_out": 6581476, + "pkts_in": 74913, + "pkts_out": 64974 + }, + "other": { + "chars_in": 3292882, + "chars_out": 165480, + "pkts_in": 15197, + "pkts_out": 2758 + } + }, + "auto_negotiate": true, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 7354066, + "in_pkts": 82594, + "last_clear": "never", + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_octets": 6746956, + "out_pkts": 67732, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 300, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "duplex_mode": "full", + "enabled": true, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "ipv4": { + "10.0.1.1/24": { + "ip": "10.0.1.1", + "prefix_length": "24", + "secondary": false + } + }, + "mac_address": "fa16.3ebe.e48e", + "mtu": 1500, + "oper_status": "up", + "phys_address": "fa16.3ebe.e48e", + "port_channel": { + "port_channel_member": false + }, + "port_speed": "1000", + "switchport_enable": false, + "type": "CSR vNIC" + }, + "GigabitEthernet3": { + "accounting": { + "arp": { + "chars_in": 1800, + "chars_out": 165420, + "pkts_in": 30, + "pkts_out": 2757 + }, + "ip": { + "chars_in": 4337494, + "chars_out": 8025725, + "pkts_in": 52652, + "pkts_out": 87403 + }, + "other": { + "chars_in": 3292822, + "chars_out": 165420, + "pkts_in": 15196, + "pkts_out": 2757 + } + }, + "auto_negotiate": true, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 5991282, + "in_pkts": 60332, + "last_clear": "never", + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_octets": 8191145, + "out_pkts": 90160, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 300, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "duplex_mode": "full", + "enabled": true, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "ipv4": { + "10.0.2.1/24": { + "ip": "10.0.2.1", + "prefix_length": "24", + "secondary": false + } + }, + "mac_address": "fa16.3e07.71e5", + "mtu": 1500, + "oper_status": "up", + "phys_address": "fa16.3e07.71e5", + "port_channel": { + "port_channel_member": false + }, + "port_speed": "1000", + "switchport_enable": false, + "type": "CSR vNIC" + }, + "Loopback0": { + "accounting": { + "ip": { + "chars_in": 822492, + "chars_out": 822492, + "pkts_in": 16368, + "pkts_out": 16368 + } + }, + "bandwidth": 8000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "last_clear": "never", + "out_errors": 0, + "out_octets": 822492, + "out_pkts": 16368, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 300, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 5000, + "enabled": true, + "encapsulation": { + "encapsulation": "loopback" + }, + "ipv4": { + "10.1.1.1/32": { + "ip": "10.1.1.1", + "prefix_length": "32", + "secondary": false + } + }, + "mtu": 1514, + "oper_status": "up", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": false, + "type": "Loopback" + }, + "Loopback1": { + "accounting": { + "ip": { + "chars_in": 822492, + "chars_out": 822492, + "pkts_in": 16368, + "pkts_out": 16368 + } + }, + "bandwidth": 8000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "last_clear": "never", + "out_errors": 0, + "out_octets": 822492, + "out_pkts": 16368, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 300, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 5000, + "enabled": true, + "encapsulation": { + "encapsulation": "loopback" + }, + "ipv4": { + "10.11.11.11/32": { + "ip": "10.11.11.11", + "prefix_length": "32", + "secondary": false + } + }, + "mtu": 1514, + "oper_status": "up", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": false, + "type": "Loopback" + } + } +} \ No newline at end of file diff --git a/mocked_devices/2-manual/modified/snapshot/interface_nxos_nx-osv-1_console.txt b/mocked_devices/2-manual/modified/snapshot/interface_nxos_nx-osv-1_console.txt new file mode 100644 index 0000000..0c87140 --- /dev/null +++ b/mocked_devices/2-manual/modified/snapshot/interface_nxos_nx-osv-1_console.txt @@ -0,0 +1,7313 @@ ++++ nx-osv-1: executing command 'show interface' +++ +show interface +mgmt0 is up +admin state is up + Hardware: Ethernet, address: 5e00.0001.0000 (bia 5e00.0001.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 32/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + full-duplex, 1000 Mb/s + Auto-Negotiation is turned on + Auto-mdix is turned off + EtherType is 0x0000 + 1 minute input rate 216 bits/sec, 0 packets/sec + 1 minute output rate 24 bits/sec, 0 packets/sec + Rx + 660640 input packets 0 unicast packets 18871 multicast packets + 641769 broadcast packets 45241924 bytes + Tx + 28721 output packets 0 unicast packets 28721 multicast packets + 0 broadcast packets 6175007 bytes + +Ethernet2/1 is up +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia fa16.3edd.c013) + Internet Address is 10.0.1.2/24 + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + full-duplex, 1000 Mb/s + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped 2week(s) 5day(s) + Last clearing of "show interface" counters never + 1 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/2 is up +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia fa16.3e8a.5b7d) + Internet Address is 10.0.2.2/24 + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + full-duplex, 1000 Mb/s + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped 2week(s) 5day(s) + Last clearing of "show interface" counters never + 1 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/3 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/4 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/5 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/6 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/7 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/8 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/9 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/10 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/11 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/12 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/13 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/14 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/15 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/16 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/17 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/18 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/19 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/20 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/21 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/22 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/23 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/24 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/25 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/26 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/27 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/28 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/29 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/30 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/31 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/32 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/33 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/34 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/35 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/36 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/37 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/38 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/39 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/40 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/41 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/42 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/43 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/44 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/45 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/46 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/47 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/48 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/1 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.002f) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/2 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.002f) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/3 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/4 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/5 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/6 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/7 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/8 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/9 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/10 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/11 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/12 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/13 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/14 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/15 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/16 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/17 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/18 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/19 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/20 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/21 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/22 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/23 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/24 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/25 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/26 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/27 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/28 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/29 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/30 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/31 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/32 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/33 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/34 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/35 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/36 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/37 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/38 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/39 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/40 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/41 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/42 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/43 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/44 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/45 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/46 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/47 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/48 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/1 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.002f) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/2 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.002f) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/3 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/4 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/5 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/6 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/7 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/8 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/9 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/10 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/11 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/12 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/13 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/14 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/15 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/16 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/17 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/18 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/19 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/20 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/21 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/22 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/23 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/24 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/25 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/26 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/27 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/28 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/29 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/30 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/31 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/32 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/33 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/34 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/35 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/36 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/37 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/38 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/39 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/40 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/41 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/42 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/43 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/44 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/45 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/46 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/47 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/48 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +loopback0 is up +admin state is up + Hardware: Loopback + Internet Address is 10.2.2.2/32 + MTU 1500 bytes, BW 8000000 Kbit, DLY 5000 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation LOOPBACK, medium is broadcast + Port mode is routed + Auto-mdix is turned off + 66887 packets input 3353523 bytes + 0 multicast frames 0 compressed + 0 input errors 0 frame 0 overrun 0 fifo + 0 packets output 0 bytes 0 underruns + 0 output errors 0 collisions 0 fifo + 0 out_carrier_errors + +loopback1 is up +admin state is up + Hardware: Loopback + Internet Address is 10.22.22.22/32 + MTU 1500 bytes, BW 8000000 Kbit, DLY 5000 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation LOOPBACK, medium is broadcast + Port mode is routed + Auto-mdix is turned off + 0 packets input 0 bytes + 0 multicast frames 0 compressed + 0 input errors 0 frame 0 overrun 0 fifo + 0 packets output 0 bytes 0 underruns + 0 output errors 0 collisions 0 fifo + 0 out_carrier_errors + + nx-osv-1# ++++ nx-osv-1: executing command 'show vrf all interface' +++ +show vrf all interface +Interface VRF-Name VRF-ID Site-of-Origin +loopback0 default 1 -- +loopback1 default 1 -- +Null0 default 1 -- +Ethernet2/1 default 1 -- +Ethernet2/2 default 1 -- +Ethernet2/3 default 1 -- +Ethernet2/4 default 1 -- +Ethernet2/5 default 1 -- +Ethernet2/6 default 1 -- +Ethernet2/7 default 1 -- +Ethernet2/8 default 1 -- +Ethernet2/9 default 1 -- +Ethernet2/10 default 1 -- +Ethernet2/11 default 1 -- +Ethernet2/12 default 1 -- +Ethernet2/13 default 1 -- +Ethernet2/14 default 1 -- +Ethernet2/15 default 1 -- +Ethernet2/16 default 1 -- +Ethernet2/17 default 1 -- +Ethernet2/18 default 1 -- +Ethernet2/19 default 1 -- +Ethernet2/20 default 1 -- +Ethernet2/21 default 1 -- +Ethernet2/22 default 1 -- +Ethernet2/23 default 1 -- +Ethernet2/24 default 1 -- +Ethernet2/25 default 1 -- +Ethernet2/26 default 1 -- +Ethernet2/27 default 1 -- +Ethernet2/28 default 1 -- +Ethernet2/29 default 1 -- +Ethernet2/30 default 1 -- +Ethernet2/31 default 1 -- +Ethernet2/32 default 1 -- +Ethernet2/33 default 1 -- +Ethernet2/34 default 1 -- +Ethernet2/35 default 1 -- +Ethernet2/36 default 1 -- +Ethernet2/37 default 1 -- +Ethernet2/38 default 1 -- +Ethernet2/39 default 1 -- +Ethernet2/40 default 1 -- +Ethernet2/41 default 1 -- +Ethernet2/42 default 1 -- +Ethernet2/43 default 1 -- +Ethernet2/44 default 1 -- +Ethernet2/45 default 1 -- +Ethernet2/46 default 1 -- +Ethernet2/47 default 1 -- +Ethernet2/48 default 1 -- +Ethernet3/1 default 1 -- +Ethernet3/2 default 1 -- +Ethernet3/3 default 1 -- +Ethernet3/4 default 1 -- +Ethernet3/5 default 1 -- +Ethernet3/6 default 1 -- +Ethernet3/7 default 1 -- +Ethernet3/8 default 1 -- +Ethernet3/9 default 1 -- +Ethernet3/10 default 1 -- +Ethernet3/11 default 1 -- +Ethernet3/12 default 1 -- +Ethernet3/13 default 1 -- +Ethernet3/14 default 1 -- +Ethernet3/15 default 1 -- +Ethernet3/16 default 1 -- +Ethernet3/17 default 1 -- +Ethernet3/18 default 1 -- +Ethernet3/19 default 1 -- +Ethernet3/20 default 1 -- +Ethernet3/21 default 1 -- +Ethernet3/22 default 1 -- +Ethernet3/23 default 1 -- +Ethernet3/24 default 1 -- +Ethernet3/25 default 1 -- +Ethernet3/26 default 1 -- +Ethernet3/27 default 1 -- +Ethernet3/28 default 1 -- +Ethernet3/29 default 1 -- +Ethernet3/30 default 1 -- +Ethernet3/31 default 1 -- +Ethernet3/32 default 1 -- +Ethernet3/33 default 1 -- +Ethernet3/34 default 1 -- +Ethernet3/35 default 1 -- +Ethernet3/36 default 1 -- +Ethernet3/37 default 1 -- +Ethernet3/38 default 1 -- +Ethernet3/39 default 1 -- +Ethernet3/40 default 1 -- +Ethernet3/41 default 1 -- +Ethernet3/42 default 1 -- +Ethernet3/43 default 1 -- +Ethernet3/44 default 1 -- +Ethernet3/45 default 1 -- +Ethernet3/46 default 1 -- +Ethernet3/47 default 1 -- +Ethernet3/48 default 1 -- +mgmt0 management 2 -- + nx-osv-1# ++++ nx-osv-1: executing command 'show interface switchport' +++ +show interface switchport +Name: Ethernet4/1 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/2 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/3 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/4 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/5 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/6 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/7 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/8 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/9 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/10 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/11 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/12 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/13 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/14 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/15 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/16 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/17 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/18 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/19 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/20 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/21 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/22 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/23 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/24 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/25 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/26 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/27 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/28 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/29 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/30 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/31 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/32 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/33 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/34 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/35 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/36 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/37 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/38 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/39 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/40 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/41 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/42 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/43 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/44 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/45 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/46 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/47 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/48 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none + nx-osv-1# ++++ nx-osv-1: executing command 'show ip interface vrf all' +++ +show ip interface vrf all +IP Interface Status for VRF "default" +loopback0, Interface status: protocol-up/link-up/admin-up, iod: 132, + IP address: 10.2.2.2, IP subnet: 10.2.2.2/32 route-preference: 0, tag: 0 + IP broadcast address: 255.255.255.255 + IP multicast groups locally joined: none + IP MTU: 1500 bytes (using link MTU) + IP primary address route-preference: 0, tag: 0 + IP proxy ARP : disabled + IP Local Proxy ARP : disabled + IP multicast routing: disabled + IP icmp redirects: enabled + IP directed-broadcast: disabled + IP Forwarding: disabled + IP icmp unreachables (except port): disabled + IP icmp port-unreachable: enabled + IP unicast reverse path forwarding: none + IP load sharing: none + IP interface statistics last reset: never + IP interface software stats: (sent/received/forwarded/originated/consumed) + Unicast packets : 0/0/0/0/66887 + Unicast bytes : 0/0/0/0/3353523 + Multicast packets : 0/0/0/0/0 + Multicast bytes : 0/0/0/0/0 + Broadcast packets : 0/0/0/0/0 + Broadcast bytes : 0/0/0/0/0 + Labeled packets : 0/0/0/0/0 + Labeled bytes : 0/0/0/0/0 + WCCP Redirect outbound: disabled + WCCP Redirect inbound: disabled + WCCP Redirect exclude: disabled +loopback1, Interface status: protocol-up/link-up/admin-up, iod: 133, + IP address: 10.22.22.22, IP subnet: 10.22.22.22/32 route-preference: 0, tag: 0 + IP broadcast address: 255.255.255.255 + IP multicast groups locally joined: none + IP MTU: 1500 bytes (using link MTU) + IP primary address route-preference: 0, tag: 0 + IP proxy ARP : disabled + IP Local Proxy ARP : disabled + IP multicast routing: disabled + IP icmp redirects: enabled + IP directed-broadcast: disabled + IP Forwarding: disabled + IP icmp unreachables (except port): disabled + IP icmp port-unreachable: enabled + IP unicast reverse path forwarding: none + IP load sharing: none + IP interface statistics last reset: never + IP interface software stats: (sent/received/forwarded/originated/consumed) + Unicast packets : 0/0/0/0/0 + Unicast bytes : 0/0/0/0/0 + Multicast packets : 0/0/0/0/0 + Multicast bytes : 0/0/0/0/0 + Broadcast packets : 0/0/0/0/0 + Broadcast bytes : 0/0/0/0/0 + Labeled packets : 0/0/0/0/0 + Labeled bytes : 0/0/0/0/0 + WCCP Redirect outbound: disabled + WCCP Redirect inbound: disabled + WCCP Redirect exclude: disabled +Ethernet2/1, Interface status: protocol-up/link-up/admin-up, iod: 36, + IP address: 10.0.1.2, IP subnet: 10.0.1.0/24 route-preference: 0, tag: 0 + IP broadcast address: 255.255.255.255 + IP multicast groups locally joined: + 224.0.0.6 224.0.0.5 + IP MTU: 1500 bytes (using link MTU) + IP primary address route-preference: 0, tag: 0 + IP proxy ARP : disabled + IP Local Proxy ARP : disabled + IP multicast routing: disabled + IP icmp redirects: enabled + IP directed-broadcast: disabled + IP Forwarding: disabled + IP icmp unreachables (except port): disabled + IP icmp port-unreachable: enabled + IP unicast reverse path forwarding: none + IP load sharing: none + IP interface statistics last reset: never + IP interface software stats: (sent/received/forwarded/originated/consumed) + Unicast packets : 66786/45035/0/66786/45616 + Unicast bytes : 4441605/2403329/0/4441605/2456689 + Multicast packets : 198714/182688/0/198714/365374 + Multicast bytes : 17178660/18269560/0/17178660/18269464 + Broadcast packets : 0/16368/0/0/16368 + Broadcast bytes : 0/822492/0/0/822492 + Labeled packets : 0/0/0/0/0 + Labeled bytes : 0/0/0/0/0 + WCCP Redirect outbound: disabled + WCCP Redirect inbound: disabled + WCCP Redirect exclude: disabled +Ethernet2/2, Interface status: protocol-up/link-up/admin-up, iod: 37, + IP address: 10.0.2.2, IP subnet: 10.0.2.0/24 route-preference: 0, tag: 0 + IP broadcast address: 255.255.255.255 + IP multicast groups locally joined: + 224.0.0.6 224.0.0.5 + IP MTU: 1500 bytes (using link MTU) + IP primary address route-preference: 0, tag: 0 + IP proxy ARP : disabled + IP Local Proxy ARP : disabled + IP multicast routing: disabled + IP icmp redirects: enabled + IP directed-broadcast: disabled + IP Forwarding: disabled + IP icmp unreachables (except port): disabled + IP icmp port-unreachable: enabled + IP unicast reverse path forwarding: none + IP load sharing: none + IP interface statistics last reset: never + IP interface software stats: (sent/received/forwarded/originated/consumed) + Unicast packets : 36/23121/0/36/23809 + Unicast bytes : 3566/1265544/0/3566/1327596 + Multicast packets : 198644/182562/0/198644/365122 + Multicast bytes : 17172788/18258884/0/17172788/18258788 + Broadcast packets : 0/16368/0/0/16368 + Broadcast bytes : 0/822492/0/0/822492 + Labeled packets : 0/0/0/0/0 + Labeled bytes : 0/0/0/0/0 + WCCP Redirect outbound: disabled + WCCP Redirect inbound: disabled + WCCP Redirect exclude: disabled + +IP Interface Status for VRF "management" + + nx-osv-1# ++++ nx-osv-1: executing command 'show ipv6 interface vrf all' +++ +show ipv6 interface vrf all +IPv6 Interface Status for VRF "default" + +IPv6 Interface Status for VRF "management" + + nx-osv-1# ++++ nx-osv-1: executing command 'show routing ipv6 vrf all' +++ +show routing ipv6 vrf all +IPv6 Routing Table for VRF "default" +'*' denotes best ucast next-hop +'**' denotes best mcast next-hop +'[x/y]' denotes [preference/metric] + + +IPv6 Routing Table for VRF "management" +'*' denotes best ucast next-hop +'**' denotes best mcast next-hop +'[x/y]' denotes [preference/metric] + + + nx-osv-1# ++++ nx-osv-1: executing command 'show routing vrf all' +++ +show routing vrf all +IP Route Table for VRF "default" +'*' denotes best ucast next-hop +'**' denotes best mcast next-hop +'[x/y]' denotes [preference/metric] +'%' in via output denotes VRF + +10.0.1.0/24, ubest/mbest: 1/0, attached + *via 10.0.1.2, Eth2/1, [0/0], 2w5d, direct +10.0.1.2/32, ubest/mbest: 1/0, attached + *via 10.0.1.2, Eth2/1, [0/0], 2w5d, local +10.0.2.0/24, ubest/mbest: 1/0, attached + *via 10.0.2.2, Eth2/2, [0/0], 2w5d, direct +10.0.2.2/32, ubest/mbest: 1/0, attached + *via 10.0.2.2, Eth2/2, [0/0], 2w5d, local +10.1.1.1/32, ubest/mbest: 2/0 + *via 10.0.1.1, Eth2/1, [110/41], 5d06h, ospf-1, intra + *via 10.0.2.1, Eth2/2, [110/41], 5d06h, ospf-1, intra +10.2.2.2/32, ubest/mbest: 2/0, attached + *via 10.2.2.2, Lo0, [0/0], 2w5d, local + *via 10.2.2.2, Lo0, [0/0], 2w5d, direct +10.22.22.22/32, ubest/mbest: 2/0, attached + *via 10.22.22.22, Lo1, [0/0], 2w5d, local + *via 10.22.22.22, Lo1, [0/0], 2w5d, direct + nx-osv-1# ++====================================================================================================================================================+ +| Commands for learning feature 'Interface' | ++====================================================================================================================================================+ +| - Parsed commands | +|----------------------------------------------------------------------------------------------------------------------------------------------------| +| cmd: | +| cmd: | +| cmd: | +| cmd: | +| cmd: | +|====================================================================================================================================================| +| - Commands with empty output | +|----------------------------------------------------------------------------------------------------------------------------------------------------| +| cmd: | +| cmd: | +|====================================================================================================================================================| diff --git a/mocked_devices/2-manual/modified/snapshot/interface_nxos_nx-osv-1_ops.txt b/mocked_devices/2-manual/modified/snapshot/interface_nxos_nx-osv-1_ops.txt new file mode 100644 index 0000000..7df90d9 --- /dev/null +++ b/mocked_devices/2-manual/modified/snapshot/interface_nxos_nx-osv-1_ops.txt @@ -0,0 +1,7490 @@ +{ + "attributes": null, + "commands": null, + "connections": null, + "context_manager": {}, + "info": { + "Ethernet2/1": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "duplex_mode": "full", + "enabled": true, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "ipv4": { + "10.0.1.2/24": { + "ip": "10.0.1.2", + "prefix_length": "24" + } + }, + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "up", + "phys_address": "fa16.3edd.c013", + "port_channel": { + "port_channel_member": false + }, + "port_speed": "1000", + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/10": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/11": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/12": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/13": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/14": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/15": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/16": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/17": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/18": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/19": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/2": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "duplex_mode": "full", + "enabled": true, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "ipv4": { + "10.0.2.2/24": { + "ip": "10.0.2.2", + "prefix_length": "24" + } + }, + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "up", + "phys_address": "fa16.3e8a.5b7d", + "port_channel": { + "port_channel_member": false + }, + "port_speed": "1000", + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/20": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/21": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/22": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/23": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/24": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/25": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/26": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/27": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/28": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/29": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/3": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/30": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/31": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/32": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/33": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/34": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/35": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/36": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/37": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/38": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/39": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/4": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/40": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/41": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/42": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/43": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/44": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/45": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/46": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/47": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/48": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/5": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/6": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/7": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/8": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/9": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/1": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.002f", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/10": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/11": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/12": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/13": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/14": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/15": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/16": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/17": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/18": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/19": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/2": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.002f", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/20": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/21": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/22": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/23": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/24": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/25": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/26": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/27": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/28": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/29": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/3": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/30": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/31": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/32": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/33": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/34": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/35": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/36": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/37": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/38": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/39": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/4": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/40": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/41": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/42": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/43": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/44": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/45": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/46": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/47": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/48": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/5": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/6": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/7": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/8": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/9": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet4/1": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.002f", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/10": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/11": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/12": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/13": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/14": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/15": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/16": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/17": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/18": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/19": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/2": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.002f", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/20": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/21": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/22": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/23": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/24": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/25": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/26": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/27": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/28": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/29": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/3": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/30": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/31": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/32": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/33": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/34": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/35": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/36": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/37": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/38": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/39": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/4": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/40": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/41": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/42": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/43": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/44": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/45": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/46": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/47": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/48": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/5": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/6": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/7": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/8": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/9": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Null0": { + "vrf": "default" + }, + "loopback0": { + "bandwidth": 8000000, + "delay": 5000, + "enabled": true, + "encapsulation": { + "encapsulation": "loopback" + }, + "ipv4": { + "10.2.2.2/32": { + "ip": "10.2.2.2", + "prefix_length": "32" + } + }, + "medium": "broadcast", + "mtu": 1500, + "oper_status": "up", + "port_channel": { + "port_channel_member": false + }, + "vrf": "default" + }, + "loopback1": { + "bandwidth": 8000000, + "delay": 5000, + "enabled": true, + "encapsulation": { + "encapsulation": "loopback" + }, + "ipv4": { + "10.22.22.22/32": { + "ip": "10.22.22.22", + "prefix_length": "32" + } + }, + "medium": "broadcast", + "mtu": 1500, + "oper_status": "up", + "port_channel": { + "port_channel_member": false + }, + "vrf": "default" + }, + "mgmt0": { + "auto_negotiate": true, + "bandwidth": 1000000, + "counters": { + "rate": { + "in_rate": 216, + "in_rate_pkts": 0, + "load_interval": 1, + "out_rate": 24, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "duplex_mode": "full", + "enabled": true, + "encapsulation": { + "encapsulation": "arpa" + }, + "mac_address": "5e00.0001.0000", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "up", + "phys_address": "5e00.0001.0000", + "port_channel": { + "port_channel_member": false + }, + "port_speed": "1000", + "type": "Ethernet", + "vrf": "management" + } + }, + "ret_dict": {} +} \ No newline at end of file diff --git a/mocked_devices/2-manual/reverted/playback/iosxe/csr1000v-1.yaml b/mocked_devices/2-manual/reverted/playback/iosxe/csr1000v-1.yaml new file mode 100644 index 0000000..7fb63d2 --- /dev/null +++ b/mocked_devices/2-manual/reverted/playback/iosxe/csr1000v-1.yaml @@ -0,0 +1,373 @@ +configure: + commands: + end: + new_state: exec + line console 0: + new_state: configure_line + no logging console: '' + prompt: switch(config)# +configure_line: + commands: + end: + new_state: execute + exec-timeout 0: '' + prompt: switch(config-line)# +connect: + commands: + ? '' + : new_state: execute + preface: 'Trying mock_device ... + + Connected to mock_device. + + Escape character is ''^]''.' + prompt: '' +execute: + commands: + config term: + new_state: configure + show bgp all: "For address family: IPv4 Unicast\r\n\r\nBGP table version is 167,\ + \ local router ID is 10.1.1.1\r\nStatus codes: s suppressed, d damped, h history,\ + \ * valid, > best, i - internal, \r\n r RIB-failure, S Stale, m\ + \ multipath, b backup-path, f RT-Filter, \r\n x best-external,\ + \ a additional-path, c RIB-compressed, \r\n t secondary path, L\ + \ long-lived-stale,\r\nOrigin codes: i - IGP, e - EGP, ? - incomplete\r\nRPKI\ + \ validation codes: V valid, I invalid, N Not found\r\n\r\n Network \ + \ Next Hop Metric LocPrf Weight Path\r\n *> 10.11.11.11/32\ + \ 0.0.0.0 0 32768 i\r\n *>i 10.22.22.22/32 10.2.2.2\ + \ 100 0 i\r\n\r\nFor address family: IPv6 Unicast\r\ + \n\r\n\r\nFor address family: IPv4 Multicast\r\n\r\n\r\nFor address family:\ + \ L2VPN E-VPN\r\n\r\n\r\nFor address family: MVPNv4 Unicast\r\n\r\n\r\nFor address\ + \ family: MVPNv6 Unicast" + show bgp all cluster-ids: "Global cluster-id: 10.1.1.1 (configured: 0.0.0.0)\r\ + \nBGP client-to-client reflection: Configured Used\r\n all (inter-cluster\ + \ and intra-cluster): ENABLED\r\n intra-cluster: ENABLED\ + \ ENABLED\r\n\r\nList of cluster-ids:\r\nCluster-id #-neighbors C2C-rfl-CFG\ + \ C2C-rfl-USE" + show bgp all detail: "For address family: IPv4 Unicast\r\n\r\nBGP routing table\ + \ entry for 10.11.11.11/32, version 2\r\n Paths: (1 available, best #1, table\ + \ default)\r\n Advertised to update-groups:\r\n 83 \r\n Refresh\ + \ Epoch 1\r\n Local\r\n 0.0.0.0 from 0.0.0.0 (10.1.1.1)\r\n Origin\ + \ IGP, metric 0, localpref 100, weight 32768, valid, sourced, local, best\r\n\ + \ rx pathid: 0, tx pathid: 0x0\r\nBGP routing table entry for 10.22.22.22/32,\ + \ version 167\r\n Paths: (1 available, best #1, table default)\r\n Not advertised\ + \ to any peer\r\n Refresh Epoch 1\r\n Local\r\n 10.2.2.2 (metric 2) from\ + \ 10.2.2.2 (10.2.2.2)\r\n Origin IGP, localpref 100, valid, internal, best\r\ + \n rx pathid: 0, tx pathid: 0x0\r\n\r\nFor address family: IPv6 Unicast\r\ + \n\r\n\r\nFor address family: IPv4 Multicast\r\n\r\n\r\nFor address family:\ + \ L2VPN E-VPN\r\n\r\n\r\nFor address family: MVPNv4 Unicast\r\n\r\n\r\nFor address\ + \ family: MVPNv6 Unicast" + show bgp all neighbors: "For address family: IPv4 Unicast\r\nBGP neighbor is 10.2.2.2,\ + \ remote AS 65000, internal link\r\n BGP version 4, remote router ID 10.2.2.2\r\ + \n BGP state = Established, up for 00:00:15\r\n Last read 00:00:14, last write\ + \ 00:00:15, hold time is 180, keepalive interval is 60 seconds\r\n Neighbor\ + \ sessions:\r\n 1 active, is not multisession capable (disabled)\r\n Neighbor\ + \ capabilities:\r\n Route refresh: advertised and received(new)\r\n Four-octets\ + \ ASN Capability: advertised and received\r\n Address family IPv4 Unicast:\ + \ advertised and received\r\n Graceful Restart Capability: received\r\n \ + \ Remote Restart timer is 120 seconds\r\n Address families advertised\ + \ by peer:\r\n IPv4 Unicast (was not preserved\r\n Enhanced Refresh\ + \ Capability: advertised\r\n Multisession Capability: \r\n Stateful switchover\ + \ support enabled: NO for session 1\r\n Message statistics:\r\n InQ depth\ + \ is 0\r\n OutQ depth is 0\r\n \r\n Sent \ + \ Rcvd\r\n Opens: 1 1\r\n Notifications: \ + \ 0 0\r\n Updates: 2 2\r\n Keepalives:\ + \ 2 2\r\n Route Refresh: 0 0\r\n \ + \ Total: 5 5\r\n Do log neighbor state changes\ + \ (via global configuration)\r\n Default minimum time between advertisement\ + \ runs is 0 seconds\r\n\r\n Address tracking is enabled, the RIB does have\ + \ a route to 10.2.2.2\r\n Route to peer address reachability Up: 2; Down: 0\r\ + \n Last notification 5d06h\r\n Connections established 83; dropped 82\r\n\ + \ Last reset 00:03:36, due to Peer closed the session\r\n Interface associated:\ + \ (none) (peering address NOT in same link)\r\n Transport(tcp) path-mtu-discovery\ + \ is enabled\r\n Graceful-Restart is disabled\r\n SSO is disabled\r\nConnection\ + \ state is ESTAB, I/O status: 1, unread input bytes: 0 \r\nConnection\ + \ is ECN Disabled, Mininum incoming TTL 0, Outgoing TTL 255\r\nLocal host: 10.1.1.1,\ + \ Local port: 49386\r\nForeign host: 10.2.2.2, Foreign port: 179\r\nConnection\ + \ tableid (VRF): 0\r\nMaximum output segment queue size: 50\r\n\r\nEnqueued\ + \ packets for retransmit: 0, input: 0 mis-ordered: 0 (0 bytes)\r\n\r\nEvent\ + \ Timers (current time is 0x1B2BD6AA):\r\nTimer Starts Wakeups \ + \ Next\r\nRetrans 3 0 0x0\r\nTimeWait\ + \ 0 0 0x0\r\nAckHold 4 \ + \ 1 0x0\r\nSendWnd 0 0 0x0\r\n\ + KeepAlive 0 0 0x0\r\nGiveUp 0 \ + \ 0 0x0\r\nPmtuAger 1 0 0x1B34C24F\r\ + \nDeadWait 0 0 0x0\r\nLinger 0\ + \ 0 0x0\r\nProcessQ 0 0 \ + \ 0x0\r\n\r\niss: 1682172090 snduna: 1682172265 sndnxt: 1682172265\r\nirs:\ + \ 2459073059 rcvnxt: 2459073240\r\n\r\nsndwnd: 16616 scale: 0 maxrcvwnd:\ + \ 16384\r\nrcvwnd: 16204 scale: 0 delrcvwnd: 180\r\n\r\nSRTT: 330\ + \ ms, RTTO: 3159 ms, RTV: 2829 ms, KRTT: 0 ms\r\nminRTT: 2 ms, maxRTT: 1000\ + \ ms, ACK hold: 200 ms\r\nuptime: 15389 ms, Sent idletime: 13924 ms, Receive\ + \ idletime: 14124 ms \r\nStatus Flags: active open\r\nOption Flags: nagle, path\ + \ mtu capable\r\nIP Precedence value : 6\r\n\r\nDatagrams (max data segment\ + \ is 536 bytes):\r\nRcvd: 6 (out of order: 0), with data: 3, total data bytes:\ + \ 180\r\nSent: 7 (retransmit: 0, fastretransmit: 0, partialack: 0, Second Congestion:\ + \ 0), with data: 4, total data bytes: 174\r\n\r\n Packets received in fast path:\ + \ 0, fast processed: 0, slow path: 0\r\n fast lock acquisition failures: 0,\ + \ slow path: 0\r\nTCP Semaphore 0x7F1ACED9D348 FREE \r\n\r\n\r\nFor address\ + \ family: IPv6 Unicast\r\n\r\nFor address family: IPv4 Multicast\r\n\r\nFor\ + \ address family: L2VPN E-VPN\r\n\r\nFor address family: MVPNv4 Unicast\r\n\r\ + \nFor address family: MVPNv6 Unicast" + show bgp all neighbors 10.2.2.2 advertised-routes: "For address family: IPv4 Unicast\r\ + \nBGP table version is 167, local router ID is 10.1.1.1\r\nStatus codes: s suppressed,\ + \ d damped, h history, * valid, > best, i - internal, \r\n r RIB-failure,\ + \ S Stale, m multipath, b backup-path, f RT-Filter, \r\n x best-external,\ + \ a additional-path, c RIB-compressed, \r\n t secondary path, L\ + \ long-lived-stale,\r\nOrigin codes: i - IGP, e - EGP, ? - incomplete\r\nRPKI\ + \ validation codes: V valid, I invalid, N Not found\r\n\r\n Network \ + \ Next Hop Metric LocPrf Weight Path\r\n *> 10.11.11.11/32\ + \ 0.0.0.0 0 32768 i\r\n\r\nTotal number of prefixes\ + \ 1" + show bgp all neighbors 10.2.2.2 policy: ' Neighbor: 10.2.2.2, Address-Family: + IPv4 Unicast' + show bgp all neighbors 10.2.2.2 received-routes: "For address family: IPv4 Unicast\r\ + \n% Inbound soft reconfiguration not enabled on 10.2.2.2" + show bgp all neighbors 10.2.2.2 routes: "For address family: IPv4 Unicast\r\n\ + BGP table version is 167, local router ID is 10.1.1.1\r\nStatus codes: s suppressed,\ + \ d damped, h history, * valid, > best, i - internal, \r\n r RIB-failure,\ + \ S Stale, m multipath, b backup-path, f RT-Filter, \r\n x best-external,\ + \ a additional-path, c RIB-compressed, \r\n t secondary path, L\ + \ long-lived-stale,\r\nOrigin codes: i - IGP, e - EGP, ? - incomplete\r\nRPKI\ + \ validation codes: V valid, I invalid, N Not found\r\n\r\n Network \ + \ Next Hop Metric LocPrf Weight Path\r\n *>i 10.22.22.22/32\ + \ 10.2.2.2 100 0 i\r\n\r\nTotal number of prefixes\ + \ 1" + show bgp all neighbors | i BGP neighbor: BGP neighbor is 10.2.2.2, remote AS + 65000, internal link + show bgp summary: "% Command accepted but obsolete, unreleased or unsupported;\ + \ see documentation.\r\nBGP router identifier 10.1.1.1, local AS number 65000\r\ + \nBGP table version is 167, main routing table version 167\r\n2 network entries\ + \ using 496 bytes of memory\r\n2 path entries using 272 bytes of memory\r\n\ + 2/2 BGP path/bestpath attribute entries using 560 bytes of memory\r\n0 BGP route-map\ + \ cache entries using 0 bytes of memory\r\n0 BGP filter-list cache entries using\ + \ 0 bytes of memory\r\nBGP using 1328 total bytes of memory\r\nBGP activity\ + \ 37/35 prefixes, 85/83 paths, scan interval 60 secs\r\n\r\nNeighbor \ + \ V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd\r\n\ + 10.2.2.2 4 65000 5 5 167 0 0 00:00:14 \ + \ 1" + show interfaces: "GigabitEthernet1 is up, line protocol is up \r\n Hardware is\ + \ CSR vNIC, address is 5e00.0000.0000 (bia 5e00.0000.0000)\r\n Internet address\ + \ is 10.255.8.122/16\r\n MTU 1500 bytes, BW 1000000 Kbit/sec, DLY 10 usec,\ + \ \r\n reliability 255/255, txload 1/255, rxload 1/255\r\n Encapsulation\ + \ ARPA, loopback not set\r\n Keepalive set (10 sec)\r\n Full Duplex, 1000Mbps,\ + \ link type is auto, media type is Virtual\r\n output flow-control is unsupported,\ + \ input flow-control is unsupported\r\n ARP type: ARPA, ARP Timeout 04:00:00\r\ + \n Last input 00:00:15, output 00:04:08, output hang never\r\n Last clearing\ + \ of \"show interface\" counters never\r\n Input queue: 0/375/0/0 (size/max/drops/flushes);\ + \ Total output drops: 0\r\n Queueing strategy: fifo\r\n Output queue: 0/40\ + \ (size/max)\r\n 5 minute input rate 0 bits/sec, 0 packets/sec\r\n 5 minute\ + \ output rate 0 bits/sec, 0 packets/sec\r\n 226339 packets input, 16099382\ + \ bytes, 0 no buffer\r\n Received 0 broadcasts (0 IP multicasts)\r\n \ + \ 0 runts, 0 giants, 0 throttles \r\n 0 input errors, 0 CRC, 0 frame, 0\ + \ overrun, 0 ignored\r\n 0 watchdog, 0 multicast, 0 pause input\r\n \ + \ 82947 packets output, 7473190 bytes, 0 underruns\r\n 0 output errors,\ + \ 0 collisions, 0 interface resets\r\n 15171 unknown protocol drops\r\n\ + \ 0 babbles, 0 late collision, 0 deferred\r\n 0 lost carrier, 0 no carrier,\ + \ 0 pause output\r\n 0 output buffer failures, 0 output buffers swapped\ + \ out\r\nGigabitEthernet2 is up, line protocol is up \r\n Hardware is CSR vNIC,\ + \ address is fa16.3ebe.e48e (bia fa16.3ebe.e48e)\r\n Internet address is 10.0.1.1/24\r\ + \n MTU 1500 bytes, BW 1000000 Kbit/sec, DLY 10 usec, \r\n reliability 255/255,\ + \ txload 1/255, rxload 1/255\r\n Encapsulation ARPA, loopback not set\r\n \ + \ Keepalive set (10 sec)\r\n Full Duplex, 1000Mbps, link type is auto, media\ + \ type is Virtual\r\n output flow-control is unsupported, input flow-control\ + \ is unsupported\r\n ARP type: ARPA, ARP Timeout 04:00:00\r\n Last input 00:00:03,\ + \ output 00:00:08, output hang never\r\n Last clearing of \"show interface\"\ + \ counters never\r\n Input queue: 0/375/0/0 (size/max/drops/flushes); Total\ + \ output drops: 0\r\n Queueing strategy: fifo\r\n Output queue: 0/40 (size/max)\r\ + \n 5 minute input rate 0 bits/sec, 0 packets/sec\r\n 5 minute output rate\ + \ 0 bits/sec, 0 packets/sec\r\n 82713 packets input, 7361789 bytes, 0 no\ + \ buffer\r\n Received 0 broadcasts (0 IP multicasts)\r\n 0 runts, 0\ + \ giants, 0 throttles \r\n 0 input errors, 0 CRC, 0 frame, 0 overrun, 0\ + \ ignored\r\n 0 watchdog, 0 multicast, 0 pause input\r\n 67751 packets\ + \ output, 6749122 bytes, 0 underruns\r\n 0 output errors, 0 collisions,\ + \ 0 interface resets\r\n 7586 unknown protocol drops\r\n 0 babbles,\ + \ 0 late collision, 0 deferred\r\n 0 lost carrier, 0 no carrier, 0 pause\ + \ output\r\n 0 output buffer failures, 0 output buffers swapped out\r\n\ + GigabitEthernet3 is up, line protocol is up \r\n Hardware is CSR vNIC, address\ + \ is fa16.3e07.71e5 (bia fa16.3e07.71e5)\r\n Internet address is 10.0.2.1/24\r\ + \n MTU 1500 bytes, BW 1000000 Kbit/sec, DLY 10 usec, \r\n reliability 255/255,\ + \ txload 1/255, rxload 1/255\r\n Encapsulation ARPA, loopback not set\r\n \ + \ Keepalive set (10 sec)\r\n Full Duplex, 1000Mbps, link type is auto, media\ + \ type is Virtual\r\n output flow-control is unsupported, input flow-control\ + \ is unsupported\r\n ARP type: ARPA, ARP Timeout 04:00:00\r\n Last input 00:00:02,\ + \ output 00:00:05, output hang never\r\n Last clearing of \"show interface\"\ + \ counters never\r\n Input queue: 0/375/0/0 (size/max/drops/flushes); Total\ + \ output drops: 0\r\n Queueing strategy: fifo\r\n Output queue: 0/40 (size/max)\r\ + \n 5 minute input rate 0 bits/sec, 0 packets/sec\r\n 5 minute output rate\ + \ 0 bits/sec, 0 packets/sec\r\n 60355 packets input, 5993573 bytes, 0 no\ + \ buffer\r\n Received 0 broadcasts (0 IP multicasts)\r\n 0 runts, 0\ + \ giants, 0 throttles \r\n 0 input errors, 0 CRC, 0 frame, 0 overrun, 0\ + \ ignored\r\n 0 watchdog, 0 multicast, 0 pause input\r\n 90279 packets\ + \ output, 8199805 bytes, 0 underruns\r\n 0 output errors, 0 collisions,\ + \ 0 interface resets\r\n 7586 unknown protocol drops\r\n 0 babbles,\ + \ 0 late collision, 0 deferred\r\n 0 lost carrier, 0 no carrier, 0 pause\ + \ output\r\n 0 output buffer failures, 0 output buffers swapped out\r\n\ + Loopback0 is up, line protocol is up \r\n Hardware is Loopback\r\n Internet\ + \ address is 10.1.1.1/32\r\n MTU 1514 bytes, BW 8000000 Kbit/sec, DLY 5000\ + \ usec, \r\n reliability 255/255, txload 1/255, rxload 1/255\r\n Encapsulation\ + \ LOOPBACK, loopback not set\r\n Keepalive set (10 sec)\r\n Last input 00:04:08,\ + \ output never, output hang never\r\n Last clearing of \"show interface\" counters\ + \ never\r\n Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops:\ + \ 0\r\n Queueing strategy: fifo\r\n Output queue: 0/0 (size/max)\r\n 5 minute\ + \ input rate 0 bits/sec, 0 packets/sec\r\n 5 minute output rate 0 bits/sec,\ + \ 0 packets/sec\r\n 0 packets input, 0 bytes, 0 no buffer\r\n Received\ + \ 0 broadcasts (0 IP multicasts)\r\n 0 runts, 0 giants, 0 throttles \r\n\ + \ 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored, 0 abort\r\n \ + \ 16368 packets output, 822492 bytes, 0 underruns\r\n 0 output errors, 0\ + \ collisions, 0 interface resets\r\n 0 unknown protocol drops\r\n 0\ + \ output buffer failures, 0 output buffers swapped out\r\nLoopback1 is up, line\ + \ protocol is up \r\n Hardware is Loopback\r\n Internet address is 10.11.11.11/32\r\ + \n MTU 1514 bytes, BW 8000000 Kbit/sec, DLY 5000 usec, \r\n reliability\ + \ 255/255, txload 1/255, rxload 1/255\r\n Encapsulation LOOPBACK, loopback\ + \ not set\r\n Keepalive set (10 sec)\r\n Last input 00:04:08, output never,\ + \ output hang never\r\n Last clearing of \"show interface\" counters never\r\ + \n Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0\r\n\ + \ Queueing strategy: fifo\r\n Output queue: 0/0 (size/max)\r\n 5 minute input\ + \ rate 0 bits/sec, 0 packets/sec\r\n 5 minute output rate 0 bits/sec, 0 packets/sec\r\ + \n 0 packets input, 0 bytes, 0 no buffer\r\n Received 0 broadcasts (0\ + \ IP multicasts)\r\n 0 runts, 0 giants, 0 throttles \r\n 0 input errors,\ + \ 0 CRC, 0 frame, 0 overrun, 0 ignored, 0 abort\r\n 16368 packets output,\ + \ 822492 bytes, 0 underruns\r\n 0 output errors, 0 collisions, 0 interface\ + \ resets\r\n 0 unknown protocol drops\r\n 0 output buffer failures,\ + \ 0 output buffers swapped out" + show interfaces accounting: "GigabitEthernet1 \r\n Protocol \ + \ Pkts In Chars In Pkts Out Chars Out\r\n Other 160817\ + \ 11931072 2797 167820\r\n IP 96450 \ + \ 8361603 80150 7305370\r\n ARP 130475 5528910\ + \ 2797 167820\r\n IPv6 22 1836 \ + \ 0 0\r\nGigabitEthernet2 \r\n Protocol Pkts\ + \ In Chars In Pkts Out Chars Out\r\n Other 15203\ + \ 3294184 2758 165480\r\n IP 75029 \ + \ 5707290 64993 6583642\r\n ARP 31 \ + \ 1860 2758 165480\r\nGigabitEthernet3 \r\n Protocol\ + \ Pkts In Chars In Pkts Out Chars Out\r\n Other \ + \ 15202 3294124 2757 165420\r\n IP \ + \ 52672 4339134 87523 8034499\r\n ARP \ + \ 30 1800 2757 165420\r\nLoopback0 \r\n Protocol\ + \ Pkts In Chars In Pkts Out Chars Out\r\n IP \ + \ 16368 822492 16368 822492\r\nLoopback1 \r\n \ + \ Protocol Pkts In Chars In Pkts Out Chars Out\r\n \ + \ IP 16368 822492 16368 822492" + show ip bgp all dampening parameters: "For address family: IPv4 Unicast\r\n\r\n\ + % dampening not enabled for base\r\n\r\nFor address family: IPv6 Unicast\r\n\ + \r\n% dampening not enabled for base\r\n\r\nFor address family: IPv4 Multicast\r\ + \n\r\n% dampening not enabled for base\r\n\r\nFor address family: L2VPN E-VPN\r\ + \n\r\n% dampening not enabled for base\r\n\r\nFor address family: MVPNv4 Unicast\r\ + \n\r\n% dampening not enabled for base\r\n\r\nFor address family: MVPNv6 Unicast\r\ + \n\r\n% dampening not enabled for base" + 'show ip bgp template peer-policy ': No templates configured + 'show ip bgp template peer-session ': No templates configured + show ip interface: "GigabitEthernet1 is up, line protocol is up\r\n Internet\ + \ address is 10.255.8.122/16\r\n Broadcast address is 255.255.255.255\r\n \ + \ Address determined by DHCP\r\n MTU is 1500 bytes\r\n Helper address is not\ + \ set\r\n Directed broadcast forwarding is disabled\r\n Outgoing Common access\ + \ list is not set \r\n Outgoing access list is not set\r\n Inbound Common\ + \ access list is not set \r\n Inbound access list is not set\r\n Proxy ARP\ + \ is enabled\r\n Local Proxy ARP is disabled\r\n Security level is default\r\ + \n Split horizon is enabled\r\n ICMP redirects are always sent\r\n ICMP unreachables\ + \ are always sent\r\n ICMP mask replies are never sent\r\n IP fast switching\ + \ is enabled\r\n IP Flow switching is disabled\r\n IP CEF switching is enabled\r\ + \n IP CEF switching turbo vector\r\n IP Null turbo vector\r\n Associated\ + \ unicast routing topologies:\r\n Topology \"base\", operation state\ + \ is UP\r\n IP multicast fast switching is enabled\r\n IP multicast distributed\ + \ fast switching is disabled\r\n IP route-cache flags are Fast, CEF\r\n Router\ + \ Discovery is disabled\r\n IP output packet accounting is disabled\r\n IP\ + \ access violation accounting is disabled\r\n TCP/IP header compression is\ + \ disabled\r\n RTP/IP header compression is disabled\r\n Probe proxy name\ + \ replies are disabled\r\n Policy routing is disabled\r\n Network address\ + \ translation is disabled\r\n BGP Policy Mapping is disabled\r\n Input features:\ + \ MCI Check\r\n IPv4 WCCP Redirect outbound is disabled\r\n IPv4 WCCP Redirect\ + \ inbound is disabled\r\n IPv4 WCCP Redirect exclude is disabled\r\nGigabitEthernet2\ + \ is up, line protocol is up\r\n Internet address is 10.0.1.1/24\r\n Broadcast\ + \ address is 255.255.255.255\r\n Address determined by non-volatile memory\r\ + \n MTU is 1500 bytes\r\n Helper address is not set\r\n Directed broadcast\ + \ forwarding is disabled\r\n Multicast reserved groups joined: 224.0.0.5 224.0.0.6\r\ + \n Outgoing Common access list is not set \r\n Outgoing access list is not\ + \ set\r\n Inbound Common access list is not set \r\n Inbound access list\ + \ is not set\r\n Proxy ARP is enabled\r\n Local Proxy ARP is disabled\r\n\ + \ Security level is default\r\n Split horizon is enabled\r\n ICMP redirects\ + \ are always sent\r\n ICMP unreachables are always sent\r\n ICMP mask replies\ + \ are never sent\r\n IP fast switching is enabled\r\n IP Flow switching is\ + \ disabled\r\n IP CEF switching is enabled\r\n IP CEF switching turbo vector\r\ + \n IP Null turbo vector\r\n Associated unicast routing topologies:\r\n \ + \ Topology \"base\", operation state is UP\r\n IP multicast fast switching\ + \ is enabled\r\n IP multicast distributed fast switching is disabled\r\n IP\ + \ route-cache flags are Fast, CEF\r\n Router Discovery is disabled\r\n IP\ + \ output packet accounting is disabled\r\n IP access violation accounting is\ + \ disabled\r\n TCP/IP header compression is disabled\r\n RTP/IP header compression\ + \ is disabled\r\n Probe proxy name replies are disabled\r\n Policy routing\ + \ is disabled\r\n Network address translation is disabled\r\n BGP Policy Mapping\ + \ is disabled\r\n Input features: MCI Check\r\n IPv4 WCCP Redirect outbound\ + \ is disabled\r\n IPv4 WCCP Redirect inbound is disabled\r\n IPv4 WCCP Redirect\ + \ exclude is disabled\r\nGigabitEthernet3 is up, line protocol is up\r\n Internet\ + \ address is 10.0.2.1/24\r\n Broadcast address is 255.255.255.255\r\n Address\ + \ determined by non-volatile memory\r\n MTU is 1500 bytes\r\n Helper address\ + \ is not set\r\n Directed broadcast forwarding is disabled\r\n Multicast reserved\ + \ groups joined: 224.0.0.5 224.0.0.6\r\n Outgoing Common access list is not\ + \ set \r\n Outgoing access list is not set\r\n Inbound Common access list\ + \ is not set \r\n Inbound access list is not set\r\n Proxy ARP is enabled\r\ + \n Local Proxy ARP is disabled\r\n Security level is default\r\n Split horizon\ + \ is enabled\r\n ICMP redirects are always sent\r\n ICMP unreachables are\ + \ always sent\r\n ICMP mask replies are never sent\r\n IP fast switching is\ + \ enabled\r\n IP Flow switching is disabled\r\n IP CEF switching is enabled\r\ + \n IP CEF switching turbo vector\r\n IP Null turbo vector\r\n Associated\ + \ unicast routing topologies:\r\n Topology \"base\", operation state\ + \ is UP\r\n IP multicast fast switching is enabled\r\n IP multicast distributed\ + \ fast switching is disabled\r\n IP route-cache flags are Fast, CEF\r\n Router\ + \ Discovery is disabled\r\n IP output packet accounting is disabled\r\n IP\ + \ access violation accounting is disabled\r\n TCP/IP header compression is\ + \ disabled\r\n RTP/IP header compression is disabled\r\n Probe proxy name\ + \ replies are disabled\r\n Policy routing is disabled\r\n Network address\ + \ translation is disabled\r\n BGP Policy Mapping is disabled\r\n Input features:\ + \ MCI Check\r\n IPv4 WCCP Redirect outbound is disabled\r\n IPv4 WCCP Redirect\ + \ inbound is disabled\r\n IPv4 WCCP Redirect exclude is disabled\r\nLoopback0\ + \ is up, line protocol is up\r\n Internet address is 10.1.1.1/32\r\n Broadcast\ + \ address is 255.255.255.255\r\n Address determined by non-volatile memory\r\ + \n MTU is 1514 bytes\r\n Helper address is not set\r\n Directed broadcast\ + \ forwarding is disabled\r\n Multicast reserved groups joined: 224.0.0.5\r\n\ + \ Outgoing Common access list is not set \r\n Outgoing access list is not\ + \ set\r\n Inbound Common access list is not set \r\n Inbound access list\ + \ is not set\r\n Proxy ARP is enabled\r\n Local Proxy ARP is disabled\r\n\ + \ Security level is default\r\n Split horizon is enabled\r\n ICMP redirects\ + \ are always sent\r\n ICMP unreachables are always sent\r\n ICMP mask replies\ + \ are never sent\r\n IP fast switching is enabled\r\n IP Flow switching is\ + \ disabled\r\n IP CEF switching is enabled\r\n IP CEF switching turbo vector\r\ + \n IP Null turbo vector\r\n Associated unicast routing topologies:\r\n \ + \ Topology \"base\", operation state is UP\r\n IP multicast fast switching\ + \ is enabled\r\n IP multicast distributed fast switching is disabled\r\n IP\ + \ route-cache flags are Fast, CEF\r\n Router Discovery is disabled\r\n IP\ + \ output packet accounting is disabled\r\n IP access violation accounting is\ + \ disabled\r\n TCP/IP header compression is disabled\r\n RTP/IP header compression\ + \ is disabled\r\n Probe proxy name replies are disabled\r\n Policy routing\ + \ is disabled\r\n Network address translation is disabled\r\n BGP Policy Mapping\ + \ is disabled\r\n Input features: MCI Check\r\n IPv4 WCCP Redirect outbound\ + \ is disabled\r\n IPv4 WCCP Redirect inbound is disabled\r\n IPv4 WCCP Redirect\ + \ exclude is disabled\r\nLoopback1 is up, line protocol is up\r\n Internet\ + \ address is 10.11.11.11/32\r\n Broadcast address is 255.255.255.255\r\n Address\ + \ determined by non-volatile memory\r\n MTU is 1514 bytes\r\n Helper address\ + \ is not set\r\n Directed broadcast forwarding is disabled\r\n Outgoing Common\ + \ access list is not set \r\n Outgoing access list is not set\r\n Inbound\ + \ Common access list is not set \r\n Inbound access list is not set\r\n Proxy\ + \ ARP is enabled\r\n Local Proxy ARP is disabled\r\n Security level is default\r\ + \n Split horizon is enabled\r\n ICMP redirects are always sent\r\n ICMP unreachables\ + \ are always sent\r\n ICMP mask replies are never sent\r\n IP fast switching\ + \ is enabled\r\n IP Flow switching is disabled\r\n IP CEF switching is enabled\r\ + \n IP CEF switching turbo vector\r\n IP Null turbo vector\r\n Associated\ + \ unicast routing topologies:\r\n Topology \"base\", operation state\ + \ is UP\r\n IP multicast fast switching is enabled\r\n IP multicast distributed\ + \ fast switching is disabled\r\n IP route-cache flags are Fast, CEF\r\n Router\ + \ Discovery is disabled\r\n IP output packet accounting is disabled\r\n IP\ + \ access violation accounting is disabled\r\n TCP/IP header compression is\ + \ disabled\r\n RTP/IP header compression is disabled\r\n Probe proxy name\ + \ replies are disabled\r\n Policy routing is disabled\r\n Network address\ + \ translation is disabled\r\n BGP Policy Mapping is disabled\r\n Input features:\ + \ MCI Check\r\n IPv4 WCCP Redirect outbound is disabled\r\n IPv4 WCCP Redirect\ + \ inbound is disabled\r\n IPv4 WCCP Redirect exclude is disabled" + show ipv6 interface: '' + show version: '' + show vrf detail: '' + show vrf detail | inc \(VRF: '' + term length 0: '' + term width 0: '' + prompt: switch# diff --git a/mocked_devices/2-manual/reverted/playback/nxos/nx-osv-1.yaml b/mocked_devices/2-manual/reverted/playback/nxos/nx-osv-1.yaml new file mode 100644 index 0000000..4570f6e --- /dev/null +++ b/mocked_devices/2-manual/reverted/playback/nxos/nx-osv-1.yaml @@ -0,0 +1,4172 @@ +configure: + commands: + end: + new_state: exec + line console 0: + new_state: configure_line + no logging console: '' + prompt: switch(config)# +configure_line: + commands: + end: + new_state: execute + exec-timeout 0: '' + prompt: switch(config-line)# +connect: + commands: + ? '' + : new_state: execute + preface: 'Trying mock_device ... + + Connected to mock_device. + + Escape character is ''^]''.' + prompt: '' +execute: + commands: + config term: + new_state: configure + show bgp process vrf all: "\r\nBGP Process Information\r\nBGP Process ID \ + \ : 8610\r\nBGP Protocol Started, reason: : configuration\r\nBGP\ + \ Protocol Tag : 65000\r\nBGP Protocol State : Running\r\ + \nBGP MMODE : Not Initialized\r\nBGP Memory State \ + \ : OK\r\nBGP asformat : asplain\r\n\r\nBGP attributes\ + \ information\r\nNumber of attribute entries : 2\r\nHWM of attribute entries\ + \ : 2\r\nBytes used by entries : 200\r\nEntries pending delete\ + \ : 0\r\nHWM of entries pending delete : 0\r\nBGP paths per attribute\ + \ HWM : 1\r\nBGP AS path entries : 0\r\nBytes used by AS path\ + \ entries : 0\r\n\r\nInformation regarding configured VRFs:\r\n\r\nBGP Information\ + \ for VRF default\r\nVRF Id : 1\r\nVRF state \ + \ : UP\r\nRouter-ID : 10.2.2.2\r\nConfigured\ + \ Router-ID : 10.2.2.2\r\nConfed-ID : 0\r\nCluster-ID\ + \ : 0.0.0.0\r\nNo. of configured peers : 1\r\nNo.\ + \ of pending config peers : 0\r\nNo. of established peers : 1\r\nVRF\ + \ RD : Not configured\r\n\r\n Information for address\ + \ family IPv4 Unicast in VRF default\r\n Table Id : 1\r\ + \n Table state : UP\r\n Peers Active-peers Routes\ + \ Paths Networks Aggregates\r\n 1 1 2 \ + \ 2 1 0 \r\n\r\n Redistribution \ + \ \r\n None\r\n\r\n Wait for IGP convergence is not configured\r\ + \n\r\n\r\n Nexthop trigger-delay\r\n critical 3000 ms\r\n non-critical\ + \ 10000 ms\r\n\r\n Information for address family IPv6 Unicast in VRF default\r\ + \n Table Id : 80000001\r\n Table state \ + \ : UP\r\n Peers Active-peers Routes Paths Networks \ + \ Aggregates\r\n 0 0 0 0 0 \ + \ 0 \r\n\r\n Redistribution \r\n None\r\ + \n\r\n Wait for IGP convergence is not configured\r\n\r\n\r\n Nexthop\ + \ trigger-delay\r\n critical 3000 ms\r\n non-critical 10000 ms" + show bgp vrf all all: "BGP routing table information for VRF default, address\ + \ family IPv4 Unicast\r\nBGP table version is 343, local router ID is 10.2.2.2\r\ + \nStatus: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid,\ + \ >-best\r\nPath type: i-internal, e-external, c-confed, l-local, a-aggregate,\ + \ r-redist, I-injected\r\nOrigin codes: i - IGP, e - EGP, ? - incomplete, |\ + \ - multipath, & - backup\r\n\r\n Network Next Hop Metric\ + \ LocPrf Weight Path\r\n*>i10.11.11.11/32 10.1.1.1 \ + \ 0 100 0 i\r\n*>l10.22.22.22/32 0.0.0.0 \ + \ 100 32768 i" + show bgp vrf all all dampening parameters: '' + show bgp vrf all all nexthop-database: "\r\nNext Hop table for VRF default, address\ + \ family IPv4 Unicast:\r\nNext-hop trigger-delay(miliseconds)\r\n Critical:\ + \ 3000 Non-critical: 10000\r\nIPv4 Next-hop table\r\n\r\nNexthop: 0.0.0.0, Flags:\ + \ 0x2, Refcount: 1, IGP cost: 0\r\nIGP Route type: 0, IGP preference: 0\r\n\ + Nexthop is not-attached local unreachable not-labeled\r\nNexthop last resolved:\ + \ never, using 0.0.0.0/0\r\nMetric next advertise: Never\r\nRNH epoch: 0\r\n\ + \r\nNexthop: 10.1.1.1, Flags: 0x1, Refcount: 1, IGP cost: 41\r\nIGP Route type:\ + \ 0, IGP preference: 110\r\nAttached nexthop: 10.0.2.1, Interface: Ethernet2/2\r\ + \nAttached nexthop: 10.0.1.1, Interface: Ethernet2/1\r\nNexthop is not-attached\ + \ not-local reachable not-labeled\r\nNexthop last resolved: 00:00:12, using\ + \ 10.1.1.1/32\r\nMetric next advertise: Never\r\nRNH epoch: 1\r\nIPv6 Next-hop\ + \ table\r\n\r\nNext Hop table for VRF default, address family IPv6 Unicast:\r\ + \nNext-hop trigger-delay(miliseconds)\r\n Critical: 3000 Non-critical: 10000\r\ + \nIPv4 Next-hop table\r\nIPv6 Next-hop table" + show bgp vrf all all summary: "BGP summary information for VRF default, address\ + \ family IPv4 Unicast\r\nBGP router identifier 10.2.2.2, local AS number 65000\r\ + \nBGP table version is 343, IPv4 Unicast config peers 1, capable peers 1\r\n\ + 2 network entries and 2 paths using 288 bytes of memory\r\nBGP attribute entries\ + \ [2/288], BGP AS path entries [0/0]\r\nBGP community entries [0/0], BGP clusterlist\ + \ entries [0/0]\r\n\r\nNeighbor V AS MsgRcvd MsgSent TblVer InQ\ + \ OutQ Up/Down State/PfxRcd\r\n10.1.1.1 4 65000 31826 29084 \ + \ 343 0 0 00:00:16 1 \r\n\r\nBGP summary information for VRF\ + \ default, address family IPv6 Unicast" + show bgp vrf default all neighbors: "BGP neighbor is 10.1.1.1, remote AS 65000,\ + \ ibgp link, Peer index 1\r\n BGP version 4, remote router ID 10.1.1.1\r\n\ + \ BGP state = Established, up for 00:00:15\r\n Using loopback0 as update source\ + \ for this peer\r\n Last read 00:00:15, hold time = 180, keepalive interval\ + \ is 60 seconds\r\n Last written 00:00:14, keepalive timer expiry due 00:00:45\r\ + \n Received 31826 messages, 1 notifications, 0 bytes in queue\r\n Sent 29084\ + \ messages, 103 notifications, 0 bytes in queue\r\n Connections established\ + \ 104, dropped 103\r\n Last reset by us 00:03:36, due to administratively shutdown\r\ + \n Last reset by peer never, due to No error\r\n\r\n Neighbor capabilities:\r\ + \n Dynamic capability: advertised (mp, refresh, gr) \r\n Dynamic capability\ + \ (old): advertised \r\n Route refresh capability (new): advertised received\ + \ \r\n Route refresh capability (old): advertised received \r\n 4-Byte AS\ + \ capability: advertised received \r\n Address family IPv4 Unicast: advertised\ + \ received \r\n Graceful Restart capability: advertised \r\n\r\n Graceful\ + \ Restart Parameters:\r\n Address families advertised to peer:\r\n IPv4\ + \ Unicast \r\n Address families received from peer:\r\n Forwarding state\ + \ preserved by peer for:\r\n Restart time advertised to peer: 120 seconds\r\ + \n Stale time for routes advertised by peer: 300 seconds\r\n Extended Next\ + \ Hop Encoding Capability: advertised \r\n\r\n Message statistics:\r\n \ + \ Sent Rcvd\r\n Opens: \ + \ 105 104 \r\n Notifications: 103 \ + \ 1 \r\n Updates: 220 208\ + \ \r\n Keepalives: 28656 31513 \r\n Route Refresh:\ + \ 0 0 \r\n Capability: \ + \ 0 0 \r\n Total: 29084 \ + \ 31826 \r\n Total bytes: 552415 604987 \r\n Bytes\ + \ in queue: 0 0 \r\n\r\n For address family:\ + \ IPv4 Unicast\r\n BGP table version 343, neighbor version 343\r\n 1 accepted\ + \ paths consume 80 bytes of memory\r\n 1 sent paths\r\n Third-party Nexthop\ + \ will not be computed.\r\n\r\n Local host: 10.2.2.2, Local port: 179\r\n \ + \ Foreign host: 10.1.1.1, Foreign port: 49386\r\n fd = 60" + show bgp vrf default all neighbors 10.1.1.1 advertised-routes: "\r\nPeer 10.1.1.1\ + \ routes for address family IPv4 Unicast:\r\nBGP table version is 343, local\ + \ router ID is 10.2.2.2\r\nStatus: s-suppressed, x-deleted, S-stale, d-dampened,\ + \ h-history, *-valid, >-best\r\nPath type: i-internal, e-external, c-confed,\ + \ l-local, a-aggregate, r-redist, I-injected\r\nOrigin codes: i - IGP, e - EGP,\ + \ ? - incomplete, | - multipath, & - backup\r\n\r\n Network Next\ + \ Hop Metric LocPrf Weight Path\r\n*>l10.22.22.22/32 \ + \ 0.0.0.0 100 32768 i\r\n\r\n\r\nPeer 10.1.1.1\ + \ routes for address family IPv4 Multicast:\r\n\r\nPeer 10.1.1.1 routes for\ + \ address family IPv6 Unicast:\r\nBGP table version is 2, local router ID is\ + \ 10.2.2.2\r\nStatus: s-suppressed, x-deleted, S-stale, d-dampened, h-history,\ + \ *-valid, >-best\r\nPath type: i-internal, e-external, c-confed, l-local, a-aggregate,\ + \ r-redist, I-injected\r\nOrigin codes: i - IGP, e - EGP, ? - incomplete, |\ + \ - multipath, & - backup\r\n\r\n Network Next Hop Metric\ + \ LocPrf Weight Path\r\n\r\nPeer 10.1.1.1 routes for address family\ + \ IPv6 Multicast:\r\n\r\nPeer 10.1.1.1 routes for address family VPNv4 Unicast:\r\ + \n\r\nPeer 10.1.1.1 routes for address family VPNv6 Unicast:\r\n\r\nPeer 10.1.1.1\ + \ routes for address family IPv4 MDT:\r\n\r\nPeer 10.1.1.1 routes for address\ + \ family IPv6 Label Unicast:\r\n\r\nPeer 10.1.1.1 routes for address family\ + \ L2VPN VPLS:\r\n\r\nPeer 10.1.1.1 routes for address family IPv4 MVPN:\r\n\r\ + \nPeer 10.1.1.1 routes for address family IPv6 MVPN:\r\n\r\nPeer 10.1.1.1 routes\ + \ for address family IPv4 Label Unicast:\r\n\r\nPeer 10.1.1.1 routes for address\ + \ family L2VPN EVPN:" + show bgp vrf default all neighbors 10.1.1.1 received-routes: "\r\nInbound soft\ + \ reconfiguration for IPv4 Unicast not enabled on 10.1.1.1\r\n\r\nInbound soft\ + \ reconfiguration for IPv4 Multicast not enabled on 10.1.1.1\r\n\r\nInbound\ + \ soft reconfiguration for IPv6 Unicast not enabled on 10.1.1.1\r\n\r\nInbound\ + \ soft reconfiguration for IPv6 Multicast not enabled on 10.1.1.1\r\n\r\nInbound\ + \ soft reconfiguration for VPNv4 Unicast not enabled on 10.1.1.1\r\n\r\nInbound\ + \ soft reconfiguration for VPNv6 Unicast not enabled on 10.1.1.1\r\n\r\nInbound\ + \ soft reconfiguration for IPv4 MDT not enabled on 10.1.1.1\r\n\r\nInbound soft\ + \ reconfiguration for IPv6 Label Unicast not enabled on 10.1.1.1\r\n\r\nInbound\ + \ soft reconfiguration for L2VPN VPLS not enabled on 10.1.1.1\r\n\r\nInbound\ + \ soft reconfiguration for IPv4 MVPN not enabled on 10.1.1.1\r\n\r\nInbound\ + \ soft reconfiguration for IPv6 MVPN not enabled on 10.1.1.1\r\n\r\nInbound\ + \ soft reconfiguration for IPv4 Label Unicast not enabled on 10.1.1.1\r\n\r\n\ + Inbound soft reconfiguration for L2VPN EVPN not enabled on 10.1.1.1" + show bgp vrf default all neighbors 10.1.1.1 routes: "\r\nPeer 10.1.1.1 routes\ + \ for address family IPv4 Unicast:\r\nBGP table version is 343, local router\ + \ ID is 10.2.2.2\r\nStatus: s-suppressed, x-deleted, S-stale, d-dampened, h-history,\ + \ *-valid, >-best\r\nPath type: i-internal, e-external, c-confed, l-local, a-aggregate,\ + \ r-redist, I-injected\r\nOrigin codes: i - IGP, e - EGP, ? - incomplete, |\ + \ - multipath, & - backup\r\n\r\n Network Next Hop Metric\ + \ LocPrf Weight Path\r\n*>i10.11.11.11/32 10.1.1.1 \ + \ 0 100 0 i\r\n\r\n\r\nPeer 10.1.1.1 routes for address family\ + \ IPv4 Multicast:\r\n\r\nPeer 10.1.1.1 routes for address family IPv6 Unicast:\r\ + \nBGP table version is 2, local router ID is 10.2.2.2\r\nStatus: s-suppressed,\ + \ x-deleted, S-stale, d-dampened, h-history, *-valid, >-best\r\nPath type: i-internal,\ + \ e-external, c-confed, l-local, a-aggregate, r-redist, I-injected\r\nOrigin\ + \ codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup\r\n\r\n\ + \ Network Next Hop Metric LocPrf Weight Path\r\ + \n\r\nPeer 10.1.1.1 routes for address family IPv6 Multicast:\r\n\r\nPeer 10.1.1.1\ + \ routes for address family VPNv4 Unicast:\r\n\r\nPeer 10.1.1.1 routes for address\ + \ family VPNv6 Unicast:\r\n\r\nPeer 10.1.1.1 routes for address family IPv4\ + \ MDT:\r\n\r\nPeer 10.1.1.1 routes for address family IPv6 Label Unicast:\r\n\ + \r\nPeer 10.1.1.1 routes for address family L2VPN VPLS:\r\n\r\nPeer 10.1.1.1\ + \ routes for address family IPv4 MVPN:\r\n\r\nPeer 10.1.1.1 routes for address\ + \ family IPv6 MVPN:\r\n\r\nPeer 10.1.1.1 routes for address family IPv4 Label\ + \ Unicast:\r\n\r\nPeer 10.1.1.1 routes for address family L2VPN EVPN:" + show bgp vrf management all neighbors: Unknown vrf management + show interface: "mgmt0 is up\r\nadmin state is up\r\n Hardware: Ethernet, address:\ + \ 5e00.0001.0000 (bia 5e00.0001.0000)\r\n MTU 1500 bytes, BW 1000000 Kbit,\ + \ DLY 10 usec\r\n reliability 32/255, txload 1/255, rxload 1/255\r\n Encapsulation\ + \ ARPA, medium is broadcast\r\n Port mode is routed\r\n full-duplex, 1000\ + \ Mb/s\r\n Auto-Negotiation is turned on\r\n Auto-mdix is turned off\r\n \ + \ EtherType is 0x0000 \r\n 1 minute input rate 240 bits/sec, 0 packets/sec\r\ + \n 1 minute output rate 24 bits/sec, 0 packets/sec\r\n Rx\r\n 660709 input\ + \ packets 0 unicast packets 18874 multicast packets\r\n 641835 broadcast\ + \ packets 45246835 bytes\r\n Tx\r\n 28724 output packets 0 unicast packets\ + \ 28724 multicast packets\r\n 0 broadcast packets 6175652 bytes\r\n\r\nEthernet2/1\ + \ is up\r\nadmin state is up, Dedicated Interface\r\n Hardware: Ethernet,\ + \ address: 0000.0000.002f (bia fa16.3edd.c013)\r\n Internet Address is 10.0.1.2/24\r\ + \n MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n full-duplex, 1000 Mb/s\r\n Beacon is turned off\r\n \ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped 2week(s)\ + \ 5day(s)\r\n Last clearing of \"show interface\" counters never\r\n 1 interface\ + \ resets\r\n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec,\ + \ 0 packets/sec\r\n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n \ + \ input rate 0 bps, 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2:\ + \ 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds\ + \ output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output\ + \ rate 0 bps, 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0\ + \ broadcast packets\r\n 0 input packets 0 bytes\r\n 0 jumbo packets \ + \ 0 storm suppression packets\r\n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\ + \n 0 input error 0 short frame 0 overrun 0 underrun 0 ignored\r\n \ + \ 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop\r\n 0 input\ + \ with dribble 0 input discard\r\n 0 Rx pause\r\n TX\r\n 0 unicast packets\ + \ 0 multicast packets 0 broadcast packets\r\n 0 output packets 0 bytes\r\ + \n 0 jumbo packets\r\n 0 output error 0 collision 0 deferred 0 late\ + \ collision\r\n 0 lost carrier 0 no carrier 0 babble 0 output discard\r\ + \n 0 Tx pause\r\n\r\nEthernet2/2 is up\r\nadmin state is up, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia fa16.3e8a.5b7d)\r\n Internet\ + \ Address is 10.0.2.2/24\r\n MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\ + \n reliability 255/255, txload 1/255, rxload 1/255\r\n Encapsulation ARPA,\ + \ medium is broadcast\r\n Port mode is routed\r\n full-duplex, 1000 Mb/s\r\ + \n Beacon is turned off\r\n Auto-Negotiation is turned off\r\n Input flow-control\ + \ is off, output flow-control is off\r\n Auto-mdix is turned off\r\n Switchport\ + \ monitor is off \r\n EtherType is 0x8100 \r\n EEE (efficient-ethernet) :\ + \ n/a\r\n Last link flapped 2week(s) 5day(s)\r\n Last clearing of \"show interface\"\ + \ counters never\r\n 1 interface resets\r\n Load-Interval #1: 0 seconds\r\n\ + \ 0 seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output\ + \ rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate\ + \ 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0 seconds input rate\ + \ 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\ + \n input rate 0 bps, 0 pps; output rate 0 bps, 0 pps\r\n RX\r\n 0 unicast\ + \ packets 0 multicast packets 0 broadcast packets\r\n 0 input packets \ + \ 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\n 0 runts\ + \ 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short frame 0 overrun\ + \ 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop 0 bad proto drop\ + \ 0 if down drop\r\n 0 input with dribble 0 input discard\r\n 0 Rx pause\r\ + \n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\n\ + \ 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output error\ + \ 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0 no carrier\ + \ 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/3 is down (Administratively\ + \ down)\r\nadmin state is down, Dedicated Interface\r\n Hardware: Ethernet,\ + \ address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU 1500 bytes, BW 1000000\ + \ Kbit, DLY 10 usec\r\n reliability 255/255, txload 1/255, rxload 1/255\r\n\ + \ Encapsulation ARPA, medium is broadcast\r\n Port mode is routed\r\n auto-duplex,\ + \ auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation is turned off\r\ + \n Input flow-control is off, output flow-control is off\r\n Auto-mdix is\ + \ turned off\r\n Switchport monitor is off \r\n EtherType is 0x8100 \r\n \ + \ EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\n Last clearing\ + \ of \"show interface\" counters never\r\n 0 interface resets\r\n Load-Interval\ + \ #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\n \ + \ 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/4\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/5\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/6\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/7\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/8\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/9\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/10\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/11\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/12\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/13\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/14\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/15\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/16\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/17\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/18\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/19\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/20\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/21\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/22\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/23\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/24\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/25\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/26\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/27\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/28\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/29\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/30\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/31\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/32\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/33\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/34\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/35\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/36\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/37\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/38\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/39\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/40\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/41\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/42\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/43\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/44\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/45\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/46\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/47\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet2/48\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is broadcast\r\n Port\ + \ mode is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n\ + \ Auto-Negotiation is turned off\r\n Input flow-control is off, output flow-control\ + \ is off\r\n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType\ + \ is 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/1\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.002f)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/2\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.002f)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/3\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/4\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/5\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/6\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/7\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/8\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/9\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/10\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/11\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/12\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/13\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/14\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/15\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/16\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/17\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/18\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/19\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/20\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/21\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/22\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/23\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/24\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/25\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/26\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/27\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/28\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/29\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/30\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/31\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/32\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/33\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/34\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/35\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/36\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/37\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/38\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/39\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/40\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/41\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/42\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/43\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/44\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/45\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/46\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/47\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet3/48\ + \ is down (Administratively down)\r\nadmin state is down, Dedicated Interface\r\ + \n Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is routed\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/1\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.002f)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/2\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.002f)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/3\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/4\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/5\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/6\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/7\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/8\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/9\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/10\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/11\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/12\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/13\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/14\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/15\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/16\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/17\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/18\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/19\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/20\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/21\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/22\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/23\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/24\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/25\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/26\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/27\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/28\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/29\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/30\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/31\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/32\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/33\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/34\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/35\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/36\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/37\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/38\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/39\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/40\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/41\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/42\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/43\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/44\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/45\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/46\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/47\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nEthernet4/48\ + \ is down (Link not connected)\r\nadmin state is up, Dedicated Interface\r\n\ + \ Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000)\r\n MTU\ + \ 1500 bytes, BW 1000000 Kbit, DLY 10 usec\r\n reliability 255/255, txload\ + \ 1/255, rxload 1/255\r\n Encapsulation ARPA, medium is p2p\r\n Port mode\ + \ is access\r\n auto-duplex, auto-speed\r\n Beacon is turned off\r\n Auto-Negotiation\ + \ is turned off\r\n Input flow-control is off, output flow-control is off\r\ + \n Auto-mdix is turned off\r\n Switchport monitor is off \r\n EtherType is\ + \ 0x8100 \r\n EEE (efficient-ethernet) : n/a\r\n Last link flapped never\r\ + \n Last clearing of \"show interface\" counters never\r\n 0 interface resets\r\ + \n Load-Interval #1: 0 seconds\r\n 0 seconds input rate 0 bits/sec, 0 packets/sec\r\ + \n 0 seconds output rate 0 bits/sec, 0 packets/sec\r\n input rate 0 bps,\ + \ 0 pps; output rate 0 bps, 0 pps\r\n Load-Interval #2: 0 seconds\r\n 0\ + \ seconds input rate 0 bits/sec, 0 packets/sec\r\n 0 seconds output rate\ + \ 0 bits/sec, 0 packets/sec\r\n input rate 0 bps, 0 pps; output rate 0 bps,\ + \ 0 pps\r\n RX\r\n 0 unicast packets 0 multicast packets 0 broadcast packets\r\ + \n 0 input packets 0 bytes\r\n 0 jumbo packets 0 storm suppression packets\r\ + \n 0 runts 0 giants 0 CRC/FCS 0 no buffer\r\n 0 input error 0 short\ + \ frame 0 overrun 0 underrun 0 ignored\r\n 0 watchdog 0 bad etype drop\ + \ 0 bad proto drop 0 if down drop\r\n 0 input with dribble 0 input discard\r\ + \n 0 Rx pause\r\n TX\r\n 0 unicast packets 0 multicast packets 0 broadcast\ + \ packets\r\n 0 output packets 0 bytes\r\n 0 jumbo packets\r\n 0 output\ + \ error 0 collision 0 deferred 0 late collision\r\n 0 lost carrier 0\ + \ no carrier 0 babble 0 output discard\r\n 0 Tx pause\r\n\r\nloopback0\ + \ is up\r\nadmin state is up\r\n Hardware: Loopback\r\n Internet Address is\ + \ 10.2.2.2/32\r\n MTU 1500 bytes, BW 8000000 Kbit, DLY 5000 usec\r\n reliability\ + \ 255/255, txload 1/255, rxload 1/255\r\n Encapsulation LOOPBACK, medium is\ + \ broadcast\r\n Port mode is routed\r\n Auto-mdix is turned off\r\n 66982\ + \ packets input 3358416 bytes\r\n 0 multicast frames 0 compressed\r\n \ + \ 0 input errors 0 frame 0 overrun 0 fifo\r\n 0 packets output 0 bytes 0\ + \ underruns\r\n 0 output errors 0 collisions 0 fifo\r\n 0 out_carrier_errors\r\ + \n\r\nloopback1 is up\r\nadmin state is up\r\n Hardware: Loopback\r\n Internet\ + \ Address is 10.22.22.22/32\r\n MTU 1500 bytes, BW 8000000 Kbit, DLY 5000 usec\r\ + \n reliability 255/255, txload 1/255, rxload 1/255\r\n Encapsulation LOOPBACK,\ + \ medium is broadcast\r\n Port mode is routed\r\n Auto-mdix is turned off\r\ + \n 0 packets input 0 bytes\r\n 0 multicast frames 0 compressed\r\n \ + \ 0 input errors 0 frame 0 overrun 0 fifo\r\n 0 packets output 0 bytes 0\ + \ underruns\r\n 0 output errors 0 collisions 0 fifo\r\n 0 out_carrier_errors" + show interface switchport: "Name: Ethernet4/1\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/2\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/3\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/4\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/5\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/6\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/7\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/8\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/9\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/10\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/11\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/12\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/13\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/14\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/15\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/16\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/17\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/18\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/19\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/20\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/21\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/22\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/23\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/24\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/25\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/26\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/27\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/28\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/29\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/30\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/31\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/32\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/33\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/34\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/35\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/36\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/37\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/38\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/39\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/40\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/41\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/42\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/43\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/44\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/45\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/46\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none\r\nName: Ethernet4/47\r\n Switchport: Enabled\r\n Switchport\ + \ Monitor: Not enabled \r\n Operational Mode: access\r\n Access Mode VLAN:\ + \ 1 (default)\r\n Trunking Native Mode VLAN: 1 (default)\r\n Trunking VLANs\ + \ Allowed: 1-4094\r\n Administrative private-vlan primary host-association:\ + \ none\r\n Administrative private-vlan secondary host-association: none\r\n\ + \ Administrative private-vlan primary mapping: none\r\n Administrative private-vlan\ + \ secondary mapping: none\r\n Administrative private-vlan trunk native VLAN:\ + \ none\r\n Administrative private-vlan trunk encapsulation: dot1q\r\n Administrative\ + \ private-vlan trunk normal VLANs: none\r\n Administrative private-vlan trunk\ + \ private VLANs: none\r\n Operational private-vlan: none\r\nName: Ethernet4/48\r\ + \n Switchport: Enabled\r\n Switchport Monitor: Not enabled \r\n Operational\ + \ Mode: access\r\n Access Mode VLAN: 1 (default)\r\n Trunking Native Mode\ + \ VLAN: 1 (default)\r\n Trunking VLANs Allowed: 1-4094\r\n Administrative\ + \ private-vlan primary host-association: none\r\n Administrative private-vlan\ + \ secondary host-association: none\r\n Administrative private-vlan primary\ + \ mapping: none\r\n Administrative private-vlan secondary mapping: none\r\n\ + \ Administrative private-vlan trunk native VLAN: none\r\n Administrative private-vlan\ + \ trunk encapsulation: dot1q\r\n Administrative private-vlan trunk normal VLANs:\ + \ none\r\n Administrative private-vlan trunk private VLANs: none\r\n Operational\ + \ private-vlan: none" + show ip interface vrf all: "IP Interface Status for VRF \"default\"\r\nloopback0,\ + \ Interface status: protocol-up/link-up/admin-up, iod: 132,\r\n IP address:\ + \ 10.2.2.2, IP subnet: 10.2.2.2/32 route-preference: 0, tag: 0 \r\n IP broadcast\ + \ address: 255.255.255.255\r\n IP multicast groups locally joined: none\r\n\ + \ IP MTU: 1500 bytes (using link MTU)\r\n IP primary address route-preference:\ + \ 0, tag: 0\r\n IP proxy ARP : disabled\r\n IP Local Proxy ARP : disabled\r\ + \n IP multicast routing: disabled\r\n IP icmp redirects: enabled\r\n IP directed-broadcast:\ + \ disabled \r\n IP Forwarding: disabled \r\n IP icmp unreachables (except\ + \ port): disabled\r\n IP icmp port-unreachable: enabled\r\n IP unicast reverse\ + \ path forwarding: none\r\n IP load sharing: none \r\n IP interface statistics\ + \ last reset: never\r\n IP interface software stats: (sent/received/forwarded/originated/consumed)\r\ + \n Unicast packets : 0/0/0/0/66982\r\n Unicast bytes : 0/0/0/0/3358416\r\ + \n Multicast packets : 0/0/0/0/0\r\n Multicast bytes : 0/0/0/0/0\r\ + \n Broadcast packets : 0/0/0/0/0\r\n Broadcast bytes : 0/0/0/0/0\r\ + \n Labeled packets : 0/0/0/0/0\r\n Labeled bytes : 0/0/0/0/0\r\ + \n WCCP Redirect outbound: disabled\r\n WCCP Redirect inbound: disabled\r\n\ + \ WCCP Redirect exclude: disabled\r\nloopback1, Interface status: protocol-up/link-up/admin-up,\ + \ iod: 133,\r\n IP address: 10.22.22.22, IP subnet: 10.22.22.22/32 route-preference:\ + \ 0, tag: 0 \r\n IP broadcast address: 255.255.255.255\r\n IP multicast groups\ + \ locally joined: none\r\n IP MTU: 1500 bytes (using link MTU)\r\n IP primary\ + \ address route-preference: 0, tag: 0\r\n IP proxy ARP : disabled\r\n IP Local\ + \ Proxy ARP : disabled\r\n IP multicast routing: disabled\r\n IP icmp redirects:\ + \ enabled\r\n IP directed-broadcast: disabled \r\n IP Forwarding: disabled\ + \ \r\n IP icmp unreachables (except port): disabled\r\n IP icmp port-unreachable:\ + \ enabled\r\n IP unicast reverse path forwarding: none\r\n IP load sharing:\ + \ none \r\n IP interface statistics last reset: never\r\n IP interface software\ + \ stats: (sent/received/forwarded/originated/consumed)\r\n Unicast packets\ + \ : 0/0/0/0/0\r\n Unicast bytes : 0/0/0/0/0\r\n Multicast packets\ + \ : 0/0/0/0/0\r\n Multicast bytes : 0/0/0/0/0\r\n Broadcast packets\ + \ : 0/0/0/0/0\r\n Broadcast bytes : 0/0/0/0/0\r\n Labeled packets\ + \ : 0/0/0/0/0\r\n Labeled bytes : 0/0/0/0/0\r\n WCCP Redirect outbound:\ + \ disabled\r\n WCCP Redirect inbound: disabled\r\n WCCP Redirect exclude:\ + \ disabled\r\nEthernet2/1, Interface status: protocol-up/link-up/admin-up, iod:\ + \ 36,\r\n IP address: 10.0.1.2, IP subnet: 10.0.1.0/24 route-preference: 0,\ + \ tag: 0 \r\n IP broadcast address: 255.255.255.255\r\n IP multicast groups\ + \ locally joined: \r\n 224.0.0.6 224.0.0.5 \r\n IP MTU: 1500 bytes (using\ + \ link MTU)\r\n IP primary address route-preference: 0, tag: 0\r\n IP proxy\ + \ ARP : disabled\r\n IP Local Proxy ARP : disabled\r\n IP multicast routing:\ + \ disabled\r\n IP icmp redirects: enabled\r\n IP directed-broadcast: disabled\ + \ \r\n IP Forwarding: disabled \r\n IP icmp unreachables (except port): disabled\r\ + \n IP icmp port-unreachable: enabled\r\n IP unicast reverse path forwarding:\ + \ none\r\n IP load sharing: none \r\n IP interface statistics last reset:\ + \ never\r\n IP interface software stats: (sent/received/forwarded/originated/consumed)\r\ + \n Unicast packets : 66876/45035/0/66876/45616\r\n Unicast bytes \ + \ : 4447069/2403329/0/4447069/2456689\r\n Multicast packets : 198735/182707/0/198735/365412\r\ + \n Multicast bytes : 17180466/18271460/0/17180466/18271364\r\n Broadcast\ + \ packets : 0/16368/0/0/16368\r\n Broadcast bytes : 0/822492/0/0/822492\r\ + \n Labeled packets : 0/0/0/0/0\r\n Labeled bytes : 0/0/0/0/0\r\ + \n WCCP Redirect outbound: disabled\r\n WCCP Redirect inbound: disabled\r\n\ + \ WCCP Redirect exclude: disabled\r\nEthernet2/2, Interface status: protocol-up/link-up/admin-up,\ + \ iod: 37,\r\n IP address: 10.0.2.2, IP subnet: 10.0.2.0/24 route-preference:\ + \ 0, tag: 0 \r\n IP broadcast address: 255.255.255.255\r\n IP multicast groups\ + \ locally joined: \r\n 224.0.0.6 224.0.0.5 \r\n IP MTU: 1500 bytes (using\ + \ link MTU)\r\n IP primary address route-preference: 0, tag: 0\r\n IP proxy\ + \ ARP : disabled\r\n IP Local Proxy ARP : disabled\r\n IP multicast routing:\ + \ disabled\r\n IP icmp redirects: enabled\r\n IP directed-broadcast: disabled\ + \ \r\n IP Forwarding: disabled \r\n IP icmp unreachables (except port): disabled\r\ + \n IP icmp port-unreachable: enabled\r\n IP unicast reverse path forwarding:\ + \ none\r\n IP load sharing: none \r\n IP interface statistics last reset:\ + \ never\r\n IP interface software stats: (sent/received/forwarded/originated/consumed)\r\ + \n Unicast packets : 36/23216/0/36/23904\r\n Unicast bytes : 3566/1270829/0/3566/1332881\r\ + \n Multicast packets : 198664/182581/0/198664/365160\r\n Multicast bytes\ + \ : 17174508/18260784/0/17174508/18260688\r\n Broadcast packets : 0/16368/0/0/16368\r\ + \n Broadcast bytes : 0/822492/0/0/822492\r\n Labeled packets : 0/0/0/0/0\r\ + \n Labeled bytes : 0/0/0/0/0\r\n WCCP Redirect outbound: disabled\r\ + \n WCCP Redirect inbound: disabled\r\n WCCP Redirect exclude: disabled\r\n\ + \r\nIP Interface Status for VRF \"management\"" + show ipv6 interface vrf all: "IPv6 Interface Status for VRF \"default\"\r\n\r\n\ + IPv6 Interface Status for VRF \"management\"" + show routing ipv6 vrf all: "IPv6 Routing Table for VRF \"default\"\r\n'*' denotes\ + \ best ucast next-hop\r\n'**' denotes best mcast next-hop\r\n'[x/y]' denotes\ + \ [preference/metric]\r\n\r\n\r\nIPv6 Routing Table for VRF \"management\"\r\ + \n'*' denotes best ucast next-hop\r\n'**' denotes best mcast next-hop\r\n'[x/y]'\ + \ denotes [preference/metric]" + show routing vrf all: "IP Route Table for VRF \"default\"\r\n'*' denotes best\ + \ ucast next-hop\r\n'**' denotes best mcast next-hop\r\n'[x/y]' denotes [preference/metric]\r\ + \n'%' in via output denotes VRF \r\n\r\n10.0.1.0/24, ubest/mbest:\ + \ 1/0, attached\r\n *via 10.0.1.2, Eth2/1, [0/0], 2w5d, direct\r\n10.0.1.2/32,\ + \ ubest/mbest: 1/0, attached\r\n *via 10.0.1.2, Eth2/1, [0/0], 2w5d, local\r\ + \n10.0.2.0/24, ubest/mbest: 1/0, attached\r\n *via 10.0.2.2, Eth2/2, [0/0],\ + \ 2w5d, direct\r\n10.0.2.2/32, ubest/mbest: 1/0, attached\r\n *via 10.0.2.2,\ + \ Eth2/2, [0/0], 2w5d, local\r\n10.1.1.1/32, ubest/mbest: 2/0\r\n *via 10.0.1.1,\ + \ Eth2/1, [110/41], 5d06h, ospf-1, intra\r\n *via 10.0.2.1, Eth2/2, [110/41],\ + \ 5d06h, ospf-1, intra\r\n10.2.2.2/32, ubest/mbest: 2/0, attached\r\n *via\ + \ 10.2.2.2, Lo0, [0/0], 2w5d, local\r\n *via 10.2.2.2, Lo0, [0/0], 2w5d,\ + \ direct\r\n10.11.11.11/32, ubest/mbest: 1/0\r\n *via 10.1.1.1, [200/0],\ + \ 00:00:15, bgp-65000, internal, tag 65000, \r\n10.22.22.22/32, ubest/mbest:\ + \ 2/0, attached\r\n *via 10.22.22.22, Lo1, [0/0], 2w5d, local\r\n *via\ + \ 10.22.22.22, Lo1, [0/0], 2w5d, direct" + show running-config | inc peer-policy: '' + show running-config | inc peer-session: '' + show version: '' + show vrf: "VRF-Name VRF-ID State Reason \ + \ \r\ndefault 1 Up -- \ + \ \r\nmanagement 2 Up \ + \ --" + show vrf all interface: "Interface VRF-Name \ + \ VRF-ID Site-of-Origin\r\nloopback0 default \ + \ 1 --\r\nloopback1 default \ + \ 1 --\r\nNull0 default \ + \ 1 --\r\nEthernet2/1 default \ + \ 1 --\r\nEthernet2/2 default \ + \ 1 --\r\nEthernet2/3 default \ + \ 1 --\r\nEthernet2/4 default \ + \ 1 --\r\nEthernet2/5 default \ + \ 1 --\r\nEthernet2/6 default \ + \ 1 --\r\nEthernet2/7 default \ + \ 1 --\r\nEthernet2/8 default \ + \ 1 --\r\nEthernet2/9 default 1\ + \ --\r\nEthernet2/10 default 1 --\r\ + \nEthernet2/11 default 1 --\r\nEthernet2/12\ + \ default 1 --\r\nEthernet2/13 \ + \ default 1 --\r\nEthernet2/14 \ + \ default 1 --\r\nEthernet2/15 \ + \ default 1 --\r\nEthernet2/16 \ + \ default 1 --\r\nEthernet2/17 \ + \ default 1 --\r\nEthernet2/18 \ + \ default 1 --\r\nEthernet2/19 default\ + \ 1 --\r\nEthernet2/20 default \ + \ 1 --\r\nEthernet2/21 default \ + \ 1 --\r\nEthernet2/22 default \ + \ 1 --\r\nEthernet2/23 default \ + \ 1 --\r\nEthernet2/24 default \ + \ 1 --\r\nEthernet2/25 default \ + \ 1 --\r\nEthernet2/26 default \ + \ 1 --\r\nEthernet2/27 default \ + \ 1 --\r\nEthernet2/28 default \ + \ 1 --\r\nEthernet2/29 default \ + \ 1 --\r\nEthernet2/30 default \ + \ 1 --\r\nEthernet2/31 default \ + \ 1 --\r\nEthernet2/32 default \ + \ 1 --\r\nEthernet2/33 default \ + \ 1 --\r\nEthernet2/34 default 1\ + \ --\r\nEthernet2/35 default 1 --\r\ + \nEthernet2/36 default 1 --\r\nEthernet2/37\ + \ default 1 --\r\nEthernet2/38 \ + \ default 1 --\r\nEthernet2/39 \ + \ default 1 --\r\nEthernet2/40 \ + \ default 1 --\r\nEthernet2/41 \ + \ default 1 --\r\nEthernet2/42 \ + \ default 1 --\r\nEthernet2/43 \ + \ default 1 --\r\nEthernet2/44 default\ + \ 1 --\r\nEthernet2/45 default \ + \ 1 --\r\nEthernet2/46 default \ + \ 1 --\r\nEthernet2/47 default \ + \ 1 --\r\nEthernet2/48 default \ + \ 1 --\r\nEthernet3/1 default \ + \ 1 --\r\nEthernet3/2 default \ + \ 1 --\r\nEthernet3/3 default \ + \ 1 --\r\nEthernet3/4 default \ + \ 1 --\r\nEthernet3/5 default \ + \ 1 --\r\nEthernet3/6 default \ + \ 1 --\r\nEthernet3/7 default \ + \ 1 --\r\nEthernet3/8 default \ + \ 1 --\r\nEthernet3/9 default \ + \ 1 --\r\nEthernet3/10 default \ + \ 1 --\r\nEthernet3/11 default 1\ + \ --\r\nEthernet3/12 default 1 --\r\ + \nEthernet3/13 default 1 --\r\nEthernet3/14\ + \ default 1 --\r\nEthernet3/15 \ + \ default 1 --\r\nEthernet3/16 \ + \ default 1 --\r\nEthernet3/17 \ + \ default 1 --\r\nEthernet3/18 \ + \ default 1 --\r\nEthernet3/19 \ + \ default 1 --\r\nEthernet3/20 \ + \ default 1 --\r\nEthernet3/21 default\ + \ 1 --\r\nEthernet3/22 default \ + \ 1 --\r\nEthernet3/23 default \ + \ 1 --\r\nEthernet3/24 default \ + \ 1 --\r\nEthernet3/25 default \ + \ 1 --\r\nEthernet3/26 default \ + \ 1 --\r\nEthernet3/27 default \ + \ 1 --\r\nEthernet3/28 default \ + \ 1 --\r\nEthernet3/29 default \ + \ 1 --\r\nEthernet3/30 default \ + \ 1 --\r\nEthernet3/31 default \ + \ 1 --\r\nEthernet3/32 default \ + \ 1 --\r\nEthernet3/33 default \ + \ 1 --\r\nEthernet3/34 default \ + \ 1 --\r\nEthernet3/35 default \ + \ 1 --\r\nEthernet3/36 default 1\ + \ --\r\nEthernet3/37 default 1 --\r\ + \nEthernet3/38 default 1 --\r\nEthernet3/39\ + \ default 1 --\r\nEthernet3/40 \ + \ default 1 --\r\nEthernet3/41 \ + \ default 1 --\r\nEthernet3/42 \ + \ default 1 --\r\nEthernet3/43 \ + \ default 1 --\r\nEthernet3/44 \ + \ default 1 --\r\nEthernet3/45 \ + \ default 1 --\r\nEthernet3/46 default\ + \ 1 --\r\nEthernet3/47 default \ + \ 1 --\r\nEthernet3/48 default \ + \ 1 --\r\nmgmt0 management \ + \ 2 --" + term length 0: '' + term width 0: '' + prompt: switch# diff --git a/mocked_devices/2-manual/reverted/record/csr1000v-1 b/mocked_devices/2-manual/reverted/record/csr1000v-1 new file mode 100644 index 0000000..da2701c Binary files /dev/null and b/mocked_devices/2-manual/reverted/record/csr1000v-1 differ diff --git a/mocked_devices/2-manual/reverted/record/nx-osv-1 b/mocked_devices/2-manual/reverted/record/nx-osv-1 new file mode 100644 index 0000000..02aaf8d Binary files /dev/null and b/mocked_devices/2-manual/reverted/record/nx-osv-1 differ diff --git a/mocked_devices/2-manual/reverted/snapshot/bgp_iosxe_csr1000v-1_console.txt b/mocked_devices/2-manual/reverted/snapshot/bgp_iosxe_csr1000v-1_console.txt new file mode 100644 index 0000000..c59b676 --- /dev/null +++ b/mocked_devices/2-manual/reverted/snapshot/bgp_iosxe_csr1000v-1_console.txt @@ -0,0 +1,306 @@ ++++ csr1000v-1: executing command 'show bgp summary' +++ +show bgp summary +% Command accepted but obsolete, unreleased or unsupported; see documentation. +BGP router identifier 10.1.1.1, local AS number 65000 +BGP table version is 167, main routing table version 167 +2 network entries using 496 bytes of memory +2 path entries using 272 bytes of memory +2/2 BGP path/bestpath attribute entries using 560 bytes of memory +0 BGP route-map cache entries using 0 bytes of memory +0 BGP filter-list cache entries using 0 bytes of memory +BGP using 1328 total bytes of memory +BGP activity 37/35 prefixes, 85/83 paths, scan interval 60 secs + +Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd +10.2.2.2 4 65000 5 5 167 0 0 00:00:14 1 +csr1000v-1# ++++ csr1000v-1: executing command 'show ip bgp template peer-session ' +++ +show ip bgp template peer-session +No templates configured + +csr1000v-1# ++++ csr1000v-1: executing command 'show ip bgp template peer-policy ' +++ +show ip bgp template peer-policy +No templates configured + +csr1000v-1# ++++ csr1000v-1: executing command 'show vrf detail | inc \(VRF' +++ +show vrf detail | inc \(VRF +csr1000v-1# ++++ csr1000v-1: executing command 'show bgp all cluster-ids' +++ +show bgp all cluster-ids +Global cluster-id: 10.1.1.1 (configured: 0.0.0.0) +BGP client-to-client reflection: Configured Used + all (inter-cluster and intra-cluster): ENABLED + intra-cluster: ENABLED ENABLED + +List of cluster-ids: +Cluster-id #-neighbors C2C-rfl-CFG C2C-rfl-USE +csr1000v-1# ++++ csr1000v-1: executing command 'show ip bgp all dampening parameters' +++ +show ip bgp all dampening parameters +For address family: IPv4 Unicast + +% dampening not enabled for base + +For address family: IPv6 Unicast + +% dampening not enabled for base + +For address family: IPv4 Multicast + +% dampening not enabled for base + +For address family: L2VPN E-VPN + +% dampening not enabled for base + +For address family: MVPNv4 Unicast + +% dampening not enabled for base + +For address family: MVPNv6 Unicast + +% dampening not enabled for base +csr1000v-1# ++++ csr1000v-1: executing command 'show bgp all neighbors' +++ +show bgp all neighbors +For address family: IPv4 Unicast +BGP neighbor is 10.2.2.2, remote AS 65000, internal link + BGP version 4, remote router ID 10.2.2.2 + BGP state = Established, up for 00:00:15 + Last read 00:00:14, last write 00:00:15, hold time is 180, keepalive interval is 60 seconds + Neighbor sessions: + 1 active, is not multisession capable (disabled) + Neighbor capabilities: + Route refresh: advertised and received(new) + Four-octets ASN Capability: advertised and received + Address family IPv4 Unicast: advertised and received + Graceful Restart Capability: received + Remote Restart timer is 120 seconds + Address families advertised by peer: + IPv4 Unicast (was not preserved + Enhanced Refresh Capability: advertised + Multisession Capability: + Stateful switchover support enabled: NO for session 1 + Message statistics: + InQ depth is 0 + OutQ depth is 0 + + Sent Rcvd + Opens: 1 1 + Notifications: 0 0 + Updates: 2 2 + Keepalives: 2 2 + Route Refresh: 0 0 + Total: 5 5 + Do log neighbor state changes (via global configuration) + Default minimum time between advertisement runs is 0 seconds + + Address tracking is enabled, the RIB does have a route to 10.2.2.2 + Route to peer address reachability Up: 2; Down: 0 + Last notification 5d06h + Connections established 83; dropped 82 + Last reset 00:03:36, due to Peer closed the session + Interface associated: (none) (peering address NOT in same link) + Transport(tcp) path-mtu-discovery is enabled + Graceful-Restart is disabled + SSO is disabled +Connection state is ESTAB, I/O status: 1, unread input bytes: 0 +Connection is ECN Disabled, Mininum incoming TTL 0, Outgoing TTL 255 +Local host: 10.1.1.1, Local port: 49386 +Foreign host: 10.2.2.2, Foreign port: 179 +Connection tableid (VRF): 0 +Maximum output segment queue size: 50 + +Enqueued packets for retransmit: 0, input: 0 mis-ordered: 0 (0 bytes) + +Event Timers (current time is 0x1B2BD6AA): +Timer Starts Wakeups Next +Retrans 3 0 0x0 +TimeWait 0 0 0x0 +AckHold 4 1 0x0 +SendWnd 0 0 0x0 +KeepAlive 0 0 0x0 +GiveUp 0 0 0x0 +PmtuAger 1 0 0x1B34C24F +DeadWait 0 0 0x0 +Linger 0 0 0x0 +ProcessQ 0 0 0x0 + +iss: 1682172090 snduna: 1682172265 sndnxt: 1682172265 +irs: 2459073059 rcvnxt: 2459073240 + +sndwnd: 16616 scale: 0 maxrcvwnd: 16384 +rcvwnd: 16204 scale: 0 delrcvwnd: 180 + +SRTT: 330 ms, RTTO: 3159 ms, RTV: 2829 ms, KRTT: 0 ms +minRTT: 2 ms, maxRTT: 1000 ms, ACK hold: 200 ms +uptime: 15389 ms, Sent idletime: 13924 ms, Receive idletime: 14124 ms +Status Flags: active open +Option Flags: nagle, path mtu capable +IP Precedence value : 6 + +Datagrams (max data segment is 536 bytes): +Rcvd: 6 (out of order: 0), with data: 3, total data bytes: 180 +Sent: 7 (retransmit: 0, fastretransmit: 0, partialack: 0, Second Congestion: 0), with data: 4, total data bytes: 174 + + Packets received in fast path: 0, fast processed: 0, slow path: 0 + fast lock acquisition failures: 0, slow path: 0 +TCP Semaphore 0x7F1ACED9D348 FREE + + +For address family: IPv6 Unicast + +For address family: IPv4 Multicast + +For address family: L2VPN E-VPN + +For address family: MVPNv4 Unicast + +For address family: MVPNv6 Unicast +csr1000v-1# ++++ csr1000v-1: executing command 'show bgp all neighbors 10.2.2.2 policy' +++ +show bgp all neighbors 10.2.2.2 policy + Neighbor: 10.2.2.2, Address-Family: IPv4 Unicast +csr1000v-1# ++++ csr1000v-1: executing command 'show bgp all' +++ +show bgp all +For address family: IPv4 Unicast + +BGP table version is 167, local router ID is 10.1.1.1 +Status codes: s suppressed, d damped, h history, * valid, > best, i - internal, + r RIB-failure, S Stale, m multipath, b backup-path, f RT-Filter, + x best-external, a additional-path, c RIB-compressed, + t secondary path, L long-lived-stale, +Origin codes: i - IGP, e - EGP, ? - incomplete +RPKI validation codes: V valid, I invalid, N Not found + + Network Next Hop Metric LocPrf Weight Path + *> 10.11.11.11/32 0.0.0.0 0 32768 i + *>i 10.22.22.22/32 10.2.2.2 100 0 i + +For address family: IPv6 Unicast + + +For address family: IPv4 Multicast + + +For address family: L2VPN E-VPN + + +For address family: MVPNv4 Unicast + + +For address family: MVPNv6 Unicast + +csr1000v-1# ++++ csr1000v-1: executing command 'show bgp all detail' +++ +show bgp all detail +For address family: IPv4 Unicast + +BGP routing table entry for 10.11.11.11/32, version 2 + Paths: (1 available, best #1, table default) + Advertised to update-groups: + 83 + Refresh Epoch 1 + Local + 0.0.0.0 from 0.0.0.0 (10.1.1.1) + Origin IGP, metric 0, localpref 100, weight 32768, valid, sourced, local, best + rx pathid: 0, tx pathid: 0x0 +BGP routing table entry for 10.22.22.22/32, version 167 + Paths: (1 available, best #1, table default) + Not advertised to any peer + Refresh Epoch 1 + Local + 10.2.2.2 (metric 2) from 10.2.2.2 (10.2.2.2) + Origin IGP, localpref 100, valid, internal, best + rx pathid: 0, tx pathid: 0x0 + +For address family: IPv6 Unicast + + +For address family: IPv4 Multicast + + +For address family: L2VPN E-VPN + + +For address family: MVPNv4 Unicast + + +For address family: MVPNv6 Unicast + +csr1000v-1# ++++ csr1000v-1: executing command 'show bgp all neighbors 10.2.2.2 advertised-routes' +++ +show bgp all neighbors 10.2.2.2 advertised-routes +For address family: IPv4 Unicast +BGP table version is 167, local router ID is 10.1.1.1 +Status codes: s suppressed, d damped, h history, * valid, > best, i - internal, + r RIB-failure, S Stale, m multipath, b backup-path, f RT-Filter, + x best-external, a additional-path, c RIB-compressed, + t secondary path, L long-lived-stale, +Origin codes: i - IGP, e - EGP, ? - incomplete +RPKI validation codes: V valid, I invalid, N Not found + + Network Next Hop Metric LocPrf Weight Path + *> 10.11.11.11/32 0.0.0.0 0 32768 i + +Total number of prefixes 1 +csr1000v-1# ++++ csr1000v-1: executing command 'show bgp all neighbors | i BGP neighbor' +++ +show bgp all neighbors | i BGP neighbor +BGP neighbor is 10.2.2.2, remote AS 65000, internal link +csr1000v-1# ++++ csr1000v-1: executing command 'show bgp all neighbors 10.2.2.2 routes' +++ +show bgp all neighbors 10.2.2.2 routes +For address family: IPv4 Unicast +BGP table version is 167, local router ID is 10.1.1.1 +Status codes: s suppressed, d damped, h history, * valid, > best, i - internal, + r RIB-failure, S Stale, m multipath, b backup-path, f RT-Filter, + x best-external, a additional-path, c RIB-compressed, + t secondary path, L long-lived-stale, +Origin codes: i - IGP, e - EGP, ? - incomplete +RPKI validation codes: V valid, I invalid, N Not found + + Network Next Hop Metric LocPrf Weight Path + *>i 10.22.22.22/32 10.2.2.2 100 0 i + +Total number of prefixes 1 +csr1000v-1# ++++ csr1000v-1: executing command 'show bgp all neighbors | i BGP neighbor' +++ +show bgp all neighbors | i BGP neighbor +BGP neighbor is 10.2.2.2, remote AS 65000, internal link +csr1000v-1# ++++ csr1000v-1: executing command 'show bgp all neighbors 10.2.2.2 received-routes' +++ +show bgp all neighbors 10.2.2.2 received-routes +For address family: IPv4 Unicast +% Inbound soft reconfiguration not enabled on 10.2.2.2 +csr1000v-1# ++++ csr1000v-1: executing command 'show bgp all neighbors | i BGP neighbor' +++ +show bgp all neighbors | i BGP neighbor +BGP neighbor is 10.2.2.2, remote AS 65000, internal link +csr1000v-1# +Could not learn +Parser Output is empty ++====================================================================================================================================================+ +| Commands for learning feature 'Bgp' | ++====================================================================================================================================================+ +| - Parsed commands | +|----------------------------------------------------------------------------------------------------------------------------------------------------| +| cmd: | +| cmd: | +| cmd: | +| cmd: | +| cmd: | +| cmd: , arguments: {'neighbor':'10.2.2.2'} | +| cmd: , arguments: {'neighbor':'10.2.2.2'} | +|====================================================================================================================================================| +| - Commands with empty output | +|----------------------------------------------------------------------------------------------------------------------------------------------------| +| cmd: | +| cmd: | +| cmd: | +| cmd: , arguments: {'neighbor':'10.2.2.2'} | +| cmd: , arguments: {'neighbor':'10.2.2.2'} | +|====================================================================================================================================================| diff --git a/mocked_devices/2-manual/reverted/snapshot/bgp_iosxe_csr1000v-1_ops.txt b/mocked_devices/2-manual/reverted/snapshot/bgp_iosxe_csr1000v-1_ops.txt new file mode 100644 index 0000000..2561bdf --- /dev/null +++ b/mocked_devices/2-manual/reverted/snapshot/bgp_iosxe_csr1000v-1_ops.txt @@ -0,0 +1,181 @@ +{ + "attributes": null, + "commands": null, + "connections": null, + "context_manager": {}, + "info": { + "instance": { + "default": { + "bgp_id": 65000, + "vrf": { + "default": { + "cluster_id": "10.1.1.1", + "neighbor": { + "10.2.2.2": { + "address_family": { + "": { + "bgp_table_version": 167, + "path": { + "memory_usage": 272, + "total_entries": 2 + }, + "prefixes": { + "memory_usage": 496, + "total_entries": 2 + }, + "routing_table_version": 167, + "total_memory": 1328 + } + }, + "bgp_negotiated_capabilities": { + "enhanced_refresh": "advertised", + "four_octets_asn": "advertised and received", + "graceful_restart": "received", + "route_refresh": "advertised and received(new)", + "stateful_switchover": "NO for session 1" + }, + "bgp_negotiated_keepalive_timers": { + "hold_time": 180, + "keepalive_interval": 60 + }, + "bgp_neighbor_counters": { + "messages": { + "received": { + "keepalives": 2, + "notifications": 0, + "opens": 1, + "updates": 2 + }, + "sent": { + "keepalives": 2, + "notifications": 0, + "opens": 1, + "updates": 2 + } + } + }, + "bgp_session_transport": { + "connection": { + "last_reset": "00:03:36", + "reset_reason": "Peer closed the session", + "state": "Established" + }, + "transport": { + "foreign_host": "10.2.2.2", + "foreign_port": "179", + "local_host": "10.1.1.1", + "local_port": "49386", + "mss": 536 + } + }, + "bgp_version": 4, + "remote_as": 65000, + "session_state": "Established", + "shutdown": false + } + } + } + } + } + } + }, + "routes_per_peer": { + "instance": { + "default": { + "vrf": { + "default": { + "neighbor": { + "10.2.2.2": { + "address_family": { + "": { + "input_queue": 0, + "msg_rcvd": 5, + "msg_sent": 5, + "output_queue": 0, + "state_pfxrcd": "1", + "tbl_ver": 167, + "up_down": "00:00:14" + }, + "ipv4 unicast": { + "advertised": { + "10.11.11.11/32": { + "index": { + "1": { + "localprf": 0, + "next_hop": "0.0.0.0", + "origin_codes": "i", + "status_codes": "*>", + "weight": 32768 + } + } + } + }, + "routes": { + "10.22.22.22/32": { + "index": { + "1": { + "localprf": 100, + "next_hop": "10.2.2.2", + "origin_codes": "i", + "status_codes": "*>", + "weight": 0 + } + } + } + } + } + }, + "remote_as": 65000 + } + } + } + } + } + } + }, + "table": { + "instance": { + "default": { + "vrf": { + "default": { + "address_family": { + "ipv4 unicast": { + "prefixes": { + "10.11.11.11/32": { + "index": { + "1": { + "gateway": "0.0.0.0", + "localpref": 100, + "metric": 0, + "next_hop": "0.0.0.0", + "origin_codes": "i", + "originator": "10.1.1.1", + "status_codes": "*>", + "weight": "32768" + } + }, + "table_version": "2" + }, + "10.22.22.22/32": { + "index": { + "1": { + "gateway": "10.2.2.2", + "localpref": 100, + "next_hop": "10.2.2.2", + "next_hop_igp_metric": "2", + "origin_codes": "i", + "originator": "10.2.2.2", + "status_codes": "*>" + } + }, + "table_version": "167" + } + } + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/mocked_devices/2-manual/reverted/snapshot/bgp_nxos_nx-osv-1_console.txt b/mocked_devices/2-manual/reverted/snapshot/bgp_nxos_nx-osv-1_console.txt new file mode 100644 index 0000000..b7a76b4 --- /dev/null +++ b/mocked_devices/2-manual/reverted/snapshot/bgp_nxos_nx-osv-1_console.txt @@ -0,0 +1,368 @@ ++++ nx-osv-1: executing command 'show bgp process vrf all' +++ +show bgp process vrf all + +BGP Process Information +BGP Process ID : 8610 +BGP Protocol Started, reason: : configuration +BGP Protocol Tag : 65000 +BGP Protocol State : Running +BGP MMODE : Not Initialized +BGP Memory State : OK +BGP asformat : asplain + +BGP attributes information +Number of attribute entries : 2 +HWM of attribute entries : 2 +Bytes used by entries : 200 +Entries pending delete : 0 +HWM of entries pending delete : 0 +BGP paths per attribute HWM : 1 +BGP AS path entries : 0 +Bytes used by AS path entries : 0 + +Information regarding configured VRFs: + +BGP Information for VRF default +VRF Id : 1 +VRF state : UP +Router-ID : 10.2.2.2 +Configured Router-ID : 10.2.2.2 +Confed-ID : 0 +Cluster-ID : 0.0.0.0 +No. of configured peers : 1 +No. of pending config peers : 0 +No. of established peers : 1 +VRF RD : Not configured + + Information for address family IPv4 Unicast in VRF default + Table Id : 1 + Table state : UP + Peers Active-peers Routes Paths Networks Aggregates + 1 1 2 2 1 0 + + Redistribution + None + + Wait for IGP convergence is not configured + + + Nexthop trigger-delay + critical 3000 ms + non-critical 10000 ms + + Information for address family IPv6 Unicast in VRF default + Table Id : 80000001 + Table state : UP + Peers Active-peers Routes Paths Networks Aggregates + 0 0 0 0 0 0 + + Redistribution + None + + Wait for IGP convergence is not configured + + + Nexthop trigger-delay + critical 3000 ms + non-critical 10000 ms + nx-osv-1# ++++ nx-osv-1: executing command 'show running-config | inc peer-session' +++ +show running-config | inc peer-session + nx-osv-1# ++++ nx-osv-1: executing command 'show running-config | inc peer-policy' +++ +show running-config | inc peer-policy + nx-osv-1# ++++ nx-osv-1: executing command 'show bgp vrf all all dampening parameters' +++ +show bgp vrf all all dampening parameters + nx-osv-1# ++++ nx-osv-1: executing command 'show bgp vrf all all nexthop-database' +++ +show bgp vrf all all nexthop-database + +Next Hop table for VRF default, address family IPv4 Unicast: +Next-hop trigger-delay(miliseconds) + Critical: 3000 Non-critical: 10000 +IPv4 Next-hop table + +Nexthop: 0.0.0.0, Flags: 0x2, Refcount: 1, IGP cost: 0 +IGP Route type: 0, IGP preference: 0 +Nexthop is not-attached local unreachable not-labeled +Nexthop last resolved: never, using 0.0.0.0/0 +Metric next advertise: Never +RNH epoch: 0 + +Nexthop: 10.1.1.1, Flags: 0x1, Refcount: 1, IGP cost: 41 +IGP Route type: 0, IGP preference: 110 +Attached nexthop: 10.0.2.1, Interface: Ethernet2/2 +Attached nexthop: 10.0.1.1, Interface: Ethernet2/1 +Nexthop is not-attached not-local reachable not-labeled +Nexthop last resolved: 00:00:12, using 10.1.1.1/32 +Metric next advertise: Never +RNH epoch: 1 +IPv6 Next-hop table + +Next Hop table for VRF default, address family IPv6 Unicast: +Next-hop trigger-delay(miliseconds) + Critical: 3000 Non-critical: 10000 +IPv4 Next-hop table +IPv6 Next-hop table + nx-osv-1# ++++ nx-osv-1: executing command 'show routing vrf all' +++ +show routing vrf all +IP Route Table for VRF "default" +'*' denotes best ucast next-hop +'**' denotes best mcast next-hop +'[x/y]' denotes [preference/metric] +'%' in via output denotes VRF + +10.0.1.0/24, ubest/mbest: 1/0, attached + *via 10.0.1.2, Eth2/1, [0/0], 2w5d, direct +10.0.1.2/32, ubest/mbest: 1/0, attached + *via 10.0.1.2, Eth2/1, [0/0], 2w5d, local +10.0.2.0/24, ubest/mbest: 1/0, attached + *via 10.0.2.2, Eth2/2, [0/0], 2w5d, direct +10.0.2.2/32, ubest/mbest: 1/0, attached + *via 10.0.2.2, Eth2/2, [0/0], 2w5d, local +10.1.1.1/32, ubest/mbest: 2/0 + *via 10.0.1.1, Eth2/1, [110/41], 5d06h, ospf-1, intra + *via 10.0.2.1, Eth2/2, [110/41], 5d06h, ospf-1, intra +10.2.2.2/32, ubest/mbest: 2/0, attached + *via 10.2.2.2, Lo0, [0/0], 2w5d, local + *via 10.2.2.2, Lo0, [0/0], 2w5d, direct +10.11.11.11/32, ubest/mbest: 1/0 + *via 10.1.1.1, [200/0], 00:00:15, bgp-65000, internal, tag 65000, +10.22.22.22/32, ubest/mbest: 2/0, attached + *via 10.22.22.22, Lo1, [0/0], 2w5d, local + *via 10.22.22.22, Lo1, [0/0], 2w5d, direct + nx-osv-1# ++++ nx-osv-1: executing command 'show bgp vrf all all' +++ +show bgp vrf all all +BGP routing table information for VRF default, address family IPv4 Unicast +BGP table version is 343, local router ID is 10.2.2.2 +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup + + Network Next Hop Metric LocPrf Weight Path +*>i10.11.11.11/32 10.1.1.1 0 100 0 i +*>l10.22.22.22/32 0.0.0.0 100 32768 i + + nx-osv-1# ++++ nx-osv-1: executing command 'show vrf' +++ +show vrf +VRF-Name VRF-ID State Reason +default 1 Up -- +management 2 Up -- + nx-osv-1# ++++ nx-osv-1: executing command 'show bgp vrf management all neighbors' +++ +show bgp vrf management all neighbors +Unknown vrf management + nx-osv-1# ++++ nx-osv-1: executing command 'show bgp vrf default all neighbors' +++ +show bgp vrf default all neighbors +BGP neighbor is 10.1.1.1, remote AS 65000, ibgp link, Peer index 1 + BGP version 4, remote router ID 10.1.1.1 + BGP state = Established, up for 00:00:15 + Using loopback0 as update source for this peer + Last read 00:00:15, hold time = 180, keepalive interval is 60 seconds + Last written 00:00:14, keepalive timer expiry due 00:00:45 + Received 31826 messages, 1 notifications, 0 bytes in queue + Sent 29084 messages, 103 notifications, 0 bytes in queue + Connections established 104, dropped 103 + Last reset by us 00:03:36, due to administratively shutdown + Last reset by peer never, due to No error + + Neighbor capabilities: + Dynamic capability: advertised (mp, refresh, gr) + Dynamic capability (old): advertised + Route refresh capability (new): advertised received + Route refresh capability (old): advertised received + 4-Byte AS capability: advertised received + Address family IPv4 Unicast: advertised received + Graceful Restart capability: advertised + + Graceful Restart Parameters: + Address families advertised to peer: + IPv4 Unicast + Address families received from peer: + Forwarding state preserved by peer for: + Restart time advertised to peer: 120 seconds + Stale time for routes advertised by peer: 300 seconds + Extended Next Hop Encoding Capability: advertised + + Message statistics: + Sent Rcvd + Opens: 105 104 + Notifications: 103 1 + Updates: 220 208 + Keepalives: 28656 31513 + Route Refresh: 0 0 + Capability: 0 0 + Total: 29084 31826 + Total bytes: 552415 604987 + Bytes in queue: 0 0 + + For address family: IPv4 Unicast + BGP table version 343, neighbor version 343 + 1 accepted paths consume 80 bytes of memory + 1 sent paths + Third-party Nexthop will not be computed. + + Local host: 10.2.2.2, Local port: 179 + Foreign host: 10.1.1.1, Foreign port: 49386 + fd = 60 + + nx-osv-1# ++++ nx-osv-1: executing command 'show bgp vrf all all summary' +++ +show bgp vrf all all summary +BGP summary information for VRF default, address family IPv4 Unicast +BGP router identifier 10.2.2.2, local AS number 65000 +BGP table version is 343, IPv4 Unicast config peers 1, capable peers 1 +2 network entries and 2 paths using 288 bytes of memory +BGP attribute entries [2/288], BGP AS path entries [0/0] +BGP community entries [0/0], BGP clusterlist entries [0/0] + +Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd +10.1.1.1 4 65000 31826 29084 343 0 0 00:00:16 1 + +BGP summary information for VRF default, address family IPv6 Unicast + nx-osv-1# ++++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 advertised-routes' +++ +show bgp vrf default all neighbors 10.1.1.1 advertised-routes + +Peer 10.1.1.1 routes for address family IPv4 Unicast: +BGP table version is 343, local router ID is 10.2.2.2 +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup + + Network Next Hop Metric LocPrf Weight Path +*>l10.22.22.22/32 0.0.0.0 100 32768 i + + +Peer 10.1.1.1 routes for address family IPv4 Multicast: + +Peer 10.1.1.1 routes for address family IPv6 Unicast: +BGP table version is 2, local router ID is 10.2.2.2 +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup + + Network Next Hop Metric LocPrf Weight Path + +Peer 10.1.1.1 routes for address family IPv6 Multicast: + +Peer 10.1.1.1 routes for address family VPNv4 Unicast: + +Peer 10.1.1.1 routes for address family VPNv6 Unicast: + +Peer 10.1.1.1 routes for address family IPv4 MDT: + +Peer 10.1.1.1 routes for address family IPv6 Label Unicast: + +Peer 10.1.1.1 routes for address family L2VPN VPLS: + +Peer 10.1.1.1 routes for address family IPv4 MVPN: + +Peer 10.1.1.1 routes for address family IPv6 MVPN: + +Peer 10.1.1.1 routes for address family IPv4 Label Unicast: + +Peer 10.1.1.1 routes for address family L2VPN EVPN: + nx-osv-1# ++++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 routes' +++ +show bgp vrf default all neighbors 10.1.1.1 routes + +Peer 10.1.1.1 routes for address family IPv4 Unicast: +BGP table version is 343, local router ID is 10.2.2.2 +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup + + Network Next Hop Metric LocPrf Weight Path +*>i10.11.11.11/32 10.1.1.1 0 100 0 i + + +Peer 10.1.1.1 routes for address family IPv4 Multicast: + +Peer 10.1.1.1 routes for address family IPv6 Unicast: +BGP table version is 2, local router ID is 10.2.2.2 +Status: s-suppressed, x-deleted, S-stale, d-dampened, h-history, *-valid, >-best +Path type: i-internal, e-external, c-confed, l-local, a-aggregate, r-redist, I-injected +Origin codes: i - IGP, e - EGP, ? - incomplete, | - multipath, & - backup + + Network Next Hop Metric LocPrf Weight Path + +Peer 10.1.1.1 routes for address family IPv6 Multicast: + +Peer 10.1.1.1 routes for address family VPNv4 Unicast: + +Peer 10.1.1.1 routes for address family VPNv6 Unicast: + +Peer 10.1.1.1 routes for address family IPv4 MDT: + +Peer 10.1.1.1 routes for address family IPv6 Label Unicast: + +Peer 10.1.1.1 routes for address family L2VPN VPLS: + +Peer 10.1.1.1 routes for address family IPv4 MVPN: + +Peer 10.1.1.1 routes for address family IPv6 MVPN: + +Peer 10.1.1.1 routes for address family IPv4 Label Unicast: + +Peer 10.1.1.1 routes for address family L2VPN EVPN: + nx-osv-1# ++++ nx-osv-1: executing command 'show bgp vrf default all neighbors 10.1.1.1 received-routes' +++ +show bgp vrf default all neighbors 10.1.1.1 received-routes + +Inbound soft reconfiguration for IPv4 Unicast not enabled on 10.1.1.1 + +Inbound soft reconfiguration for IPv4 Multicast not enabled on 10.1.1.1 + +Inbound soft reconfiguration for IPv6 Unicast not enabled on 10.1.1.1 + +Inbound soft reconfiguration for IPv6 Multicast not enabled on 10.1.1.1 + +Inbound soft reconfiguration for VPNv4 Unicast not enabled on 10.1.1.1 + +Inbound soft reconfiguration for VPNv6 Unicast not enabled on 10.1.1.1 + +Inbound soft reconfiguration for IPv4 MDT not enabled on 10.1.1.1 + +Inbound soft reconfiguration for IPv6 Label Unicast not enabled on 10.1.1.1 + +Inbound soft reconfiguration for L2VPN VPLS not enabled on 10.1.1.1 + +Inbound soft reconfiguration for IPv4 MVPN not enabled on 10.1.1.1 + +Inbound soft reconfiguration for IPv6 MVPN not enabled on 10.1.1.1 + +Inbound soft reconfiguration for IPv4 Label Unicast not enabled on 10.1.1.1 + +Inbound soft reconfiguration for L2VPN EVPN not enabled on 10.1.1.1 + nx-osv-1# +Could not learn +Parser Output is empty ++====================================================================================================================================================+ +| Commands for learning feature 'Bgp' | ++====================================================================================================================================================+ +| - Parsed commands | +|----------------------------------------------------------------------------------------------------------------------------------------------------| +| cmd: | +| cmd: | +| cmd: | +| cmd: | +| cmd: | +| cmd: , arguments: {'vrf':'default'} | +| cmd: | +| cmd: , arguments: {'neighbor':'10.1.1.1','vrf':'default'} | +| cmd: , arguments: {'neighbor':'10.1.1.1','vrf':'default'} | +|====================================================================================================================================================| +| - Commands with empty output | +|----------------------------------------------------------------------------------------------------------------------------------------------------| +| cmd: | +| cmd: | +| cmd: | +| cmd: , arguments: {'vrf':'management'} | +| cmd: , arguments: {'neighbor':'10.1.1.1','vrf':'default'} | +|====================================================================================================================================================| diff --git a/mocked_devices/2-manual/reverted/snapshot/bgp_nxos_nx-osv-1_ops.txt b/mocked_devices/2-manual/reverted/snapshot/bgp_nxos_nx-osv-1_ops.txt new file mode 100644 index 0000000..a8154c1 --- /dev/null +++ b/mocked_devices/2-manual/reverted/snapshot/bgp_nxos_nx-osv-1_ops.txt @@ -0,0 +1,202 @@ +{ + "attributes": null, + "commands": null, + "connections": null, + "context_manager": {}, + "info": { + "instance": { + "default": { + "bgp_id": 65000, + "protocol_state": "running", + "vrf": { + "default": { + "address_family": { + "ipv4 unicast": { + "distance_internal_as": 200, + "nexthop_trigger_delay_critical": 3000, + "nexthop_trigger_delay_non_critical": 10000, + "nexthop_trigger_enable": true + }, + "ipv6 unicast": { + "nexthop_trigger_delay_critical": 3000, + "nexthop_trigger_delay_non_critical": 10000, + "nexthop_trigger_enable": true + } + }, + "cluster_id": "0.0.0.0", + "confederation_identifier": 0, + "neighbor": { + "10.1.1.1": { + "address_family": { + "ipv4 unicast": { + "bgp_table_version": 343, + "session_state": "established" + } + }, + "bgp_negotiated_capabilities": { + "dynamic_capability": "advertised (mp, refresh, gr)", + "dynamic_capability_old": "advertised", + "graceful_restart": "advertised", + "route_refresh": "advertised received", + "route_refresh_old": "advertised received" + }, + "bgp_negotiated_keepalive_timers": { + "hold_time": 180, + "keepalive_interval": 60 + }, + "bgp_neighbor_counters": { + "messages": { + "received": { + "bytes_in_queue": 0, + "capability": 0, + "keepalives": 31513, + "notifications": 1, + "opens": 104, + "route_refresh": 0, + "total": 31826, + "total_bytes": 604987, + "updates": 208 + }, + "sent": { + "bytes_in_queue": 0, + "capability": 0, + "keepalives": 28656, + "notifications": 103, + "opens": 105, + "route_refresh": 0, + "total": 29084, + "total_bytes": 552415, + "updates": 220 + } + } + }, + "bgp_session_transport": { + "connection": { + "last_reset": "never", + "reset_reason": "no error", + "state": "established" + }, + "transport": { + "foreign_host": "10.1.1.1", + "foreign_port": "49386", + "local_host": "10.2.2.2", + "local_port": "179" + } + }, + "bgp_version": 4, + "holdtime": 180, + "keepalive_interval": 60, + "local_as_as_no": "None", + "remote_as": 65000, + "session_state": "established", + "shutdown": false, + "up_time": "00:00:15", + "update_source": "loopback0" + } + }, + "router_id": "10.2.2.2" + } + } + } + } + }, + "routes_per_peer": { + "instance": { + "default": { + "vrf": { + "default": { + "neighbor": { + "10.1.1.1": { + "address_family": { + "ipv4 unicast": { + "advertised": { + "10.22.22.22/32": { + "index": { + "1": { + "locprf": 100, + "next_hop": "0.0.0.0", + "origin_codes": "i", + "path_type": "l", + "status_codes": "*>", + "weight": 32768 + } + } + } + }, + "input_queue": 0, + "msg_rcvd": 31826, + "msg_sent": 29084, + "output_queue": 0, + "routes": { + "10.11.11.11/32": { + "index": { + "1": { + "locprf": 100, + "metric": 0, + "next_hop": "10.1.1.1", + "origin_codes": "i", + "path_type": "i", + "status_codes": "*>", + "weight": 0 + } + } + } + }, + "state_pfxrcd": "1", + "tbl_ver": 343, + "up_down": "00:00:16" + }, + "ipv6 unicast": { + "advertised": {}, + "routes": {} + } + }, + "remote_as": 65000 + } + } + } + } + } + } + }, + "table": { + "instance": { + "default": { + "vrf": { + "default": { + "address_family": { + "ipv4 unicast": { + "bgp_table_version": 343, + "prefixes": { + "10.11.11.11/32": { + "index": { + "1": { + "localpref": 100, + "metric": 0, + "next_hop": "10.1.1.1", + "origin_codes": "i", + "status_codes": "*>", + "weight": 0 + } + } + }, + "10.22.22.22/32": { + "index": { + "1": { + "localpref": 100, + "next_hop": "0.0.0.0", + "origin_codes": "i", + "status_codes": "*>", + "weight": 32768 + } + } + } + } + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/mocked_devices/2-manual/reverted/snapshot/connection_csr1000v-1.txt b/mocked_devices/2-manual/reverted/snapshot/connection_csr1000v-1.txt new file mode 100644 index 0000000..4118ed7 --- /dev/null +++ b/mocked_devices/2-manual/reverted/snapshot/connection_csr1000v-1.txt @@ -0,0 +1,84 @@ +[2019-04-28 16:25:32,547] +++ csr1000v-1 logfile snapshot/connection_csr1000v-1.txt +++ +[2019-04-28 16:25:32,547] +++ Unicon plugin iosxe +++ +[2019-04-28 16:25:32,552] +++ connection to spawn: telnet 172.25.192.90 17000, id: 4644787256 +++ +[2019-04-28 16:25:32,554] connection to csr1000v-1 +Trying 172.25.192.90... +Connected to asg-virl-ubuntu.cisco.com. +Escape character is '^]'. + +csr1000v-1# +[2019-04-28 16:25:33,318] +++ initializing handle +++ +[2019-04-28 16:25:33,319] +++ csr1000v-1: executing command 'term length 0' +++ +term length 0 +csr1000v-1# +[2019-04-28 16:25:33,530] +++ csr1000v-1: executing command 'term width 0' +++ +term width 0 +csr1000v-1# +[2019-04-28 16:25:33,648] +++ csr1000v-1: executing command 'show version' +++ +show version +Cisco IOS XE Software, Version 16.09.01 +Cisco IOS Software [Fuji], Virtual XE Software (X86_64_LINUX_IOSD-UNIVERSALK9-M), Version 16.9.1, RELEASE SOFTWARE (fc2) +Technical Support: http://www.cisco.com/techsupport +Copyright (c) 1986-2018 by Cisco Systems, Inc. +Compiled Tue 17-Jul-18 16:57 by mcpre + + +Cisco IOS-XE software, Copyright (c) 2005-2018 by cisco Systems, Inc. +All rights reserved. Certain components of Cisco IOS-XE software are +licensed under the GNU General Public License ("GPL") Version 2.0. The +software code licensed under GPL Version 2.0 is free software that comes +with ABSOLUTELY NO WARRANTY. You can redistribute and/or modify such +GPL code under the terms of GPL Version 2.0. For more details, see the +documentation or "License Notice" file accompanying the IOS-XE software, +or the applicable URL provided on the flyer accompanying the IOS-XE +software. + + +ROM: IOS-XE ROMMON + +csr1000v-1 uptime is 5 days, 6 hours, 28 minutes +Uptime for this control processor is 5 days, 6 hours, 37 minutes +System returned to ROM by reload +System image file is "bootflash:packages.conf" +Last reload reason: Critical software exception, check bootflash:crashinfo_RP_00_00_20190423-163950-UTC + + + +This product contains cryptographic features and is subject to United +States and local country laws governing import, export, transfer and +use. Delivery of Cisco cryptographic products does not imply +third-party authority to import, export, distribute or use encryption. +Importers, exporters, distributors and users are responsible for +compliance with U.S. and local country laws. By using this product you +agree to comply with applicable laws and regulations. If you are unable +to comply with U.S. and local laws, return this product immediately. + +A summary of U.S. laws governing Cisco cryptographic products may be found at: +http://www.cisco.com/wwl/export/crypto/tool/stqrg.html + +If you require further assistance please contact us by sending email to +export@cisco.com. + +License Level: ax +License Type: Default. No valid license found. +Next reload license Level: ax + +cisco CSR1000V (VXE) processor (revision VXE) with 1217428K/3075K bytes of memory. +Processor board ID 9P34NU3ZQ4L +3 Gigabit Ethernet interfaces +32768K bytes of non-volatile configuration memory. +3018864K bytes of physical memory. +7774207K bytes of virtual hard disk at bootflash:. +0K bytes of WebUI ODM Files at webui:. + +Configuration register is 0x2102 + +csr1000v-1# +[2019-04-28 16:25:33,773] +++ csr1000v-1: config +++ +config term +Enter configuration commands, one per line. End with CNTL/Z. +csr1000v-1(config)#no logging console +csr1000v-1(config)#line console 0 +csr1000v-1(config-line)#exec-timeout 0 +csr1000v-1(config-line)#end +csr1000v-1# diff --git a/mocked_devices/2-manual/reverted/snapshot/connection_nx-osv-1.txt b/mocked_devices/2-manual/reverted/snapshot/connection_nx-osv-1.txt new file mode 100644 index 0000000..6caaf12 --- /dev/null +++ b/mocked_devices/2-manual/reverted/snapshot/connection_nx-osv-1.txt @@ -0,0 +1,30 @@ +[2019-04-28 16:25:34,326] +++ nx-osv-1 logfile snapshot/connection_nx-osv-1.txt +++ +[2019-04-28 16:25:34,327] +++ Unicon plugin nxos +++ +[2019-04-28 16:25:34,331] +++ connection to spawn: telnet 172.25.192.90 17002, id: 4651200240 +++ +[2019-04-28 16:25:34,333] connection to nx-osv-1 +Trying 172.25.192.90... +Connected to asg-virl-ubuntu.cisco.com. +Escape character is '^]'. + + nx-osv-1(config-router)# +[2019-04-28 16:25:35,071] +++ initializing handle +++ +end + nx-osv-1# +[2019-04-28 16:25:35,186] +++ nx-osv-1: executing command 'term length 0' +++ +term length 0 + nx-osv-1# +[2019-04-28 16:25:35,299] +++ nx-osv-1: executing command 'term width 511' +++ +term width 511 + nx-osv-1# +[2019-04-28 16:25:35,405] +++ nx-osv-1: executing command 'terminal session-timeout 0' +++ +terminal session-timeout 0 + nx-osv-1# +[2019-04-28 16:25:35,518] +++ nx-osv-1: config +++ +config term +Enter configuration commands, one per line. End with CNTL/Z. + nx-osv-1(config)# no logging console + nx-osv-1(config)# line console + nx-osv-1(config-console)# exec-timeout 0 + nx-osv-1(config-console)# terminal width 511 + nx-osv-1(config-console)# end + nx-osv-1# diff --git a/mocked_devices/2-manual/reverted/snapshot/interface_iosxe_csr1000v-1_console.txt b/mocked_devices/2-manual/reverted/snapshot/interface_iosxe_csr1000v-1_console.txt new file mode 100644 index 0000000..40952eb --- /dev/null +++ b/mocked_devices/2-manual/reverted/snapshot/interface_iosxe_csr1000v-1_console.txt @@ -0,0 +1,389 @@ ++++ csr1000v-1: executing command 'show interfaces' +++ +show interfaces +GigabitEthernet1 is up, line protocol is up + Hardware is CSR vNIC, address is 5e00.0000.0000 (bia 5e00.0000.0000) + Internet address is 10.255.8.122/16 + MTU 1500 bytes, BW 1000000 Kbit/sec, DLY 10 usec, + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, loopback not set + Keepalive set (10 sec) + Full Duplex, 1000Mbps, link type is auto, media type is Virtual + output flow-control is unsupported, input flow-control is unsupported + ARP type: ARPA, ARP Timeout 04:00:00 + Last input 00:00:15, output 00:04:08, output hang never + Last clearing of "show interface" counters never + Input queue: 0/375/0/0 (size/max/drops/flushes); Total output drops: 0 + Queueing strategy: fifo + Output queue: 0/40 (size/max) + 5 minute input rate 0 bits/sec, 0 packets/sec + 5 minute output rate 0 bits/sec, 0 packets/sec + 226339 packets input, 16099382 bytes, 0 no buffer + Received 0 broadcasts (0 IP multicasts) + 0 runts, 0 giants, 0 throttles + 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored + 0 watchdog, 0 multicast, 0 pause input + 82947 packets output, 7473190 bytes, 0 underruns + 0 output errors, 0 collisions, 0 interface resets + 15171 unknown protocol drops + 0 babbles, 0 late collision, 0 deferred + 0 lost carrier, 0 no carrier, 0 pause output + 0 output buffer failures, 0 output buffers swapped out +GigabitEthernet2 is up, line protocol is up + Hardware is CSR vNIC, address is fa16.3ebe.e48e (bia fa16.3ebe.e48e) + Internet address is 10.0.1.1/24 + MTU 1500 bytes, BW 1000000 Kbit/sec, DLY 10 usec, + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, loopback not set + Keepalive set (10 sec) + Full Duplex, 1000Mbps, link type is auto, media type is Virtual + output flow-control is unsupported, input flow-control is unsupported + ARP type: ARPA, ARP Timeout 04:00:00 + Last input 00:00:03, output 00:00:08, output hang never + Last clearing of "show interface" counters never + Input queue: 0/375/0/0 (size/max/drops/flushes); Total output drops: 0 + Queueing strategy: fifo + Output queue: 0/40 (size/max) + 5 minute input rate 0 bits/sec, 0 packets/sec + 5 minute output rate 0 bits/sec, 0 packets/sec + 82713 packets input, 7361789 bytes, 0 no buffer + Received 0 broadcasts (0 IP multicasts) + 0 runts, 0 giants, 0 throttles + 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored + 0 watchdog, 0 multicast, 0 pause input + 67751 packets output, 6749122 bytes, 0 underruns + 0 output errors, 0 collisions, 0 interface resets + 7586 unknown protocol drops + 0 babbles, 0 late collision, 0 deferred + 0 lost carrier, 0 no carrier, 0 pause output + 0 output buffer failures, 0 output buffers swapped out +GigabitEthernet3 is up, line protocol is up + Hardware is CSR vNIC, address is fa16.3e07.71e5 (bia fa16.3e07.71e5) + Internet address is 10.0.2.1/24 + MTU 1500 bytes, BW 1000000 Kbit/sec, DLY 10 usec, + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, loopback not set + Keepalive set (10 sec) + Full Duplex, 1000Mbps, link type is auto, media type is Virtual + output flow-control is unsupported, input flow-control is unsupported + ARP type: ARPA, ARP Timeout 04:00:00 + Last input 00:00:02, output 00:00:05, output hang never + Last clearing of "show interface" counters never + Input queue: 0/375/0/0 (size/max/drops/flushes); Total output drops: 0 + Queueing strategy: fifo + Output queue: 0/40 (size/max) + 5 minute input rate 0 bits/sec, 0 packets/sec + 5 minute output rate 0 bits/sec, 0 packets/sec + 60355 packets input, 5993573 bytes, 0 no buffer + Received 0 broadcasts (0 IP multicasts) + 0 runts, 0 giants, 0 throttles + 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored + 0 watchdog, 0 multicast, 0 pause input + 90279 packets output, 8199805 bytes, 0 underruns + 0 output errors, 0 collisions, 0 interface resets + 7586 unknown protocol drops + 0 babbles, 0 late collision, 0 deferred + 0 lost carrier, 0 no carrier, 0 pause output + 0 output buffer failures, 0 output buffers swapped out +Loopback0 is up, line protocol is up + Hardware is Loopback + Internet address is 10.1.1.1/32 + MTU 1514 bytes, BW 8000000 Kbit/sec, DLY 5000 usec, + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation LOOPBACK, loopback not set + Keepalive set (10 sec) + Last input 00:04:08, output never, output hang never + Last clearing of "show interface" counters never + Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0 + Queueing strategy: fifo + Output queue: 0/0 (size/max) + 5 minute input rate 0 bits/sec, 0 packets/sec + 5 minute output rate 0 bits/sec, 0 packets/sec + 0 packets input, 0 bytes, 0 no buffer + Received 0 broadcasts (0 IP multicasts) + 0 runts, 0 giants, 0 throttles + 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored, 0 abort + 16368 packets output, 822492 bytes, 0 underruns + 0 output errors, 0 collisions, 0 interface resets + 0 unknown protocol drops + 0 output buffer failures, 0 output buffers swapped out +Loopback1 is up, line protocol is up + Hardware is Loopback + Internet address is 10.11.11.11/32 + MTU 1514 bytes, BW 8000000 Kbit/sec, DLY 5000 usec, + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation LOOPBACK, loopback not set + Keepalive set (10 sec) + Last input 00:04:08, output never, output hang never + Last clearing of "show interface" counters never + Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0 + Queueing strategy: fifo + Output queue: 0/0 (size/max) + 5 minute input rate 0 bits/sec, 0 packets/sec + 5 minute output rate 0 bits/sec, 0 packets/sec + 0 packets input, 0 bytes, 0 no buffer + Received 0 broadcasts (0 IP multicasts) + 0 runts, 0 giants, 0 throttles + 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored, 0 abort + 16368 packets output, 822492 bytes, 0 underruns + 0 output errors, 0 collisions, 0 interface resets + 0 unknown protocol drops + 0 output buffer failures, 0 output buffers swapped out +csr1000v-1# ++++ csr1000v-1: executing command 'show vrf detail' +++ +show vrf detail +csr1000v-1# ++++ csr1000v-1: executing command 'show interfaces accounting' +++ +show interfaces accounting +GigabitEthernet1 + Protocol Pkts In Chars In Pkts Out Chars Out + Other 160817 11931072 2797 167820 + IP 96450 8361603 80150 7305370 + ARP 130475 5528910 2797 167820 + IPv6 22 1836 0 0 +GigabitEthernet2 + Protocol Pkts In Chars In Pkts Out Chars Out + Other 15203 3294184 2758 165480 + IP 75029 5707290 64993 6583642 + ARP 31 1860 2758 165480 +GigabitEthernet3 + Protocol Pkts In Chars In Pkts Out Chars Out + Other 15202 3294124 2757 165420 + IP 52672 4339134 87523 8034499 + ARP 30 1800 2757 165420 +Loopback0 + Protocol Pkts In Chars In Pkts Out Chars Out + IP 16368 822492 16368 822492 +Loopback1 + Protocol Pkts In Chars In Pkts Out Chars Out + IP 16368 822492 16368 822492 +csr1000v-1# ++++ csr1000v-1: executing command 'show ip interface' +++ +show ip interface +GigabitEthernet1 is up, line protocol is up + Internet address is 10.255.8.122/16 + Broadcast address is 255.255.255.255 + Address determined by DHCP + MTU is 1500 bytes + Helper address is not set + Directed broadcast forwarding is disabled + Outgoing Common access list is not set + Outgoing access list is not set + Inbound Common access list is not set + Inbound access list is not set + Proxy ARP is enabled + Local Proxy ARP is disabled + Security level is default + Split horizon is enabled + ICMP redirects are always sent + ICMP unreachables are always sent + ICMP mask replies are never sent + IP fast switching is enabled + IP Flow switching is disabled + IP CEF switching is enabled + IP CEF switching turbo vector + IP Null turbo vector + Associated unicast routing topologies: + Topology "base", operation state is UP + IP multicast fast switching is enabled + IP multicast distributed fast switching is disabled + IP route-cache flags are Fast, CEF + Router Discovery is disabled + IP output packet accounting is disabled + IP access violation accounting is disabled + TCP/IP header compression is disabled + RTP/IP header compression is disabled + Probe proxy name replies are disabled + Policy routing is disabled + Network address translation is disabled + BGP Policy Mapping is disabled + Input features: MCI Check + IPv4 WCCP Redirect outbound is disabled + IPv4 WCCP Redirect inbound is disabled + IPv4 WCCP Redirect exclude is disabled +GigabitEthernet2 is up, line protocol is up + Internet address is 10.0.1.1/24 + Broadcast address is 255.255.255.255 + Address determined by non-volatile memory + MTU is 1500 bytes + Helper address is not set + Directed broadcast forwarding is disabled + Multicast reserved groups joined: 224.0.0.5 224.0.0.6 + Outgoing Common access list is not set + Outgoing access list is not set + Inbound Common access list is not set + Inbound access list is not set + Proxy ARP is enabled + Local Proxy ARP is disabled + Security level is default + Split horizon is enabled + ICMP redirects are always sent + ICMP unreachables are always sent + ICMP mask replies are never sent + IP fast switching is enabled + IP Flow switching is disabled + IP CEF switching is enabled + IP CEF switching turbo vector + IP Null turbo vector + Associated unicast routing topologies: + Topology "base", operation state is UP + IP multicast fast switching is enabled + IP multicast distributed fast switching is disabled + IP route-cache flags are Fast, CEF + Router Discovery is disabled + IP output packet accounting is disabled + IP access violation accounting is disabled + TCP/IP header compression is disabled + RTP/IP header compression is disabled + Probe proxy name replies are disabled + Policy routing is disabled + Network address translation is disabled + BGP Policy Mapping is disabled + Input features: MCI Check + IPv4 WCCP Redirect outbound is disabled + IPv4 WCCP Redirect inbound is disabled + IPv4 WCCP Redirect exclude is disabled +GigabitEthernet3 is up, line protocol is up + Internet address is 10.0.2.1/24 + Broadcast address is 255.255.255.255 + Address determined by non-volatile memory + MTU is 1500 bytes + Helper address is not set + Directed broadcast forwarding is disabled + Multicast reserved groups joined: 224.0.0.5 224.0.0.6 + Outgoing Common access list is not set + Outgoing access list is not set + Inbound Common access list is not set + Inbound access list is not set + Proxy ARP is enabled + Local Proxy ARP is disabled + Security level is default + Split horizon is enabled + ICMP redirects are always sent + ICMP unreachables are always sent + ICMP mask replies are never sent + IP fast switching is enabled + IP Flow switching is disabled + IP CEF switching is enabled + IP CEF switching turbo vector + IP Null turbo vector + Associated unicast routing topologies: + Topology "base", operation state is UP + IP multicast fast switching is enabled + IP multicast distributed fast switching is disabled + IP route-cache flags are Fast, CEF + Router Discovery is disabled + IP output packet accounting is disabled + IP access violation accounting is disabled + TCP/IP header compression is disabled + RTP/IP header compression is disabled + Probe proxy name replies are disabled + Policy routing is disabled + Network address translation is disabled + BGP Policy Mapping is disabled + Input features: MCI Check + IPv4 WCCP Redirect outbound is disabled + IPv4 WCCP Redirect inbound is disabled + IPv4 WCCP Redirect exclude is disabled +Loopback0 is up, line protocol is up + Internet address is 10.1.1.1/32 + Broadcast address is 255.255.255.255 + Address determined by non-volatile memory + MTU is 1514 bytes + Helper address is not set + Directed broadcast forwarding is disabled + Multicast reserved groups joined: 224.0.0.5 + Outgoing Common access list is not set + Outgoing access list is not set + Inbound Common access list is not set + Inbound access list is not set + Proxy ARP is enabled + Local Proxy ARP is disabled + Security level is default + Split horizon is enabled + ICMP redirects are always sent + ICMP unreachables are always sent + ICMP mask replies are never sent + IP fast switching is enabled + IP Flow switching is disabled + IP CEF switching is enabled + IP CEF switching turbo vector + IP Null turbo vector + Associated unicast routing topologies: + Topology "base", operation state is UP + IP multicast fast switching is enabled + IP multicast distributed fast switching is disabled + IP route-cache flags are Fast, CEF + Router Discovery is disabled + IP output packet accounting is disabled + IP access violation accounting is disabled + TCP/IP header compression is disabled + RTP/IP header compression is disabled + Probe proxy name replies are disabled + Policy routing is disabled + Network address translation is disabled + BGP Policy Mapping is disabled + Input features: MCI Check + IPv4 WCCP Redirect outbound is disabled + IPv4 WCCP Redirect inbound is disabled + IPv4 WCCP Redirect exclude is disabled +Loopback1 is up, line protocol is up + Internet address is 10.11.11.11/32 + Broadcast address is 255.255.255.255 + Address determined by non-volatile memory + MTU is 1514 bytes + Helper address is not set + Directed broadcast forwarding is disabled + Outgoing Common access list is not set + Outgoing access list is not set + Inbound Common access list is not set + Inbound access list is not set + Proxy ARP is enabled + Local Proxy ARP is disabled + Security level is default + Split horizon is enabled + ICMP redirects are always sent + ICMP unreachables are always sent + ICMP mask replies are never sent + IP fast switching is enabled + IP Flow switching is disabled + IP CEF switching is enabled + IP CEF switching turbo vector + IP Null turbo vector + Associated unicast routing topologies: + Topology "base", operation state is UP + IP multicast fast switching is enabled + IP multicast distributed fast switching is disabled + IP route-cache flags are Fast, CEF + Router Discovery is disabled + IP output packet accounting is disabled + IP access violation accounting is disabled + TCP/IP header compression is disabled + RTP/IP header compression is disabled + Probe proxy name replies are disabled + Policy routing is disabled + Network address translation is disabled + BGP Policy Mapping is disabled + Input features: MCI Check + IPv4 WCCP Redirect outbound is disabled + IPv4 WCCP Redirect inbound is disabled + IPv4 WCCP Redirect exclude is disabled +csr1000v-1# ++++ csr1000v-1: executing command 'show ipv6 interface' +++ +show ipv6 interface +csr1000v-1# +Could not learn +Parser Output is empty ++====================================================================================================================================================+ +| Commands for learning feature 'Interface' | ++====================================================================================================================================================+ +| - Parsed commands | +|----------------------------------------------------------------------------------------------------------------------------------------------------| +| cmd: | +| cmd: | +| cmd: | +|====================================================================================================================================================| +| - Commands with empty output | +|----------------------------------------------------------------------------------------------------------------------------------------------------| +| cmd: | +| cmd: | +|====================================================================================================================================================| diff --git a/mocked_devices/2-manual/reverted/snapshot/interface_iosxe_csr1000v-1_ops.txt b/mocked_devices/2-manual/reverted/snapshot/interface_iosxe_csr1000v-1_ops.txt new file mode 100644 index 0000000..b7d9ad7 --- /dev/null +++ b/mocked_devices/2-manual/reverted/snapshot/interface_iosxe_csr1000v-1_ops.txt @@ -0,0 +1,328 @@ +{ + "attributes": null, + "commands": null, + "connections": null, + "context_manager": {}, + "info": { + "GigabitEthernet1": { + "accounting": { + "arp": { + "chars_in": 5528910, + "chars_out": 167820, + "pkts_in": 130475, + "pkts_out": 2797 + }, + "ip": { + "chars_in": 8361603, + "chars_out": 7305370, + "pkts_in": 96450, + "pkts_out": 80150 + }, + "ipv6": { + "chars_in": 1836, + "chars_out": 0, + "pkts_in": 22, + "pkts_out": 0 + }, + "other": { + "chars_in": 11931072, + "chars_out": 167820, + "pkts_in": 160817, + "pkts_out": 2797 + } + }, + "auto_negotiate": true, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 16099382, + "in_pkts": 226339, + "last_clear": "never", + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_octets": 7473190, + "out_pkts": 82947, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 300, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "duplex_mode": "full", + "enabled": true, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "ipv4": { + "10.255.8.122/16": { + "ip": "10.255.8.122", + "prefix_length": "16", + "secondary": false + } + }, + "mac_address": "5e00.0000.0000", + "mtu": 1500, + "oper_status": "up", + "phys_address": "5e00.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "port_speed": "1000", + "switchport_enable": false, + "type": "CSR vNIC" + }, + "GigabitEthernet2": { + "accounting": { + "arp": { + "chars_in": 1860, + "chars_out": 165480, + "pkts_in": 31, + "pkts_out": 2758 + }, + "ip": { + "chars_in": 5707290, + "chars_out": 6583642, + "pkts_in": 75029, + "pkts_out": 64993 + }, + "other": { + "chars_in": 3294184, + "chars_out": 165480, + "pkts_in": 15203, + "pkts_out": 2758 + } + }, + "auto_negotiate": true, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 7361789, + "in_pkts": 82713, + "last_clear": "never", + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_octets": 6749122, + "out_pkts": 67751, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 300, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "duplex_mode": "full", + "enabled": true, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "ipv4": { + "10.0.1.1/24": { + "ip": "10.0.1.1", + "prefix_length": "24", + "secondary": false + } + }, + "mac_address": "fa16.3ebe.e48e", + "mtu": 1500, + "oper_status": "up", + "phys_address": "fa16.3ebe.e48e", + "port_channel": { + "port_channel_member": false + }, + "port_speed": "1000", + "switchport_enable": false, + "type": "CSR vNIC" + }, + "GigabitEthernet3": { + "accounting": { + "arp": { + "chars_in": 1800, + "chars_out": 165420, + "pkts_in": 30, + "pkts_out": 2757 + }, + "ip": { + "chars_in": 4339134, + "chars_out": 8034499, + "pkts_in": 52672, + "pkts_out": 87523 + }, + "other": { + "chars_in": 3294124, + "chars_out": 165420, + "pkts_in": 15202, + "pkts_out": 2757 + } + }, + "auto_negotiate": true, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 5993573, + "in_pkts": 60355, + "last_clear": "never", + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_octets": 8199805, + "out_pkts": 90279, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 300, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "duplex_mode": "full", + "enabled": true, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "ipv4": { + "10.0.2.1/24": { + "ip": "10.0.2.1", + "prefix_length": "24", + "secondary": false + } + }, + "mac_address": "fa16.3e07.71e5", + "mtu": 1500, + "oper_status": "up", + "phys_address": "fa16.3e07.71e5", + "port_channel": { + "port_channel_member": false + }, + "port_speed": "1000", + "switchport_enable": false, + "type": "CSR vNIC" + }, + "Loopback0": { + "accounting": { + "ip": { + "chars_in": 822492, + "chars_out": 822492, + "pkts_in": 16368, + "pkts_out": 16368 + } + }, + "bandwidth": 8000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "last_clear": "never", + "out_errors": 0, + "out_octets": 822492, + "out_pkts": 16368, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 300, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 5000, + "enabled": true, + "encapsulation": { + "encapsulation": "loopback" + }, + "ipv4": { + "10.1.1.1/32": { + "ip": "10.1.1.1", + "prefix_length": "32", + "secondary": false + } + }, + "mtu": 1514, + "oper_status": "up", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": false, + "type": "Loopback" + }, + "Loopback1": { + "accounting": { + "ip": { + "chars_in": 822492, + "chars_out": 822492, + "pkts_in": 16368, + "pkts_out": 16368 + } + }, + "bandwidth": 8000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "last_clear": "never", + "out_errors": 0, + "out_octets": 822492, + "out_pkts": 16368, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 300, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 5000, + "enabled": true, + "encapsulation": { + "encapsulation": "loopback" + }, + "ipv4": { + "10.11.11.11/32": { + "ip": "10.11.11.11", + "prefix_length": "32", + "secondary": false + } + }, + "mtu": 1514, + "oper_status": "up", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": false, + "type": "Loopback" + } + } +} \ No newline at end of file diff --git a/mocked_devices/2-manual/reverted/snapshot/interface_nxos_nx-osv-1_console.txt b/mocked_devices/2-manual/reverted/snapshot/interface_nxos_nx-osv-1_console.txt new file mode 100644 index 0000000..a3a0fb2 --- /dev/null +++ b/mocked_devices/2-manual/reverted/snapshot/interface_nxos_nx-osv-1_console.txt @@ -0,0 +1,7315 @@ ++++ nx-osv-1: executing command 'show interface' +++ +show interface +mgmt0 is up +admin state is up + Hardware: Ethernet, address: 5e00.0001.0000 (bia 5e00.0001.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 32/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + full-duplex, 1000 Mb/s + Auto-Negotiation is turned on + Auto-mdix is turned off + EtherType is 0x0000 + 1 minute input rate 240 bits/sec, 0 packets/sec + 1 minute output rate 24 bits/sec, 0 packets/sec + Rx + 660709 input packets 0 unicast packets 18874 multicast packets + 641835 broadcast packets 45246835 bytes + Tx + 28724 output packets 0 unicast packets 28724 multicast packets + 0 broadcast packets 6175652 bytes + +Ethernet2/1 is up +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia fa16.3edd.c013) + Internet Address is 10.0.1.2/24 + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + full-duplex, 1000 Mb/s + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped 2week(s) 5day(s) + Last clearing of "show interface" counters never + 1 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/2 is up +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia fa16.3e8a.5b7d) + Internet Address is 10.0.2.2/24 + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + full-duplex, 1000 Mb/s + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped 2week(s) 5day(s) + Last clearing of "show interface" counters never + 1 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/3 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/4 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/5 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/6 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/7 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/8 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/9 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/10 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/11 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/12 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/13 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/14 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/15 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/16 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/17 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/18 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/19 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/20 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/21 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/22 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/23 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/24 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/25 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/26 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/27 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/28 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/29 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/30 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/31 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/32 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/33 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/34 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/35 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/36 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/37 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/38 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/39 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/40 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/41 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/42 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/43 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/44 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/45 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/46 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/47 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet2/48 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/1 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.002f) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/2 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.002f) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/3 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/4 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/5 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/6 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/7 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/8 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/9 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/10 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/11 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/12 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/13 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/14 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/15 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/16 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/17 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/18 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/19 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/20 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/21 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/22 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/23 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/24 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/25 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/26 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/27 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/28 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/29 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/30 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/31 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/32 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/33 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/34 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/35 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/36 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/37 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/38 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/39 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/40 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/41 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/42 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/43 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/44 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/45 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/46 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/47 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet3/48 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: fa16.3edd.c041 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/1 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.002f) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/2 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.002f (bia 0000.0000.002f) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/3 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/4 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/5 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/6 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/7 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/8 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/9 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/10 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/11 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/12 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/13 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/14 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/15 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/16 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/17 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/18 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/19 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/20 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/21 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/22 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/23 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/24 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/25 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/26 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/27 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/28 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/29 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/30 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/31 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/32 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/33 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/34 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/35 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/36 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/37 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/38 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/39 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/40 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/41 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/42 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/43 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/44 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/45 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/46 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/47 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet4/48 is down (Link not connected) +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 0000.0000.0000 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is p2p + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +loopback0 is up +admin state is up + Hardware: Loopback + Internet Address is 10.2.2.2/32 + MTU 1500 bytes, BW 8000000 Kbit, DLY 5000 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation LOOPBACK, medium is broadcast + Port mode is routed + Auto-mdix is turned off + 66982 packets input 3358416 bytes + 0 multicast frames 0 compressed + 0 input errors 0 frame 0 overrun 0 fifo + 0 packets output 0 bytes 0 underruns + 0 output errors 0 collisions 0 fifo + 0 out_carrier_errors + +loopback1 is up +admin state is up + Hardware: Loopback + Internet Address is 10.22.22.22/32 + MTU 1500 bytes, BW 8000000 Kbit, DLY 5000 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation LOOPBACK, medium is broadcast + Port mode is routed + Auto-mdix is turned off + 0 packets input 0 bytes + 0 multicast frames 0 compressed + 0 input errors 0 frame 0 overrun 0 fifo + 0 packets output 0 bytes 0 underruns + 0 output errors 0 collisions 0 fifo + 0 out_carrier_errors + + nx-osv-1# ++++ nx-osv-1: executing command 'show vrf all interface' +++ +show vrf all interface +Interface VRF-Name VRF-ID Site-of-Origin +loopback0 default 1 -- +loopback1 default 1 -- +Null0 default 1 -- +Ethernet2/1 default 1 -- +Ethernet2/2 default 1 -- +Ethernet2/3 default 1 -- +Ethernet2/4 default 1 -- +Ethernet2/5 default 1 -- +Ethernet2/6 default 1 -- +Ethernet2/7 default 1 -- +Ethernet2/8 default 1 -- +Ethernet2/9 default 1 -- +Ethernet2/10 default 1 -- +Ethernet2/11 default 1 -- +Ethernet2/12 default 1 -- +Ethernet2/13 default 1 -- +Ethernet2/14 default 1 -- +Ethernet2/15 default 1 -- +Ethernet2/16 default 1 -- +Ethernet2/17 default 1 -- +Ethernet2/18 default 1 -- +Ethernet2/19 default 1 -- +Ethernet2/20 default 1 -- +Ethernet2/21 default 1 -- +Ethernet2/22 default 1 -- +Ethernet2/23 default 1 -- +Ethernet2/24 default 1 -- +Ethernet2/25 default 1 -- +Ethernet2/26 default 1 -- +Ethernet2/27 default 1 -- +Ethernet2/28 default 1 -- +Ethernet2/29 default 1 -- +Ethernet2/30 default 1 -- +Ethernet2/31 default 1 -- +Ethernet2/32 default 1 -- +Ethernet2/33 default 1 -- +Ethernet2/34 default 1 -- +Ethernet2/35 default 1 -- +Ethernet2/36 default 1 -- +Ethernet2/37 default 1 -- +Ethernet2/38 default 1 -- +Ethernet2/39 default 1 -- +Ethernet2/40 default 1 -- +Ethernet2/41 default 1 -- +Ethernet2/42 default 1 -- +Ethernet2/43 default 1 -- +Ethernet2/44 default 1 -- +Ethernet2/45 default 1 -- +Ethernet2/46 default 1 -- +Ethernet2/47 default 1 -- +Ethernet2/48 default 1 -- +Ethernet3/1 default 1 -- +Ethernet3/2 default 1 -- +Ethernet3/3 default 1 -- +Ethernet3/4 default 1 -- +Ethernet3/5 default 1 -- +Ethernet3/6 default 1 -- +Ethernet3/7 default 1 -- +Ethernet3/8 default 1 -- +Ethernet3/9 default 1 -- +Ethernet3/10 default 1 -- +Ethernet3/11 default 1 -- +Ethernet3/12 default 1 -- +Ethernet3/13 default 1 -- +Ethernet3/14 default 1 -- +Ethernet3/15 default 1 -- +Ethernet3/16 default 1 -- +Ethernet3/17 default 1 -- +Ethernet3/18 default 1 -- +Ethernet3/19 default 1 -- +Ethernet3/20 default 1 -- +Ethernet3/21 default 1 -- +Ethernet3/22 default 1 -- +Ethernet3/23 default 1 -- +Ethernet3/24 default 1 -- +Ethernet3/25 default 1 -- +Ethernet3/26 default 1 -- +Ethernet3/27 default 1 -- +Ethernet3/28 default 1 -- +Ethernet3/29 default 1 -- +Ethernet3/30 default 1 -- +Ethernet3/31 default 1 -- +Ethernet3/32 default 1 -- +Ethernet3/33 default 1 -- +Ethernet3/34 default 1 -- +Ethernet3/35 default 1 -- +Ethernet3/36 default 1 -- +Ethernet3/37 default 1 -- +Ethernet3/38 default 1 -- +Ethernet3/39 default 1 -- +Ethernet3/40 default 1 -- +Ethernet3/41 default 1 -- +Ethernet3/42 default 1 -- +Ethernet3/43 default 1 -- +Ethernet3/44 default 1 -- +Ethernet3/45 default 1 -- +Ethernet3/46 default 1 -- +Ethernet3/47 default 1 -- +Ethernet3/48 default 1 -- +mgmt0 management 2 -- + nx-osv-1# ++++ nx-osv-1: executing command 'show interface switchport' +++ +show interface switchport +Name: Ethernet4/1 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/2 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/3 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/4 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/5 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/6 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/7 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/8 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/9 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/10 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/11 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/12 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/13 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/14 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/15 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/16 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/17 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/18 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/19 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/20 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/21 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/22 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/23 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/24 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/25 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/26 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/27 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/28 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/29 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/30 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/31 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/32 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/33 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/34 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/35 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/36 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/37 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/38 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/39 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/40 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/41 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/42 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/43 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/44 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/45 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/46 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/47 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none +Name: Ethernet4/48 + Switchport: Enabled + Switchport Monitor: Not enabled + Operational Mode: access + Access Mode VLAN: 1 (default) + Trunking Native Mode VLAN: 1 (default) + Trunking VLANs Allowed: 1-4094 + Administrative private-vlan primary host-association: none + Administrative private-vlan secondary host-association: none + Administrative private-vlan primary mapping: none + Administrative private-vlan secondary mapping: none + Administrative private-vlan trunk native VLAN: none + Administrative private-vlan trunk encapsulation: dot1q + Administrative private-vlan trunk normal VLANs: none + Administrative private-vlan trunk private VLANs: none + Operational private-vlan: none + nx-osv-1# ++++ nx-osv-1: executing command 'show ip interface vrf all' +++ +show ip interface vrf all +IP Interface Status for VRF "default" +loopback0, Interface status: protocol-up/link-up/admin-up, iod: 132, + IP address: 10.2.2.2, IP subnet: 10.2.2.2/32 route-preference: 0, tag: 0 + IP broadcast address: 255.255.255.255 + IP multicast groups locally joined: none + IP MTU: 1500 bytes (using link MTU) + IP primary address route-preference: 0, tag: 0 + IP proxy ARP : disabled + IP Local Proxy ARP : disabled + IP multicast routing: disabled + IP icmp redirects: enabled + IP directed-broadcast: disabled + IP Forwarding: disabled + IP icmp unreachables (except port): disabled + IP icmp port-unreachable: enabled + IP unicast reverse path forwarding: none + IP load sharing: none + IP interface statistics last reset: never + IP interface software stats: (sent/received/forwarded/originated/consumed) + Unicast packets : 0/0/0/0/66982 + Unicast bytes : 0/0/0/0/3358416 + Multicast packets : 0/0/0/0/0 + Multicast bytes : 0/0/0/0/0 + Broadcast packets : 0/0/0/0/0 + Broadcast bytes : 0/0/0/0/0 + Labeled packets : 0/0/0/0/0 + Labeled bytes : 0/0/0/0/0 + WCCP Redirect outbound: disabled + WCCP Redirect inbound: disabled + WCCP Redirect exclude: disabled +loopback1, Interface status: protocol-up/link-up/admin-up, iod: 133, + IP address: 10.22.22.22, IP subnet: 10.22.22.22/32 route-preference: 0, tag: 0 + IP broadcast address: 255.255.255.255 + IP multicast groups locally joined: none + IP MTU: 1500 bytes (using link MTU) + IP primary address route-preference: 0, tag: 0 + IP proxy ARP : disabled + IP Local Proxy ARP : disabled + IP multicast routing: disabled + IP icmp redirects: enabled + IP directed-broadcast: disabled + IP Forwarding: disabled + IP icmp unreachables (except port): disabled + IP icmp port-unreachable: enabled + IP unicast reverse path forwarding: none + IP load sharing: none + IP interface statistics last reset: never + IP interface software stats: (sent/received/forwarded/originated/consumed) + Unicast packets : 0/0/0/0/0 + Unicast bytes : 0/0/0/0/0 + Multicast packets : 0/0/0/0/0 + Multicast bytes : 0/0/0/0/0 + Broadcast packets : 0/0/0/0/0 + Broadcast bytes : 0/0/0/0/0 + Labeled packets : 0/0/0/0/0 + Labeled bytes : 0/0/0/0/0 + WCCP Redirect outbound: disabled + WCCP Redirect inbound: disabled + WCCP Redirect exclude: disabled +Ethernet2/1, Interface status: protocol-up/link-up/admin-up, iod: 36, + IP address: 10.0.1.2, IP subnet: 10.0.1.0/24 route-preference: 0, tag: 0 + IP broadcast address: 255.255.255.255 + IP multicast groups locally joined: + 224.0.0.6 224.0.0.5 + IP MTU: 1500 bytes (using link MTU) + IP primary address route-preference: 0, tag: 0 + IP proxy ARP : disabled + IP Local Proxy ARP : disabled + IP multicast routing: disabled + IP icmp redirects: enabled + IP directed-broadcast: disabled + IP Forwarding: disabled + IP icmp unreachables (except port): disabled + IP icmp port-unreachable: enabled + IP unicast reverse path forwarding: none + IP load sharing: none + IP interface statistics last reset: never + IP interface software stats: (sent/received/forwarded/originated/consumed) + Unicast packets : 66876/45035/0/66876/45616 + Unicast bytes : 4447069/2403329/0/4447069/2456689 + Multicast packets : 198735/182707/0/198735/365412 + Multicast bytes : 17180466/18271460/0/17180466/18271364 + Broadcast packets : 0/16368/0/0/16368 + Broadcast bytes : 0/822492/0/0/822492 + Labeled packets : 0/0/0/0/0 + Labeled bytes : 0/0/0/0/0 + WCCP Redirect outbound: disabled + WCCP Redirect inbound: disabled + WCCP Redirect exclude: disabled +Ethernet2/2, Interface status: protocol-up/link-up/admin-up, iod: 37, + IP address: 10.0.2.2, IP subnet: 10.0.2.0/24 route-preference: 0, tag: 0 + IP broadcast address: 255.255.255.255 + IP multicast groups locally joined: + 224.0.0.6 224.0.0.5 + IP MTU: 1500 bytes (using link MTU) + IP primary address route-preference: 0, tag: 0 + IP proxy ARP : disabled + IP Local Proxy ARP : disabled + IP multicast routing: disabled + IP icmp redirects: enabled + IP directed-broadcast: disabled + IP Forwarding: disabled + IP icmp unreachables (except port): disabled + IP icmp port-unreachable: enabled + IP unicast reverse path forwarding: none + IP load sharing: none + IP interface statistics last reset: never + IP interface software stats: (sent/received/forwarded/originated/consumed) + Unicast packets : 36/23216/0/36/23904 + Unicast bytes : 3566/1270829/0/3566/1332881 + Multicast packets : 198664/182581/0/198664/365160 + Multicast bytes : 17174508/18260784/0/17174508/18260688 + Broadcast packets : 0/16368/0/0/16368 + Broadcast bytes : 0/822492/0/0/822492 + Labeled packets : 0/0/0/0/0 + Labeled bytes : 0/0/0/0/0 + WCCP Redirect outbound: disabled + WCCP Redirect inbound: disabled + WCCP Redirect exclude: disabled + +IP Interface Status for VRF "management" + + nx-osv-1# ++++ nx-osv-1: executing command 'show ipv6 interface vrf all' +++ +show ipv6 interface vrf all +IPv6 Interface Status for VRF "default" + +IPv6 Interface Status for VRF "management" + + nx-osv-1# ++++ nx-osv-1: executing command 'show routing ipv6 vrf all' +++ +show routing ipv6 vrf all +IPv6 Routing Table for VRF "default" +'*' denotes best ucast next-hop +'**' denotes best mcast next-hop +'[x/y]' denotes [preference/metric] + + +IPv6 Routing Table for VRF "management" +'*' denotes best ucast next-hop +'**' denotes best mcast next-hop +'[x/y]' denotes [preference/metric] + + + nx-osv-1# ++++ nx-osv-1: executing command 'show routing vrf all' +++ +show routing vrf all +IP Route Table for VRF "default" +'*' denotes best ucast next-hop +'**' denotes best mcast next-hop +'[x/y]' denotes [preference/metric] +'%' in via output denotes VRF + +10.0.1.0/24, ubest/mbest: 1/0, attached + *via 10.0.1.2, Eth2/1, [0/0], 2w5d, direct +10.0.1.2/32, ubest/mbest: 1/0, attached + *via 10.0.1.2, Eth2/1, [0/0], 2w5d, local +10.0.2.0/24, ubest/mbest: 1/0, attached + *via 10.0.2.2, Eth2/2, [0/0], 2w5d, direct +10.0.2.2/32, ubest/mbest: 1/0, attached + *via 10.0.2.2, Eth2/2, [0/0], 2w5d, local +10.1.1.1/32, ubest/mbest: 2/0 + *via 10.0.1.1, Eth2/1, [110/41], 5d06h, ospf-1, intra + *via 10.0.2.1, Eth2/2, [110/41], 5d06h, ospf-1, intra +10.2.2.2/32, ubest/mbest: 2/0, attached + *via 10.2.2.2, Lo0, [0/0], 2w5d, local + *via 10.2.2.2, Lo0, [0/0], 2w5d, direct +10.11.11.11/32, ubest/mbest: 1/0 + *via 10.1.1.1, [200/0], 00:00:26, bgp-65000, internal, tag 65000, +10.22.22.22/32, ubest/mbest: 2/0, attached + *via 10.22.22.22, Lo1, [0/0], 2w5d, local + *via 10.22.22.22, Lo1, [0/0], 2w5d, direct + nx-osv-1# ++====================================================================================================================================================+ +| Commands for learning feature 'Interface' | ++====================================================================================================================================================+ +| - Parsed commands | +|----------------------------------------------------------------------------------------------------------------------------------------------------| +| cmd: | +| cmd: | +| cmd: | +| cmd: | +| cmd: | +|====================================================================================================================================================| +| - Commands with empty output | +|----------------------------------------------------------------------------------------------------------------------------------------------------| +| cmd: | +| cmd: | +|====================================================================================================================================================| diff --git a/mocked_devices/2-manual/reverted/snapshot/interface_nxos_nx-osv-1_ops.txt b/mocked_devices/2-manual/reverted/snapshot/interface_nxos_nx-osv-1_ops.txt new file mode 100644 index 0000000..a464a28 --- /dev/null +++ b/mocked_devices/2-manual/reverted/snapshot/interface_nxos_nx-osv-1_ops.txt @@ -0,0 +1,7490 @@ +{ + "attributes": null, + "commands": null, + "connections": null, + "context_manager": {}, + "info": { + "Ethernet2/1": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "duplex_mode": "full", + "enabled": true, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "ipv4": { + "10.0.1.2/24": { + "ip": "10.0.1.2", + "prefix_length": "24" + } + }, + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "up", + "phys_address": "fa16.3edd.c013", + "port_channel": { + "port_channel_member": false + }, + "port_speed": "1000", + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/10": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/11": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/12": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/13": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/14": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/15": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/16": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/17": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/18": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/19": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/2": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "duplex_mode": "full", + "enabled": true, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "ipv4": { + "10.0.2.2/24": { + "ip": "10.0.2.2", + "prefix_length": "24" + } + }, + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "up", + "phys_address": "fa16.3e8a.5b7d", + "port_channel": { + "port_channel_member": false + }, + "port_speed": "1000", + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/20": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/21": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/22": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/23": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/24": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/25": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/26": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/27": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/28": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/29": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/3": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/30": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/31": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/32": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/33": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/34": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/35": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/36": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/37": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/38": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/39": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/4": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/40": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/41": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/42": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/43": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/44": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/45": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/46": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/47": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/48": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/5": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/6": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/7": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/8": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet2/9": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/1": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.002f", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/10": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/11": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/12": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/13": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/14": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/15": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/16": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/17": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/18": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/19": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/2": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.002f", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/20": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/21": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/22": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/23": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/24": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/25": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/26": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/27": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/28": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/29": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/3": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/30": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/31": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/32": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/33": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/34": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/35": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/36": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/37": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/38": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/39": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/4": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/40": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/41": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/42": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/43": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/44": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/45": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/46": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/47": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/48": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/5": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/6": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/7": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/8": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet3/9": { + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "fa16.3edd.c041", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "type": "Ethernet", + "vrf": "default" + }, + "Ethernet4/1": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.002f", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/10": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/11": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/12": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/13": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/14": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/15": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/16": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/17": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/18": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/19": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/2": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.002f", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.002f", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/20": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/21": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/22": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/23": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/24": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/25": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/26": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/27": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/28": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/29": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/3": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/30": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/31": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/32": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/33": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/34": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/35": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/36": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/37": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/38": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/39": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/4": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/40": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/41": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/42": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/43": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/44": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/45": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/46": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/47": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/48": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/5": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/6": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/7": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/8": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Ethernet4/9": { + "access_vlan": 1, + "auto_negotiate": false, + "bandwidth": 1000000, + "counters": { + "in_broadcast_pkts": 0, + "in_crc_errors": 0, + "in_errors": 0, + "in_mac_pause_frames": 0, + "in_multicast_pkts": 0, + "in_octets": 0, + "in_pkts": 0, + "in_unicast_pkts": 0, + "in_unknown_protos": 0, + "last_clear": "never", + "out_broadcast_pkts": 0, + "out_discard": 0, + "out_errors": 0, + "out_mac_pause_frames": 0, + "out_multicast_pkts": 0, + "out_octets": 0, + "out_pkts": 0, + "out_unicast_pkts": 0, + "rate": { + "in_rate": 0, + "in_rate_pkts": 0, + "load_interval": 0, + "out_rate": 0, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "enabled": false, + "encapsulation": { + "encapsulation": "arpa" + }, + "flow_control": { + "receive": false, + "send": false + }, + "last_change": "never", + "mac_address": "0000.0000.0000", + "mtu": 1500, + "oper_status": "down", + "phys_address": "0000.0000.0000", + "port_channel": { + "port_channel_member": false + }, + "switchport_enable": true, + "switchport_mode": "access", + "trunk_vlans": "1-4094", + "type": "Ethernet" + }, + "Null0": { + "vrf": "default" + }, + "loopback0": { + "bandwidth": 8000000, + "delay": 5000, + "enabled": true, + "encapsulation": { + "encapsulation": "loopback" + }, + "ipv4": { + "10.2.2.2/32": { + "ip": "10.2.2.2", + "prefix_length": "32" + } + }, + "medium": "broadcast", + "mtu": 1500, + "oper_status": "up", + "port_channel": { + "port_channel_member": false + }, + "vrf": "default" + }, + "loopback1": { + "bandwidth": 8000000, + "delay": 5000, + "enabled": true, + "encapsulation": { + "encapsulation": "loopback" + }, + "ipv4": { + "10.22.22.22/32": { + "ip": "10.22.22.22", + "prefix_length": "32" + } + }, + "medium": "broadcast", + "mtu": 1500, + "oper_status": "up", + "port_channel": { + "port_channel_member": false + }, + "vrf": "default" + }, + "mgmt0": { + "auto_negotiate": true, + "bandwidth": 1000000, + "counters": { + "rate": { + "in_rate": 240, + "in_rate_pkts": 0, + "load_interval": 1, + "out_rate": 24, + "out_rate_pkts": 0 + } + }, + "delay": 10, + "duplex_mode": "full", + "enabled": true, + "encapsulation": { + "encapsulation": "arpa" + }, + "mac_address": "5e00.0001.0000", + "medium": "broadcast", + "mtu": 1500, + "oper_status": "up", + "phys_address": "5e00.0001.0000", + "port_channel": { + "port_channel_member": false + }, + "port_speed": "1000", + "type": "Ethernet", + "vrf": "management" + } + }, + "ret_dict": {} +} \ No newline at end of file diff --git a/mocked_devices/3-automate/one/csr1000v-1 b/mocked_devices/3-automate/one/csr1000v-1 new file mode 100644 index 0000000..a633bd8 Binary files /dev/null and b/mocked_devices/3-automate/one/csr1000v-1 differ diff --git a/mocked_devices/3-automate/one/nx-osv-1 b/mocked_devices/3-automate/one/nx-osv-1 new file mode 100644 index 0000000..917c87f Binary files /dev/null and b/mocked_devices/3-automate/one/nx-osv-1 differ diff --git a/mocked_devices/3-automate/three/csr1000v-1 b/mocked_devices/3-automate/three/csr1000v-1 new file mode 100644 index 0000000..838f0bc Binary files /dev/null and b/mocked_devices/3-automate/three/csr1000v-1 differ diff --git a/mocked_devices/3-automate/three/nx-osv-1 b/mocked_devices/3-automate/three/nx-osv-1 new file mode 100644 index 0000000..4f06890 Binary files /dev/null and b/mocked_devices/3-automate/three/nx-osv-1 differ diff --git a/mocked_devices/3-automate/two/csr1000v-1 b/mocked_devices/3-automate/two/csr1000v-1 new file mode 100644 index 0000000..bcacd82 Binary files /dev/null and b/mocked_devices/3-automate/two/csr1000v-1 differ diff --git a/mocked_devices/3-automate/two/nx-osv-1 b/mocked_devices/3-automate/two/nx-osv-1 new file mode 100644 index 0000000..fbd4d94 Binary files /dev/null and b/mocked_devices/3-automate/two/nx-osv-1 differ diff --git a/mocked_devices/5-parser/record/nx-osv-1 b/mocked_devices/5-parser/record/nx-osv-1 new file mode 100644 index 0000000..84bdd29 Binary files /dev/null and b/mocked_devices/5-parser/record/nx-osv-1 differ diff --git a/mocked_devices/5-parser/snapshot/connection_nx-osv-1.txt b/mocked_devices/5-parser/snapshot/connection_nx-osv-1.txt new file mode 100644 index 0000000..93df4b3 --- /dev/null +++ b/mocked_devices/5-parser/snapshot/connection_nx-osv-1.txt @@ -0,0 +1,132 @@ +[2019-04-28 18:55:19,755] +++ nx-osv-1 logfile snapshot/connection_nx-osv-1.txt +++ +[2019-04-28 18:55:19,755] +++ Unicon plugin nxos +++ +[2019-04-28 18:55:19,759] +++ connection to spawn: telnet 172.25.192.90 17002, id: 4647669712 +++ +[2019-04-28 18:55:19,760] connection to nx-osv-1 +Trying 172.25.192.90... +Connected to asg-virl-ubuntu.cisco.com. +Escape character is '^]'. + + nx-osv-1# +[2019-04-28 18:55:20,561] +++ initializing handle +++ +[2019-04-28 18:55:20,562] +++ nx-osv-1: executing command 'term length 0' +++ +term length 0 + nx-osv-1# +[2019-04-28 18:55:20,696] +++ nx-osv-1: executing command 'term width 511' +++ +term width 511 + nx-osv-1# +[2019-04-28 18:55:20,822] +++ nx-osv-1: executing command 'terminal session-timeout 0' +++ +terminal session-timeout 0 + nx-osv-1# +[2019-04-28 18:55:20,950] +++ nx-osv-1: config +++ +config term +Enter configuration commands, one per line. End with CNTL/Z. + nx-osv-1(config)# no logging console + nx-osv-1(config)# line console + nx-osv-1(config-console)# exec-timeout 0 + nx-osv-1(config-console)# terminal width 511 + nx-osv-1(config-console)# end + nx-osv-1# +[2019-04-28 18:55:22,468] +++ nx-osv-1: executing command 'show vrf all interface' +++ +show vrf all interface +Interface VRF-Name VRF-ID Site-of-Origin +loopback0 default 1 -- +loopback1 default 1 -- +Null0 default 1 -- +Ethernet2/1 default 1 -- +Ethernet2/2 default 1 -- +Ethernet2/3 default 1 -- +Ethernet2/4 default 1 -- +Ethernet2/5 default 1 -- +Ethernet2/6 default 1 -- +Ethernet2/7 default 1 -- +Ethernet2/8 default 1 -- +Ethernet2/9 default 1 -- +Ethernet2/10 default 1 -- +Ethernet2/11 default 1 -- +Ethernet2/12 default 1 -- +Ethernet2/13 default 1 -- +Ethernet2/14 default 1 -- +Ethernet2/15 default 1 -- +Ethernet2/16 default 1 -- +Ethernet2/17 default 1 -- +Ethernet2/18 default 1 -- +Ethernet2/19 default 1 -- +Ethernet2/20 default 1 -- +Ethernet2/21 default 1 -- +Ethernet2/22 default 1 -- +Ethernet2/23 default 1 -- +Ethernet2/24 default 1 -- +Ethernet2/25 default 1 -- +Ethernet2/26 default 1 -- +Ethernet2/27 default 1 -- +Ethernet2/28 default 1 -- +Ethernet2/29 default 1 -- +Ethernet2/30 default 1 -- +Ethernet2/31 default 1 -- +Ethernet2/32 default 1 -- +Ethernet2/33 default 1 -- +Ethernet2/34 default 1 -- +Ethernet2/35 default 1 -- +Ethernet2/36 default 1 -- +Ethernet2/37 default 1 -- +Ethernet2/38 default 1 -- +Ethernet2/39 default 1 -- +Ethernet2/40 default 1 -- +Ethernet2/41 default 1 -- +Ethernet2/42 default 1 -- +Ethernet2/43 default 1 -- +Ethernet2/44 default 1 -- +Ethernet2/45 default 1 -- +Ethernet2/46 default 1 -- +Ethernet2/47 default 1 -- +Ethernet2/48 default 1 -- +Ethernet3/1 default 1 -- +Ethernet3/2 default 1 -- +Ethernet3/3 default 1 -- +Ethernet3/4 default 1 -- +Ethernet3/5 default 1 -- +Ethernet3/6 default 1 -- +Ethernet3/7 default 1 -- +Ethernet3/8 default 1 -- +Ethernet3/9 default 1 -- +Ethernet3/10 default 1 -- +Ethernet3/11 default 1 -- +Ethernet3/12 default 1 -- +Ethernet3/13 default 1 -- +Ethernet3/14 default 1 -- +Ethernet3/15 default 1 -- +Ethernet3/16 default 1 -- +Ethernet3/17 default 1 -- +Ethernet3/18 default 1 -- +Ethernet3/19 default 1 -- +Ethernet3/20 default 1 -- +Ethernet3/21 default 1 -- +Ethernet3/22 default 1 -- +Ethernet3/23 default 1 -- +Ethernet3/24 default 1 -- +Ethernet3/25 default 1 -- +Ethernet3/26 default 1 -- +Ethernet3/27 default 1 -- +Ethernet3/28 default 1 -- +Ethernet3/29 default 1 -- +Ethernet3/30 default 1 -- +Ethernet3/31 default 1 -- +Ethernet3/32 default 1 -- +Ethernet3/33 default 1 -- +Ethernet3/34 default 1 -- +Ethernet3/35 default 1 -- +Ethernet3/36 default 1 -- +Ethernet3/37 default 1 -- +Ethernet3/38 default 1 -- +Ethernet3/39 default 1 -- +Ethernet3/40 default 1 -- +Ethernet3/41 default 1 -- +Ethernet3/42 default 1 -- +Ethernet3/43 default 1 -- +Ethernet3/44 default 1 -- +Ethernet3/45 default 1 -- +Ethernet3/46 default 1 -- +Ethernet3/47 default 1 -- +Ethernet3/48 default 1 -- +mgmt0 management 2 -- + nx-osv-1# diff --git a/mocked_devices/5-parser/snapshot/nx-osv-1_show-vrf-all-interface_console.txt b/mocked_devices/5-parser/snapshot/nx-osv-1_show-vrf-all-interface_console.txt new file mode 100644 index 0000000..1ce5681 --- /dev/null +++ b/mocked_devices/5-parser/snapshot/nx-osv-1_show-vrf-all-interface_console.txt @@ -0,0 +1,104 @@ ++++ nx-osv-1: executing command 'show vrf all interface' +++ +show vrf all interface +Interface VRF-Name VRF-ID Site-of-Origin +loopback0 default 1 -- +loopback1 default 1 -- +Null0 default 1 -- +Ethernet2/1 default 1 -- +Ethernet2/2 default 1 -- +Ethernet2/3 default 1 -- +Ethernet2/4 default 1 -- +Ethernet2/5 default 1 -- +Ethernet2/6 default 1 -- +Ethernet2/7 default 1 -- +Ethernet2/8 default 1 -- +Ethernet2/9 default 1 -- +Ethernet2/10 default 1 -- +Ethernet2/11 default 1 -- +Ethernet2/12 default 1 -- +Ethernet2/13 default 1 -- +Ethernet2/14 default 1 -- +Ethernet2/15 default 1 -- +Ethernet2/16 default 1 -- +Ethernet2/17 default 1 -- +Ethernet2/18 default 1 -- +Ethernet2/19 default 1 -- +Ethernet2/20 default 1 -- +Ethernet2/21 default 1 -- +Ethernet2/22 default 1 -- +Ethernet2/23 default 1 -- +Ethernet2/24 default 1 -- +Ethernet2/25 default 1 -- +Ethernet2/26 default 1 -- +Ethernet2/27 default 1 -- +Ethernet2/28 default 1 -- +Ethernet2/29 default 1 -- +Ethernet2/30 default 1 -- +Ethernet2/31 default 1 -- +Ethernet2/32 default 1 -- +Ethernet2/33 default 1 -- +Ethernet2/34 default 1 -- +Ethernet2/35 default 1 -- +Ethernet2/36 default 1 -- +Ethernet2/37 default 1 -- +Ethernet2/38 default 1 -- +Ethernet2/39 default 1 -- +Ethernet2/40 default 1 -- +Ethernet2/41 default 1 -- +Ethernet2/42 default 1 -- +Ethernet2/43 default 1 -- +Ethernet2/44 default 1 -- +Ethernet2/45 default 1 -- +Ethernet2/46 default 1 -- +Ethernet2/47 default 1 -- +Ethernet2/48 default 1 -- +Ethernet3/1 default 1 -- +Ethernet3/2 default 1 -- +Ethernet3/3 default 1 -- +Ethernet3/4 default 1 -- +Ethernet3/5 default 1 -- +Ethernet3/6 default 1 -- +Ethernet3/7 default 1 -- +Ethernet3/8 default 1 -- +Ethernet3/9 default 1 -- +Ethernet3/10 default 1 -- +Ethernet3/11 default 1 -- +Ethernet3/12 default 1 -- +Ethernet3/13 default 1 -- +Ethernet3/14 default 1 -- +Ethernet3/15 default 1 -- +Ethernet3/16 default 1 -- +Ethernet3/17 default 1 -- +Ethernet3/18 default 1 -- +Ethernet3/19 default 1 -- +Ethernet3/20 default 1 -- +Ethernet3/21 default 1 -- +Ethernet3/22 default 1 -- +Ethernet3/23 default 1 -- +Ethernet3/24 default 1 -- +Ethernet3/25 default 1 -- +Ethernet3/26 default 1 -- +Ethernet3/27 default 1 -- +Ethernet3/28 default 1 -- +Ethernet3/29 default 1 -- +Ethernet3/30 default 1 -- +Ethernet3/31 default 1 -- +Ethernet3/32 default 1 -- +Ethernet3/33 default 1 -- +Ethernet3/34 default 1 -- +Ethernet3/35 default 1 -- +Ethernet3/36 default 1 -- +Ethernet3/37 default 1 -- +Ethernet3/38 default 1 -- +Ethernet3/39 default 1 -- +Ethernet3/40 default 1 -- +Ethernet3/41 default 1 -- +Ethernet3/42 default 1 -- +Ethernet3/43 default 1 -- +Ethernet3/44 default 1 -- +Ethernet3/45 default 1 -- +Ethernet3/46 default 1 -- +Ethernet3/47 default 1 -- +Ethernet3/48 default 1 -- +mgmt0 management 2 -- + nx-osv-1# diff --git a/mocked_devices/5-parser/snapshot/nx-osv-1_show-vrf-all-interface_parsed.txt b/mocked_devices/5-parser/snapshot/nx-osv-1_show-vrf-all-interface_parsed.txt new file mode 100644 index 0000000..1ed60d1 --- /dev/null +++ b/mocked_devices/5-parser/snapshot/nx-osv-1_show-vrf-all-interface_parsed.txt @@ -0,0 +1,602 @@ +{ + "Ethernet2/1": { + "interface": "Ethernet2/1", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet2/10": { + "interface": "Ethernet2/10", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet2/11": { + "interface": "Ethernet2/11", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet2/12": { + "interface": "Ethernet2/12", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet2/13": { + "interface": "Ethernet2/13", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet2/14": { + "interface": "Ethernet2/14", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet2/15": { + "interface": "Ethernet2/15", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet2/16": { + "interface": "Ethernet2/16", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet2/17": { + "interface": "Ethernet2/17", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet2/18": { + "interface": "Ethernet2/18", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet2/19": { + "interface": "Ethernet2/19", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet2/2": { + "interface": "Ethernet2/2", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet2/20": { + "interface": "Ethernet2/20", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet2/21": { + "interface": "Ethernet2/21", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet2/22": { + "interface": "Ethernet2/22", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet2/23": { + "interface": "Ethernet2/23", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet2/24": { + "interface": "Ethernet2/24", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet2/25": { + "interface": "Ethernet2/25", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet2/26": { + "interface": "Ethernet2/26", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet2/27": { + "interface": "Ethernet2/27", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet2/28": { + "interface": "Ethernet2/28", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet2/29": { + "interface": "Ethernet2/29", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet2/3": { + "interface": "Ethernet2/3", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet2/30": { + "interface": "Ethernet2/30", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet2/31": { + "interface": "Ethernet2/31", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet2/32": { + "interface": "Ethernet2/32", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet2/33": { + "interface": "Ethernet2/33", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet2/34": { + "interface": "Ethernet2/34", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet2/35": { + "interface": "Ethernet2/35", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet2/36": { + "interface": "Ethernet2/36", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet2/37": { + "interface": "Ethernet2/37", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet2/38": { + "interface": "Ethernet2/38", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet2/39": { + "interface": "Ethernet2/39", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet2/4": { + "interface": "Ethernet2/4", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet2/40": { + "interface": "Ethernet2/40", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet2/41": { + "interface": "Ethernet2/41", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet2/42": { + "interface": "Ethernet2/42", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet2/43": { + "interface": "Ethernet2/43", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet2/44": { + "interface": "Ethernet2/44", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet2/45": { + "interface": "Ethernet2/45", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet2/46": { + "interface": "Ethernet2/46", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet2/47": { + "interface": "Ethernet2/47", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet2/48": { + "interface": "Ethernet2/48", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet2/5": { + "interface": "Ethernet2/5", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet2/6": { + "interface": "Ethernet2/6", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet2/7": { + "interface": "Ethernet2/7", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet2/8": { + "interface": "Ethernet2/8", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet2/9": { + "interface": "Ethernet2/9", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/1": { + "interface": "Ethernet3/1", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/10": { + "interface": "Ethernet3/10", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/11": { + "interface": "Ethernet3/11", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/12": { + "interface": "Ethernet3/12", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/13": { + "interface": "Ethernet3/13", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/14": { + "interface": "Ethernet3/14", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/15": { + "interface": "Ethernet3/15", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/16": { + "interface": "Ethernet3/16", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/17": { + "interface": "Ethernet3/17", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/18": { + "interface": "Ethernet3/18", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/19": { + "interface": "Ethernet3/19", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/2": { + "interface": "Ethernet3/2", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/20": { + "interface": "Ethernet3/20", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/21": { + "interface": "Ethernet3/21", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/22": { + "interface": "Ethernet3/22", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/23": { + "interface": "Ethernet3/23", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/24": { + "interface": "Ethernet3/24", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/25": { + "interface": "Ethernet3/25", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/26": { + "interface": "Ethernet3/26", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/27": { + "interface": "Ethernet3/27", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/28": { + "interface": "Ethernet3/28", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/29": { + "interface": "Ethernet3/29", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/3": { + "interface": "Ethernet3/3", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/30": { + "interface": "Ethernet3/30", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/31": { + "interface": "Ethernet3/31", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/32": { + "interface": "Ethernet3/32", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/33": { + "interface": "Ethernet3/33", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/34": { + "interface": "Ethernet3/34", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/35": { + "interface": "Ethernet3/35", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/36": { + "interface": "Ethernet3/36", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/37": { + "interface": "Ethernet3/37", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/38": { + "interface": "Ethernet3/38", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/39": { + "interface": "Ethernet3/39", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/4": { + "interface": "Ethernet3/4", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/40": { + "interface": "Ethernet3/40", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/41": { + "interface": "Ethernet3/41", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/42": { + "interface": "Ethernet3/42", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/43": { + "interface": "Ethernet3/43", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/44": { + "interface": "Ethernet3/44", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/45": { + "interface": "Ethernet3/45", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/46": { + "interface": "Ethernet3/46", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/47": { + "interface": "Ethernet3/47", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/48": { + "interface": "Ethernet3/48", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/5": { + "interface": "Ethernet3/5", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/6": { + "interface": "Ethernet3/6", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/7": { + "interface": "Ethernet3/7", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/8": { + "interface": "Ethernet3/8", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Ethernet3/9": { + "interface": "Ethernet3/9", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "Null0": { + "interface": "Null0", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "loopback0": { + "interface": "loopback0", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "loopback1": { + "interface": "loopback1", + "origin": "--", + "vrf_id": "1", + "vrf_name": "default" + }, + "mgmt0": { + "interface": "mgmt0", + "origin": "--", + "vrf_id": "2", + "vrf_name": "management" + } +} \ No newline at end of file diff --git a/mocked_devices/6-misc/blitz/record/csr1000v-1 b/mocked_devices/6-misc/blitz/record/csr1000v-1 new file mode 100644 index 0000000..b634a9b Binary files /dev/null and b/mocked_devices/6-misc/blitz/record/csr1000v-1 differ diff --git a/mocked_devices/6-misc/blitz/record/nx-osv-1 b/mocked_devices/6-misc/blitz/record/nx-osv-1 new file mode 100644 index 0000000..620caf0 Binary files /dev/null and b/mocked_devices/6-misc/blitz/record/nx-osv-1 differ diff --git a/mocked_devices/6-misc/playback/record/csr1000v-1 b/mocked_devices/6-misc/playback/record/csr1000v-1 new file mode 100644 index 0000000..8e1973e Binary files /dev/null and b/mocked_devices/6-misc/playback/record/csr1000v-1 differ diff --git a/mocked_devices/6-misc/playback/record/nx-osv-1 b/mocked_devices/6-misc/playback/record/nx-osv-1 new file mode 100644 index 0000000..94f3b43 Binary files /dev/null and b/mocked_devices/6-misc/playback/record/nx-osv-1 differ diff --git a/tb.yaml b/tb.yaml new file mode 100644 index 0000000..79f5a71 --- /dev/null +++ b/tb.yaml @@ -0,0 +1,48 @@ +testbed: + name: 'MyTestbed' + +devices: + nx-osv-1: + type: 'router' + os: 'nxos' + alias: 'uut' + credentials: + default: + password: admin + username: admin + connections: + cli: + protocol: telnet + ip: "172.25.192.90" + port: 17006 + + csr1000v-1: + type: 'router' + os: "iosxe" + alias: 'helper' + credentials: + default: + password: cisco + username: cisco + connections: + a: + protocol: telnet + ip: "172.25.192.90" + port: 17004 + + jump_host: + type: jump_host + os: linux + connections: + defaults: + class: unicon.Unicon + via: cli + cli: + protocol: ssh + ip: 172.25.195.129 + arguments: + learn_hostname: True + ssh_options: -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null + scp: + protocol: ssh + ip: 10.1.20.150 diff --git a/topology.virl b/topology.virl new file mode 100644 index 0000000..8997011 --- /dev/null +++ b/topology.virl @@ -0,0 +1,990 @@ + + + + + false + ! +! Last configuration change at 18:58:46 UTC Wed Apr 4 2018 +! +version 16.6 +service config +service timestamps debug datetime msec +service timestamps log datetime msec +platform qfp utilization monitor load 80 +no platform punt-keepalive disable-kernel-core +platform console serial +! +hostname csr1000v-1 +! +boot-start-marker +boot-end-marker +! +! +! +no aaa new-model +! +! +! +! +! +! +! +! +! +! +! +! +! +! +! +! +! +! +! +subscriber templating +! +! +! +! +! +! +! +multilink bundle-name authenticated +! +! +! +! +! +! +! +! +! +! +! +! +! +! +! +license udi pid CSR1000V sn 9MYOKU4TABJ +diagnostic bootup level minimal +spanning-tree extend system-id +! +! +! +! +redundancy +! +! +! +! +! +! +! +! +! +! +! +! +! +! +! +! +! +! +! +! +! +! +! +interface Loopback0 + ip address 10.1.1.1 255.255.255.255 + ip ospf 1 area 0 +! +interface Loopback1 + ip address 10.11.11.11 255.255.255.255 +! +interface GigabitEthernet1 + ip address dhcp + negotiation auto + no mop enabled + no mop sysid +! +interface GigabitEthernet2 + ip address 10.0.1.1 255.255.255.0 + ip ospf 1 area 0 + negotiation auto + no mop enabled + no mop sysid +! +interface GigabitEthernet3 + ip address 10.0.2.1 255.255.255.0 + ip ospf 1 area 0 + negotiation auto + no mop enabled + no mop sysid +! +router ospf 1 + router-id 10.1.1.1 +! +router bgp 65000 + bgp router-id 10.1.1.1 + bgp log-neighbor-changes + no bgp default ipv4-unicast + neighbor 10.2.2.2 remote-as 65000 + neighbor 10.2.2.2 update-source Loopback0 + ! + address-family ipv4 + network 10.11.11.11 mask 255.255.255.255 + neighbor 10.2.2.2 activate + exit-address-family +! +! +virtual-service csr_mgmt +! +ip forward-protocol nd +no ip http server +no ip http secure-server +ip http client source-interface GigabitEthernet1 +! +ip ssh server algorithm encryption aes128-ctr aes192-ctr aes256-ctr +ip ssh client algorithm encryption aes128-ctr aes192-ctr aes256-ctr +! +! +! +! +! +control-plane +! +! +! +! +! +! +line con 0 + stopbits 1 +line vty 0 + login +line vty 1 + login + length 0 +line vty 2 4 + login +! +! +! +! +! +! +end + + + + + + + + + false + !Command: show running-config +!Time: Wed Apr 4 18:58:45 2018 + +version 7.3(0)D1(1) +power redundancy-mode redundant +license grace-period + +hostname nx-osv-1 +vdc nx-osv-1 id 1 + limit-resource module-type m1 m1xl m2xl f2e + allocate interface Ethernet2/1-48 + allocate interface Ethernet3/1-48 + allocate interface Ethernet4/1-48 + limit-resource vlan minimum 16 maximum 4094 + limit-resource vrf minimum 2 maximum 4096 + limit-resource port-channel minimum 0 maximum 768 + limit-resource u4route-mem minimum 96 maximum 96 + limit-resource u6route-mem minimum 24 maximum 24 + limit-resource m4route-mem minimum 58 maximum 58 + limit-resource m6route-mem minimum 8 maximum 8 + +feature ospf +feature bgp + +username admin password 5 $5$Otc7T0NC$K.ulnSZnSyXLrTGNBdtLgZJXEa8EeNx.BrdZ98XyK2C role network-admin +no password strength-check +ip domain-lookup +vlan dot1Q tag native +system default switchport +system jumbomtu 0 +no logging event trunk-status enable +copp profile strict +snmp-server user admin auth md5 0x328945d53e05e8e7207f8c20b142f0b7 priv 0x328945d53e05e8e7207f8c20b142f0b7 localizedkey engineID 128:0:0:9:3:0:0:0:0:0:0 +rmon event 1 log description FATAL(1) owner PMON@FATAL +rmon event 2 log description CRITICAL(2) owner PMON@CRITICAL +rmon event 3 log description ERROR(3) owner PMON@ERROR +rmon event 4 log description WARNING(4) owner PMON@WARNING +rmon event 5 log description INFORMATION(5) owner PMON@INFO +snmp-server enable traps link + +vlan 1 + +vrf context management + +interface mgmt0 + vrf member management + +interface Ethernet2/1 + no switchport + mac-address 0000.0000.002f + ip address 10.0.1.2/24 + ip router ospf 1 area 0.0.0.0 + no shutdown + +interface Ethernet2/2 + no switchport + mac-address 0000.0000.002f + ip address 10.0.2.2/24 + ip router ospf 1 area 0.0.0.0 + no shutdown + +interface Ethernet2/3 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet2/4 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet2/5 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet2/6 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet2/7 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet2/8 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet2/9 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet2/10 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet2/11 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet2/12 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet2/13 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet2/14 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet2/15 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet2/16 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet2/17 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet2/18 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet2/19 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet2/20 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet2/21 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet2/22 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet2/23 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet2/24 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet2/25 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet2/26 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet2/27 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet2/28 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet2/29 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet2/30 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet2/31 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet2/32 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet2/33 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet2/34 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet2/35 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet2/36 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet2/37 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet2/38 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet2/39 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet2/40 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet2/41 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet2/42 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet2/43 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet2/44 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet2/45 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet2/46 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet2/47 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet2/48 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/1 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/2 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/3 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/4 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/5 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/6 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/7 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/8 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/9 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/10 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/11 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/12 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/13 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/14 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/15 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/16 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/17 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/18 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/19 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/20 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/21 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/22 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/23 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/24 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/25 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/26 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/27 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/28 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/29 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/30 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/31 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/32 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/33 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/34 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/35 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/36 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/37 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/38 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/39 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/40 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/41 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/42 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/43 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/44 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/45 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/46 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/47 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet3/48 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/1 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/2 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/3 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/4 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/5 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/6 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/7 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/8 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/9 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/10 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/11 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/12 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/13 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/14 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/15 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/16 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/17 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/18 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/19 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/20 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/21 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/22 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/23 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/24 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/25 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/26 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/27 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/28 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/29 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/30 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/31 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/32 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/33 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/34 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/35 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/36 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/37 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/38 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/39 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/40 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/41 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/42 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/43 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/44 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/45 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/46 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/47 + shutdown + no switchport + mac-address 0000.0000.002f + +interface Ethernet4/48 + shutdown + no switchport + mac-address 0000.0000.002f + +interface loopback0 + ip address 10.2.2.2/32 + ip router ospf 1 area 0.0.0.0 + +interface loopback1 + ip address 10.22.22.22/32 +line console +line vty +boot kickstart bootflash:/titanium-d1-kickstart.7.3.0.D1.1.bin +boot system bootflash:/titanium-d1.7.3.0.D1.1.bin +router ospf 1 + router-id 10.2.2.2 +router bgp 65000 + router-id 10.2.2.2 + address-family ipv4 unicast + network 10.22.22.22/32 + neighbor 10.1.1.1 + remote-as 65000 + update-source loopback0 + address-family ipv4 unicast +no system default switchport shutdown + + + + + + + + + + +