Regular Expressions 101

Save & Share

Flavor

  • PCRE2 (PHP >=7.3)
  • PCRE (PHP <7.3)
  • ECMAScript (JavaScript)
  • Python
  • Golang
  • Java 8
  • .NET 7.0 (C#)
  • Rust
  • Regex Flavor Guide

Function

  • Match
  • Substitution
  • List
  • Unit Tests

Tools

Sponsors
There are currently no sponsors. Become a sponsor today!
An explanation of your regex will be automatically generated as you type.
Detailed match information will be displayed here automatically.
  • All Tokens
  • Common Tokens
  • General Tokens
  • Anchors
  • Meta Sequences
  • Quantifiers
  • Group Constructs
  • Character Classes
  • Flags/Modifiers
  • Substitution
  • A single character of: a, b or c
    [abc]
  • A character except: a, b or c
    [^abc]
  • A character in the range: a-z
    [a-z]
  • A character not in the range: a-z
    [^a-z]
  • A character in the range: a-z or A-Z
    [a-zA-Z]
  • Any single character
    .
  • Alternate - match either a or b
    a|b
  • Any whitespace character
    \s
  • Any non-whitespace character
    \S
  • Any digit
    \d
  • Any non-digit
    \D
  • Any word character
    \w
  • Any non-word character
    \W
  • Non-capturing group
    (?:...)
  • Capturing group
    (...)
  • Zero or one of a
    a?
  • Zero or more of a
    a*
  • One or more of a
    a+
  • Exactly 3 of a
    a{3}
  • 3 or more of a
    a{3,}
  • Between 3 and 6 of a
    a{3,6}
  • Start of string
    ^
  • End of string
    $
  • A word boundary
    \b
  • Non-word boundary
    \B

Regular Expression
No Match

r"
"
gm

Test String

Code Generator

Generated Code

import java.util.regex.Matcher; import java.util.regex.Pattern; public class Example { public static void main(String[] args) { final String regex = "VLAN\\d{1,4} is executing.*\\n"; final String string = "Cisco IOS Software, C2960S Software (C2960S-UNIVERSALK9-M), Version 15.2(2)E6, RELEASE SOFTWARE (fc1)\n" + "Technical Support: http://www.cisco.com/techsupport\n" + "Copyright (c) 1986-2016 by Cisco Systems, Inc.\n" + "Compiled Fri 16-Dec-16 20:58 by prod_rel_team\n\n" + "ROM: Bootstrap program is C2960S board boot loader\n" + "BOOTLDR: C2960S Boot Loader (C2960S-HBOOT-M) Version 12.2(55r)SE, RELEASE SOFTWARE (fc1)\n\n" + "NFC8FM1I12OOBSW102 uptime is 2 years, 17 weeks, 6 days, 19 hours, 40 minutes\n" + "System returned to ROM by power-on\n" + "System restarted at 15:16:08 UTC Thu Jan 30 2020\n" + "System image file is \"flash:c2960s-universalk9-mz.152-2.E6.bin\"\n" + "Last reload reason: power-on\n\n\n\n" + "This product contains cryptographic features and is subject to United\n" + "States and local country laws governing import, export, transfer and\n" + "use. Delivery of Cisco cryptographic products does not imply\n" + "third-party authority to import, export, distribute or use encryption.\n" + "Importers, exporters, distributors and users are responsible for\n" + "compliance with U.S. and local country laws. By using this product you\n" + "agree to comply with applicable laws and regulations. If you are unable\n" + "to comply with U.S. and local laws, return this product immediately.\n\n" + "A summary of U.S. laws governing Cisco cryptographic products may be found at:\n" + "http://www.cisco.com/wwl/export/crypto/tool/stqrg.html\n\n" + "If you require further assistance please contact us by sending email to\n" + "export@cisco.com.\n\n" + "cisco WS-C2960S-24TS-L (PowerPC) processor (revision H0) with 131072K bytes of memory.\n" + "Processor board ID FOC1733W2TY\n" + "Last reset from power-on\n" + "2 Virtual Ethernet interfaces\n" + "1 FastEthernet interface\n" + "28 Gigabit Ethernet interfaces\n" + "The password-recovery mechanism is enabled.\n\n" + "512K bytes of flash-simulated non-volatile configuration memory.\n" + "Base ethernet MAC Address : E8:ED:F3:B1:9F:00\n" + "Motherboard assembly number : 73-11910-09\n" + "Power supply part number : 341-0328-02\n" + "Motherboard serial number : FOC173344UQ\n" + "Power supply serial number : DCA1724M4PD\n" + "Model revision number : H0\n" + "Motherboard revision number : A0\n" + "Model number : WS-C2960S-24TS-L\n" + "Daughterboard assembly number : 73-11933-04\n" + "Daughterboard serial number : FOC17327TL3\n" + "System serial number : FOC1733W2TY\n" + "Top Assembly Part Number : 800-30954-04\n" + "Top Assembly Revision Number : A0\n" + "Version ID : V04\n" + "CLEI Code Number : COMGG00ARD\n" + "Daughterboard revision number : A0\n" + "Hardware Board Revision Number : 0x01\n\n\n" + "Switch Ports Model SW Version SW Image \n" + "------ ----- ----- ---------- ---------- \n" + "* 1 28 WS-C2960S-24TS-L 15.2(2)E6 C2960S-UNIVERSALK9-M \n\n\n" + "Configuration register is 0xF\n" + "NAME: \"1\", DESCR: \"WS-C2960S-24TS-L\"\n" + "PID: WS-C2960S-24TS-L , VID: V04 , SN: FOC1733W2TY\n\n" + "NAME: \"Switch 1 - FlexStack Module\", DESCR: \"Stacking Module\"\n" + "PID: C2960S-STACK , VID: V02 , SN: FOC17400KG9\n\n" + "NAME: \"GigabitEthernet1/0/25\", DESCR: \"1000BaseLX SFP\"\n" + "PID: GLC-LH-SMD , VID: V01 , SN: FNS1736143S \n\n" + "NAME: \"GigabitEthernet1/0/26\", DESCR: \"1000BaseLX SFP\"\n" + "PID: GLC-LH-SMD , VID: V01 , SN: SPC17370349 \n\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + "CPU utilization for five seconds: 7%/0%; one minute: 8%; five minutes: 6%\n" + " PID Runtime(ms) Invoked uSecs 5Sec 1Min 5Min TTY Process \n" + " 135 1126 206 5466 1.89% 1.54% 0.34% 1 SSH Process \n" + " 168 79238697 14756917 5369 0.09% 0.11% 0.10% 0 HQM Stack Proces \n" + " 201 20045223 132187842 151 0.09% 0.02% 0.00% 0 IP Input \n" + " 169 19417379 29513814 657 0.09% 0.01% 0.00% 0 HRPC qos request \n" + " 115 560508 2114622065 0 0.09% 0.00% 0.00% 0 HLFM address lea \n" + " 5 27063 9419 2873 0.00% 0.00% 0.00% 0 Pool Manager \n" + " 6 0 1 0 0.00% 0.00% 0.00% 0 DiscardQ Backgro \n" + " 7 0 2 0 0.00% 0.00% 0.00% 0 Timers \n" + " 9 72857 295710137 0 0.00% 0.00% 0.00% 0 HUSB Console \n" + " 4 829764555 45894871 18079 0.00% 1.29% 1.07% 0 Check heaps \n" + " 11 155507831 1229745 126460 0.00% 0.19% 0.17% 0 Licensing Auto U \n" + " 3 63 22 2863 0.00% 0.00% 0.00% 0 SpanTree Helper \n" + " 8 4198 155343 27 0.00% 0.00% 0.00% 0 WATCH_AFS \n" + " 10 0 1 0 0.00% 0.00% 0.00% 0 License Client N \n" + " 13 8302039 38769595 214 0.00% 0.00% 0.00% 0 ARP Input \n" + " 16 0 1 0 0.00% 0.00% 0.00% 0 Policy Manager \n" + " 12 0 1 0 0.00% 0.00% 0.00% 0 Image License br \n" + " 18 0 1 0 0.00% 0.00% 0.00% 0 IFS Agent Manage \n" + " 19 53248 14756907 3 0.00% 0.00% 0.00% 0 IPC Event Notifi \n" + " 20 26982 71935329 0 0.00% 0.00% 0.00% 0 IPC Mcast Pendin \n" + " 2 44402 14788560 3 0.00% 0.00% 0.00% 0 Load Meter \n" + " 22 0 1 0 0.00% 0.00% 0.00% 0 IPC Session Serv \n" + " 23 0 1 0 0.00% 0.00% 0.00% 0 IPC Zone Manager \n" + " 14 126819 76531174 1 0.00% 0.00% 0.00% 0 ARP Background \n" + " 15 0 1 0 0.00% 0.00% 0.00% 0 AAA_SERVER_DEADT \n" + " 26 0 1 0 0.00% 0.00% 0.00% 0 IPC Process leve \n" + " 27 0 1 0 0.00% 0.00% 0.00% 0 IPC Seat Manager \n" + " 28 939 4225048 0 0.00% 0.00% 0.00% 0 IPC Check Queue \n" + " 17 25 7 3571 0.00% 0.00% 0.00% 0 Entity MIB API \n" + " 30 5 1 5000 0.00% 0.00% 0.00% 0 IPC Seat TX Cont \n" + " 31 2038 7394284 0 0.00% 0.00% 0.00% 0 IPC Keep Alive M \n" + " 32 111150 14758919 7 0.00% 0.00% 0.00% 0 IPC Loadometer \n" + " 33 53 5 10600 0.00% 0.00% 0.00% 0 PrstVbl \n" + " 21 48535 1229745 39 0.00% 0.00% 0.00% 0 IPC Dynamic Cach \n" + " 35 0 1 0 0.00% 0.00% 0.00% 0 Exception contro \n" + " 36 0 1 0 0.00% 0.00% 0.00% 0 License IPC stat \n" + " 37 0 1 0 0.00% 0.00% 0.00% 0 License IPC serv \n" + " 38 18253 73942792 0 0.00% 0.00% 0.00% 0 GraphIt \n" + " 39 5380 8691 619 0.00% 0.00% 0.00% 0 crypto sw pk pro \n" + " 40 0 2 0 0.00% 0.00% 0.00% 0 SMART \n" + " 41 0 2 0 0.00% 0.00% 0.00% 0 XML Proxy Client \n" + " 24 24669 71935329 0 0.00% 0.00% 0.00% 0 IPC Periodic Tim \n" + " 43 603821 73784523 8 0.00% 0.00% 0.00% 0 Dynamic ARP Insp \n" + " 44 0 1 0 0.00% 0.00% 0.00% 0 Critical Bkgnd \n" + " 45 2053877 9176288 223 0.00% 0.00% 0.00% 0 Net Background \n" + " 46 0 1 0 0.00% 0.00% 0.00% 0 IDB Work \n" + " 47 10 1744 5 0.00% 0.00% 0.00% 0 Logger \n" + " 25 22602 71935329 0 0.00% 0.00% 0.00% 0 IPC Deferred Por \n" + " 49 593 1741 340 0.00% 0.00% 0.00% 0 SXP CORE \n" + " 29 0 1 0 0.00% 0.00% 0.00% 0 IPC Seat RX Cont \n" + " 51 0 16 0 0.00% 0.00% 0.00% 0 IF-MGR event pro \n" + " 52 0 3 0 0.00% 0.00% 0.00% 0 IP Admission HA \n" + " 53 200407 3888739 51 0.00% 0.00% 0.00% 0 Net Input \n" + " 54 68103 14789078 4 0.00% 0.00% 0.00% 0 Compute load avg \n" + " 55 28206720 1247520 22610 0.00% 0.03% 0.00% 0 Per-minute Jobs \n" + " 56 122961 73944010 1 0.00% 0.00% 0.00% 0 Per-Second Jobs \n" + " 57 0 1 0 0.00% 0.00% 0.00% 0 Inode Table Dest \n" + " 34 0 1 0 0.00% 0.00% 0.00% 0 Crash writer \n" + " 59 0 864 0 0.00% 0.00% 0.00% 0 Transport Port A \n" + " 60 386572 15081918 25 0.00% 0.00% 0.00% 0 HC Counter Timer \n" + " 61 23389616 438832 53299 0.00% 0.15% 0.05% 0 SFF8472 \n" + " 62 10 4 2500 0.00% 0.00% 0.00% 0 EEM ED Identity \n" + " 63 6 4 1500 0.00% 0.00% 0.00% 0 EEM ED MAT \n" + " 64 446680 2738674 163 0.00% 0.00% 0.00% 0 EEM ED ND \n" + " 65 5 8 625 0.00% 0.00% 0.00% 0 USB Startup \n" + " 66 317246 1403722920 0 0.00% 0.00% 0.00% 0 DownWhenLooped \n" + " 67 0 1 0 0.00% 0.00% 0.00% 0 HRPC hdwl reques \n" + " 42 0 1 0 0.00% 0.00% 0.00% 0 ARP Snoop \n" + " 69 0 1 0 0.00% 0.00% 0.00% 0 HRPC lpip reques \n" + " 70 0 2 0 0.00% 0.00% 0.00% 0 HLPIP Sync Proce \n" + " 71 0 1 0 0.00% 0.00% 0.00% 0 HRPC Multi-FS Sy \n" + " 72 0 3 0 0.00% 0.00% 0.00% 0 HULC multifs pro \n" + " 73 0 1 0 0.00% 0.00% 0.00% 0 HRPC hnetwpol re \n" + " 74 0 1 0 0.00% 0.00% 0.00% 0 HRPC EnergyWise \n" + " 75 0 1 0 0.00% 0.00% 0.00% 0 HRPC actual powe \n" + " 76 0 1 0 0.00% 0.00% 0.00% 0 HRPC xcvr reques \n" + " 77 0 1 0 0.00% 0.00% 0.00% 0 HRPC ipadm reque \n" + " 78 78456 2459493 31 0.00% 0.00% 0.00% 0 PSP Timer \n" + " 79 439688 2804558538 0 0.00% 0.00% 0.00% 0 Draught link sta \n" + " 80 0 3 0 0.00% 0.00% 0.00% 0 Stack DI Update \n" + " 81 0 1 0 0.00% 0.00% 0.00% 0 HRPC asic-stats \n" + " 82 54708 12886938 4 0.00% 0.00% 0.00% 0 Adjust Regions \n" + " 83 35755 147856855 0 0.00% 0.00% 0.00% 0 FlexStack Hotswa \n" + " 48 327849 73784486 4 0.00% 0.00% 0.00% 0 TTY Background \n" + " 85 403474 3512313779 0 0.00% 0.00% 0.00% 0 RedEarth Rx Mana \n" + " 86 24345 14788560 1 0.00% 0.00% 0.00% 0 HULC Thermal Pro \n" + " 87 0 1 0 0.00% 0.00% 0.00% 0 HRPC hsm request \n" + " 88 0 8 0 0.00% 0.00% 0.00% 0 Stack Mgr \n" + " 89 126 10 12600 0.00% 0.00% 0.00% 0 Stack Mgr Notifi \n" + " 90 159160 36892278 4 0.00% 0.00% 0.00% 0 hrpc -> response \n" + " 91 0 21 0 0.00% 0.00% 0.00% 0 hrpc -> request \n" + " 92 520964 12297436 42 0.00% 0.00% 0.00% 0 hrpc <- response \n" + " 93 0 1 0 0.00% 0.00% 0.00% 0 HRPC hcomp reque \n" + " 94 83806 369637316 0 0.00% 0.00% 0.00% 0 ppc405ex_emac_pr \n" + " 95 0 10 0 0.00% 0.00% 0.00% 0 HULC Device Mana \n" + " 50 11 6 1833 0.00% 0.00% 0.00% 0 IF-MGR control p \n" + " 97 0 2 0 0.00% 0.00% 0.00% 0 HRPC hdm blockin \n" + " 98 96619 14756902 6 0.00% 0.00% 0.00% 0 HIPC bkgrd proce \n" + " 99 0 1 0 0.00% 0.00% 0.00% 0 RTTYS Process \n" + " 58 0 1 0 0.00% 0.00% 0.00% 0 AggMgr Process \n" + " 101 0 22 0 0.00% 0.00% 0.00% 0 Hulc Port-Securi \n" + " 102 0 1 0 0.00% 0.00% 0.00% 0 HRPC hpsecure re \n" + " 103 0 1 0 0.00% 0.00% 0.00% 0 HRPC hrcmd reque \n" + " 104 0 1 0 0.00% 0.00% 0.00% 0 HRPC hulc misc r \n" + " 105 0 5 0 0.00% 0.00% 0.00% 0 HRPC emac reques \n" + " 106 0 3 0 0.00% 0.00% 0.00% 0 HULC EMAC Proces \n" + " 107 103902 24594838 4 0.00% 0.00% 0.00% 0 HVLAN main bkgrd \n" + " 108 0 2 0 0.00% 0.00% 0.00% 0 HVLAN Mapped Vla \n" + " 109 0 2 0 0.00% 0.00% 0.00% 0 Vlan shutdown Pr \n" + " 110 0 3 0 0.00% 0.00% 0.00% 0 HRPC vlan reques \n" + " 111 0 1 0 0.00% 0.00% 0.00% 0 HULC VLAN REF Ba \n" + " 112 0 1 0 0.00% 0.00% 0.00% 0 HRPC ilp request \n" + " 113 1368793 4918969 278 0.00% 0.00% 0.00% 0 Strider Tcam Mem \n" + " 114 0 1 0 0.00% 0.00% 0.00% 0 HRPC hlfm reques \n" + " 68 0 1 0 0.00% 0.00% 0.00% 0 Hulc EEM Process \n" + " 116 524608 73784492 7 0.00% 0.00% 0.00% 0 HLFM aging proce \n" + " 117 101498 25248387 4 0.00% 0.00% 0.00% 0 HLFM address ret \n" + " 118 0 1 0 0.00% 0.00% 0.00% 0 HULC PM Vector P \n" + " 119 0 1 0 0.00% 0.00% 0.00% 0 HPM Msg Retry Pr \n" + " 120 0 1 0 0.00% 0.00% 0.00% 0 IPv6 Access Cont \n" + " 121 1229557 704093266 1 0.00% 0.00% 0.00% 0 hpm main process \n" + " 122 6 28 214 0.00% 0.00% 0.00% 0 HPM Stack Sync P \n" + " 123 0 1 0 0.00% 0.00% 0.00% 0 HRPC pm request \n" + " 124 0 5 0 0.00% 0.00% 0.00% 0 HPM if_num mappi \n" + " 125 494246 73942793 6 0.00% 0.00% 0.00% 0 hpm counter proc \n" + " 126 0 1 0 0.00% 0.00% 0.00% 0 HRPC pm-counters \n" + " 127 0 1 0 0.00% 0.00% 0.00% 0 hpm vp events ca \n" + " 128 0 1 0 0.00% 0.00% 0.00% 0 HRPC hcmp reques \n" + " 129 794 35197 22 0.00% 0.00% 0.00% 0 HCEF ADJ Refresh \n" + " 130 0 1 0 0.00% 0.00% 0.00% 0 HACL Queue Proce \n" + " 131 0 1 0 0.00% 0.00% 0.00% 0 HRPC acl request \n" + " 132 38 23 1652 0.00% 0.00% 0.00% 0 HACL Acl Manager \n" + " 133 0 1 0 0.00% 0.00% 0.00% 0 HRPC aim request \n" + " 134 0 1 0 0.00% 0.00% 0.00% 0 HRPC backup inte \n" + " 1 12 45 266 0.00% 0.00% 0.00% 0 Chunk Manager \n" + " 136 0 1 0 0.00% 0.00% 0.00% 0 HRPC cdp request \n" + " 137 0 1 0 0.00% 0.00% 0.00% 0 HULC CISP Proces \n" + " 138 0 1 0 0.00% 0.00% 0.00% 0 HRPC dot1x reque \n" + " 139 0 1 0 0.00% 0.00% 0.00% 0 Dot1X Msg Retry \n" + " 140 0 3 0 0.00% 0.00% 0.00% 0 HULC DOT1X Proce \n" + " 141 0 1 0 0.00% 0.00% 0.00% 0 HRPC epm vlan pl \n" + " 142 0 1 0 0.00% 0.00% 0.00% 0 HRPC lldp reques \n" + " 143 0 1 0 0.00% 0.00% 0.00% 0 HRPC system mtu \n" + " 144 0 1 0 0.00% 0.00% 0.00% 0 HRPC rep request \n" + " 145 0 3 0 0.00% 0.00% 0.00% 0 REP Helper Proc \n" + " 146 0 1 0 0.00% 0.00% 0.00% 0 HRPC sdm request \n" + " 147 0 1 0 0.00% 0.00% 0.00% 0 SMI MSG Retry Pr \n" + " 148 0 1 0 0.00% 0.00% 0.00% 0 HRPC Smart Insta \n" + " 149 636180 361870028 1 0.00% 0.00% 0.00% 0 Hulc Storm Contr \n" + " 150 0 2 0 0.00% 0.00% 0.00% 0 HSTP Sync Proces \n" + " 151 0 1 0 0.00% 0.00% 0.00% 0 HRPC stp_cli req \n" + " 152 0 1 0 0.00% 0.00% 0.00% 0 HRPC stp_state_s \n" + " 153 0 2 0 0.00% 0.00% 0.00% 0 S/W Bridge Proce \n" + " 154 0 1 0 0.00% 0.00% 0.00% 0 HRPC hudld reque \n" + " 155 0 1 0 0.00% 0.00% 0.00% 0 HRPC vqpc reques \n" + " 156 0 1 0 0.00% 0.00% 0.00% 0 HRPC hled reques \n" + " 157 6720369 1844532907 3 0.00% 0.03% 0.00% 0 Hulc LED Process \n" + " 158 677172 54095331 12 0.00% 0.00% 0.00% 0 HL3U bkgrd proce \n" + " 159 0 1 0 0.00% 0.00% 0.00% 0 HRPC hl3u reques \n" + " 160 25601 16890215 1 0.00% 0.00% 0.00% 0 HIPV6 bkgrd proc \n" + " 161 0 1 0 0.00% 0.00% 0.00% 0 HRPC IPv6 Unicas \n" + " 162 0 1 0 0.00% 0.00% 0.00% 0 HRPC obfl reques \n" + " 164 0 1 0 0.00% 0.00% 0.00% 0 HRPC dtp request \n" + " 165 0 1 0 0.00% 0.00% 0.00% 0 HRPC show_forwar \n" + " 166 0 1 0 0.00% 0.00% 0.00% 0 HRPC snmp reques \n" + " 167 0 1 0 0.00% 0.00% 0.00% 0 HULC SNMP Proces \n" + " 84 223406 268961454 0 0.00% 0.00% 0.00% 0 RedEarth Tx Mana \n" + " 96 0 3 0 0.00% 0.00% 0.00% 0 HRPC hdm non blo \n" + " 170 0 1 0 0.00% 0.00% 0.00% 0 HRPC span reques \n" + " 171 0 1 0 0.00% 0.00% 0.00% 0 HRPC system post \n" + " 172 0 1 0 0.00% 0.00% 0.00% 0 Hulc Reload Mana \n" + " 173 0 1 0 0.00% 0.00% 0.00% 0 HRPC hrcli-event \n" + " 174 106 410794 0 0.00% 0.00% 0.00% 0 HCMP sync proces \n" + " 175 0 2 0 0.00% 0.00% 0.00% 0 image mgr \n" + " 176 0 1 0 0.00% 0.00% 0.00% 0 HRFS OIR Proc \n" + " 177 8542 24647599 0 0.00% 0.00% 0.00% 0 Power RPS Proces \n" + " 178 1410 4959 284 0.00% 0.00% 0.00% 0 HL2MCM \n" + " 179 5 5 1000 0.00% 0.00% 0.00% 0 HL2MCM \n" + " 180 1302 17242 75 0.00% 0.00% 0.00% 0 AAA Server \n" + " 181 0 1 0 0.00% 0.00% 0.00% 0 AAA ACCT Proc \n" + " 182 0 1 0 0.00% 0.00% 0.00% 0 ACCT Periodic Pr \n" + " 183 0 1 0 0.00% 0.00% 0.00% 0 AAA System Acct \n" + " 184 0 1 0 0.00% 0.00% 0.00% 0 Webauth client \n" + " 185 0 1 0 0.00% 0.00% 0.00% 0 Auth-proxy HTTP \n" + " 186 0 1 0 0.00% 0.00% 0.00% 0 IP Admin SM Proc \n" + " 187 4972349 13119827 378 0.00% 0.00% 0.00% 0 CDP Protocol \n" + " 188 0 35 0 0.00% 0.00% 0.00% 0 SpanTree Flush \n" + " 189 132782 36892395 3 0.00% 0.00% 0.00% 0 CEF: IPv4 proces \n" + " 190 0 2 0 0.00% 0.00% 0.00% 0 AAA Dictionary R \n" + " 191 414 616191 0 0.00% 0.00% 0.00% 0 DHCP Snooping \n" + " 100 0 1 0 0.00% 0.00% 0.00% 0 HRPC hautosecure \n" + " 193 0 2 0 0.00% 0.00% 0.00% 0 Dot1x Mgr Proces \n" + " 194 0 1 0 0.00% 0.00% 0.00% 0 EAP Framework \n" + " 195 0 1 0 0.00% 0.00% 0.00% 0 EAP Test \n" + " 196 5 1 5000 0.00% 0.00% 0.00% 0 TRACK Main threa \n" + " 197 0 1 0 0.00% 0.00% 0.00% 0 TRACK Client thr \n" + " 198 0 2 0 0.00% 0.00% 0.00% 0 CEF switching ba \n" + " 199 0 2 0 0.00% 0.00% 0.00% 0 IP ARP Adjacency \n" + " 200 387016 2114622243 0 0.00% 0.00% 0.00% 0 IP ARP Retry Age \n" + " 192 0 1 0 0.00% 0.00% 0.00% 0 DHCP Snooping db \n" + " 202 0 1 0 0.00% 0.00% 0.00% 0 ICMP event handl \n" + " 203 28440 143857599 0 0.00% 0.00% 0.00% 0 IP ARP Track \n" + " 204 0 1 0 0.00% 0.00% 0.00% 0 ADJ NSF process \n" + " 205 0 1 0 0.00% 0.00% 0.00% 0 IPv6 ping proces \n" + " 207 0 2 0 0.00% 0.00% 0.00% 0 REP Topology cha \n" + " 208 0 2 0 0.00% 0.00% 0.00% 0 RIB LM VALIDATE \n" + " 209 729758 2738635 266 0.00% 0.00% 0.00% 0 SMI Director DB \n" + " 210 0 1 0 0.00% 0.00% 0.00% 0 SMI CDP Update H \n" + " 211 0 1 0 0.00% 0.00% 0.00% 0 SMI Backup Proce \n" + " 213 0 1 0 0.00% 0.00% 0.00% 0 SMI IBC client p \n" + " 214 5 2 2500 0.00% 0.00% 0.00% 0 SMI IBC Download \n" + " 215 29616767 256110169 115 0.00% 0.03% 0.04% 0 Spanning Tree \n" + " 216 921 1232133 0 0.00% 0.00% 0.00% 0 Spanning Tree St \n" + " 217 0 10 0 0.00% 0.00% 0.00% 0 802.1x switch \n" + " 218 1262989 7398348 170 0.00% 0.00% 0.00% 0 DTP Protocol \n" + " 219 0 1 0 0.00% 0.00% 0.00% 0 HRPC IPv6 Host r \n" + " 220 0 2 0 0.00% 0.00% 0.00% 0 IPv6 Platform Ho \n" + " 221 0 1 0 0.00% 0.00% 0.00% 0 HRPC dai request \n" + " 222 0 1 0 0.00% 0.00% 0.00% 0 HULC DAI Process \n" + " 223 0 1 0 0.00% 0.00% 0.00% 0 HRPC power down \n" + " 224 0 1 0 0.00% 0.00% 0.00% 0 HRPC ip device t \n" + " 225 0 1 0 0.00% 0.00% 0.00% 0 HRPC ip source g \n" + " 226 5 1 5000 0.00% 0.00% 0.00% 0 HULC IP Source g \n" + " 227 26 3 8666 0.00% 0.00% 0.00% 0 OBFL MSG obfl0 \n" + " 228 2093610 73784490 28 0.00% 0.00% 0.00% 0 PI MATM Aging Pr \n" + " 229 3086389 748746223 4 0.00% 0.00% 0.00% 0 UDLD \n" + " 230 456 2464761 0 0.00% 0.00% 0.00% 0 Port-Security \n" + " 231 0 2 0 0.00% 0.00% 0.00% 0 Switch Backup In \n" + " 232 0 2 0 0.00% 0.00% 0.00% 0 IP Host Track Pr \n" + " 233 0 1 0 0.00% 0.00% 0.00% 0 Link State Group \n" + " 234 40771 1229745 33 0.00% 0.00% 0.00% 0 MMN bkgrd proces \n" + " 235 42279 7378451 5 0.00% 0.00% 0.00% 0 Ethchnl \n" + " 236 51 44 1159 0.00% 0.00% 0.00% 0 VMATM Callback \n" + " 237 0 1 0 0.00% 0.00% 0.00% 0 XDR background p \n" + " 238 82134 1229754 66 0.00% 0.00% 0.00% 0 XDR mcast \n" + " 239 0 1 0 0.00% 0.00% 0.00% 0 XDR RP Ping Back \n" + " 240 0 1 0 0.00% 0.00% 0.00% 0 XDR receive \n" + " 241 0 1 0 0.00% 0.00% 0.00% 0 IPC LC Message H \n" + " 242 0 1 0 0.00% 0.00% 0.00% 0 XDR RP Test Back \n" + " 243 47732 1229745 38 0.00% 0.00% 0.00% 0 FRR Background P \n" + " 244 239049 5167369 46 0.00% 0.00% 0.00% 0 CEF background p \n" + " 245 0 1 0 0.00% 0.00% 0.00% 0 fib_fib_bfd_sb e \n" + " 246 0 1 0 0.00% 0.00% 0.00% 0 IP IRDP \n" + " 247 0 1 0 0.00% 0.00% 0.00% 0 Tunnel FIB \n" + " 248 0 1 0 0.00% 0.00% 0.00% 0 CEF RF HULC Conv \n" + " 249 50329 7378455 6 0.00% 0.00% 0.00% 0 IP ACL XDR LC Ba \n" + " 250 1076612 73785217 14 0.00% 0.00% 0.00% 0 ADJ background \n" + " 251 0 11 0 0.00% 0.00% 0.00% 0 Auth Manager \n" + " 252 0 1 0 0.00% 0.00% 0.00% 0 Critical Auth \n" + " 253 0 1 0 0.00% 0.00% 0.00% 0 EPM MAIN PROCESS \n" + " 254 0 1 0 0.00% 0.00% 0.00% 0 HTTP EPM Redirec \n" + " 255 0 1 0 0.00% 0.00% 0.00% 0 Timer Handler Pr \n" + " 256 0 1 0 0.00% 0.00% 0.00% 0 EPM Downlad Mana \n" + " 257 83740 14756907 5 0.00% 0.00% 0.00% 0 EPM ACL PLUG-IN \n" + " 258 32 3 10666 0.00% 0.00% 0.00% 0 OBFL ENV obfl0 \n" + " 259 44225 147299366 0 0.00% 0.00% 0.00% 0 SVM UT Process \n" + " 260 0 1 0 0.00% 0.00% 0.00% 0 CMD HANDLER \n" + " 261 611 32453 18 0.00% 0.00% 0.00% 0 TCP Timer \n" + " 262 6187 18080 342 0.00% 0.00% 0.00% 0 TCP Protocols \n" + " 263 0 1 0 0.00% 0.00% 0.00% 0 Socket Timers \n" + " 264 299 246452 1 0.00% 0.00% 0.00% 0 HTTP CORE \n" + " 265 439 924115 0 0.00% 0.00% 0.00% 0 Cluster L2 \n" + " 266 58783 7378451 7 0.00% 0.00% 0.00% 0 Cluster RARP \n" + " 267 672536 11977634 56 0.00% 0.00% 0.00% 0 Cluster Base \n" + " 268 0 2 0 0.00% 0.00% 0.00% 0 Dot1x Supplicant \n" + " 269 0 2 0 0.00% 0.00% 0.00% 0 Dot1x Supplicant \n" + " 270 0 2 0 0.00% 0.00% 0.00% 0 Dot1x Supplicant \n" + " 271 0 1 0 0.00% 0.00% 0.00% 0 DSensor HTTP \n" + " 272 0 2 0 0.00% 0.00% 0.00% 0 Routing Topology \n" + " 273 0 1 0 0.00% 0.00% 0.00% 0 CEF RP Backgroun \n" + " 274 0 1 0 0.00% 0.00% 0.00% 0 DCT Bkgd Process \n" + " 275 0 1 0 0.00% 0.00% 0.00% 0 RARP Input \n" + " 276 0 2 0 0.00% 0.00% 0.00% 0 IP RIB Update \n" + " 277 15510749 20536 755295 0.00% 0.00% 0.00% 0 NIST rng proc \n" + " 278 30092 143857599 0 0.00% 0.00% 0.00% 0 Timer Library \n" + " 279 0 3 0 0.00% 0.00% 0.00% 0 static \n" + " 280 0 2 0 0.00% 0.00% 0.00% 0 ADJ resolve proc \n" + " 281 5 1 5000 0.00% 0.00% 0.00% 0 IPv6 RIB Cleanup \n" + " 282 0 1 0 0.00% 0.00% 0.00% 0 IPv6 RIB Event H \n" + " 283 0 1 0 0.00% 0.00% 0.00% 0 IPv6 Static Hand \n" + " 284 0 1 0 0.00% 0.00% 0.00% 0 MAB Framework \n" + " 285 197059 7378446 26 0.00% 0.00% 0.00% 0 QoS stats proces \n" + " 286 0 1 0 0.00% 0.00% 0.00% 0 Connection Mgr \n" + " 287 0 2 0 0.00% 0.00% 0.00% 0 REP LSL Proc \n" + " 288 0 2 0 0.00% 0.00% 0.00% 0 REP BPA/EPA Proc \n" + " 289 0 7 0 0.00% 0.00% 0.00% 0 SNMP Timers \n" + " 290 0 1 0 0.00% 0.00% 0.00% 0 HRPC dhcp snoopi \n" + " 291 0 4 0 0.00% 0.00% 0.00% 0 HULC DHCP Snoopi \n" + " 292 0 1 0 0.00% 0.00% 0.00% 0 HRPC sisf reques \n" + " 293 0 2 0 0.00% 0.00% 0.00% 0 HULC SISF Proces \n" + " 294 0 1 0 0.00% 0.00% 0.00% 0 HULC SISF Source \n" + " 295 47 165 284 0.00% 0.00% 0.00% 0 IGMPSN L2MCM \n" + " 296 77751 627850 123 0.00% 0.00% 0.00% 0 IGMPSN MRD \n" + " 297 101135 1250476 80 0.00% 0.00% 0.00% 0 IGMPSN \n" + " 298 0 1 0 0.00% 0.00% 0.00% 0 IGMPQR \n" + " 299 0 3 0 0.00% 0.00% 0.00% 0 L2TRACE SERVER \n" + " 300 21 163 128 0.00% 0.00% 0.00% 0 MLDSN L2MCM \n" + " 301 0 1 0 0.00% 0.00% 0.00% 0 MRD \n" + " 302 0 1 0 0.00% 0.00% 0.00% 0 MLD_SNOOP \n" + " 303 0 2 0 0.00% 0.00% 0.00% 0 AAA Cached Serve \n" + " 304 0 1 0 0.00% 0.00% 0.00% 0 HRPC hl2mcm igmp \n" + " 305 0 1 0 0.00% 0.00% 0.00% 0 HRPC hl2mcm mlds \n" + " 306 0 2 0 0.00% 0.00% 0.00% 0 ENABLE AAA \n" + " 307 0 3 0 0.00% 0.00% 0.00% 0 LDAP process \n" + " 308 0 2 0 0.00% 0.00% 0.00% 0 Crypto Support \n" + " 309 0 1 0 0.00% 0.00% 0.00% 0 IPSECv6 PS Proc \n" + " 310 0 1 0 0.00% 0.00% 0.00% 0 Key chain liveke \n" + " 311 0 2 0 0.00% 0.00% 0.00% 0 LINE AAA \n" + " 312 73608 560303 131 0.00% 0.00% 0.00% 0 LOCAL AAA \n" + " 314 10 2 5000 0.00% 0.00% 0.00% 0 TPLUS \n" + " 315 5 1 5000 0.00% 0.00% 0.00% 0 LICENSE AGENT \n" + " 316 299 24 12458 0.00% 0.00% 0.00% 0 crypto engine pr \n" + " 317 914326 73784505 12 0.00% 0.00% 0.00% 0 Crypto IKEv2 \n" + " 318 0 1 0 0.00% 0.00% 0.00% 0 IKEv2 AAA handle \n" + " 319 0 3 0 0.00% 0.00% 0.00% 0 Collection proce \n" + " 320 0 1 0 0.00% 0.00% 0.00% 0 encrypt proc \n" + " 321 0 2 0 0.00% 0.00% 0.00% 0 CRYPTO MAP FREE \n" + " 322 0 1 0 0.00% 0.00% 0.00% 0 Crypto INT \n" + " 323 0 2 0 0.00% 0.00% 0.00% 0 Crypto IKE Dispa \n" + " 324 0 3 0 0.00% 0.00% 0.00% 0 Crypto IKMP \n" + " 325 0 1 0 0.00% 0.00% 0.00% 0 IPSEC manual key \n" + " 326 75628 3689230 20 0.00% 0.00% 0.00% 0 IPSEC key engine \n" + " 327 0 5 0 0.00% 0.00% 0.00% 0 Crypto ACL \n" + " 328 0 1 0 0.00% 0.00% 0.00% 0 Crypto PAS Proc \n" + " 329 6 5 1200 0.00% 0.00% 0.00% 0 IPSec background \n" + " 330 0 1 0 0.00% 0.00% 0.00% 0 RSA background p \n" + " 331 356 4 89000 0.00% 0.00% 0.00% 0 Crypto CA \n" + " 332 0 1 0 0.00% 0.00% 0.00% 0 Crypto PKI-CRL \n" + " 333 0 1 0 0.00% 0.00% 0.00% 0 HRPC x_setup req \n" + " 334 0 2 0 0.00% 0.00% 0.00% 0 REP Switch Helpe \n" + " 335 0 1 0 0.00% 0.00% 0.00% 0 Licensing MIB pr \n" + " 336 0 12 0 0.00% 0.00% 0.00% 0 VTP Trap Process \n" + " 337 73672 4918947 14 0.00% 0.00% 0.00% 0 OBFL I/O Buffer \n" + " 338 0 12 0 0.00% 0.00% 0.00% 0 ASP Process Crea \n" + " 339 1080 8621 125 0.00% 0.00% 0.00% 0 AAA SEND STOP EV \n" + " 340 0 1 0 0.00% 0.00% 0.00% 0 Test AAA Client \n" + " 341 10 8 1250 0.00% 0.00% 0.00% 0 DCM Core Thread \n" + " 342 0 2 0 0.00% 0.00% 0.00% 0 DHCP Security He \n" + " 343 0 1 0 0.00% 0.00% 0.00% 0 dcm_cli_engine \n" + " 344 0 3 0 0.00% 0.00% 0.00% 0 dcm_cli_provider \n" + " 345 656 3051 215 0.00% 0.00% 0.00% 0 EEM ED Syslog \n" + " 346 4212 867 4858 0.00% 0.00% 0.00% 0 Syslog Traps \n" + " 347 0 1 0 0.00% 0.00% 0.00% 0 HCD Process \n" + " 348 0 1 0 0.00% 0.00% 0.00% 0 HRPC cable diagn \n" + " 349 0 2 0 0.00% 0.00% 0.00% 0 DiagCard1/-1 \n" + " 350 0 1 0 0.00% 0.00% 0.00% 0 Online Diag EEM \n" + " 351 102186 45784354 2 0.00% 0.00% 0.00% 0 PM Callback \n" + " 353 2103 5913301 0 0.00% 0.00% 0.00% 0 dhcp snooping sw \n" + " 355 21 25 840 0.00% 0.00% 0.00% 0 EEM Server \n" + " 356 16 3 5333 0.00% 0.00% 0.00% 0 Call Home proces \n" + " 357 0 7 0 0.00% 0.00% 0.00% 0 EEM Helper Threa \n" + " 358 112086 7378519 15 0.00% 0.00% 0.00% 0 Bulkstat-Client \n" + " 359 0 1 0 0.00% 0.00% 0.00% 0 tHUB \n" + " 360 79646 1229755 64 0.00% 0.00% 0.00% 0 Call Home Timer \n" + " 361 10 6 1666 0.00% 0.00% 0.00% 0 DCM snmp dp Thre \n" + " 362 5 3 1666 0.00% 0.00% 0.00% 0 snmp dcm ma shim \n" + " 363 0 2 0 0.00% 0.00% 0.00% 0 EEM Policy Direc \n" + " 364 0 2 0 0.00% 0.00% 0.00% 0 STP FAST TRANSIT \n" + " 365 79 219 360 0.00% 0.00% 0.00% 0 EEM ED Config \n" + " 366 0 4 0 0.00% 0.00% 0.00% 0 EEM ED CRASH \n" + " 367 0 4 0 0.00% 0.00% 0.00% 0 EEM ED DS \n" + " 368 6 4 1500 0.00% 0.00% 0.00% 0 EEM ED Env \n" + " 369 615 2154 285 0.00% 0.00% 0.00% 0 EM ED GOLD \n" + " 370 551 2154 255 0.00% 0.00% 0.00% 0 EEM ED OIR \n" + " 371 636 2154 295 0.00% 0.00% 0.00% 0 EEM ED Test \n" + " 372 1922 1236107 1 0.00% 0.00% 0.00% 0 EEM ED Timer \n" + " 373 95 873 108 0.00% 0.00% 0.00% 0 Syslog \n" + " 375 5 4 1250 0.00% 0.00% 0.00% 0 RBM CORE \n" + " 376 0 2 0 0.00% 0.00% 0.00% 0 CSRT RAPID TRANS \n" + " 377 10 6 1666 0.00% 0.00% 0.00% 0 VLAN Manager \n" + " 379 0 20542 0 0.00% 0.00% 0.00% 0 SSH Event handle \n" + " 380 3822891 11885393 321 0.00% 0.00% 0.00% 0 IP SNMP \n" + " 381 1794219 5940755 302 0.00% 0.00% 0.00% 0 PDU DISPATCHER \n" + " 382 20623921 5982869 3447 0.00% 0.00% 0.00% 0 SNMP ENGINE \n" + " 383 0 2 0 0.00% 0.00% 0.00% 0 IP SNMPV6 \n" + " 384 0 1 0 0.00% 0.00% 0.00% 0 SNMP ConfCopyPro \n" + " 385 8514 4763 1787 0.00% 0.00% 0.00% 0 SNMP Traps \n" + " 386 0 1 0 0.00% 0.00% 0.00% 0 T+ Admin \n" + " 387 64725 75462918 0 0.00% 0.00% 0.00% 0 NTP \n" + " 388 0 3 0 0.00% 0.00% 0.00% 0 hulc cfg mgr mas \n" + " 389 2454 96 25562 0.00% 0.00% 0.00% 0 hulc running con \n" + " \n" + " \n" + " 33333 \n" + " 773333355555555556666677777444448888888888555555555544444555\n" + " 100 \n" + " 90 \n" + " 80 \n" + " 70 \n" + " 60 \n" + " 50 \n" + " 40 \n" + " 30 ***** \n" + " 20 ***** \n" + " 10 *************************** ******************** *\n" + " 0....5....1....1....2....2....3....3....4....4....5....5....6\n" + " 0 5 0 5 0 5 0 5 0 5 0\n" + " CPU% per second (last 60 seconds)\n\n" + " \n" + " \n" + " \n" + " 1111111 111111111112111111111111111111111111 11111111111111\n" + " 444071494219141414238414575444104030451647639933422323444454\n" + " 100 \n" + " 90 \n" + " 80 \n" + " 70 \n" + " 60 \n" + " 50 \n" + " 40 \n" + " 30 \n" + " 20 * * ** *** * * ** \n" + " 10 ##########################################################\n" + " 0....5....1....1....2....2....3....3....4....4....5....5....6\n" + " 0 5 0 5 0 5 0 5 0 5 0\n" + " CPU% per minute (last 60 minutes)\n" + " * = maximum CPU% # = average CPU%\n\n" + " \n" + " \n" + " \n" + " 222212232322622221222222122222222232812222312232231222241222722122223222\n" + " 533383375230583638335353836335143363484333083323228393318144943933382525\n" + " 100 \n" + " 90 \n" + " 80 * * \n" + " 70 * * * \n" + " 60 * * * \n" + " 50 * * * \n" + " 40 * * * * * * \n" + " 30 * *** ** * * * * * * * * * * * * * ***\n" + " 20 **********************************************************************\n" + " 10 ######################################################################\n" + " 0....5....1....1....2....2....3....3....4....4....5....5....6....6....7..\n" + " 0 5 0 5 0 5 0 5 0 5 0 5 0 \n" + " CPU% per hour (last 72 hours)\n" + " * = maximum CPU% # = average CPU%\n\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + "Building configuration...\n\n" + "Current configuration : 17599 bytes\n" + "!\n" + "! Last configuration change at 17:29:46 UTC Mon Feb 15 2021 by admin\n" + "! NVRAM config last updated at 17:29:47 UTC Mon Feb 15 2021 by admin\n" + "!\n" + "version 15.2\n" + "service nagle\n" + "no service pad\n" + "service tcp-keepalives-in\n" + "service tcp-keepalives-out\n" + "service timestamps debug datetime localtime show-timezone\n" + "service timestamps log datetime localtime show-timezone\n" + "service password-encryption\n" + "service pt-vty-logging\n" + "service sequence-numbers\n" + "!\n" + "hostname NFC8FM1I12OOBSW102\n" + "!\n" + "boot-start-marker\n" + "boot-end-marker\n" + "!\n" + "logging count\n" + "logging snmp-authfail\n" + "logging buffered 64000 informational\n" + "logging rate-limit console 3 except critical\n" + "logging console critical\n" + "enable secret 5 $1$6eNO$gr7DfKJd6IfN6COvYOuLo.\n" + "!\n" + "username admin privilege 15 secret 5 $1$k1wF$z6a//tICvFtVZCMjyAjtp.\n" + "no aaa new-model\n" + "switch 1 provision ws-c2960s-24ts-l\n" + "no ip source-route\n" + "no ip gratuitous-arps\n" + "ip icmp rate-limit unreachable 2000\n" + "ip icmp rate-limit unreachable DF 2000\n" + "!\n" + "!\n" + "no ip domain-lookup\n" + "ip domain-name gfoundries.com\n" + "vtp domain gfoundries\n" + "vtp mode transparent\n" + "!\n" + "!\n" + "!\n" + "!\n" + "!\n" + "udld aggressive\n\n" + "!\n" + "mls qos\n" + "!\n" + "!\n" + "file prompt quiet\n" + "!\n" + "spanning-tree mode rapid-pvst\n" + "spanning-tree loopguard default\n" + "spanning-tree portfast default\n" + "spanning-tree portfast bpduguard default\n" + "spanning-tree extend system-id\n" + "!\n" + "!\n" + "!\n" + "!\n" + "vlan internal allocation policy ascending\n" + "!\n" + "vlan 98\n" + " name SIT-OOB-Mgmt\n" + "!\n" + "vlan 99\n" + " name SRV-MGMT-FCAPS\n" + "!\n" + "ip tcp selective-ack\n" + "ip tcp synwait-time 5\n" + "ip tcp path-mtu-discovery\n" + "!\n" + "! \n" + "!\n" + "!\n" + "!\n" + "!\n" + "!\n" + "!\n" + "!\n" + "!\n" + "interface FastEthernet0\n" + " description UNUSED\n" + " no ip address\n" + " shutdown\n" + "!\n" + "interface GigabitEthernet1/0/1\n" + " description NFC8FM1I12OOBCS102A-ETH1\n" + " switchport access vlan 98\n" + " switchport mode access\n" + " load-interval 30\n" + " storm-control broadcast level 7.50\n" + " storm-control action trap\n" + "!\n" + "interface GigabitEthernet1/0/2\n" + " description NFC8FM1I12OOBNT102-Mgmt\n" + " switchport access vlan 99\n" + " switchport mode access\n" + " load-interval 30\n" + " storm-control broadcast level 7.50\n" + " storm-control action trap\n" + "!\n" + "interface GigabitEthernet1/0/3\n" + " description UNUSED\n" + " switchport access vlan 98\n" + " switchport mode access\n" + " load-interval 30\n" + " shutdown\n" + " storm-control broadcast level 7.50\n" + " storm-control action trap\n" + "!\n" + "interface GigabitEthernet1/0/4\n" + " description UNUSED\n" + " switchport access vlan 98\n" + " switchport mode access\n" + " load-interval 30\n" + " shutdown\n" + " storm-control broadcast level 7.50\n" + " storm-control action trap\n" + "!\n" + "interface GigabitEthernet1/0/5\n" + " description UNUSED\n" + " switchport access vlan 98\n" + " switchport mode access\n" + " load-interval 30\n" + " shutdown\n" + " storm-control broadcast level 7.50\n" + " storm-control action trap\n" + "!\n" + "interface GigabitEthernet1/0/6\n" + " description UNUSED\n" + " switchport access vlan 98\n" + " switchport mode access\n" + " load-interval 30\n" + " shutdown\n" + " storm-control broadcast level 7.50\n" + " storm-control action trap\n" + "!\n" + "interface GigabitEthernet1/0/7\n" + " description UNUSED\n" + " switchport access vlan 98\n" + " switchport mode access\n" + " load-interval 30\n" + " shutdown\n" + " storm-control broadcast level 7.50\n" + " storm-control action trap\n" + "!\n" + "interface GigabitEthernet1/0/8\n" + " description UNUSED\n" + " switchport access vlan 98\n" + " switchport mode access\n" + " load-interval 30\n" + " shutdown\n" + " storm-control broadcast level 7.50\n" + " storm-control action trap\n" + "!\n" + "interface GigabitEthernet1/0/9\n" + " description UNUSED\n" + " switchport access vlan 98\n" + " switchport mode access\n" + " load-interval 30\n" + " shutdown\n" + " storm-control broadcast level 7.50\n" + " storm-control action trap\n" + "!\n" + "interface GigabitEthernet1/0/10\n" + " description UNUSED\n" + " switchport access vlan 98\n" + " switchport mode access\n" + " load-interval 30\n" + " shutdown\n" + " storm-control broadcast level 7.50\n" + " storm-control action trap\n" + "!\n" + "interface GigabitEthernet1/0/11\n" + " description UNUSED\n" + " switchport access vlan 98\n" + " switchport mode access\n" + " load-interval 30\n" + " shutdown\n" + " storm-control broadcast level 7.50\n" + " storm-control action trap\n" + "!\n" + "interface GigabitEthernet1/0/12\n" + " description UNUSED\n" + " switchport access vlan 98\n" + " switchport mode access\n" + " load-interval 30\n" + " shutdown\n" + " storm-control broadcast level 7.50\n" + " storm-control action trap\n" + "!\n" + "interface GigabitEthernet1/0/13\n" + " description UNUSED\n" + " switchport access vlan 98\n" + " switchport mode access\n" + " load-interval 30\n" + " shutdown\n" + " storm-control broadcast level 7.50\n" + " storm-control action trap\n" + "!\n" + "interface GigabitEthernet1/0/14\n" + " description UNUSED\n" + " switchport access vlan 98\n" + " switchport mode access\n" + " load-interval 30\n" + " shutdown\n" + " storm-control broadcast level 7.50\n" + " storm-control action trap\n" + "!\n" + "interface GigabitEthernet1/0/15\n" + " description UNUSED\n" + " switchport access vlan 98\n" + " switchport mode access\n" + " load-interval 30\n" + " shutdown\n" + " storm-control broadcast level 7.50\n" + " storm-control action trap\n" + "!\n" + "interface GigabitEthernet1/0/16\n" + " description UNUSED\n" + " switchport access vlan 98\n" + " switchport mode access\n" + " load-interval 30\n" + " shutdown\n" + " storm-control broadcast level 7.50\n" + " storm-control action trap\n" + "!\n" + "interface GigabitEthernet1/0/17\n" + " description UNUSED\n" + " switchport access vlan 98\n" + " switchport mode access\n" + " load-interval 30\n" + " shutdown\n" + " storm-control broadcast level 7.50\n" + " storm-control action trap\n" + "!\n" + "interface GigabitEthernet1/0/18\n" + " description UNUSED\n" + " switchport access vlan 98\n" + " switchport mode access\n" + " load-interval 30\n" + " shutdown\n" + " storm-control broadcast level 7.50\n" + " storm-control action trap\n" + "!\n" + "interface GigabitEthernet1/0/19\n" + " description UNUSED\n" + " switchport access vlan 98\n" + " switchport mode access\n" + " load-interval 30\n" + " shutdown\n" + " storm-control broadcast level 7.50\n" + " storm-control action trap\n" + "!\n" + "interface GigabitEthernet1/0/20\n" + " description UNUSED\n" + " switchport access vlan 98\n" + " switchport mode access\n" + " load-interval 30\n" + " shutdown\n" + " storm-control broadcast level 7.50\n" + " storm-control action trap\n" + "!\n" + "interface GigabitEthernet1/0/21\n" + " description UNUSED\n" + " switchport access vlan 98\n" + " switchport mode access\n" + " load-interval 30\n" + " shutdown\n" + " storm-control broadcast level 7.50\n" + " storm-control action trap\n" + "!\n" + "interface GigabitEthernet1/0/22\n" + " description UNUSED\n" + " switchport access vlan 98\n" + " switchport mode access\n" + " load-interval 30\n" + " shutdown\n" + " storm-control broadcast level 7.50\n" + " storm-control action trap\n" + "!\n" + "interface GigabitEthernet1/0/23\n" + " description UNUSED\n" + " switchport access vlan 98\n" + " switchport mode access\n" + " load-interval 30\n" + " shutdown\n" + " storm-control broadcast level 7.50\n" + " storm-control action trap\n" + "!\n" + "interface GigabitEthernet1/0/24\n" + " description UNUSED\n" + " switchport access vlan 98\n" + " switchport mode access\n" + " load-interval 30\n" + " shutdown\n" + " storm-control broadcast level 7.50\n" + " storm-control action trap\n" + "!\n" + "interface GigabitEthernet1/0/25\n" + " switchport trunk allowed vlan 98,99\n" + " switchport mode trunk\n" + "!\n" + "interface GigabitEthernet1/0/26\n" + " switchport trunk allowed vlan 98,99\n" + " switchport mode trunk\n" + "!\n" + "interface GigabitEthernet1/0/27\n" + " description UNUSED\n" + " switchport access vlan 98\n" + " switchport mode access\n" + " load-interval 30\n" + " shutdown\n" + " storm-control broadcast level 7.50\n" + " storm-control action trap\n" + "!\n" + "interface GigabitEthernet1/0/28\n" + " description UNUSED\n" + " switchport access vlan 98\n" + " switchport mode access\n" + " load-interval 30\n" + " shutdown\n" + " storm-control broadcast level 7.50\n" + " storm-control action trap\n" + "!\n" + "interface Vlan1\n" + " description UNUSED\n" + " no ip address\n" + " shutdown\n" + "!\n" + "interface Vlan98\n" + " description SIT-OOB-Mgmt\n" + " ip address 192.168.251.101 255.255.252.0\n" + " ip access-group 183 in\n" + " no ip redirects\n" + " no ip unreachables\n" + " no ip proxy-arp\n" + "!\n" + "ip default-gateway 192.168.251.254\n" + "no ip http server\n" + "no ip http secure-server\n" + "!\n" + "ip ssh time-out 60\n" + "ip ssh version 2\n" + "ip scp server enable\n" + "!\n" + "ip access-list standard snmp-ro\n" + " remark *** Emergency Response ***\n" + " permit 10.10.52.28\n" + " permit 10.10.39.100\n" + " permit 10.10.52.92\n" + " permit 10.10.39.81\n" + " permit 10.10.39.80\n" + " remark *** ISE***\n" + " permit 10.10.33.201\n" + " permit 10.10.33.200\n" + " permit 10.10.33.203\n" + " permit 10.10.33.202\n" + " permit 10.32.31.202\n" + " remark *** FCAPS ***\n" + " permit 10.10.55.0 0.0.0.255\n" + " permit 10.11.55.0 0.0.0.255\n" + "ip access-list standard snmp-rw\n" + " remark *** FCAPS ***\n" + " permit 10.10.55.0 0.0.0.255\n" + " permit 10.11.55.0 0.0.0.255\n" + "!\n" + "logging trap notifications\n" + "logging origin-id hostname\n" + "logging source-interface Vlan98\n" + "logging host 10.10.55.14\n" + "logging host 10.10.55.28\n" + "logging host 10.10.55.6 transport udp port 515\n" + "access-list 99 permit 10.250.54.236\n" + "access-list 99 permit 10.10.39.236\n" + "access-list 99 permit 10.10.35.236\n" + "access-list 183 remark access-list 183 remark SSH\n" + "access-list 183 remark SSH-JUMP SERVERS\n" + "access-list 183 permit tcp host 10.10.36.167 any eq 22\n" + "access-list 183 permit tcp host 10.10.55.130 any eq 22\n" + "access-list 183 permit tcp host 10.11.36.28 any eq 22\n" + "access-list 183 permit tcp host 10.11.36.57 any eq 22\n" + "access-list 183 permit tcp 10.10.55.0 0.0.0.7 any eq 22\n" + "access-list 183 permit tcp 10.10.55.32 0.0.0.7 any eq 22\n" + "access-list 183 permit tcp 10.10.55.96 0.0.0.7 any eq 22\n" + "access-list 183 permit tcp host 10.32.16.6 any eq 22\n" + "access-list 183 remark SSH-PROD TRANSIT NETWORKS\n" + "access-list 183 permit tcp 10.11.0.0 0.0.1.255 any eq 22\n" + "access-list 183 permit tcp 10.11.30.0 0.0.0.255 any eq 22\n" + "access-list 183 permit tcp 10.11.31.0 0.0.0.255 any eq 22\n" + "access-list 183 permit tcp 10.11.35.0 0.0.0.255 any eq 22\n" + "access-list 183 permit tcp 10.11.79.0 0.0.0.255 any eq 22\n" + "access-list 183 permit tcp 10.11.126.0 0.0.1.255 any eq 22\n" + "access-list 183 permit tcp 10.11.158.0 0.0.1.255 any eq 22\n" + "access-list 183 permit tcp 10.11.174.0 0.0.1.255 any eq 22\n" + "access-list 183 permit tcp 10.11.223.0 0.0.0.255 any eq 22\n" + "access-list 183 remark SSH-SITE TRANSIT NETWORKS\n" + "access-list 183 permit tcp 10.8.0.0 0.0.1.255 any eq 22\n" + "access-list 183 permit tcp 10.10.0.0 0.0.1.255 any eq 22\n" + "access-list 183 permit tcp 10.32.0.0 0.0.16.255 any eq 22\n" + "access-list 183 permit tcp 10.33.0.0 0.0.16.255 any eq 22\n" + "access-list 183 permit tcp 10.34.0.0 0.0.0.255 any eq 22\n" + "access-list 183 permit tcp 10.34.16.0 0.0.0.255 any eq 22\n" + "access-list 183 permit tcp 10.34.32.0 0.0.0.255 any eq 22\n" + "access-list 183 permit tcp 10.34.48.0 0.0.0.255 any eq 22\n" + "access-list 183 permit tcp 10.10.35.0 0.0.0.255 any eq 22\n" + "access-list 183 permit tcp 10.10.39.0 0.0.0.255 any eq 22\n" + "access-list 183 permit tcp 10.10.55.0 0.0.0.255 any eq 22\n" + "access-list 183 permit tcp 10.10.56.0 0.0.3.255 any eq 22\n" + "access-list 183 permit tcp 10.10.60.0 0.0.3.255 any eq 22\n" + "access-list 183 permit tcp 10.10.95.0 0.0.0.255 any eq 22\n" + "access-list 183 permit tcp 10.10.127.0 0.0.0.255 any eq 22\n" + "access-list 183 permit tcp 10.10.224.0 0.0.0.255 any eq 22\n" + "access-list 183 permit tcp 10.10.240.0 0.0.0.255 any eq 22\n" + "access-list 183 permit tcp 10.10.241.0 0.0.0.255 any eq 22\n" + "access-list 183 permit tcp 10.10.252.0 0.0.0.255 any eq 22\n" + "access-list 183 permit tcp 10.250.0.0 0.0.0.255 any eq 22\n" + "access-list 183 remark Cisco ISE-SSH\n" + "access-list 183 permit tcp host 10.10.33.200 any eq 22\n" + "access-list 183 permit tcp host 10.10.33.201 any eq 22\n" + "access-list 183 permit tcp host 10.10.33.202 any eq 22\n" + "access-list 183 permit tcp host 10.10.33.203 any eq 22\n" + "access-list 183 permit tcp host 10.10.39.80 any eq 22\n" + "access-list 183 permit tcp host 10.10.39.81 any eq 22\n" + "access-list 183 permit tcp host 10.32.31.202 any eq 22\n" + "access-list 183 remark PROD NTP\n" + "access-list 183 permit udp host 10.11.35.236 eq ntp any\n" + "access-list 183 permit udp host 10.11.39.236 eq ntp any\n" + "access-list 183 remark SITE NTP\n" + "access-list 183 permit udp host 10.10.35.236 eq ntp any\n" + "access-list 183 permit udp host 10.10.39.236 eq ntp any\n" + "access-list 183 remark California NTP\n" + "access-list 183 permit udp host 10.32.16.236 eq ntp any\n" + "access-list 183 permit udp host 10.32.17.236 eq ntp any\n" + "access-list 183 remark FTP\n" + "access-list 183 permit tcp any any eq ftp\n" + "access-list 183 permit tcp any any eq ftp-data\n" + "access-list 183 remark TACACS\n" + "access-list 183 permit tcp host 10.10.55.128 eq tacacs any\n" + "access-list 183 permit tcp host 10.10.55.129 eq tacacs any\n" + "access-list 183 permit tcp host 10.32.6.1 eq tacacs any\n" + "access-list 183 remark SNMP\n" + "access-list 183 permit udp 10.10.55.0 0.0.0.255 any eq snmp\n" + "access-list 183 permit udp 10.11.55.0 0.0.0.255 any eq snmp\n" + "access-list 183 remark *** Emergency Response ***\n" + "access-list 183 permit udp host 10.10.52.28 any eq snmp\n" + "access-list 183 permit udp host 10.10.52.92 any eq snmp\n" + "access-list 183 remark Cisco ISE\n" + "access-list 183 permit udp host 10.10.35.1 any eq snmp\n" + "access-list 183 permit udp host 10.10.33.200 any eq snmp\n" + "access-list 183 permit udp host 10.10.33.201 any eq snmp\n" + "access-list 183 permit udp host 10.10.33.202 any eq snmp\n" + "access-list 183 permit udp host 10.10.33.203 any eq snmp\n" + "access-list 183 permit udp host 10.10.39.80 any eq snmp\n" + "access-list 183 permit udp host 10.10.39.81 any eq snmp\n" + "access-list 183 permit udp host 10.10.39.100 any eq snmp\n" + "access-list 183 permit udp host 10.32.31.202 any eq snmp\n" + "access-list 183 remark Cisco ISE-Radius\n" + "access-list 183 permit icmp host 10.10.35.1 any\n" + "access-list 183 permit icmp host 10.10.33.200 any\n" + "access-list 183 permit icmp host 10.10.33.201 any\n" + "access-list 183 permit icmp host 10.10.33.202 any\n" + "access-list 183 permit icmp host 10.10.33.203 any\n" + "access-list 183 permit icmp host 10.10.39.80 any\n" + "access-list 183 permit icmp host 10.10.39.81 any\n" + "access-list 183 permit icmp host 10.10.39.100 any\n" + "access-list 183 permit icmp host 10.32.31.202 any\n" + "access-list 183 permit udp host 10.10.33.200 any eq 1700\n" + "access-list 183 permit udp host 10.10.33.201 any eq 1700\n" + "access-list 183 permit udp host 10.10.33.202 any eq 1700\n" + "access-list 183 permit udp host 10.10.33.203 any eq 1700\n" + "access-list 183 permit udp host 10.10.35.1 any eq 1700\n" + "access-list 183 permit udp host 10.10.39.80 any eq 1700\n" + "access-list 183 permit udp host 10.10.39.81 any eq 1700\n" + "access-list 183 permit udp host 10.10.39.100 any eq 1700\n" + "access-list 183 permit udp host 10.32.31.202 any eq 1700\n" + "access-list 183 permit udp host 10.10.33.200 any range 1812 1813\n" + "access-list 183 permit udp host 10.10.33.201 any range 1812 1813\n" + "access-list 183 permit udp host 10.10.33.202 any range 1812 1813\n" + "access-list 183 permit udp host 10.10.33.203 any range 1812 1813\n" + "access-list 183 permit udp host 10.10.35.1 any range 1812 1813\n" + "access-list 183 permit udp host 10.10.39.80 any range 1812 1813\n" + "access-list 183 permit udp host 10.10.39.81 any range 1812 1813\n" + "access-list 183 permit udp host 10.10.39.100 any range 1812 1813\n" + "access-list 183 permit udp host 10.32.31.202 any range 1812 1813\n" + "access-list 183 remark FCAPS\n" + "access-list 183 permit icmp 10.10.55.0 0.0.0.255 any\n" + "access-list 183 permit icmp 10.11.55.0 0.0.0.255 any\n" + "!\n" + "snmp-server community GFWanRoCom RO snmp-ro\n" + "snmp-server community Gr33n3ggs&H8m RO snmp-ro\n" + "snmp-server community GFWanRwCom RW snmp-rw\n" + "snmp-server trap-source Vlan98\n" + "snmp-server location LFC - FAB8 - FM1 - IDF12 - Rack2 - Unit 28\n" + "snmp-server enable traps snmp authentication linkdown linkup coldstart warmstart\n" + "snmp-server enable traps transceiver all\n" + "snmp-server enable traps call-home message-send-fail server-fail\n" + "snmp-server enable traps tty\n" + "snmp-server enable traps license\n" + "snmp-server enable traps auth-framework sec-violation\n" + "snmp-server enable traps cluster\n" + "snmp-server enable traps config-copy\n" + "snmp-server enable traps config\n" + "snmp-server enable traps config-ctid\n" + "snmp-server enable traps energywise\n" + "snmp-server enable traps fru-ctrl\n" + "snmp-server enable traps entity\n" + "snmp-server enable traps event-manager\n" + "snmp-server enable traps cpu threshold\n" + "snmp-server enable traps rep\n" + "snmp-server enable traps vstack\n" + "snmp-server enable traps bridge newroot topologychange\n" + "snmp-server enable traps stpx inconsistency root-inconsistency loop-inconsistency\n" + "snmp-server enable traps syslog\n" + "snmp-server enable traps vtp\n" + "snmp-server enable traps vlancreate\n" + "snmp-server enable traps vlandelete\n" + "snmp-server enable traps flash insertion removal\n" + "snmp-server enable traps port-security\n" + "snmp-server enable traps envmon fan shutdown supply temperature status\n" + "snmp-server enable traps stackwise\n" + "snmp-server enable traps errdisable\n" + "snmp-server enable traps mac-notification change move threshold\n" + "snmp-server enable traps vlan-membership\n" + "snmp-server host 10.10.55.14 Gr33n3ggs&H8m \n" + "snmp-server host 10.10.55.6 version 2c Gr33n3ggs&H8m \n" + "snmp-server host 10.10.55.28 version 2c us-trap \n" + "snmp ifmib ifindex persist\n" + "tacacs-server host 10.10.55.128\n" + "tacacs-server host 10.10.55.129\n" + "tacacs-server host 10.250.53.128\n" + "tacacs-server administration\n" + "!\n" + "no vstack\n" + "banner exec ^C\n" + "=======================================================================\n" + "Connected to $(hostname).$(domain) on line $(line).\n" + "Use of this system constitutes your consent to monitoring.\n" + "=======================================================================\n" + "^C\n" + "banner motd ^C\n" + "=======================================================================\n" + "This is an official computer system and is the property of \n" + "GLOBALFOUNDRIES. It is for authorized users only. Unauthorized users \n" + "are prohibited. Users, authorized or unauthorized, have no explicit\n" + "or implicit expectation of privacy. Any or all users of this system \n" + "may be subject to the following actions: interception, monitoring, \n" + "recording, auditing, inspection and disclosing to security personnel\n" + "and law enforcement personnel, as well as authorized officials of \n" + "other agencies, both domestic and foreign. By using this system, the\n" + "user consents to these actions. Unauthorized or improper use of this\n" + "system may result in administrative disciplinary action and civil or\n" + "criminal penalties. By accessing this system you indicate your\n" + "awareness of and consent to these terms and conditions of use. \n" + "Discontinue access immediately if you do not agree to the conditions\n" + "stated in this notice.\n" + "=======================================================================\n" + "^C\n" + "!\n" + "line con 0\n" + " logging synchronous\n" + " notify\n" + " transport preferred none\n" + " transport output ssh\n" + "line vty 0 4\n" + " login local\n" + " transport preferred none\n" + " transport input ssh\n" + " transport output ssh\n" + "line vty 5 15\n" + " login local\n" + " no exec\n" + " transport input none\n" + " transport output none\n" + "!\n" + "scheduler process-watchdog reload\n" + "ntp source Vlan98\n" + "ntp access-group peer 99\n" + "ntp server 10.250.54.236\n" + "ntp server 10.10.39.236\n" + "ntp server 10.10.35.236\n" + "end\n" + "Interface IP-Address OK? Method Status Protocol\n" + "Vlan1 unassigned YES NVRAM administratively down down \n" + "Vlan98 192.168.251.101 YES NVRAM up up \n" + "FastEthernet0 unassigned YES NVRAM administratively down down \n" + "GigabitEthernet1/0/1 unassigned YES unset up up \n" + "GigabitEthernet1/0/2 unassigned YES unset up up \n" + "GigabitEthernet1/0/3 unassigned YES unset administratively down down \n" + "GigabitEthernet1/0/4 unassigned YES unset administratively down down \n" + "GigabitEthernet1/0/5 unassigned YES unset administratively down down \n" + "GigabitEthernet1/0/6 unassigned YES unset administratively down down \n" + "GigabitEthernet1/0/7 unassigned YES unset administratively down down \n" + "GigabitEthernet1/0/8 unassigned YES unset administratively down down \n" + "GigabitEthernet1/0/9 unassigned YES unset administratively down down \n" + "GigabitEthernet1/0/10 unassigned YES unset administratively down down \n" + "GigabitEthernet1/0/11 unassigned YES unset administratively down down \n" + "GigabitEthernet1/0/12 unassigned YES unset administratively down down \n" + "GigabitEthernet1/0/13 unassigned YES unset administratively down down \n" + "GigabitEthernet1/0/14 unassigned YES unset administratively down down \n" + "GigabitEthernet1/0/15 unassigned YES unset administratively down down \n" + "GigabitEthernet1/0/16 unassigned YES unset administratively down down \n" + "GigabitEthernet1/0/17 unassigned YES unset administratively down down \n" + "GigabitEthernet1/0/18 unassigned YES unset administratively down down \n" + "GigabitEthernet1/0/19 unassigned YES unset administratively down down \n" + "GigabitEthernet1/0/20 unassigned YES unset administratively down down \n" + "GigabitEthernet1/0/21 unassigned YES unset administratively down down \n" + "GigabitEthernet1/0/22 unassigned YES unset administratively down down \n" + "GigabitEthernet1/0/23 unassigned YES unset administratively down down \n" + "GigabitEthernet1/0/24 unassigned YES unset administratively down down \n" + "GigabitEthernet1/0/25 unassigned YES unset up up \n" + "GigabitEthernet1/0/26 unassigned YES unset up up \n" + "GigabitEthernet1/0/27 unassigned YES unset administratively down down \n" + "GigabitEthernet1/0/28 unassigned YES unset administratively down down ^\n" + "% Invalid input detected at '^' marker.\n" + "Capability Codes: R - Router, T - Trans Bridge, B - Source Route Bridge\n" + " S - Switch, H - Host, I - IGMP, r - Repeater, P - Phone, \n" + " D - Remote, C - CVTA, M - Two-port Mac Relay \n\n" + "Device ID Local Intrfce Holdtme Capability Platform Port ID\n" + "NLFCSP1MDFOOBDS125B.gfoundries.com\n" + " Gig 1/0/25 179 S I WS-C3750X Gig 1/0/4\n" + "NLFCCU1MDFOOBDS125B.gfoundries.com\n" + " Gig 1/0/26 177 S I WS-C3750X Gig 1/0/4\n\n" + "Total cdp entries displayed : 2-------------------------\n" + "Device ID: NLFCSP1MDFOOBDS125B.gfoundries.com\n" + "Entry address(es): \n" + " IP address: 192.168.251.117\n" + "Platform: cisco WS-C3750X-24S, Capabilities: Switch IGMP \n" + "Interface: GigabitEthernet1/0/25, Port ID (outgoing port): GigabitEthernet1/0/4\n" + "Holdtime : 178 sec\n\n" + "Version :\n" + "Cisco IOS Software, C3750E Software (C3750E-UNIVERSALK9-M), Version 15.2(4)E6, RELEASE SOFTWARE (fc4)\n" + "Technical Support: http://www.cisco.com/techsupport\n" + "Copyright (c) 1986-2018 by Cisco Systems, Inc.\n" + "Compiled Thu 05-Apr-18 02:22 by prod_rel_team\n\n" + "advertisement version: 2\n" + "Protocol Hello: OUI=0x00000C, Protocol ID=0x0112; payload len=27, value=00000000FFFFFFFF010221FF000000000000BC166565B380FF0000\n" + "VTP Management Domain: 'gfoundries'\n" + "Native VLAN: 1\n" + "Duplex: full\n" + "Management address(es): \n" + " IP address: 192.168.251.117\n\n" + "-------------------------\n" + "Device ID: NLFCCU1MDFOOBDS125B.gfoundries.com\n" + "Entry address(es): \n" + " IP address: 192.168.251.116\n" + "Platform: cisco WS-C3750X-24S, Capabilities: Switch IGMP \n" + "Interface: GigabitEthernet1/0/26, Port ID (outgoing port): GigabitEthernet1/0/4\n" + "Holdtime : 176 sec\n\n" + "Version :\n" + "Cisco IOS Software, C3750E Software (C3750E-UNIVERSALK9-M), Version 15.2(4)E6, RELEASE SOFTWARE (fc4)\n" + "Technical Support: http://www.cisco.com/techsupport\n" + "Copyright (c) 1986-2018 by Cisco Systems, Inc.\n" + "Compiled Thu 05-Apr-18 02:22 by prod_rel_team\n\n" + "advertisement version: 2\n" + "Protocol Hello: OUI=0x00000C, Protocol ID=0x0112; payload len=27, value=00000000FFFFFFFF010221FF000000000000BC16650D0500FF0000\n" + "VTP Management Domain: 'gfoundries'\n" + "Native VLAN: 1\n" + "Duplex: full\n" + "Management address(es): \n" + " IP address: 192.168.251.116\n\n\n" + "Total cdp entries displayed : 2% LLDP is not enabled% LLDP is not enabledInterface Status Protocol Description\n" + "Vl1 admin down down UNUSED\n" + "Vl98 up up SIT-OOB-Mgmt\n" + "Fa0 admin down down UNUSED\n" + "Gi1/0/1 up up NFC8FM1I12OOBCS102A-ETH1\n" + "Gi1/0/2 up up NFC8FM1I12OOBNT102-Mgmt\n" + "Gi1/0/3 admin down down UNUSED\n" + "Gi1/0/4 admin down down UNUSED\n" + "Gi1/0/5 admin down down UNUSED\n" + "Gi1/0/6 admin down down UNUSED\n" + "Gi1/0/7 admin down down UNUSED\n" + "Gi1/0/8 admin down down UNUSED\n" + "Gi1/0/9 admin down down UNUSED\n" + "Gi1/0/10 admin down down UNUSED\n" + "Gi1/0/11 admin down down UNUSED\n" + "Gi1/0/12 admin down down UNUSED\n" + "Gi1/0/13 admin down down UNUSED\n" + "Gi1/0/14 admin down down UNUSED\n" + "Gi1/0/15 admin down down UNUSED\n" + "Gi1/0/16 admin down down UNUSED\n" + "Gi1/0/17 admin down down UNUSED\n" + "Gi1/0/18 admin down down UNUSED\n" + "Gi1/0/19 admin down down UNUSED\n" + "Gi1/0/20 admin down down UNUSED\n" + "Gi1/0/21 admin down down UNUSED\n" + "Gi1/0/22 admin down down UNUSED\n" + "Gi1/0/23 admin down down UNUSED\n" + "Gi1/0/24 admin down down UNUSED\n" + "Gi1/0/25 up up \n" + "Gi1/0/26 up up \n" + "Gi1/0/27 admin down down UNUSED\n" + "Gi1/0/28 admin down down UNUSED\n" + "Port Name Status Vlan Duplex Speed Type \n" + "Gi1/0/1 NFC8FM1I12OOBCS102 connected 98 a-full a-100 10/100/1000BaseTX\n" + "Gi1/0/2 NFC8FM1I12OOBNT102 connected 99 a-full a-1000 10/100/1000BaseTX\n" + "Gi1/0/3 UNUSED disabled 98 auto auto 10/100/1000BaseTX\n" + "Gi1/0/4 UNUSED disabled 98 auto auto 10/100/1000BaseTX\n" + "Gi1/0/5 UNUSED disabled 98 auto auto 10/100/1000BaseTX\n" + "Gi1/0/6 UNUSED disabled 98 auto auto 10/100/1000BaseTX\n" + "Gi1/0/7 UNUSED disabled 98 auto auto 10/100/1000BaseTX\n" + "Gi1/0/8 UNUSED disabled 98 auto auto 10/100/1000BaseTX\n" + "Gi1/0/9 UNUSED disabled 98 auto auto 10/100/1000BaseTX\n" + "Gi1/0/10 UNUSED disabled 98 auto auto 10/100/1000BaseTX\n" + "Gi1/0/11 UNUSED disabled 98 auto auto 10/100/1000BaseTX\n" + "Gi1/0/12 UNUSED disabled 98 auto auto 10/100/1000BaseTX\n" + "Gi1/0/13 UNUSED disabled 98 auto auto 10/100/1000BaseTX\n" + "Gi1/0/14 UNUSED disabled 98 auto auto 10/100/1000BaseTX\n" + "Gi1/0/15 UNUSED disabled 98 auto auto 10/100/1000BaseTX\n" + "Gi1/0/16 UNUSED disabled 98 auto auto 10/100/1000BaseTX\n" + "Gi1/0/17 UNUSED disabled 98 auto auto 10/100/1000BaseTX\n" + "Gi1/0/18 UNUSED disabled 98 auto auto 10/100/1000BaseTX\n" + "Gi1/0/19 UNUSED disabled 98 auto auto 10/100/1000BaseTX\n" + "Gi1/0/20 UNUSED disabled 98 auto auto 10/100/1000BaseTX\n" + "Gi1/0/21 UNUSED disabled 98 auto auto 10/100/1000BaseTX\n" + "Gi1/0/22 UNUSED disabled 98 auto auto 10/100/1000BaseTX\n" + "Gi1/0/23 UNUSED disabled 98 auto auto 10/100/1000BaseTX\n" + "Gi1/0/24 UNUSED disabled 98 auto auto 10/100/1000BaseTX\n" + "Gi1/0/25 connected trunk a-full a-1000 1000BaseLX SFP\n" + "Gi1/0/26 connected trunk a-full a-1000 1000BaseLX SFP\n" + "Gi1/0/27 UNUSED disabled 98 auto auto Not Present\n" + "Gi1/0/28 UNUSED disabled 98 auto auto Not Present\n" + "Fa0 UNUSED disabled routed auto auto 10/100BaseTXVlan1 is administratively down, line protocol is down \n" + " Hardware is EtherSVI, address is e8ed.f3b1.9f40 (bia e8ed.f3b1.9f40)\n" + " Description: UNUSED\n" + " MTU 1500 bytes, BW 1000000 Kbit/sec, DLY 10 usec, \n" + " reliability 255/255, txload 1/255, rxload 1/255\n" + " Encapsulation ARPA, loopback not set\n" + " Keepalive not supported \n" + " ARP type: ARPA, ARP Timeout 04:00:00\n" + " Last input never, output never, output hang never\n" + " Last clearing of \"show interface\" counters never\n" + " Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0\n" + " Queueing strategy: fifo\n" + " Output queue: 0/40 (size/max)\n" + " 5 minute input rate 0 bits/sec, 0 packets/sec\n" + " 5 minute output rate 0 bits/sec, 0 packets/sec\n" + " 0 packets input, 0 bytes, 0 no buffer\n" + " Received 0 broadcasts (0 IP multicasts)\n" + " 0 runts, 0 giants, 0 throttles \n" + " 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored\n" + " 0 packets output, 0 bytes, 0 underruns\n" + " 0 output errors, 1 interface resets\n" + " 0 unknown protocol drops\n" + " 0 output buffer failures, 0 output buffers swapped out\n" + "Vlan98 is up, line protocol is up \n" + " Hardware is EtherSVI, address is e8ed.f3b1.9f41 (bia e8ed.f3b1.9f41)\n" + " Description: SIT-OOB-Mgmt\n" + " Internet address is 192.168.251.101/22\n" + " MTU 1500 bytes, BW 1000000 Kbit/sec, DLY 10 usec, \n" + " reliability 255/255, txload 1/255, rxload 1/255\n" + " Encapsulation ARPA, loopback not set\n" + " Keepalive not supported \n" + " ARP type: ARPA, ARP Timeout 04:00:00\n" + " Last input 00:00:00, output 00:00:00, output hang never\n" + " Last clearing of \"show interface\" counters never\n" + " Input queue: 1/75/0/0 (size/max/drops/flushes); Total output drops: 0\n" + " Queueing strategy: fifo\n" + " Output queue: 0/40 (size/max)\n" + " 5 minute input rate 5000 bits/sec, 5 packets/sec\n" + " 5 minute output rate 5000 bits/sec, 4 packets/sec\n" + " 174640145 packets input, 32190187719 bytes, 0 no buffer\n" + " Received 0 broadcasts (0 IP multicasts)\n" + " 0 runts, 0 giants, 0 throttles \n" + " 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored\n" + " 13826264 packets output, 3033509716 bytes, 0 underruns\n" + " 0 output errors, 2 interface resets\n" + " 1 unknown protocol drops\n" + " 0 output buffer failures, 0 output buffers swapped out\n" + "FastEthernet0 is administratively down, line protocol is down \n" + " Hardware is PowerPC FastEthernet, address is e8ed.f3b1.9f39 (bia e8ed.f3b1.9f39)\n" + " Description: UNUSED\n" + " MTU 1500 bytes, BW 100000 Kbit/sec, DLY 100 usec, \n" + " reliability 255/255, txload 1/255, rxload 1/255\n" + " Encapsulation ARPA, loopback not set\n" + " Keepalive not set\n" + " Unknown duplex, Unknown Speed, MII\n" + " ARP type: ARPA, ARP Timeout 04:00:00\n" + " Last input never, output never, output hang never\n" + " Last clearing of \"show interface\" counters never\n" + " Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0\n" + " Queueing strategy: fifo\n" + " Output queue: 0/0 (size/max)\n" + " 5 minute input rate 0 bits/sec, 0 packets/sec\n" + " 5 minute output rate 0 bits/sec, 0 packets/sec\n" + " 0 packets input, 0 bytes\n" + " Received 0 broadcasts (0 IP multicasts)\n" + " 0 runts, 0 giants, 0 throttles \n" + " 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored\n" + " 0 watchdog\n" + " 0 input packets with dribble condition detected\n" + " 0 packets output, 0 bytes, 0 underruns\n" + " 0 output errors, 0 collisions, 0 interface resets\n" + " 0 unknown protocol drops\n" + " 0 babbles, 0 late collision, 0 deferred\n" + " 0 lost carrier, 0 no carrier\n" + " 0 output buffer failures, 0 output buffers swapped out\n" + "GigabitEthernet1/0/1 is up, line protocol is up (connected) \n" + " Hardware is Gigabit Ethernet, address is e8ed.f3b1.9f01 (bia e8ed.f3b1.9f01)\n" + " Description: NFC8FM1I12OOBCS102A-ETH1\n" + " MTU 1500 bytes, BW 100000 Kbit/sec, DLY 100 usec, \n" + " reliability 255/255, txload 1/255, rxload 1/255\n" + " Encapsulation ARPA, loopback not set\n" + " Keepalive set (10 sec)\n" + " Full-duplex, 100Mb/s, media type is 10/100/1000BaseTX\n" + " input flow-control is off, output flow-control is unsupported \n" + " ARP type: ARPA, ARP Timeout 04:00:00\n" + " Last input never, output 00:00:00, output hang never\n" + " Last clearing of \"show interface\" counters never\n" + " Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0\n" + " Queueing strategy: fifo\n" + " Output queue: 0/40 (size/max)\n" + " 30 second input rate 0 bits/sec, 0 packets/sec\n" + " 30 second output rate 4000 bits/sec, 3 packets/sec\n" + " 8725329 packets input, 730466528 bytes, 0 no buffer\n" + " Received 7 broadcasts (0 multicasts)\n" + " 0 runts, 0 giants, 0 throttles \n" + " 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored\n" + " 0 watchdog, 0 multicast, 0 pause input\n" + " 0 input packets with dribble condition detected\n" + " 274928353 packets output, 41943684736 bytes, 0 underruns\n" + " 0 output errors, 0 collisions, 1 interface resets\n" + " 0 unknown protocol drops\n" + " 0 babbles, 0 late collision, 0 deferred\n" + " 0 lost carrier, 0 no carrier, 0 pause output\n" + " 0 output buffer failures, 0 output buffers swapped out\n" + "GigabitEthernet1/0/2 is up, line protocol is up (connected) \n" + " Hardware is Gigabit Ethernet, address is e8ed.f3b1.9f02 (bia e8ed.f3b1.9f02)\n" + " Description: NFC8FM1I12OOBNT102-Mgmt\n" + " MTU 1500 bytes, BW 1000000 Kbit/sec, DLY 10 usec, \n" + " reliability 255/255, txload 1/255, rxload 1/255\n" + " Encapsulation ARPA, loopback not set\n" + " Keepalive set (10 sec)\n" + " Full-duplex, 1000Mb/s, media type is 10/100/1000BaseTX\n" + " input flow-control is off, output flow-control is unsupported \n" + " ARP type: ARPA, ARP Timeout 04:00:00\n" + " Last input never, output 00:00:00, output hang never\n" + " Last clearing of \"show interface\" counters never\n" + " Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0\n" + " Queueing strategy: fifo\n" + " Output queue: 0/40 (size/max)\n" + " 30 second input rate 0 bits/sec, 0 packets/sec\n" + " 30 second output rate 5000 bits/sec, 9 packets/sec\n" + " 14729309 packets input, 2831435312 bytes, 0 no buffer\n" + " Received 7913 broadcasts (99 multicasts)\n" + " 0 runts, 0 giants, 0 throttles \n" + " 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored\n" + " 0 watchdog, 99 multicast, 0 pause input\n" + " 0 input packets with dribble condition detected\n" + " 1744176935 packets output, 315331996384 bytes, 0 underruns\n" + " 0 output errors, 0 collisions, 1 interface resets\n" + " 0 unknown protocol drops\n" + " 0 babbles, 0 late collision, 0 deferred\n" + " 0 lost carrier, 0 no carrier, 0 pause output\n" + " 0 output buffer failures, 0 output buffers swapped out\n" + "GigabitEthernet1/0/3 is administratively down, line protocol is down (disabled) \n" + " Hardware is Gigabit Ethernet, address is e8ed.f3b1.9f03 (bia e8ed.f3b1.9f03)\n" + " Description: UNUSED\n" + " MTU 1500 bytes, BW 10000 Kbit/sec, DLY 1000 usec, \n" + " reliability 255/255, txload 1/255, rxload 1/255\n" + " Encapsulation ARPA, loopback not set\n" + " Keepalive set (10 sec)\n" + " Auto-duplex, Auto-speed, media type is 10/100/1000BaseTX\n" + " input flow-control is off, output flow-control is unsupported \n" + " ARP type: ARPA, ARP Timeout 04:00:00\n" + " Last input never, output never, output hang never\n" + " Last clearing of \"show interface\" counters never\n" + " Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0\n" + " Queueing strategy: fifo\n" + " Output queue: 0/40 (size/max)\n" + " 30 second input rate 0 bits/sec, 0 packets/sec\n" + " 30 second output rate 0 bits/sec, 0 packets/sec\n" + " 0 packets input, 0 bytes, 0 no buffer\n" + " Received 0 broadcasts (0 multicasts)\n" + " 0 runts, 0 giants, 0 throttles \n" + " 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored\n" + " 0 watchdog, 0 multicast, 0 pause input\n" + " 0 input packets with dribble condition detected\n" + " 0 packets output, 0 bytes, 0 underruns\n" + " 0 output errors, 0 collisions, 0 interface resets\n" + " 0 unknown protocol drops\n" + " 0 babbles, 0 late collision, 0 deferred\n" + " 0 lost carrier, 0 no carrier, 0 pause output\n" + " 0 output buffer failures, 0 output buffers swapped out\n" + "GigabitEthernet1/0/4 is administratively down, line protocol is down (disabled) \n" + " Hardware is Gigabit Ethernet, address is e8ed.f3b1.9f04 (bia e8ed.f3b1.9f04)\n" + " Description: UNUSED\n" + " MTU 1500 bytes, BW 10000 Kbit/sec, DLY 1000 usec, \n" + " reliability 255/255, txload 1/255, rxload 1/255\n" + " Encapsulation ARPA, loopback not set\n" + " Keepalive set (10 sec)\n" + " Auto-duplex, Auto-speed, media type is 10/100/1000BaseTX\n" + " input flow-control is off, output flow-control is unsupported \n" + " ARP type: ARPA, ARP Timeout 04:00:00\n" + " Last input never, output never, output hang never\n" + " Last clearing of \"show interface\" counters never\n" + " Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0\n" + " Queueing strategy: fifo\n" + " Output queue: 0/40 (size/max)\n" + " 30 second input rate 0 bits/sec, 0 packets/sec\n" + " 30 second output rate 0 bits/sec, 0 packets/sec\n" + " 0 packets input, 0 bytes, 0 no buffer\n" + " Received 0 broadcasts (0 multicasts)\n" + " 0 runts, 0 giants, 0 throttles \n" + " 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored\n" + " 0 watchdog, 0 multicast, 0 pause input\n" + " 0 input packets with dribble condition detected\n" + " 0 packets output, 0 bytes, 0 underruns\n" + " 0 output errors, 0 collisions, 0 interface resets\n" + " 0 unknown protocol drops\n" + " 0 babbles, 0 late collision, 0 deferred\n" + " 0 lost carrier, 0 no carrier, 0 pause output\n" + " 0 output buffer failures, 0 output buffers swapped out\n" + "GigabitEthernet1/0/5 is administratively down, line protocol is down (disabled) \n" + " Hardware is Gigabit Ethernet, address is e8ed.f3b1.9f05 (bia e8ed.f3b1.9f05)\n" + " Description: UNUSED\n" + " MTU 1500 bytes, BW 10000 Kbit/sec, DLY 1000 usec, \n" + " reliability 255/255, txload 1/255, rxload 1/255\n" + " Encapsulation ARPA, loopback not set\n" + " Keepalive set (10 sec)\n" + " Auto-duplex, Auto-speed, media type is 10/100/1000BaseTX\n" + " input flow-control is off, output flow-control is unsupported \n" + " ARP type: ARPA, ARP Timeout 04:00:00\n" + " Last input never, output never, output hang never\n" + " Last clearing of \"show interface\" counters never\n" + " Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0\n" + " Queueing strategy: fifo\n" + " Output queue: 0/40 (size/max)\n" + " 30 second input rate 0 bits/sec, 0 packets/sec\n" + " 30 second output rate 0 bits/sec, 0 packets/sec\n" + " 0 packets input, 0 bytes, 0 no buffer\n" + " Received 0 broadcasts (0 multicasts)\n" + " 0 runts, 0 giants, 0 throttles \n" + " 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored\n" + " 0 watchdog, 0 multicast, 0 pause input\n" + " 0 input packets with dribble condition detected\n" + " 0 packets output, 0 bytes, 0 underruns\n" + " 0 output errors, 0 collisions, 0 interface resets\n" + " 0 unknown protocol drops\n" + " 0 babbles, 0 late collision, 0 deferred\n" + " 0 lost carrier, 0 no carrier, 0 pause output\n" + " 0 output buffer failures, 0 output buffers swapped out\n" + "GigabitEthernet1/0/6 is administratively down, line protocol is down (disabled) \n" + " Hardware is Gigabit Ethernet, address is e8ed.f3b1.9f06 (bia e8ed.f3b1.9f06)\n" + " Description: UNUSED\n" + " MTU 1500 bytes, BW 10000 Kbit/sec, DLY 1000 usec, \n" + " reliability 255/255, txload 1/255, rxload 1/255\n" + " Encapsulation ARPA, loopback not set\n" + " Keepalive set (10 sec)\n" + " Auto-duplex, Auto-speed, media type is 10/100/1000BaseTX\n" + " input flow-control is off, output flow-control is unsupported \n" + " ARP type: ARPA, ARP Timeout 04:00:00\n" + " Last input never, output never, output hang never\n" + " Last clearing of \"show interface\" counters never\n" + " Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0\n" + " Queueing strategy: fifo\n" + " Output queue: 0/40 (size/max)\n" + " 30 second input rate 0 bits/sec, 0 packets/sec\n" + " 30 second output rate 0 bits/sec, 0 packets/sec\n" + " 0 packets input, 0 bytes, 0 no buffer\n" + " Received 0 broadcasts (0 multicasts)\n" + " 0 runts, 0 giants, 0 throttles \n" + " 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored\n" + " 0 watchdog, 0 multicast, 0 pause input\n" + " 0 input packets with dribble condition detected\n" + " 0 packets output, 0 bytes, 0 underruns\n" + " 0 output errors, 0 collisions, 0 interface resets\n" + " 0 unknown protocol drops\n" + " 0 babbles, 0 late collision, 0 deferred\n" + " 0 lost carrier, 0 no carrier, 0 pause output\n" + " 0 output buffer failures, 0 output buffers swapped out\n" + "GigabitEthernet1/0/7 is administratively down, line protocol is down (disabled) \n" + " Hardware is Gigabit Ethernet, address is e8ed.f3b1.9f07 (bia e8ed.f3b1.9f07)\n" + " Description: UNUSED\n" + " MTU 1500 bytes, BW 10000 Kbit/sec, DLY 1000 usec, \n" + " reliability 255/255, txload 1/255, rxload 1/255\n" + " Encapsulation ARPA, loopback not set\n" + " Keepalive set (10 sec)\n" + " Auto-duplex, Auto-speed, media type is 10/100/1000BaseTX\n" + " input flow-control is off, output flow-control is unsupported \n" + " ARP type: ARPA, ARP Timeout 04:00:00\n" + " Last input never, output never, output hang never\n" + " Last clearing of \"show interface\" counters never\n" + " Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0\n" + " Queueing strategy: fifo\n" + " Output queue: 0/40 (size/max)\n" + " 30 second input rate 0 bits/sec, 0 packets/sec\n" + " 30 second output rate 0 bits/sec, 0 packets/sec\n" + " 0 packets input, 0 bytes, 0 no buffer\n" + " Received 0 broadcasts (0 multicasts)\n" + " 0 runts, 0 giants, 0 throttles \n" + " 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored\n" + " 0 watchdog, 0 multicast, 0 pause input\n" + " 0 input packets with dribble condition detected\n" + " 0 packets output, 0 bytes, 0 underruns\n" + " 0 output errors, 0 collisions, 0 interface resets\n" + " 0 unknown protocol drops\n" + " 0 babbles, 0 late collision, 0 deferred\n" + " 0 lost carrier, 0 no carrier, 0 pause output\n" + " 0 output buffer failures, 0 output buffers swapped out\n" + "GigabitEthernet1/0/8 is administratively down, line protocol is down (disabled) \n" + " Hardware is Gigabit Ethernet, address is e8ed.f3b1.9f08 (bia e8ed.f3b1.9f08)\n" + " Description: UNUSED\n" + " MTU 1500 bytes, BW 10000 Kbit/sec, DLY 1000 usec, \n" + " reliability 255/255, txload 1/255, rxload 1/255\n" + " Encapsulation ARPA, loopback not set\n" + " Keepalive set (10 sec)\n" + " Auto-duplex, Auto-speed, media type is 10/100/1000BaseTX\n" + " input flow-control is off, output flow-control is unsupported \n" + " ARP type: ARPA, ARP Timeout 04:00:00\n" + " Last input never, output never, output hang never\n" + " Last clearing of \"show interface\" counters never\n" + " Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0\n" + " Queueing strategy: fifo\n" + " Output queue: 0/40 (size/max)\n" + " 30 second input rate 0 bits/sec, 0 packets/sec\n" + " 30 second output rate 0 bits/sec, 0 packets/sec\n" + " 0 packets input, 0 bytes, 0 no buffer\n" + " Received 0 broadcasts (0 multicasts)\n" + " 0 runts, 0 giants, 0 throttles \n" + " 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored\n" + " 0 watchdog, 0 multicast, 0 pause input\n" + " 0 input packets with dribble condition detected\n" + " 0 packets output, 0 bytes, 0 underruns\n" + " 0 output errors, 0 collisions, 0 interface resets\n" + " 0 unknown protocol drops\n" + " 0 babbles, 0 late collision, 0 deferred\n" + " 0 lost carrier, 0 no carrier, 0 pause output\n" + " 0 output buffer failures, 0 output buffers swapped out\n" + "GigabitEthernet1/0/9 is administratively down, line protocol is down (disabled) \n" + " Hardware is Gigabit Ethernet, address is e8ed.f3b1.9f09 (bia e8ed.f3b1.9f09)\n" + " Description: UNUSED\n" + " MTU 1500 bytes, BW 10000 Kbit/sec, DLY 1000 usec, \n" + " reliability 255/255, txload 1/255, rxload 1/255\n" + " Encapsulation ARPA, loopback not set\n" + " Keepalive set (10 sec)\n" + " Auto-duplex, Auto-speed, media type is 10/100/1000BaseTX\n" + " input flow-control is off, output flow-control is unsupported \n" + " ARP type: ARPA, ARP Timeout 04:00:00\n" + " Last input never, output never, output hang never\n" + " Last clearing of \"show interface\" counters never\n" + " Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0\n" + " Queueing strategy: fifo\n" + " Output queue: 0/40 (size/max)\n" + " 30 second input rate 0 bits/sec, 0 packets/sec\n" + " 30 second output rate 0 bits/sec, 0 packets/sec\n" + " 0 packets input, 0 bytes, 0 no buffer\n" + " Received 0 broadcasts (0 multicasts)\n" + " 0 runts, 0 giants, 0 throttles \n" + " 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored\n" + " 0 watchdog, 0 multicast, 0 pause input\n" + " 0 input packets with dribble condition detected\n" + " 0 packets output, 0 bytes, 0 underruns\n" + " 0 output errors, 0 collisions, 0 interface resets\n" + " 0 unknown protocol drops\n" + " 0 babbles, 0 late collision, 0 deferred\n" + " 0 lost carrier, 0 no carrier, 0 pause output\n" + " 0 output buffer failures, 0 output buffers swapped out\n" + "GigabitEthernet1/0/10 is administratively down, line protocol is down (disabled) \n" + " Hardware is Gigabit Ethernet, address is e8ed.f3b1.9f0a (bia e8ed.f3b1.9f0a)\n" + " Description: UNUSED\n" + " MTU 1500 bytes, BW 10000 Kbit/sec, DLY 1000 usec, \n" + " reliability 255/255, txload 1/255, rxload 1/255\n" + " Encapsulation ARPA, loopback not set\n" + " Keepalive set (10 sec)\n" + " Auto-duplex, Auto-speed, media type is 10/100/1000BaseTX\n" + " input flow-control is off, output flow-control is unsupported \n" + " ARP type: ARPA, ARP Timeout 04:00:00\n" + " Last input never, output never, output hang never\n" + " Last clearing of \"show interface\" counters never\n" + " Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0\n" + " Queueing strategy: fifo\n" + " Output queue: 0/40 (size/max)\n" + " 30 second input rate 0 bits/sec, 0 packets/sec\n" + " 30 second output rate 0 bits/sec, 0 packets/sec\n" + " 0 packets input, 0 bytes, 0 no buffer\n" + " Received 0 broadcasts (0 multicasts)\n" + " 0 runts, 0 giants, 0 throttles \n" + " 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored\n" + " 0 watchdog, 0 multicast, 0 pause input\n" + " 0 input packets with dribble condition detected\n" + " 0 packets output, 0 bytes, 0 underruns\n" + " 0 output errors, 0 collisions, 0 interface resets\n" + " 0 unknown protocol drops\n" + " 0 babbles, 0 late collision, 0 deferred\n" + " 0 lost carrier, 0 no carrier, 0 pause output\n" + " 0 output buffer failures, 0 output buffers swapped out\n" + "GigabitEthernet1/0/11 is administratively down, line protocol is down (disabled) \n" + " Hardware is Gigabit Ethernet, address is e8ed.f3b1.9f0b (bia e8ed.f3b1.9f0b)\n" + " Description: UNUSED\n" + " MTU 1500 bytes, BW 10000 Kbit/sec, DLY 1000 usec, \n" + " reliability 255/255, txload 1/255, rxload 1/255\n" + " Encapsulation ARPA, loopback not set\n" + " Keepalive set (10 sec)\n" + " Auto-duplex, Auto-speed, media type is 10/100/1000BaseTX\n" + " input flow-control is off, output flow-control is unsupported \n" + " ARP type: ARPA, ARP Timeout 04:00:00\n" + " Last input never, output never, output hang never\n" + " Last clearing of \"show interface\" counters never\n" + " Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0\n" + " Queueing strategy: fifo\n" + " Output queue: 0/40 (size/max)\n" + " 30 second input rate 0 bits/sec, 0 packets/sec\n" + " 30 second output rate 0 bits/sec, 0 packets/sec\n" + " 0 packets input, 0 bytes, 0 no buffer\n" + " Received 0 broadcasts (0 multicasts)\n" + " 0 runts, 0 giants, 0 throttles \n" + " 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored\n" + " 0 watchdog, 0 multicast, 0 pause input\n" + " 0 input packets with dribble condition detected\n" + " 0 packets output, 0 bytes, 0 underruns\n" + " 0 output errors, 0 collisions, 0 interface resets\n" + " 0 unknown protocol drops\n" + " 0 babbles, 0 late collision, 0 deferred\n" + " 0 lost carrier, 0 no carrier, 0 pause output\n" + " 0 output buffer failures, 0 output buffers swapped out\n" + "GigabitEthernet1/0/12 is administratively down, line protocol is down (disabled) \n" + " Hardware is Gigabit Ethernet, address is e8ed.f3b1.9f0c (bia e8ed.f3b1.9f0c)\n" + " Description: UNUSED\n" + " MTU 1500 bytes, BW 10000 Kbit/sec, DLY 1000 usec, \n" + " reliability 255/255, txload 1/255, rxload 1/255\n" + " Encapsulation ARPA, loopback not set\n" + " Keepalive set (10 sec)\n" + " Auto-duplex, Auto-speed, media type is 10/100/1000BaseTX\n" + " input flow-control is off, output flow-control is unsupported \n" + " ARP type: ARPA, ARP Timeout 04:00:00\n" + " Last input never, output never, output hang never\n" + " Last clearing of \"show interface\" counters never\n" + " Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0\n" + " Queueing strategy: fifo\n" + " Output queue: 0/40 (size/max)\n" + " 30 second input rate 0 bits/sec, 0 packets/sec\n" + " 30 second output rate 0 bits/sec, 0 packets/sec\n" + " 0 packets input, 0 bytes, 0 no buffer\n" + " Received 0 broadcasts (0 multicasts)\n" + " 0 runts, 0 giants, 0 throttles \n" + " 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored\n" + " 0 watchdog, 0 multicast, 0 pause input\n" + " 0 input packets with dribble condition detected\n" + " 0 packets output, 0 bytes, 0 underruns\n" + " 0 output errors, 0 collisions, 0 interface resets\n" + " 0 unknown protocol drops\n" + " 0 babbles, 0 late collision, 0 deferred\n" + " 0 lost carrier, 0 no carrier, 0 pause output\n" + " 0 output buffer failures, 0 output buffers swapped out\n" + "GigabitEthernet1/0/13 is administratively down, line protocol is down (disabled) \n" + " Hardware is Gigabit Ethernet, address is e8ed.f3b1.9f0d (bia e8ed.f3b1.9f0d)\n" + " Description: UNUSED\n" + " MTU 1500 bytes, BW 10000 Kbit/sec, DLY 1000 usec, \n" + " reliability 255/255, txload 1/255, rxload 1/255\n" + " Encapsulation ARPA, loopback not set\n" + " Keepalive set (10 sec)\n" + " Auto-duplex, Auto-speed, media type is 10/100/1000BaseTX\n" + " input flow-control is off, output flow-control is unsupported \n" + " ARP type: ARPA, ARP Timeout 04:00:00\n" + " Last input never, output never, output hang never\n" + " Last clearing of \"show interface\" counters never\n" + " Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0\n" + " Queueing strategy: fifo\n" + " Output queue: 0/40 (size/max)\n" + " 30 second input rate 0 bits/sec, 0 packets/sec\n" + " 30 second output rate 0 bits/sec, 0 packets/sec\n" + " 0 packets input, 0 bytes, 0 no buffer\n" + " Received 0 broadcasts (0 multicasts)\n" + " 0 runts, 0 giants, 0 throttles \n" + " 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored\n" + " 0 watchdog, 0 multicast, 0 pause input\n" + " 0 input packets with dribble condition detected\n" + " 0 packets output, 0 bytes, 0 underruns\n" + " 0 output errors, 0 collisions, 0 interface resets\n" + " 0 unknown protocol drops\n" + " 0 babbles, 0 late collision, 0 deferred\n" + " 0 lost carrier, 0 no carrier, 0 pause output\n" + " 0 output buffer failures, 0 output buffers swapped out\n" + "GigabitEthernet1/0/14 is administratively down, line protocol is down (disabled) \n" + " Hardware is Gigabit Ethernet, address is e8ed.f3b1.9f0e (bia e8ed.f3b1.9f0e)\n" + " Description: UNUSED\n" + " MTU 1500 bytes, BW 10000 Kbit/sec, DLY 1000 usec, \n" + " reliability 255/255, txload 1/255, rxload 1/255\n" + " Encapsulation ARPA, loopback not set\n" + " Keepalive set (10 sec)\n" + " Auto-duplex, Auto-speed, media type is 10/100/1000BaseTX\n" + " input flow-control is off, output flow-control is unsupported \n" + " ARP type: ARPA, ARP Timeout 04:00:00\n" + " Last input never, output never, output hang never\n" + " Last clearing of \"show interface\" counters never\n" + " Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0\n" + " Queueing strategy: fifo\n" + " Output queue: 0/40 (size/max)\n" + " 30 second input rate 0 bits/sec, 0 packets/sec\n" + " 30 second output rate 0 bits/sec, 0 packets/sec\n" + " 0 packets input, 0 bytes, 0 no buffer\n" + " Received 0 broadcasts (0 multicasts)\n" + " 0 runts, 0 giants, 0 throttles \n" + " 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored\n" + " 0 watchdog, 0 multicast, 0 pause input\n" + " 0 input packets with dribble condition detected\n" + " 0 packets output, 0 bytes, 0 underruns\n" + " 0 output errors, 0 collisions, 0 interface resets\n" + " 0 unknown protocol drops\n" + " 0 babbles, 0 late collision, 0 deferred\n" + " 0 lost carrier, 0 no carrier, 0 pause output\n" + " 0 output buffer failures, 0 output buffers swapped out\n" + "GigabitEthernet1/0/15 is administratively down, line protocol is down (disabled) \n" + " Hardware is Gigabit Ethernet, address is e8ed.f3b1.9f0f (bia e8ed.f3b1.9f0f)\n" + " Description: UNUSED\n" + " MTU 1500 bytes, BW 10000 Kbit/sec, DLY 1000 usec, \n" + " reliability 255/255, txload 1/255, rxload 1/255\n" + " Encapsulation ARPA, loopback not set\n" + " Keepalive set (10 sec)\n" + " Auto-duplex, Auto-speed, media type is 10/100/1000BaseTX\n" + " input flow-control is off, output flow-control is unsupported \n" + " ARP type: ARPA, ARP Timeout 04:00:00\n" + " Last input never, output never, output hang never\n" + " Last clearing of \"show interface\" counters never\n" + " Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0\n" + " Queueing strategy: fifo\n" + " Output queue: 0/40 (size/max)\n" + " 30 second input rate 0 bits/sec, 0 packets/sec\n" + " 30 second output rate 0 bits/sec, 0 packets/sec\n" + " 0 packets input, 0 bytes, 0 no buffer\n" + " Received 0 broadcasts (0 multicasts)\n" + " 0 runts, 0 giants, 0 throttles \n" + " 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored\n" + " 0 watchdog, 0 multicast, 0 pause input\n" + " 0 input packets with dribble condition detected\n" + " 0 packets output, 0 bytes, 0 underruns\n" + " 0 output errors, 0 collisions, 0 interface resets\n" + " 0 unknown protocol drops\n" + " 0 babbles, 0 late collision, 0 deferred\n" + " 0 lost carrier, 0 no carrier, 0 pause output\n" + " 0 output buffer failures, 0 output buffers swapped out\n" + "GigabitEthernet1/0/16 is administratively down, line protocol is down (disabled) \n" + " Hardware is Gigabit Ethernet, address is e8ed.f3b1.9f10 (bia e8ed.f3b1.9f10)\n" + " Description: UNUSED\n" + " MTU 1500 bytes, BW 10000 Kbit/sec, DLY 1000 usec, \n" + " reliability 255/255, txload 1/255, rxload 1/255\n" + " Encapsulation ARPA, loopback not set\n" + " Keepalive set (10 sec)\n" + " Auto-duplex, Auto-speed, media type is 10/100/1000BaseTX\n" + " input flow-control is off, output flow-control is unsupported \n" + " ARP type: ARPA, ARP Timeout 04:00:00\n" + " Last input never, output never, output hang never\n" + " Last clearing of \"show interface\" counters never\n" + " Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0\n" + " Queueing strategy: fifo\n" + " Output queue: 0/40 (size/max)\n" + " 30 second input rate 0 bits/sec, 0 packets/sec\n" + " 30 second output rate 0 bits/sec, 0 packets/sec\n" + " 0 packets input, 0 bytes, 0 no buffer\n" + " Received 0 broadcasts (0 multicasts)\n" + " 0 runts, 0 giants, 0 throttles \n" + " 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored\n" + " 0 watchdog, 0 multicast, 0 pause input\n" + " 0 input packets with dribble condition detected\n" + " 0 packets output, 0 bytes, 0 underruns\n" + " 0 output errors, 0 collisions, 0 interface resets\n" + " 0 unknown protocol drops\n" + " 0 babbles, 0 late collision, 0 deferred\n" + " 0 lost carrier, 0 no carrier, 0 pause output\n" + " 0 output buffer failures, 0 output buffers swapped out\n" + "GigabitEthernet1/0/17 is administratively down, line protocol is down (disabled) \n" + " Hardware is Gigabit Ethernet, address is e8ed.f3b1.9f11 (bia e8ed.f3b1.9f11)\n" + " Description: UNUSED\n" + " MTU 1500 bytes, BW 10000 Kbit/sec, DLY 1000 usec, \n" + " reliability 255/255, txload 1/255, rxload 1/255\n" + " Encapsulation ARPA, loopback not set\n" + " Keepalive set (10 sec)\n" + " Auto-duplex, Auto-speed, media type is 10/100/1000BaseTX\n" + " input flow-control is off, output flow-control is unsupported \n" + " ARP type: ARPA, ARP Timeout 04:00:00\n" + " Last input never, output never, output hang never\n" + " Last clearing of \"show interface\" counters never\n" + " Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0\n" + " Queueing strategy: fifo\n" + " Output queue: 0/40 (size/max)\n" + " 30 second input rate 0 bits/sec, 0 packets/sec\n" + " 30 second output rate 0 bits/sec, 0 packets/sec\n" + " 0 packets input, 0 bytes, 0 no buffer\n" + " Received 0 broadcasts (0 multicasts)\n" + " 0 runts, 0 giants, 0 throttles \n" + " 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored\n" + " 0 watchdog, 0 multicast, 0 pause input\n" + " 0 input packets with dribble condition detected\n" + " 0 packets output, 0 bytes, 0 underruns\n" + " 0 output errors, 0 collisions, 0 interface resets\n" + " 0 unknown protocol drops\n" + " 0 babbles, 0 late collision, 0 deferred\n" + " 0 lost carrier, 0 no carrier, 0 pause output\n" + " 0 output buffer failures, 0 output buffers swapped out\n" + "GigabitEthernet1/0/18 is administratively down, line protocol is down (disabled) \n" + " Hardware is Gigabit Ethernet, address is e8ed.f3b1.9f12 (bia e8ed.f3b1.9f12)\n" + " Description: UNUSED\n" + " MTU 1500 bytes, BW 10000 Kbit/sec, DLY 1000 usec, \n" + " reliability 255/255, txload 1/255, rxload 1/255\n" + " Encapsulation ARPA, loopback not set\n" + " Keepalive set (10 sec)\n" + " Auto-duplex, Auto-speed, media type is 10/100/1000BaseTX\n" + " input flow-control is off, output flow-control is unsupported \n" + " ARP type: ARPA, ARP Timeout 04:00:00\n" + " Last input never, output never, output hang never\n" + " Last clearing of \"show interface\" counters never\n" + " Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0\n" + " Queueing strategy: fifo\n" + " Output queue: 0/40 (size/max)\n" + " 30 second input rate 0 bits/sec, 0 packets/sec\n" + " 30 second output rate 0 bits/sec, 0 packets/sec\n" + " 0 packets input, 0 bytes, 0 no buffer\n" + " Received 0 broadcasts (0 multicasts)\n" + " 0 runts, 0 giants, 0 throttles \n" + " 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored\n" + " 0 watchdog, 0 multicast, 0 pause input\n" + " 0 input packets with dribble condition detected\n" + " 0 packets output, 0 bytes, 0 underruns\n" + " 0 output errors, 0 collisions, 0 interface resets\n" + " 0 unknown protocol drops\n" + " 0 babbles, 0 late collision, 0 deferred\n" + " 0 lost carrier, 0 no carrier, 0 pause output\n" + " 0 output buffer failures, 0 output buffers swapped out\n" + "GigabitEthernet1/0/19 is administratively down, line protocol is down (disabled) \n" + " Hardware is Gigabit Ethernet, address is e8ed.f3b1.9f13 (bia e8ed.f3b1.9f13)\n" + " Description: UNUSED\n" + " MTU 1500 bytes, BW 10000 Kbit/sec, DLY 1000 usec, \n" + " reliability 255/255, txload 1/255, rxload 1/255\n" + " Encapsulation ARPA, loopback not set\n" + " Keepalive set (10 sec)\n" + " Auto-duplex, Auto-speed, media type is 10/100/1000BaseTX\n" + " input flow-control is off, output flow-control is unsupported \n" + " ARP type: ARPA, ARP Timeout 04:00:00\n" + " Last input never, output never, output hang never\n" + " Last clearing of \"show interface\" counters never\n" + " Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0\n" + " Queueing strategy: fifo\n" + " Output queue: 0/40 (size/max)\n" + " 30 second input rate 0 bits/sec, 0 packets/sec\n" + " 30 second output rate 0 bits/sec, 0 packets/sec\n" + " 0 packets input, 0 bytes, 0 no buffer\n" + " Received 0 broadcasts (0 multicasts)\n" + " 0 runts, 0 giants, 0 throttles \n" + " 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored\n" + " 0 watchdog, 0 multicast, 0 pause input\n" + " 0 input packets with dribble condition detected\n" + " 0 packets output, 0 bytes, 0 underruns\n" + " 0 output errors, 0 collisions, 0 interface resets\n" + " 0 unknown protocol drops\n" + " 0 babbles, 0 late collision, 0 deferred\n" + " 0 lost carrier, 0 no carrier, 0 pause output\n" + " 0 output buffer failures, 0 output buffers swapped out\n" + "GigabitEthernet1/0/20 is administratively down, line protocol is down (disabled) \n" + " Hardware is Gigabit Ethernet, address is e8ed.f3b1.9f14 (bia e8ed.f3b1.9f14)\n" + " Description: UNUSED\n" + " MTU 1500 bytes, BW 10000 Kbit/sec, DLY 1000 usec, \n" + " reliability 255/255, txload 1/255, rxload 1/255\n" + " Encapsulation ARPA, loopback not set\n" + " Keepalive set (10 sec)\n" + " Auto-duplex, Auto-speed, media type is 10/100/1000BaseTX\n" + " input flow-control is off, output flow-control is unsupported \n" + " ARP type: ARPA, ARP Timeout 04:00:00\n" + " Last input never, output never, output hang never\n" + " Last clearing of \"show interface\" counters never\n" + " Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0\n" + " Queueing strategy: fifo\n" + " Output queue: 0/40 (size/max)\n" + " 30 second input rate 0 bits/sec, 0 packets/sec\n" + " 30 second output rate 0 bits/sec, 0 packets/sec\n" + " 0 packets input, 0 bytes, 0 no buffer\n" + " Received 0 broadcasts (0 multicasts)\n" + " 0 runts, 0 giants, 0 throttles \n" + " 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored\n" + " 0 watchdog, 0 multicast, 0 pause input\n" + " 0 input packets with dribble condition detected\n" + " 0 packets output, 0 bytes, 0 underruns\n" + " 0 output errors, 0 collisions, 0 interface resets\n" + " 0 unknown protocol drops\n" + " 0 babbles, 0 late collision, 0 deferred\n" + " 0 lost carrier, 0 no carrier, 0 pause output\n" + " 0 output buffer failures, 0 output buffers swapped out\n" + "GigabitEthernet1/0/21 is administratively down, line protocol is down (disabled) \n" + " Hardware is Gigabit Ethernet, address is e8ed.f3b1.9f15 (bia e8ed.f3b1.9f15)\n" + " Description: UNUSED\n" + " MTU 1500 bytes, BW 10000 Kbit/sec, DLY 1000 usec, \n" + " reliability 255/255, txload 1/255, rxload 1/255\n" + " Encapsulation ARPA, loopback not set\n" + " Keepalive set (10 sec)\n" + " Auto-duplex, Auto-speed, media type is 10/100/1000BaseTX\n" + " input flow-control is off, output flow-control is unsupported \n" + " ARP type: ARPA, ARP Timeout 04:00:00\n" + " Last input never, output never, output hang never\n" + " Last clearing of \"show interface\" counters never\n" + " Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0\n" + " Queueing strategy: fifo\n" + " Output queue: 0/40 (size/max)\n" + " 30 second input rate 0 bits/sec, 0 packets/sec\n" + " 30 second output rate 0 bits/sec, 0 packets/sec\n" + " 0 packets input, 0 bytes, 0 no buffer\n" + " Received 0 broadcasts (0 multicasts)\n" + " 0 runts, 0 giants, 0 throttles \n" + " 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored\n" + " 0 watchdog, 0 multicast, 0 pause input\n" + " 0 input packets with dribble condition detected\n" + " 0 packets output, 0 bytes, 0 underruns\n" + " 0 output errors, 0 collisions, 0 interface resets\n" + " 0 unknown protocol drops\n" + " 0 babbles, 0 late collision, 0 deferred\n" + " 0 lost carrier, 0 no carrier, 0 pause output\n" + " 0 output buffer failures, 0 output buffers swapped out\n" + "GigabitEthernet1/0/22 is administratively down, line protocol is down (disabled) \n" + " Hardware is Gigabit Ethernet, address is e8ed.f3b1.9f16 (bia e8ed.f3b1.9f16)\n" + " Description: UNUSED\n" + " MTU 1500 bytes, BW 10000 Kbit/sec, DLY 1000 usec, \n" + " reliability 255/255, txload 1/255, rxload 1/255\n" + " Encapsulation ARPA, loopback not set\n" + " Keepalive set (10 sec)\n" + " Auto-duplex, Auto-speed, media type is 10/100/1000BaseTX\n" + " input flow-control is off, output flow-control is unsupported \n" + " ARP type: ARPA, ARP Timeout 04:00:00\n" + " Last input never, output never, output hang never\n" + " Last clearing of \"show interface\" counters never\n" + " Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0\n" + " Queueing strategy: fifo\n" + " Output queue: 0/40 (size/max)\n" + " 30 second input rate 0 bits/sec, 0 packets/sec\n" + " 30 second output rate 0 bits/sec, 0 packets/sec\n" + " 0 packets input, 0 bytes, 0 no buffer\n" + " Received 0 broadcasts (0 multicasts)\n" + " 0 runts, 0 giants, 0 throttles \n" + " 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored\n" + " 0 watchdog, 0 multicast, 0 pause input\n" + " 0 input packets with dribble condition detected\n" + " 0 packets output, 0 bytes, 0 underruns\n" + " 0 output errors, 0 collisions, 0 interface resets\n" + " 0 unknown protocol drops\n" + " 0 babbles, 0 late collision, 0 deferred\n" + " 0 lost carrier, 0 no carrier, 0 pause output\n" + " 0 output buffer failures, 0 output buffers swapped out\n" + "GigabitEthernet1/0/23 is administratively down, line protocol is down (disabled) \n" + " Hardware is Gigabit Ethernet, address is e8ed.f3b1.9f17 (bia e8ed.f3b1.9f17)\n" + " Description: UNUSED\n" + " MTU 1500 bytes, BW 10000 Kbit/sec, DLY 1000 usec, \n" + " reliability 255/255, txload 1/255, rxload 1/255\n" + " Encapsulation ARPA, loopback not set\n" + " Keepalive set (10 sec)\n" + " Auto-duplex, Auto-speed, media type is 10/100/1000BaseTX\n" + " input flow-control is off, output flow-control is unsupported \n" + " ARP type: ARPA, ARP Timeout 04:00:00\n" + " Last input never, output never, output hang never\n" + " Last clearing of \"show interface\" counters never\n" + " Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0\n" + " Queueing strategy: fifo\n" + " Output queue: 0/40 (size/max)\n" + " 30 second input rate 0 bits/sec, 0 packets/sec\n" + " 30 second output rate 0 bits/sec, 0 packets/sec\n" + " 0 packets input, 0 bytes, 0 no buffer\n" + " Received 0 broadcasts (0 multicasts)\n" + " 0 runts, 0 giants, 0 throttles \n" + " 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored\n" + " 0 watchdog, 0 multicast, 0 pause input\n" + " 0 input packets with dribble condition detected\n" + " 0 packets output, 0 bytes, 0 underruns\n" + " 0 output errors, 0 collisions, 0 interface resets\n" + " 0 unknown protocol drops\n" + " 0 babbles, 0 late collision, 0 deferred\n" + " 0 lost carrier, 0 no carrier, 0 pause output\n" + " 0 output buffer failures, 0 output buffers swapped out\n" + "GigabitEthernet1/0/24 is administratively down, line protocol is down (disabled) \n" + " Hardware is Gigabit Ethernet, address is e8ed.f3b1.9f18 (bia e8ed.f3b1.9f18)\n" + " Description: UNUSED\n" + " MTU 1500 bytes, BW 10000 Kbit/sec, DLY 1000 usec, \n" + " reliability 255/255, txload 1/255, rxload 1/255\n" + " Encapsulation ARPA, loopback not set\n" + " Keepalive set (10 sec)\n" + " Auto-duplex, Auto-speed, media type is 10/100/1000BaseTX\n" + " input flow-control is off, output flow-control is unsupported \n" + " ARP type: ARPA, ARP Timeout 04:00:00\n" + " Last input never, output never, output hang never\n" + " Last clearing of \"show interface\" counters never\n" + " Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0\n" + " Queueing strategy: fifo\n" + " Output queue: 0/40 (size/max)\n" + " 30 second input rate 0 bits/sec, 0 packets/sec\n" + " 30 second output rate 0 bits/sec, 0 packets/sec\n" + " 0 packets input, 0 bytes, 0 no buffer\n" + " Received 0 broadcasts (0 multicasts)\n" + " 0 runts, 0 giants, 0 throttles \n" + " 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored\n" + " 0 watchdog, 0 multicast, 0 pause input\n" + " 0 input packets with dribble condition detected\n" + " 0 packets output, 0 bytes, 0 underruns\n" + " 0 output errors, 0 collisions, 0 interface resets\n" + " 0 unknown protocol drops\n" + " 0 babbles, 0 late collision, 0 deferred\n" + " 0 lost carrier, 0 no carrier, 0 pause output\n" + " 0 output buffer failures, 0 output buffers swapped out\n" + "GigabitEthernet1/0/25 is up, line protocol is up (connected) \n" + " Hardware is Gigabit Ethernet, address is e8ed.f3b1.9f19 (bia e8ed.f3b1.9f19)\n" + " MTU 1500 bytes, BW 1000000 Kbit/sec, DLY 10 usec, \n" + " reliability 255/255, txload 1/255, rxload 1/255\n" + " Encapsulation ARPA, loopback not set\n" + " Keepalive not set\n" + " Full-duplex, 1000Mb/s, link type is auto, media type is 1000BaseLX SFP\n" + " input flow-control is off, output flow-control is unsupported \n" + " ARP type: ARPA, ARP Timeout 04:00:00\n" + " Last input 00:00:00, output 00:00:09, output hang never\n" + " Last clearing of \"show interface\" counters never\n" + " Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0\n" + " Queueing strategy: fifo\n" + " Output queue: 0/40 (size/max)\n" + " 5 minute input rate 12000 bits/sec, 15 packets/sec\n" + " 5 minute output rate 5000 bits/sec, 3 packets/sec\n" + " 2022471151 packets input, 366830083246 bytes, 0 no buffer\n" + " Received 855262761 broadcasts (242018351 multicasts)\n" + " 0 runts, 0 giants, 0 throttles \n" + " 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored\n" + " 0 watchdog, 242018351 multicast, 0 pause input\n" + " 0 input packets with dribble condition detected\n" + " 46039215 packets output, 8322170376 bytes, 0 underruns\n" + " 0 output errors, 0 collisions, 1 interface resets\n" + " 0 unknown protocol drops\n" + " 0 babbles, 0 late collision, 0 deferred\n" + " 0 lost carrier, 0 no carrier, 0 pause output\n" + " 0 output buffer failures, 0 output buffers swapped out\n" + "GigabitEthernet1/0/26 is up, line protocol is up (connected) \n" + " Hardware is Gigabit Ethernet, address is e8ed.f3b1.9f1a (bia e8ed.f3b1.9f1a)\n" + " MTU 1500 bytes, BW 1000000 Kbit/sec, DLY 10 usec, \n" + " reliability 255/255, txload 1/255, rxload 1/255\n" + " Encapsulation ARPA, loopback not set\n" + " Keepalive not set\n" + " Full-duplex, 1000Mb/s, link type is auto, media type is 1000BaseLX SFP\n" + " input flow-control is off, output flow-control is unsupported \n" + " ARP type: ARPA, ARP Timeout 04:00:00\n" + " Last input 00:00:00, output 00:00:09, output hang never\n" + " Last clearing of \"show interface\" counters never\n" + " Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0\n" + " Queueing strategy: fifo\n" + " Output queue: 0/40 (size/max)\n" + " 5 minute input rate 10000 bits/sec, 12 packets/sec\n" + " 5 minute output rate 0 bits/sec, 0 packets/sec\n" + " 1982471821 packets input, 361086244351 bytes, 0 no buffer\n" + " Received 855309199 broadcasts (242057091 multicasts)\n" + " 0 runts, 0 giants, 0 throttles \n" + " 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored\n" + " 0 watchdog, 242057091 multicast, 0 pause input\n" + " 0 input packets with dribble condition detected\n" + " 8802015 packets output, 1619707323 bytes, 0 underruns\n" + " 0 output errors, 0 collisions, 1 interface resets\n" + " 1 unknown protocol drops\n" + " 0 babbles, 0 late collision, 0 deferred\n" + " 0 lost carrier, 0 no carrier, 0 pause output\n" + " 0 output buffer failures, 0 output buffers swapped out\n" + "GigabitEthernet1/0/27 is administratively down, line protocol is down (disabled) \n" + " Hardware is Gigabit Ethernet, address is e8ed.f3b1.9f1b (bia e8ed.f3b1.9f1b)\n" + " Description: UNUSED\n" + " MTU 1500 bytes, BW 10000 Kbit/sec, DLY 1000 usec, \n" + " reliability 255/255, txload 1/255, rxload 1/255\n" + " Encapsulation ARPA, loopback not set\n" + " Keepalive not set\n" + " Auto-duplex, Auto-speed, link type is auto, media type is Not Present\n" + " input flow-control is off, output flow-control is unsupported \n" + " ARP type: ARPA, ARP Timeout 04:00:00\n" + " Last input never, output never, output hang never\n" + " Last clearing of \"show interface\" counters never\n" + " Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0\n" + " Queueing strategy: fifo\n" + " Output queue: 0/40 (size/max)\n" + " 30 second input rate 0 bits/sec, 0 packets/sec\n" + " 30 second output rate 0 bits/sec, 0 packets/sec\n" + " 0 packets input, 0 bytes, 0 no buffer\n" + " Received 0 broadcasts (0 multicasts)\n" + " 0 runts, 0 giants, 0 throttles \n" + " 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored\n" + " 0 watchdog, 0 multicast, 0 pause input\n" + " 0 input packets with dribble condition detected\n" + " 0 packets output, 0 bytes, 0 underruns\n" + " 0 output errors, 0 collisions, 0 interface resets\n" + " 0 unknown protocol drops\n" + " 0 babbles, 0 late collision, 0 deferred\n" + " 0 lost carrier, 0 no carrier, 0 pause output\n" + " 0 output buffer failures, 0 output buffers swapped out\n" + "GigabitEthernet1/0/28 is administratively down, line protocol is down (disabled) \n" + " Hardware is Gigabit Ethernet, address is e8ed.f3b1.9f1c (bia e8ed.f3b1.9f1c)\n" + " Description: UNUSED\n" + " MTU 1500 bytes, BW 10000 Kbit/sec, DLY 1000 usec, \n" + " reliability 255/255, txload 1/255, rxload 1/255\n" + " Encapsulation ARPA, loopback not set\n" + " Keepalive not set\n" + " Auto-duplex, Auto-speed, link type is auto, media type is Not Present\n" + " input flow-control is off, output flow-control is unsupported \n" + " ARP type: ARPA, ARP Timeout 04:00:00\n" + " Last input never, output never, output hang never\n" + " Last clearing of \"show interface\" counters never\n" + " Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0\n" + " Queueing strategy: fifo\n" + " Output queue: 0/40 (size/max)\n" + " 30 second input rate 0 bits/sec, 0 packets/sec\n" + " 30 second output rate 0 bits/sec, 0 packets/sec\n" + " 0 packets input, 0 bytes, 0 no buffer\n" + " Received 0 broadcasts (0 multicasts)\n" + " 0 runts, 0 giants, 0 throttles \n" + " 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored\n" + " 0 watchdog, 0 multicast, 0 pause input\n" + " 0 input packets with dribble condition detected\n" + " 0 packets output, 0 bytes, 0 underruns\n" + " 0 output errors, 0 collisions, 0 interface resets\n" + " 0 unknown protocol drops\n" + " 0 babbles, 0 late collision, 0 deferred\n" + " 0 lost carrier, 0 no carrier, 0 pause output\n" + " 0 output buffer failures, 0 output buffers swapped outFlags: D - down P - bundled in port-channel\n" + " I - stand-alone s - suspended\n" + " H - Hot-standby (LACP only)\n" + " R - Layer3 S - Layer2\n" + " U - in use f - failed to allocate aggregator\n\n" + " M - not in use, minimum links not met\n" + " u - unsuitable for bundling\n" + " w - waiting to be aggregated\n" + " d - default port\n\n\n" + "Number of channel-groups in use: 0\n" + "Number of aggregators: 0\n\n" + "Group Port-channel Protocol Ports\n" + "------+-------------+-----------+-----------------------------------------------\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + "Switch/Stack Mac Address : e8ed.f3b1.9f00\n" + " H/W Current\n" + "Switch# Role Mac Address Priority Version State \n" + "----------------------------------------------------------\n" + "*1 Master e8ed.f3b1.9f00 1 5 Ready \n\n\n\n" + " Stack Port Status Neighbors \n" + "Switch# Port 1 Port 2 Port 1 Port 2 \n" + "--------------------------------------------------------\n" + " 1 Down Down None None\n" + " Switch # Port 1 Port 2\n" + " -------- ------ ------\n" + " 1 None None\n" + " Switch # Port 1 Port 2 \n" + " -------- ------ ------ \n" + " 1 Down Down \n\n" + "Stack Ring Speed : 10G\n" + "Stack Ring Configuration: Down\n" + "Stack Ring Protocol : FlexStack ^\n" + "% Invalid input detected at '^' marker.\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + "Standard IP access list 99\n" + " 10 permit 10.250.54.236\n" + " 20 permit 10.10.39.236 (761033 matches)\n" + " 30 permit 10.10.35.236 (761717 matches)\n" + "Standard IP access list snmp-ro\n" + " 10 permit 10.10.52.28\n" + " 20 permit 10.10.39.100\n" + " 30 permit 10.10.52.92\n" + " 40 permit 10.10.39.81\n" + " 50 permit 10.10.39.80\n" + " 60 permit 10.10.33.201\n" + " 70 permit 10.10.33.200\n" + " 80 permit 10.10.33.203\n" + " 90 permit 10.10.33.202\n" + " 100 permit 10.32.31.202\n" + " 110 permit 10.10.55.0, wildcard bits 0.0.0.255 (11877702 matches)\n" + " 120 permit 10.11.55.0, wildcard bits 0.0.0.255\n" + "Standard IP access list snmp-rw\n" + " 10 permit 10.10.55.0, wildcard bits 0.0.0.255\n" + " 20 permit 10.11.55.0, wildcard bits 0.0.0.255\n" + "Extended IP access list 183\n" + " 10 permit tcp host 10.10.36.167 any eq 22 (1526 matches)\n" + " 20 permit tcp host 10.10.55.130 any eq 22\n" + " 30 permit tcp host 10.11.36.28 any eq 22\n" + " 40 permit tcp host 10.11.36.57 any eq 22\n" + " 50 permit tcp 10.10.55.0 0.0.0.7 any eq 22 (30936 matches)\n" + " 60 permit tcp 10.10.55.32 0.0.0.7 any eq 22\n" + " 70 permit tcp 10.10.55.96 0.0.0.7 any eq 22\n" + " 80 permit tcp host 10.32.16.6 any eq 22\n" + " 90 permit tcp 10.11.0.0 0.0.1.255 any eq 22\n" + " 100 permit tcp 10.11.30.0 0.0.0.255 any eq 22\n" + " 110 permit tcp 10.11.31.0 0.0.0.255 any eq 22\n" + " 120 permit tcp 10.11.35.0 0.0.0.255 any eq 22\n" + " 130 permit tcp 10.11.79.0 0.0.0.255 any eq 22\n" + " 140 permit tcp 10.11.126.0 0.0.1.255 any eq 22\n" + " 150 permit tcp 10.11.158.0 0.0.1.255 any eq 22\n" + " 160 permit tcp 10.11.174.0 0.0.1.255 any eq 22\n" + " 170 permit tcp 10.11.223.0 0.0.0.255 any eq 22\n" + " 180 permit tcp 10.8.0.0 0.0.1.255 any eq 22\n" + " 190 permit tcp 10.10.0.0 0.0.1.255 any eq 22\n" + " 200 permit tcp 10.32.0.0 0.0.16.255 any eq 22\n" + " 210 permit tcp 10.33.0.0 0.0.16.255 any eq 22\n" + " 220 permit tcp 10.34.0.0 0.0.0.255 any eq 22\n" + " 230 permit tcp 10.34.16.0 0.0.0.255 any eq 22\n" + " 240 permit tcp 10.34.32.0 0.0.0.255 any eq 22\n" + " 250 permit tcp 10.34.48.0 0.0.0.255 any eq 22\n" + " 260 permit tcp 10.10.35.0 0.0.0.255 any eq 22\n" + " 270 permit tcp 10.10.39.0 0.0.0.255 any eq 22\n" + " 280 permit tcp 10.10.55.0 0.0.0.255 any eq 22 (2074720 matches)\n" + " 290 permit tcp 10.10.56.0 0.0.3.255 any eq 22\n" + " 300 permit tcp 10.10.60.0 0.0.3.255 any eq 22\n" + " 310 permit tcp 10.10.95.0 0.0.0.255 any eq 22\n" + " 320 permit tcp 10.10.127.0 0.0.0.255 any eq 22\n" + " 330 permit tcp 10.10.224.0 0.0.0.255 any eq 22\n" + " 340 permit tcp 10.10.240.0 0.0.0.255 any eq 22\n" + " 350 permit tcp 10.10.241.0 0.0.0.255 any eq 22\n" + " 360 permit tcp 10.10.252.0 0.0.0.255 any eq 22\n" + " 370 permit tcp 10.250.0.0 0.0.0.255 any eq 22\n" + " 380 permit tcp host 10.10.33.200 any eq 22\n" + " 390 permit tcp host 10.10.33.201 any eq 22\n" + " 400 permit tcp host 10.10.33.202 any eq 22\n" + " 410 permit tcp host 10.10.33.203 any eq 22\n" + " 420 permit tcp host 10.10.39.80 any eq 22\n" + " 430 permit tcp host 10.10.39.81 any eq 22\n" + " 440 permit tcp host 10.32.31.202 any eq 22\n" + " 450 permit udp host 10.11.35.236 eq ntp any\n" + " 460 permit udp host 10.11.39.236 eq ntp any\n" + " 470 permit udp host 10.10.35.236 eq ntp any (761717 matches)\n" + " 480 permit udp host 10.10.39.236 eq ntp any (761033 matches)\n" + " 490 permit udp host 10.32.16.236 eq ntp any\n" + " 500 permit udp host 10.32.17.236 eq ntp any\n" + " 510 permit tcp any any eq ftp (860 matches)\n" + " 520 permit tcp any any eq ftp-data\n" + " 530 permit tcp host 10.10.55.128 eq tacacs any\n" + " 540 permit tcp host 10.10.55.129 eq tacacs any\n" + " 550 permit tcp host 10.32.6.1 eq tacacs any\n" + " 560 permit udp 10.10.55.0 0.0.0.255 any eq snmp (5940987 matches)\n" + " 570 permit udp 10.11.55.0 0.0.0.255 any eq snmp\n" + " 580 permit udp host 10.10.52.28 any eq snmp\n" + " 590 permit udp host 10.10.52.92 any eq snmp\n" + " 600 permit udp host 10.10.35.1 any eq snmp\n" + " 610 permit udp host 10.10.33.200 any eq snmp\n" + " 620 permit udp host 10.10.33.201 any eq snmp\n" + " 630 permit udp host 10.10.33.202 any eq snmp\n" + " 640 permit udp host 10.10.33.203 any eq snmp\n" + " 650 permit udp host 10.10.39.80 any eq snmp\n" + " 660 permit udp host 10.10.39.81 any eq snmp\n" + " 670 permit udp host 10.10.39.100 any eq snmp\n" + " 680 permit udp host 10.32.31.202 any eq snmp\n" + " 690 permit icmp host 10.10.35.1 any\n" + " 700 permit icmp host 10.10.33.200 any\n" + " 710 permit icmp host 10.10.33.201 any\n" + " 720 permit icmp host 10.10.33.202 any\n" + " 730 permit icmp host 10.10.33.203 any\n" + " 740 permit icmp host 10.10.39.80 any\n" + " 750 permit icmp host 10.10.39.81 any\n" + " 760 permit icmp host 10.10.39.100 any\n" + " 770 permit icmp host 10.32.31.202 any\n" + " 780 permit udp host 10.10.33.200 any eq 1700\n" + " 790 permit udp host 10.10.33.201 any eq 1700\n" + " 800 permit udp host 10.10.33.202 any eq 1700\n" + " 810 permit udp host 10.10.33.203 any eq 1700\n" + " 820 permit udp host 10.10.35.1 any eq 1700\n" + " 830 permit udp host 10.10.39.80 any eq 1700\n" + " 840 permit udp host 10.10.39.81 any eq 1700\n" + " 850 permit udp host 10.10.39.100 any eq 1700\n" + " 860 permit udp host 10.32.31.202 any eq 1700\n" + " 870 permit udp host 10.10.33.200 any range 1812 1813\n" + " 880 permit udp host 10.10.33.201 any range 1812 1813\n" + " 890 permit udp host 10.10.33.202 any range 1812 1813\n" + " 900 permit udp host 10.10.33.203 any range 1812 1813\n" + " 910 permit udp host 10.10.35.1 any range 1812 1813\n" + " 920 permit udp host 10.10.39.80 any range 1812 1813\n" + " 930 permit udp host 10.10.39.81 any range 1812 1813\n" + " 940 permit udp host 10.10.39.100 any range 1812 1813\n" + " 950 permit udp host 10.32.31.202 any range 1812 1813\n" + " 960 permit icmp 10.10.55.0 0.0.0.255 any (2465535 matches)\n" + " 970 permit icmp 10.11.55.0 0.0.0.255 any\n" + "Extended IP access list CISCO-CWA-URL-REDIRECT-ACL\n" + " 100 deny udp any any eq domain\n" + " 101 deny tcp any any eq domain\n" + " 102 deny udp any eq bootps any\n" + " 103 deny udp any any eq bootpc\n" + " 104 deny udp any eq bootpc any\n" + " 105 permit tcp any any eq www\n" + "Extended IP access list preauth_ipv4_acl (per-user)\n" + " 10 permit udp any any eq domain\n" + " 20 permit tcp any any eq domain\n" + " 30 permit udp any eq bootps any\n" + " 40 permit udp any any eq bootpc\n" + " 50 permit udp any eq bootpc any\n" + " 60 deny ip any any ^\n" + "% Invalid input detected at '^' marker.\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + "% Incomplete command.\n" + "% Incomplete command.\n" + "Number of existing VLANs : 7\n" + " Number of existing VTP VLANs : 7\n" + " Number of existing extended VLANS : 0\n\n" + "VLAN Name Status Ports\n" + "---- -------------------------------- --------- -------------------------------\n" + "1 default active \n" + "98 SIT-OOB-Mgmt active Gi1/0/1, Gi1/0/3, Gi1/0/4, Gi1/0/5, Gi1/0/6, Gi1/0/7, Gi1/0/8, Gi1/0/9, Gi1/0/10, Gi1/0/11, Gi1/0/12, Gi1/0/13, Gi1/0/14, Gi1/0/15, Gi1/0/16, Gi1/0/17, Gi1/0/18, Gi1/0/19, Gi1/0/20, Gi1/0/21, Gi1/0/22, Gi1/0/23, Gi1/0/24, Gi1/0/27, Gi1/0/28\n" + "99 SRV-MGMT-FCAPS active Gi1/0/2\n" + "1002 fddi-default act/unsup \n" + "1003 trcrf-default act/unsup \n" + "1004 fddinet-default act/unsup \n" + "1005 trbrf-default act/unsup Switch is in rapid-pvst mode\n" + "Root bridge for: none\n" + "EtherChannel misconfig guard is enabled\n" + "Extended system ID is enabled\n" + "Portfast Default is enabled\n" + "PortFast BPDU Guard Default is enabled\n" + "Portfast BPDU Filter Default is disabled\n" + "Loopguard Default is enabled\n" + "UplinkFast is disabled\n" + "BackboneFast is disabled\n" + "Configured Pathcost method used is short\n\n" + "Name Blocking Listening Learning Forwarding STP Active\n" + "---------------------- -------- --------- -------- ---------- ----------\n" + "VLAN0098 1 0 0 2 3\n" + "VLAN0099 1 0 0 2 3\n" + "---------------------- -------- --------- -------- ---------- ----------\n" + "2 vlans 2 0 0 4 6\n" + "VLAN0098\n" + " Spanning tree enabled protocol rstp\n" + " Root ID Priority 98\n" + " Address 8cb6.4fb9.dd80\n" + " Cost 8\n" + " Port 25 (GigabitEthernet1/0/25)\n" + " Hello Time 2 sec Max Age 20 sec Forward Delay 15 sec\n\n" + " Bridge ID Priority 32866 (priority 32768 sys-id-ext 98)\n" + " Address e8ed.f3b1.9f00\n" + " Hello Time 2 sec Max Age 20 sec Forward Delay 15 sec\n" + " Aging Time 300 sec\n\n" + "Interface Role Sts Cost Prio.Nbr Type\n" + "------------------- ---- --- --------- -------- --------------------------------\n" + "Gi1/0/1 Desg FWD 19 128.1 P2p Edge \n" + "Gi1/0/25 Root FWD 4 128.25 P2p \n" + "Gi1/0/26 Altn BLK 4 128.26 P2p \n\n\n\n" + "VLAN0099\n" + " Spanning tree enabled protocol rstp\n" + " Root ID Priority 99\n" + " Address 0023.04ee.be64\n" + " Cost 13\n" + " Port 25 (GigabitEthernet1/0/25)\n" + " Hello Time 2 sec Max Age 20 sec Forward Delay 15 sec\n\n" + " Bridge ID Priority 32867 (priority 32768 sys-id-ext 99)\n" + " Address e8ed.f3b1.9f00\n" + " Hello Time 2 sec Max Age 20 sec Forward Delay 15 sec\n" + " Aging Time 300 sec\n\n" + "Interface Role Sts Cost Prio.Nbr Type\n" + "------------------- ---- --- --------- -------- --------------------------------\n" + "Gi1/0/2 Desg FWD 4 128.2 P2p Edge \n" + "Gi1/0/25 Root FWD 4 128.25 P2p \n" + "Gi1/0/26 Altn BLK 4 128.26 P2p \n\n\n" + " Root Hello Max Fwd\n" + "Vlan Root ID Cost Time Age Dly Root Port\n" + "---------------- -------------------- --------- ----- --- --- ------------\n" + "VLAN0098 98 8cb6.4fb9.dd80 8 2 20 15 Gi1/0/25 \n" + "VLAN0099 99 0023.04ee.be64 13 2 20 15 Gi1/0/25 \n" + " VLAN0098 is executing the rstp compatible Spanning Tree protocol\n" + " Bridge Identifier has priority 32768, sysid 98, address e8ed.f3b1.9f00\n" + " Configured hello time 2, max age 20, forward delay 15, transmit hold-count 6\n" + " Current root has priority 98, address 8cb6.4fb9.dd80\n" + " Root port is 25 (GigabitEthernet1/0/25), cost of root path is 8\n" + " Topology change flag not set, detected flag not set\n" + " Number of topology changes 102 last change occurred 3w2d ago\n" + " from GigabitEthernet1/0/25\n" + " Times: hold 1, topology change 35, notification 2\n" + " hello 2, max age 20, forward delay 15 \n" + " Timers: hello 0, topology change 0, notification 0, aging 300\n\n" + " Port 1 (GigabitEthernet1/0/1) of VLAN0098 is designated forwarding \n" + " Port path cost 19, Port priority 128, Port Identifier 128.1.\n" + " Designated root has priority 98, address 8cb6.4fb9.dd80\n" + " Designated bridge has priority 32866, address e8ed.f3b1.9f00\n" + " Designated port id is 128.1, designated path cost 8\n" + " Timers: message age 0, forward delay 0, hold 0\n" + " Number of transitions to forwarding state: 1\n" + " The port is in the portfast mode by default\n" + " Link type is point-to-point by default\n" + " Bpdu guard is enabled by default\n" + " Loop guard is enabled by default on the port\n" + " BPDU: sent 36892357, received 0\n\n" + " Port 25 (GigabitEthernet1/0/25) of VLAN0098 is root forwarding \n" + " Port path cost 4, Port priority 128, Port Identifier 128.25.\n" + " Designated root has priority 98, address 8cb6.4fb9.dd80\n" + " Designated bridge has priority 32866, address bc16.6565.b380\n" + " Designated port id is 128.4, designated path cost 4\n" + " Timers: message age 15, forward delay 0, hold 0\n" + " Number of transitions to forwarding state: 3\n" + " Link type is point-to-point by default\n" + " Loop guard is enabled by default on the port\n" + " BPDU: sent 13, received 36665506\n\n" + " Port 26 (GigabitEthernet1/0/26) of VLAN0098 is alternate blocking \n" + " Port path cost 4, Port priority 128, Port Identifier 128.26.\n" + " Designated root has priority 98, address 8cb6.4fb9.dd80\n" + " Designated bridge has priority 32866, address bc16.650d.0500\n" + " Designated port id is 128.4, designated path cost 8\n" + " Timers: message age 16, forward delay 0, hold 0\n" + " Number of transitions to forwarding state: 3\n" + " Link type is point-to-point by default\n" + " Loop guard is enabled by default on the port\n" + " BPDU: sent 16, received 36683394\n\n\n" + " VLAN0099 is executing the rstp compatible Spanning Tree protocol\n" + " Bridge Identifier has priority 32768, sysid 99, address e8ed.f3b1.9f00\n" + " Configured hello time 2, max age 20, forward delay 15, transmit hold-count 6\n" + " Current root has priority 99, address 0023.04ee.be64\n" + " Root port is 25 (GigabitEthernet1/0/25), cost of root path is 13\n" + " Topology change flag not set, detected flag not set\n" + " Number of topology changes 24 last change occurred 10w4d ago\n" + " from GigabitEthernet1/0/25\n" + " Times: hold 1, topology change 35, notification 2\n" + " hello 2, max age 20, forward delay 15 \n" + " Timers: hello 0, topology change 0, notification 0, aging 300\n\n" + " Port 2 (GigabitEthernet1/0/2) of VLAN0099 is designated forwarding \n" + " Port path cost 4, Port priority 128, Port Identifier 128.2.\n" + " Designated root has priority 99, address 0023.04ee.be64\n" + " Designated bridge has priority 32867, address e8ed.f3b1.9f00\n" + " Designated port id is 128.2, designated path cost 13\n" + " Timers: message age 0, forward delay 0, hold 0\n" + " Number of transitions to forwarding state: 1\n" + " The port is in the portfast mode by default\n" + " Link type is point-to-point by default\n" + " Bpdu guard is enabled by default\n" + " Loop guard is enabled by default on the port\n" + " BPDU: sent 17119599, received 0\n\n" + " Port 25 (GigabitEthernet1/0/25) of VLAN0099 is root forwarding \n" + " Port path cost 4, Port priority 128, Port Identifier 128.25.\n" + " Designated root has priority 99, address 0023.04ee.be64\n" + " Designated bridge has priority 32867, address bc16.6565.b380\n" + " Designated port id is 128.4, designated path cost 9\n" + " Timers: message age 15, forward delay 0, hold 0\n" + " Number of transitions to forwarding state: 3\n" + " Link type is point-to-point by default\n" + " Loop guard is enabled by default on the port\n" + " BPDU: sent 15, received 54349867\n\n" + " Port 26 (GigabitEthernet1/0/26) of VLAN0099 is alternate blocking \n" + " Port path cost 4, Port priority 128, Port Identifier 128.26.\n" + " Designated root has priority 99, address 0023.04ee.be64\n" + " Designated bridge has priority 32867, address bc16.650d.0500\n" + " Designated port id is 128.4, designated path cost 13\n" + " Timers: message age 15, forward delay 0, hold 0\n" + " Number of transitions to forwarding state: 4\n" + " Link type is point-to-point by default\n" + " Loop guard is enabled by default on the port\n" + " BPDU: sent 16, received 54375264\n" + " Mac Address Table\n" + "-------------------------------------------\n\n" + "Vlan Mac Address Type Ports\n" + "---- ----------- -------- -----\n" + " 98 0000.0c9f.f000 DYNAMIC Gi1/0/25\n" + " 98 0006.6722.4178 DYNAMIC Gi1/0/25\n" + " 98 0006.6722.419e DYNAMIC Gi1/0/25\n" + " 98 0006.6722.41a8 DYNAMIC Gi1/0/25\n" + " 98 0006.6722.41b0 DYNAMIC Gi1/0/25\n" + " 98 0006.6722.41b5 DYNAMIC Gi1/0/25\n" + " 98 0006.6722.41c5 DYNAMIC Gi1/0/25\n" + " 98 0006.6722.41c6 DYNAMIC Gi1/0/25\n" + " 98 0006.6722.d110 DYNAMIC Gi1/0/25\n" + " 98 0006.6722.d113 DYNAMIC Gi1/0/25\n" + " 98 0006.6722.d11f DYNAMIC Gi1/0/25\n" + " 98 0006.6723.0346 DYNAMIC Gi1/0/25\n" + " 98 0006.6723.0348 DYNAMIC Gi1/0/25\n" + " 98 0006.6723.034d DYNAMIC Gi1/0/25\n" + " 98 0006.6723.034f DYNAMIC Gi1/0/25\n" + " 98 0006.6723.0350 DYNAMIC Gi1/0/25\n" + " 98 0006.6723.17f1 DYNAMIC Gi1/0/25\n" + " 98 0006.6723.18c9 DYNAMIC Gi1/0/25\n" + " 98 0006.6723.18d3 DYNAMIC Gi1/0/25\n" + " 98 000a.49fd.0502 DYNAMIC Gi1/0/25\n" + " 98 0023.e9e2.d441 DYNAMIC Gi1/0/25\n" + " 98 0023.e9e4.f5c1 DYNAMIC Gi1/0/25\n" + " 98 0023.ebe0.1c20 DYNAMIC Gi1/0/25\n" + " 98 0025.45f2.cf20 DYNAMIC Gi1/0/25\n" + " 98 0026.0b31.64a8 DYNAMIC Gi1/0/25\n" + " 98 0040.9d43.3597 DYNAMIC Gi1/0/25\n" + " 98 0080.a389.7907 DYNAMIC Gi1/0/1\n" + " 98 00a2.ee9c.c4ba DYNAMIC Gi1/0/25\n" + " 98 00c0.b757.97d2 DYNAMIC Gi1/0/25\n" + " 98 00c0.b758.2203 DYNAMIC Gi1/0/25\n" + " 98 00c0.b758.2272 DYNAMIC Gi1/0/25\n" + " 98 00c0.b758.2290 DYNAMIC Gi1/0/25\n" + " 98 00c0.b758.246c DYNAMIC Gi1/0/25\n" + " 98 00c0.b758.2471 DYNAMIC Gi1/0/25\n" + " 98 00c0.b758.2476 DYNAMIC Gi1/0/25\n" + " 98 00c0.b758.2477 DYNAMIC Gi1/0/25\n" + " 98 00c0.b758.247b DYNAMIC Gi1/0/25\n" + " 98 00c0.b758.247c DYNAMIC Gi1/0/25\n" + " 98 00c0.b758.247f DYNAMIC Gi1/0/25\n" + " 98 00c0.b758.3d1e DYNAMIC Gi1/0/25\n" + " 98 00c0.b758.3d21 DYNAMIC Gi1/0/25\n" + " 98 00c0.b758.3d34 DYNAMIC Gi1/0/25\n" + " 98 00c0.b758.3d3d DYNAMIC Gi1/0/25\n" + " 98 00c0.b758.3d43 DYNAMIC Gi1/0/25\n" + " 98 00c0.b758.bf8a DYNAMIC Gi1/0/25\n" + " 98 00c0.b758.bfa7 DYNAMIC Gi1/0/25\n" + " 98 00c0.b758.bfd5 DYNAMIC Gi1/0/25\n" + " 98 00c0.b7b4.071a DYNAMIC Gi1/0/25\n" + " 98 4066.0000.0000 DYNAMIC Gi1/0/25\n" + " 98 547f.ee3c.8921 DYNAMIC Gi1/0/25\n" + " 98 5c83.8fe1.1df4 DYNAMIC Gi1/0/25\n" + " 98 84eb.ef03.427c DYNAMIC Gi1/0/25\n" + " 98 bc16.6565.b384 DYNAMIC Gi1/0/25\n" + " 98 f415.630d.6001 DYNAMIC Gi1/0/25\n" + " 98 f415.6365.0c01 DYNAMIC Gi1/0/25\n" + " 98 f415.6388.5e01 DYNAMIC Gi1/0/25\n" + " 98 f866.f26c.ef40 DYNAMIC Gi1/0/25\n" + " 98 f866.f26d.0000 DYNAMIC Gi1/0/25\n" + " 99 0000.0c9f.f001 DYNAMIC Gi1/0/25\n" + " 99 0006.6723.18c8 DYNAMIC Gi1/0/25\n" + " 99 0015.b2a5.1539 DYNAMIC Gi1/0/25\n" + " 99 001b.6e01.047f DYNAMIC Gi1/0/25\n" + " 99 001b.6e01.06d0 DYNAMIC Gi1/0/25\n" + " 99 001b.6e01.06d4 DYNAMIC Gi1/0/25\n" + " 99 001b.6e01.1091 DYNAMIC Gi1/0/25\n" + " 99 001b.6e01.1ea5 DYNAMIC Gi1/0/25\n" + " 99 001b.6e01.2585 DYNAMIC Gi1/0/25\n" + " 99 001b.6e01.2593 DYNAMIC Gi1/0/2\n" + " 99 0021.5a9b.5808 DYNAMIC Gi1/0/25\n" + " 99 0021.5a9b.580a DYNAMIC Gi1/0/25\n" + " 99 0023.e9e4.ecc7 DYNAMIC Gi1/0/25\n" + " 99 0023.e9e5.02c7 DYNAMIC Gi1/0/25\n" + " 99 0025.2261.1e3f DYNAMIC Gi1/0/25\n" + " 99 0025.9060.2ab5 DYNAMIC Gi1/0/25\n" + " 99 0025.9061.b28f DYNAMIC Gi1/0/25\n" + " 99 0025.90c6.0a5b DYNAMIC Gi1/0/25\n" + " 99 0026.0b54.8640 DYNAMIC Gi1/0/25\n" + " 99 0026.9816.4fc1 DYNAMIC Gi1/0/25\n" + " 99 0050.56ba.1ad5 DYNAMIC Gi1/0/25\n" + " 99 0050.56ba.3880 DYNAMIC Gi1/0/25\n" + " 99 00e0.81db.6faa DYNAMIC Gi1/0/25\n" + " 99 bc16.6565.b384 DYNAMIC Gi1/0/25\n" + " 99 f025.72a5.15c1 DYNAMIC Gi1/0/25\n" + "Total Mac Addresses for this criterion: 83Protocol Address Age (min) Hardware Addr Type Interface\n" + "Internet 192.168.251.101 - e8ed.f3b1.9f41 ARPA Vlan98\n" + "Internet 192.168.251.254 161 0000.0c9f.f000 ARPA Vlan98 ^\n" + "% Invalid input detected at '^' marker.\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + "QoS is enabled\n" + "QoS ip packet dscp rewrite is enabled\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + "Syslog logging: enabled (0 messages dropped, 32 messages rate-limited, 0 flushes, 0 overruns, xml disabled, filtering disabled)\n\n" + "No Active Message Discriminator.\n\n\n\n" + "No Inactive Message Discriminator.\n\n\n" + " Console logging: level critical, 3 messages logged, xml disabled,\n" + " filtering disabled\n" + " Monitor logging: level debugging, 0 messages logged, xml disabled,\n" + " filtering disabled\n" + " Buffer logging: level informational, 934 messages logged, xml disabled,\n" + " filtering disabled\n" + " Exception Logging: size (4096 bytes)\n" + " Count and timestamp logging messages: enabled\n" + " File logging: disabled\n" + " Persistent logging: disabled\n\n" + "No active filter modules.\n\n" + " Trap logging: level notifications, 926 message lines logged\n" + " Logging to 10.10.55.14 (udp port 514, audit disabled,\n" + " link up),\n" + " 925 message lines logged, \n" + " 0 message lines rate-limited, \n" + " 0 message lines dropped-by-MD, \n" + " xml disabled, sequence number disabled\n" + " filtering disabled\n" + " Logging to 10.10.55.28 (udp port 514, audit disabled,\n" + " link up),\n" + " 926 message lines logged, \n" + " 0 message lines rate-limited, \n" + " 0 message lines dropped-by-MD, \n" + " xml disabled, sequence number disabled\n" + " filtering disabled\n" + " Logging to 10.10.55.6 (udp port 515, audit disabled,\n" + " link up),\n" + " 926 message lines logged, \n" + " 0 message lines rate-limited, \n" + " 0 message lines dropped-by-MD, \n" + " xml disabled, sequence number disabled\n" + " filtering disabled\n" + " Logging Source-Interface: VRF Name:\n" + " Vlan98 \n\n" + "Log Buffer (64000 bytes):\n" + "MP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000332: Oct 22 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000333: Oct 23 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000334: Oct 24 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000335: Oct 25 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000336: Oct 26 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000337: Oct 27 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000338: Oct 28 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000339: Oct 29 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000340: Oct 30 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000341: Oct 31 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000342: Nov 1 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000343: Nov 2 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000344: Nov 3 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000345: Nov 4 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000346: Nov 5 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000347: Nov 6 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000348: Nov 7 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000349: Nov 8 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000350: Nov 9 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000351: Nov 10 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000352: Nov 11 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000353: Nov 12 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000354: Nov 13 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000355: Nov 14 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000356: Nov 15 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000357: Nov 16 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000358: Nov 17 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000359: Nov 18 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000360: Nov 19 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000361: Nov 20 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000362: Nov 21 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000363: Nov 22 22:01:24 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000364: Nov 23 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000365: Nov 24 22:01:38 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000366: Nov 25 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000367: Nov 26 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000368: Nov 27 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000369: Nov 28 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000370: Nov 29 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000371: Nov 30 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000372: Dec 1 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000373: Dec 2 22:01:44 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000374: Dec 3 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000375: Dec 4 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000376: Dec 5 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000377: Dec 6 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000378: Dec 7 22:01:38 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000379: Dec 8 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000380: Dec 9 22:01:32 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000381: Dec 10 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000382: Dec 11 22:01:32 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000383: Dec 12 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000384: Dec 13 22:01:27 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000385: Dec 14 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000386: Dec 15 22:01:35 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000387: Dec 16 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000388: Dec 17 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000389: Dec 18 22:01:55 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000390: Dec 19 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000391: Dec 20 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000392: Dec 21 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000393: Dec 22 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000394: Dec 23 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000395: Dec 24 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000396: Dec 25 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000397: Dec 26 22:00:17 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000398: Dec 27 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000399: Dec 28 22:01:42 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000400: Dec 29 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000401: Dec 30 22:01:42 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000402: Dec 31 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000403: Jan 1 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000404: Jan 2 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000405: Jan 3 22:01:31 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000406: Jan 4 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000407: Jan 5 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000408: Jan 6 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000409: Jan 7 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000410: Jan 8 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000411: Jan 9 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000412: Jan 10 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000413: Jan 11 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000414: Jan 12 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000415: Jan 13 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000416: Jan 14 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000417: Jan 15 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000418: Jan 16 22:01:34 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000419: Jan 17 22:01:29 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000420: Jan 18 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000421: Jan 19 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000422: Jan 20 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000423: Jan 21 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000424: Jan 22 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000425: Jan 23 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000426: Jan 24 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000427: Jan 25 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000428: Jan 26 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000429: Jan 27 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000430: Jan 28 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000431: Jan 29 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000432: Jan 30 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000433: Jan 31 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000434: Feb 1 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000435: Feb 2 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000436: Feb 3 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000437: Feb 4 22:01:43 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000438: Feb 5 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000439: Feb 6 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000440: Feb 7 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000441: Feb 8 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000442: Feb 9 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000443: Feb 10 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000444: Feb 11 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000445: Feb 12 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000446: Feb 13 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000447: Feb 14 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000448: Feb 15 17:29:46 UTC: %SYS-5-CONFIG_I: Configured from console by admin on vty0 (10.10.36.167)\n" + "000449: Feb 15 17:51:08 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000450: Feb 15 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000451: Feb 16 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000452: Feb 17 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000453: Feb 18 22:01:33 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000454: Feb 19 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000455: Feb 20 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000456: Feb 21 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000457: Feb 22 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000458: Feb 23 22:01:34 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000459: Feb 24 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000460: Feb 25 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000461: Feb 26 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000462: Feb 27 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000463: Feb 28 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000464: Mar 1 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000465: Mar 2 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000466: Mar 3 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000467: Mar 4 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000468: Mar 5 22:01:29 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000469: Mar 6 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000470: Mar 7 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000471: Mar 8 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000472: Mar 9 22:00:07 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000473: Mar 10 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000474: Mar 11 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000475: Mar 12 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000476: Mar 13 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000477: Mar 14 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000478: Mar 15 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000479: Mar 16 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000480: Mar 17 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000481: Mar 18 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000482: Mar 19 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000483: Mar 20 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000484: Mar 21 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000485: Mar 22 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000486: Mar 23 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000487: Mar 24 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000488: Mar 25 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000489: Mar 26 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000490: Mar 27 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000491: Mar 28 22:00:05 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000492: Mar 29 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000493: Mar 30 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000494: Mar 31 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000495: Apr 1 22:01:40 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000496: Apr 2 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000497: Apr 3 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000498: Apr 4 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000499: Apr 5 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000500: Apr 6 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000501: Apr 7 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000502: Apr 8 22:01:31 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000503: Apr 9 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000504: Apr 10 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000505: Apr 11 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000506: Apr 12 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000507: Apr 13 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000508: Apr 14 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000509: Apr 15 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000510: Apr 16 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000511: Apr 17 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000512: Apr 18 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000513: Apr 19 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000514: Apr 20 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000515: Apr 21 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000516: Apr 22 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000517: Apr 23 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000518: Apr 24 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000519: Apr 25 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000520: Apr 26 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000521: Apr 27 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000522: Apr 28 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000523: Apr 29 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000524: Apr 30 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000525: May 1 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000526: May 2 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000527: May 3 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000528: May 4 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000529: May 5 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000530: May 6 22:00:06 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000531: May 7 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000532: May 8 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000533: May 9 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000534: May 10 22:01:38 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000535: May 11 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000536: May 12 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000537: May 13 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000538: May 14 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000539: May 15 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000540: May 16 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000541: May 17 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000542: May 18 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000543: May 19 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000544: May 20 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000545: May 21 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000546: May 22 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000547: May 23 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000548: May 24 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000549: May 25 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000550: May 26 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000551: May 27 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000552: May 28 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000553: May 29 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000554: May 30 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000555: May 31 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000556: Jun 1 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000557: Jun 2 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000558: Jun 3 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000559: Jun 4 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000560: Jun 5 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000561: Jun 6 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000562: Jun 7 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000563: Jun 8 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000564: Jun 9 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000565: Jun 10 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000566: Jun 11 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000567: Jun 12 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000568: Jun 13 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000569: Jun 14 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000570: Jun 15 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000571: Jun 16 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000572: Jun 17 22:01:40 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000573: Jun 18 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000574: Jun 19 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000575: Jun 20 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000576: Jun 21 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000577: Jun 22 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000578: Jun 23 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000579: Jun 24 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000580: Jun 25 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000581: Jun 26 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000582: Jun 27 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000583: Jun 28 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000584: Jun 29 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000585: Jun 30 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000586: Jul 1 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000587: Jul 2 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000588: Jul 3 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000589: Jul 4 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000590: Jul 5 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000591: Jul 6 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000592: Jul 7 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000593: Jul 8 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000594: Jul 9 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000595: Jul 10 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000596: Jul 11 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000597: Jul 12 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000598: Jul 13 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000599: Jul 14 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000600: Jul 15 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000601: Jul 16 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000602: Jul 17 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000603: Jul 18 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000604: Jul 19 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000605: Jul 20 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000606: Jul 21 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000607: Jul 22 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000608: Jul 23 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000609: Jul 24 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000610: Jul 25 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000611: Jul 26 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000612: Jul 27 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000613: Jul 28 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000614: Jul 29 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000615: Jul 30 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000616: Jul 31 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000617: Aug 1 22:00:06 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000618: Aug 2 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000619: Aug 3 22:00:08 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000620: Aug 4 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000621: Aug 5 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000622: Aug 6 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000623: Aug 7 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000624: Aug 8 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000625: Aug 9 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000626: Aug 10 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000627: Aug 11 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000628: Aug 12 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000629: Aug 13 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000630: Aug 14 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000631: Aug 15 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000632: Aug 16 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000633: Aug 17 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000634: Aug 18 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000635: Aug 19 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000636: Aug 20 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000637: Aug 21 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000638: Aug 22 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000639: Aug 23 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000640: Aug 24 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000641: Aug 25 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000642: Aug 26 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000643: Aug 27 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000644: Aug 28 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000645: Aug 29 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000646: Aug 30 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000647: Aug 31 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000648: Sep 1 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000649: Sep 2 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000650: Sep 3 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000651: Sep 4 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000652: Sep 5 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000653: Sep 6 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000654: Sep 7 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000655: Sep 8 19:06:33 UTC: %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet1/0/2, changed state to down\n" + "000656: Sep 8 19:06:34 UTC: %LINK-3-UPDOWN: Interface GigabitEthernet1/0/2, changed state to down\n" + "000657: Sep 8 19:06:37 UTC: %LINK-3-UPDOWN: Interface GigabitEthernet1/0/2, changed state to up\n" + "000658: Sep 8 19:06:38 UTC: %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet1/0/2, changed state to up\n" + "000659: Sep 8 19:06:44 UTC: %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet1/0/2, changed state to down\n" + "000660: Sep 8 19:06:45 UTC: %LINK-3-UPDOWN: Interface GigabitEthernet1/0/2, changed state to down\n" + "000661: Sep 8 19:06:48 UTC: %LINK-3-UPDOWN: Interface GigabitEthernet1/0/2, changed state to up\n" + "000662: Sep 8 19:06:49 UTC: %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet1/0/2, changed state to up\n" + "000663: Sep 8 19:07:00 UTC: %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet1/0/2, changed state to down\n" + "000664: Sep 8 19:07:01 UTC: %LINK-3-UPDOWN: Interface GigabitEthernet1/0/2, changed state to down\n" + "000665: Sep 8 19:07:03 UTC: %LINK-3-UPDOWN: Interface GigabitEthernet1/0/2, changed state to up\n" + "000666: Sep 8 19:07:04 UTC: %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet1/0/2, changed state to up\n" + "000667: Sep 8 19:08:31 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000668: Sep 8 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000669: Sep 9 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000670: Sep 10 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000671: Sep 11 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000672: Sep 12 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000673: Sep 13 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000674: Sep 14 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000675: Sep 15 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000676: Sep 16 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000677: Sep 17 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000678: Sep 18 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000679: Sep 19 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000680: Sep 20 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000681: Sep 21 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000682: Sep 22 13:51:45 UTC: %SPANTREE-2-LOOPGUARD_BLOCK: Loop guard blocking port GigabitEthernet1/0/25 on VLAN0099.\n" + "000683: Sep 22 13:51:46 UTC: %SPANTREE-2-LOOPGUARD_UNBLOCK: Loop guard unblocking port GigabitEthernet1/0/25 on VLAN0099.\n" + "000684: Sep 22 13:51:47 UTC: %SPANTREE-2-LOOPGUARD_BLOCK: Loop guard blocking port GigabitEthernet1/0/25 on VLAN0098.\n" + "000685: Sep 22 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000686: Sep 23 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000687: Sep 24 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000688: Sep 25 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000689: Sep 26 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000690: Sep 27 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000691: Sep 28 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000692: Sep 29 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000693: Sep 30 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000694: Oct 1 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000695: Oct 2 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000696: Oct 3 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000697: Oct 4 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000698: Oct 5 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000699: Oct 6 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000700: Oct 7 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000701: Oct 8 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000702: Oct 9 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000703: Oct 10 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000704: Oct 11 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000705: Oct 12 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000706: Oct 13 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000707: Oct 14 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000708: Oct 15 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000709: Oct 16 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000710: Oct 17 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000711: Oct 18 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000712: Oct 19 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000713: Oct 20 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000714: Oct 21 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000715: Oct 22 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000716: Oct 23 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000717: Oct 24 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000718: Oct 25 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000719: Oct 26 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000720: Oct 27 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000721: Oct 28 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000722: Oct 29 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000723: Oct 30 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000724: Oct 31 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000725: Nov 1 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000726: Nov 2 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000727: Nov 3 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000728: Nov 4 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000729: Nov 5 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000730: Nov 6 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000731: Nov 7 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000732: Nov 8 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000733: Nov 9 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000734: Nov 10 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000735: Nov 11 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000736: Nov 12 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000737: Nov 13 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000738: Nov 14 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000739: Nov 15 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000740: Nov 16 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000741: Nov 17 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000742: Nov 18 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000743: Nov 19 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000744: Nov 20 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000745: Nov 21 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000746: Nov 22 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000747: Nov 23 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000748: Nov 24 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000749: Nov 25 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000750: Nov 26 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000751: Nov 27 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000752: Nov 28 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000753: Nov 29 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000754: Nov 30 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000755: Dec 1 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000756: Dec 2 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000757: Dec 3 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000758: Dec 4 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000759: Dec 5 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000760: Dec 6 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000761: Dec 7 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000762: Dec 8 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000763: Dec 9 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000764: Dec 10 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000765: Dec 11 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000766: Dec 12 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000767: Dec 13 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000768: Dec 14 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000769: Dec 15 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000770: Dec 16 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000771: Dec 17 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000772: Dec 18 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000773: Dec 19 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000774: Dec 20 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000775: Dec 21 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000776: Dec 22 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000777: Dec 23 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000778: Dec 24 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000779: Dec 25 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000780: Dec 26 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000781: Dec 27 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000782: Dec 28 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000783: Dec 29 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000784: Dec 30 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000785: Dec 31 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000786: Jan 1 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000787: Jan 2 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000788: Jan 3 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000789: Jan 4 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000790: Jan 5 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000791: Jan 6 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000792: Jan 7 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000793: Jan 8 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000794: Jan 9 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000795: Jan 10 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000796: Jan 11 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000797: Jan 12 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000798: Jan 13 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000799: Jan 14 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000800: Jan 15 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000801: Jan 16 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000802: Jan 17 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000803: Jan 18 22:00:07 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000804: Jan 19 22:01:41 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000805: Jan 20 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000806: Jan 21 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000807: Jan 22 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000808: Jan 23 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000809: Jan 24 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000810: Jan 25 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000811: Jan 26 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000812: Jan 27 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000813: Jan 28 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000814: Jan 29 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000815: Jan 30 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000816: Jan 31 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000817: Feb 1 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000818: Feb 2 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000819: Feb 3 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000820: Feb 4 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000821: Feb 5 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000822: Feb 6 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000823: Feb 7 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000824: Feb 8 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000825: Feb 9 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000826: Feb 10 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000827: Feb 11 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000828: Feb 12 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000829: Feb 13 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000830: Feb 14 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000831: Feb 15 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000832: Feb 16 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000833: Feb 17 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000834: Feb 18 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000835: Feb 19 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000836: Feb 20 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000837: Feb 21 22:00:05 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000838: Feb 22 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000839: Feb 23 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000840: Feb 24 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000841: Feb 25 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000842: Feb 26 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000843: Feb 27 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000844: Feb 28 22:00:05 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000845: Mar 1 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000846: Mar 2 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000847: Mar 3 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000848: Mar 4 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000849: Mar 5 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000850: Mar 6 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000851: Mar 7 22:00:06 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000852: Mar 8 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000853: Mar 9 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000854: Mar 10 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000855: Mar 11 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000856: Mar 12 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000857: Mar 13 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000858: Mar 14 22:00:05 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000859: Mar 15 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000860: Mar 16 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000861: Mar 17 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000862: Mar 18 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000863: Mar 19 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000864: Mar 20 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000865: Mar 21 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000866: Mar 22 22:01:58 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000867: Mar 23 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000868: Mar 24 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000869: Mar 25 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000870: Mar 26 22:00:06 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000871: Mar 27 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000872: Mar 28 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000873: Mar 29 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000874: Mar 30 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000875: Mar 31 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000876: Apr 1 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000877: Apr 2 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000878: Apr 3 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000879: Apr 4 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000880: Apr 5 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000881: Apr 6 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000882: Apr 7 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000883: Apr 8 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000884: Apr 9 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000885: Apr 10 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000886: Apr 11 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000887: Apr 12 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000888: Apr 13 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000889: Apr 14 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000890: Apr 15 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000891: Apr 16 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000892: Apr 17 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000893: Apr 18 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000894: Apr 19 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000895: Apr 20 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000896: Apr 21 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000897: Apr 22 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000898: Apr 23 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000899: Apr 24 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000900: Apr 25 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000901: Apr 26 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000902: Apr 27 22:00:05 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000903: Apr 28 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000904: Apr 29 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000905: Apr 30 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000906: May 1 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000907: May 2 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000908: May 3 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000909: May 4 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000910: May 5 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000911: May 6 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000912: May 7 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000913: May 8 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000914: May 9 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000915: May 10 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000916: May 11 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000917: May 12 22:00:05 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000918: May 13 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000919: May 14 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000920: May 15 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000921: May 16 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000922: May 17 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000923: May 18 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000924: May 19 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000925: May 20 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000926: May 21 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000927: May 22 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000928: May 23 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000929: May 24 22:00:04 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000930: May 25 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000931: May 26 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000932: May 27 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000933: May 28 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000934: May 29 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000935: May 30 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000936: May 31 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000937: Jun 1 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000938: Jun 2 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + "000939: Jun 3 22:00:03 UTC: %SNMP-3-AUTHFAIL: Authentication failure for SNMP req from host 10.10.55.14\n" + " Transmit FastEthernet0 Receive\n" + " 0 Bytes 0 Bytes \n" + " 0 Unicast frames 0 Unicast frames \n" + " 0 Multicast frames 0 Multicast frames \n" + " 0 Broadcast frames 0 Broadcast frames \n" + " 0 Too old frames 0 Unicast bytes \n" + " 0 Deferred frames 0 Multicast bytes \n" + " 0 MTU exceeded frames 0 Broadcast bytes \n" + " 0 1 collision frames 0 Alignment errors \n" + " 0 2 collision frames 0 FCS errors \n" + " 0 3 collision frames 0 Oversize frames \n" + " 0 4 collision frames 0 Undersize frames \n" + " 0 5 collision frames 0 Collision fragments \n" + " 0 6 collision frames \n" + " 0 7 collision frames 0 Minimum size frames \n" + " 0 8 collision frames 0 65 to 127 byte frames \n" + " 0 9 collision frames 0 128 to 255 byte frames \n" + " 0 10 collision frames 0 256 to 511 byte frames \n" + " 0 11 collision frames 0 512 to 1023 byte frames \n" + " 0 12 collision frames 0 1024 to 1518 byte frames \n" + " 0 13 collision frames 0 Overrun frames \n" + " 0 14 collision frames 0 Pause frames \n" + " 0 15 collision frames \n" + " 0 Excessive collisions 0 Symbol error frames \n" + " 0 Late collisions 0 Invalid frames, too large\n" + " 0 VLAN discard frames 0 Valid frames, too large \n" + " 0 Excess defer frames 0 Invalid frames, too small\n" + " 0 64 byte frames 0 Valid frames, too small \n" + " 0 127 byte frames \n" + " 0 255 byte frames 0 Too old frames \n" + " 0 511 byte frames 0 Valid oversize frames \n" + " 0 1023 byte frames 0 System FCS error frames \n" + " 0 1518 byte frames 0 RxPortFifoFull drop frame\n" + " 0 Too large frames \n" + " 0 Good (1 coll) frames \n" + " 0 Good (>1 coll) frames \n\n\n" + " Transmit GigabitEthernet1/0/1 Receive\n" + " 3289004238 Bytes 730466880 Bytes \n" + " 58868144 Unicast frames 8725326 Unicast frames \n" + " 129367880 Multicast frames 0 Multicast frames \n" + " 86692489 Broadcast frames 7 Broadcast frames \n" + " 0 Too old frames 730466432 Unicast bytes \n" + " 0 Deferred frames 0 Multicast bytes \n" + " 0 MTU exceeded frames 448 Broadcast bytes \n" + " 0 1 collision frames 0 Alignment errors \n" + " 0 2 collision frames 0 FCS errors \n" + " 0 3 collision frames 0 Oversize frames \n" + " 0 4 collision frames 0 Undersize frames \n" + " 0 5 collision frames 0 Collision fragments \n" + " 0 6 collision frames \n" + " 0 7 collision frames 1562592 Minimum size frames \n" + " 0 8 collision frames 7158983 65 to 127 byte frames \n" + " 0 9 collision frames 2040 128 to 255 byte frames \n" + " 0 10 collision frames 577 256 to 511 byte frames \n" + " 0 11 collision frames 165 512 to 1023 byte frames \n" + " 0 12 collision frames 976 1024 to 1518 byte frames \n" + " 0 13 collision frames 0 Overrun frames \n" + " 0 14 collision frames 0 Pause frames \n" + " 0 15 collision frames \n" + " 0 Excessive collisions 0 Symbol error frames \n" + " 0 Late collisions 0 Invalid frames, too large\n" + " 0 VLAN discard frames 0 Valid frames, too large \n" + " 0 Excess defer frames 0 Invalid frames, too small\n" + " 103315582 64 byte frames 0 Valid frames, too small \n" + " 115780741 127 byte frames \n" + " 1727233 255 byte frames 0 Too old frames \n" + " 25869383 511 byte frames 0 Valid oversize frames \n" + " 28235138 1023 byte frames 0 System FCS error frames \n" + " 436 1518 byte frames 0 RxPortFifoFull drop frame\n" + " 0 Too large frames \n" + " 0 Good (1 coll) frames \n" + " 0 Good (>1 coll) frames \n\n\n" + " Transmit GigabitEthernet1/0/2 Receive\n" + " 1799418284 Bytes 2831437271 Bytes \n" + " 1110737685 Unicast frames 14721407 Unicast frames \n" + " 106887469 Multicast frames 99 Multicast frames \n" + " 526552227 Broadcast frames 7814 Broadcast frames \n" + " 0 Too old frames 2830928953 Unicast bytes \n" + " 0 Deferred frames 8222 Multicast bytes \n" + " 0 MTU exceeded frames 500096 Broadcast bytes \n" + " 0 1 collision frames 0 Alignment errors \n" + " 0 2 collision frames 0 FCS errors \n" + " 0 3 collision frames 0 Oversize frames \n" + " 0 4 collision frames 0 Undersize frames \n" + " 0 5 collision frames 0 Collision fragments \n" + " 0 6 collision frames \n" + " 0 7 collision frames 1711312 Minimum size frames \n" + " 0 8 collision frames 4142912 65 to 127 byte frames \n" + " 0 9 collision frames 6916171 128 to 255 byte frames \n" + " 0 10 collision frames 1957868 256 to 511 byte frames \n" + " 0 11 collision frames 231 512 to 1023 byte frames \n" + " 0 12 collision frames 826 1024 to 1518 byte frames \n" + " 0 13 collision frames 0 Overrun frames \n" + " 0 14 collision frames 0 Pause frames \n" + " 0 15 collision frames \n" + " 0 Excessive collisions 0 Symbol error frames \n" + " 0 Late collisions 0 Invalid frames, too large\n" + " 0 VLAN discard frames 0 Valid frames, too large \n" + " 0 Excess defer frames 0 Invalid frames, too small\n" + " 603826331 64 byte frames 0 Valid frames, too small \n" + " 93740836 127 byte frames \n" + " 974752313 255 byte frames 0 Too old frames \n" + " 13343150 511 byte frames 0 Valid oversize frames \n" + " 25507993 1023 byte frames 0 System FCS error frames \n" + " 33006758 1518 byte frames 0 RxPortFifoFull drop frame\n" + " 0 Too large frames \n" + " 0 Good (1 coll) frames \n" + " 0 Good (>1 coll) frames \n\n\n" + " Transmit GigabitEthernet1/0/3 Receive\n" + " 0 Bytes 0 Bytes \n" + " 0 Unicast frames 0 Unicast frames \n" + " 0 Multicast frames 0 Multicast frames \n" + " 0 Broadcast frames 0 Broadcast frames \n" + " 0 Too old frames 0 Unicast bytes \n" + " 0 Deferred frames 0 Multicast bytes \n" + " 0 MTU exceeded frames 0 Broadcast bytes \n" + " 0 1 collision frames 0 Alignment errors \n" + " 0 2 collision frames 0 FCS errors \n" + " 0 3 collision frames 0 Oversize frames \n" + " 0 4 collision frames 0 Undersize frames \n" + " 0 5 collision frames 0 Collision fragments \n" + " 0 6 collision frames \n" + " 0 7 collision frames 0 Minimum size frames \n" + " 0 8 collision frames 0 65 to 127 byte frames \n" + " 0 9 collision frames 0 128 to 255 byte frames \n" + " 0 10 collision frames 0 256 to 511 byte frames \n" + " 0 11 collision frames 0 512 to 1023 byte frames \n" + " 0 12 collision frames 0 1024 to 1518 byte frames \n" + " 0 13 collision frames 0 Overrun frames \n" + " 0 14 collision frames 0 Pause frames \n" + " 0 15 collision frames \n" + " 0 Excessive collisions 0 Symbol error frames \n" + " 0 Late collisions 0 Invalid frames, too large\n" + " 0 VLAN discard frames 0 Valid frames, too large \n" + " 0 Excess defer frames 0 Invalid frames, too small\n" + " 0 64 byte frames 0 Valid frames, too small \n" + " 0 127 byte frames \n" + " 0 255 byte frames 0 Too old frames \n" + " 0 511 byte frames 0 Valid oversize frames \n" + " 0 1023 byte frames 0 System FCS error frames \n" + " 0 1518 byte frames 0 RxPortFifoFull drop frame\n" + " 0 Too large frames \n" + " 0 Good (1 coll) frames \n" + " 0 Good (>1 coll) frames \n\n\n" + " Transmit GigabitEthernet1/0/4 Receive\n" + " 0 Bytes 0 Bytes \n" + " 0 Unicast frames 0 Unicast frames \n" + " 0 Multicast frames 0 Multicast frames \n" + " 0 Broadcast frames 0 Broadcast frames \n" + " 0 Too old frames 0 Unicast bytes \n" + " 0 Deferred frames 0 Multicast bytes \n" + " 0 MTU exceeded frames 0 Broadcast bytes \n" + " 0 1 collision frames 0 Alignment errors \n" + " 0 2 collision frames 0 FCS errors \n" + " 0 3 collision frames 0 Oversize frames \n" + " 0 4 collision frames 0 Undersize frames \n" + " 0 5 collision frames 0 Collision fragments \n" + " 0 6 collision frames \n" + " 0 7 collision frames 0 Minimum size frames \n" + " 0 8 collision frames 0 65 to 127 byte frames \n" + " 0 9 collision frames 0 128 to 255 byte frames \n" + " 0 10 collision frames 0 256 to 511 byte frames \n" + " 0 11 collision frames 0 512 to 1023 byte frames \n" + " 0 12 collision frames 0 1024 to 1518 byte frames \n" + " 0 13 collision frames 0 Overrun frames \n" + " 0 14 collision frames 0 Pause frames \n" + " 0 15 collision frames \n" + " 0 Excessive collisions 0 Symbol error frames \n" + " 0 Late collisions 0 Invalid frames, too large\n" + " 0 VLAN discard frames 0 Valid frames, too large \n" + " 0 Excess defer frames 0 Invalid frames, too small\n" + " 0 64 byte frames 0 Valid frames, too small \n" + " 0 127 byte frames \n" + " 0 255 byte frames 0 Too old frames \n" + " 0 511 byte frames 0 Valid oversize frames \n" + " 0 1023 byte frames 0 System FCS error frames \n" + " 0 1518 byte frames 0 RxPortFifoFull drop frame\n" + " 0 Too large frames \n" + " 0 Good (1 coll) frames \n" + " 0 Good (>1 coll) frames \n\n\n" + " Transmit GigabitEthernet1/0/5 Receive\n" + " 0 Bytes 0 Bytes \n" + " 0 Unicast frames 0 Unicast frames \n" + " 0 Multicast frames 0 Multicast frames \n" + " 0 Broadcast frames 0 Broadcast frames \n" + " 0 Too old frames 0 Unicast bytes \n" + " 0 Deferred frames 0 Multicast bytes \n" + " 0 MTU exceeded frames 0 Broadcast bytes \n" + " 0 1 collision frames 0 Alignment errors \n" + " 0 2 collision frames 0 FCS errors \n" + " 0 3 collision frames 0 Oversize frames \n" + " 0 4 collision frames 0 Undersize frames \n" + " 0 5 collision frames 0 Collision fragments \n" + " 0 6 collision frames \n" + " 0 7 collision frames 0 Minimum size frames \n" + " 0 8 collision frames 0 65 to 127 byte frames \n" + " 0 9 collision frames 0 128 to 255 byte frames \n" + " 0 10 collision frames 0 256 to 511 byte frames \n" + " 0 11 collision frames 0 512 to 1023 byte frames \n" + " 0 12 collision frames 0 1024 to 1518 byte frames \n" + " 0 13 collision frames 0 Overrun frames \n" + " 0 14 collision frames 0 Pause frames \n" + " 0 15 collision frames \n" + " 0 Excessive collisions 0 Symbol error frames \n" + " 0 Late collisions 0 Invalid frames, too large\n" + " 0 VLAN discard frames 0 Valid frames, too large \n" + " 0 Excess defer frames 0 Invalid frames, too small\n" + " 0 64 byte frames 0 Valid frames, too small \n" + " 0 127 byte frames \n" + " 0 255 byte frames 0 Too old frames \n" + " 0 511 byte frames 0 Valid oversize frames \n" + " 0 1023 byte frames 0 System FCS error frames \n" + " 0 1518 byte frames 0 RxPortFifoFull drop frame\n" + " 0 Too large frames \n" + " 0 Good (1 coll) frames \n" + " 0 Good (>1 coll) frames \n\n\n" + " Transmit GigabitEthernet1/0/6 Receive\n" + " 0 Bytes 0 Bytes \n" + " 0 Unicast frames 0 Unicast frames \n" + " 0 Multicast frames 0 Multicast frames \n" + " 0 Broadcast frames 0 Broadcast frames \n" + " 0 Too old frames 0 Unicast bytes \n" + " 0 Deferred frames 0 Multicast bytes \n" + " 0 MTU exceeded frames 0 Broadcast bytes \n" + " 0 1 collision frames 0 Alignment errors \n" + " 0 2 collision frames 0 FCS errors \n" + " 0 3 collision frames 0 Oversize frames \n" + " 0 4 collision frames 0 Undersize frames \n" + " 0 5 collision frames 0 Collision fragments \n" + " 0 6 collision frames \n" + " 0 7 collision frames 0 Minimum size frames \n" + " 0 8 collision frames 0 65 to 127 byte frames \n" + " 0 9 collision frames 0 128 to 255 byte frames \n" + " 0 10 collision frames 0 256 to 511 byte frames \n" + " 0 11 collision frames 0 512 to 1023 byte frames \n" + " 0 12 collision frames 0 1024 to 1518 byte frames \n" + " 0 13 collision frames 0 Overrun frames \n" + " 0 14 collision frames 0 Pause frames \n" + " 0 15 collision frames \n" + " 0 Excessive collisions 0 Symbol error frames \n" + " 0 Late collisions 0 Invalid frames, too large\n" + " 0 VLAN discard frames 0 Valid frames, too large \n" + " 0 Excess defer frames 0 Invalid frames, too small\n" + " 0 64 byte frames 0 Valid frames, too small \n" + " 0 127 byte frames \n" + " 0 255 byte frames 0 Too old frames \n" + " 0 511 byte frames 0 Valid oversize frames \n" + " 0 1023 byte frames 0 System FCS error frames \n" + " 0 1518 byte frames 0 RxPortFifoFull drop frame\n" + " 0 Too large frames \n" + " 0 Good (1 coll) frames \n" + " 0 Good (>1 coll) frames \n\n\n" + " Transmit GigabitEthernet1/0/7 Receive\n" + " 0 Bytes 0 Bytes \n" + " 0 Unicast frames 0 Unicast frames \n" + " 0 Multicast frames 0 Multicast frames \n" + " 0 Broadcast frames 0 Broadcast frames \n" + " 0 Too old frames 0 Unicast bytes \n" + " 0 Deferred frames 0 Multicast bytes \n" + " 0 MTU exceeded frames 0 Broadcast bytes \n" + " 0 1 collision frames 0 Alignment errors \n" + " 0 2 collision frames 0 FCS errors \n" + " 0 3 collision frames 0 Oversize frames \n" + " 0 4 collision frames 0 Undersize frames \n" + " 0 5 collision frames 0 Collision fragments \n" + " 0 6 collision frames \n" + " 0 7 collision frames 0 Minimum size frames \n" + " 0 8 collision frames 0 65 to 127 byte frames \n" + " 0 9 collision frames 0 128 to 255 byte frames \n" + " 0 10 collision frames 0 256 to 511 byte frames \n" + " 0 11 collision frames 0 512 to 1023 byte frames \n" + " 0 12 collision frames 0 1024 to 1518 byte frames \n" + " 0 13 collision frames 0 Overrun frames \n" + " 0 14 collision frames 0 Pause frames \n" + " 0 15 collision frames \n" + " 0 Excessive collisions 0 Symbol error frames \n" + " 0 Late collisions 0 Invalid frames, too large\n" + " 0 VLAN discard frames 0 Valid frames, too large \n" + " 0 Excess defer frames 0 Invalid frames, too small\n" + " 0 64 byte frames 0 Valid frames, too small \n" + " 0 127 byte frames \n" + " 0 255 byte frames 0 Too old frames \n" + " 0 511 byte frames 0 Valid oversize frames \n" + " 0 1023 byte frames 0 System FCS error frames \n" + " 0 1518 byte frames 0 RxPortFifoFull drop frame\n" + " 0 Too large frames \n" + " 0 Good (1 coll) frames \n" + " 0 Good (>1 coll) frames \n\n\n" + " Transmit GigabitEthernet1/0/8 Receive\n" + " 0 Bytes 0 Bytes \n" + " 0 Unicast frames 0 Unicast frames \n" + " 0 Multicast frames 0 Multicast frames \n" + " 0 Broadcast frames 0 Broadcast frames \n" + " 0 Too old frames 0 Unicast bytes \n" + " 0 Deferred frames 0 Multicast bytes \n" + " 0 MTU exceeded frames 0 Broadcast bytes \n" + " 0 1 collision frames 0 Alignment errors \n" + " 0 2 collision frames 0 FCS errors \n" + " 0 3 collision frames 0 Oversize frames \n" + " 0 4 collision frames 0 Undersize frames \n" + " 0 5 collision frames 0 Collision fragments \n" + " 0 6 collision frames \n" + " 0 7 collision frames 0 Minimum size frames \n" + " 0 8 collision frames 0 65 to 127 byte frames \n" + " 0 9 collision frames 0 128 to 255 byte frames \n" + " 0 10 collision frames 0 256 to 511 byte frames \n" + " 0 11 collision frames 0 512 to 1023 byte frames \n" + " 0 12 collision frames 0 1024 to 1518 byte frames \n" + " 0 13 collision frames 0 Overrun frames \n" + " 0 14 collision frames 0 Pause frames \n" + " 0 15 collision frames \n" + " 0 Excessive collisions 0 Symbol error frames \n" + " 0 Late collisions 0 Invalid frames, too large\n" + " 0 VLAN discard frames 0 Valid frames, too large \n" + " 0 Excess defer frames 0 Invalid frames, too small\n" + " 0 64 byte frames 0 Valid frames, too small \n" + " 0 127 byte frames \n" + " 0 255 byte frames 0 Too old frames \n" + " 0 511 byte frames 0 Valid oversize frames \n" + " 0 1023 byte frames 0 System FCS error frames \n" + " 0 1518 byte frames 0 RxPortFifoFull drop frame\n" + " 0 Too large frames \n" + " 0 Good (1 coll) frames \n" + " 0 Good (>1 coll) frames \n\n\n" + " Transmit GigabitEthernet1/0/9 Receive\n" + " 0 Bytes 0 Bytes \n" + " 0 Unicast frames 0 Unicast frames \n" + " 0 Multicast frames 0 Multicast frames \n" + " 0 Broadcast frames 0 Broadcast frames \n" + " 0 Too old frames 0 Unicast bytes \n" + " 0 Deferred frames 0 Multicast bytes \n" + " 0 MTU exceeded frames 0 Broadcast bytes \n" + " 0 1 collision frames 0 Alignment errors \n" + " 0 2 collision frames 0 FCS errors \n" + " 0 3 collision frames 0 Oversize frames \n" + " 0 4 collision frames 0 Undersize frames \n" + " 0 5 collision frames 0 Collision fragments \n" + " 0 6 collision frames \n" + " 0 7 collision frames 0 Minimum size frames \n" + " 0 8 collision frames 0 65 to 127 byte frames \n" + " 0 9 collision frames 0 128 to 255 byte frames \n" + " 0 10 collision frames 0 256 to 511 byte frames \n" + " 0 11 collision frames 0 512 to 1023 byte frames \n" + " 0 12 collision frames 0 1024 to 1518 byte frames \n" + " 0 13 collision frames 0 Overrun frames \n" + " 0 14 collision frames 0 Pause frames \n" + " 0 15 collision frames \n" + " 0 Excessive collisions 0 Symbol error frames \n" + " 0 Late collisions 0 Invalid frames, too large\n" + " 0 VLAN discard frames 0 Valid frames, too large \n" + " 0 Excess defer frames 0 Invalid frames, too small\n" + " 0 64 byte frames 0 Valid frames, too small \n" + " 0 127 byte frames \n" + " 0 255 byte frames 0 Too old frames \n" + " 0 511 byte frames 0 Valid oversize frames \n" + " 0 1023 byte frames 0 System FCS error frames \n" + " 0 1518 byte frames 0 RxPortFifoFull drop frame\n" + " 0 Too large frames \n" + " 0 Good (1 coll) frames \n" + " 0 Good (>1 coll) frames \n\n\n" + " Transmit GigabitEthernet1/0/10 Receive\n" + " 0 Bytes 0 Bytes \n" + " 0 Unicast frames 0 Unicast frames \n" + " 0 Multicast frames 0 Multicast frames \n" + " 0 Broadcast frames 0 Broadcast frames \n" + " 0 Too old frames 0 Unicast bytes \n" + " 0 Deferred frames 0 Multicast bytes \n" + " 0 MTU exceeded frames 0 Broadcast bytes \n" + " 0 1 collision frames 0 Alignment errors \n" + " 0 2 collision frames 0 FCS errors \n" + " 0 3 collision frames 0 Oversize frames \n" + " 0 4 collision frames 0 Undersize frames \n" + " 0 5 collision frames 0 Collision fragments \n" + " 0 6 collision frames \n" + " 0 7 collision frames 0 Minimum size frames \n" + " 0 8 collision frames 0 65 to 127 byte frames \n" + " 0 9 collision frames 0 128 to 255 byte frames \n" + " 0 10 collision frames 0 256 to 511 byte frames \n" + " 0 11 collision frames 0 512 to 1023 byte frames \n" + " 0 12 collision frames 0 1024 to 1518 byte frames \n" + " 0 13 collision frames 0 Overrun frames \n" + " 0 14 collision frames 0 Pause frames \n" + " 0 15 collision frames \n" + " 0 Excessive collisions 0 Symbol error frames \n" + " 0 Late collisions 0 Invalid frames, too large\n" + " 0 VLAN discard frames 0 Valid frames, too large \n" + " 0 Excess defer frames 0 Invalid frames, too small\n" + " 0 64 byte frames 0 Valid frames, too small \n" + " 0 127 byte frames \n" + " 0 255 byte frames 0 Too old frames \n" + " 0 511 byte frames 0 Valid oversize frames \n" + " 0 1023 byte frames 0 System FCS error frames \n" + " 0 1518 byte frames 0 RxPortFifoFull drop frame\n" + " 0 Too large frames \n" + " 0 Good (1 coll) frames \n" + " 0 Good (>1 coll) frames \n\n\n" + " Transmit GigabitEthernet1/0/11 Receive\n" + " 0 Bytes 0 Bytes \n" + " 0 Unicast frames 0 Unicast frames \n" + " 0 Multicast frames 0 Multicast frames \n" + " 0 Broadcast frames 0 Broadcast frames \n" + " 0 Too old frames 0 Unicast bytes \n" + " 0 Deferred frames 0 Multicast bytes \n" + " 0 MTU exceeded frames 0 Broadcast bytes \n" + " 0 1 collision frames 0 Alignment errors \n" + " 0 2 collision frames 0 FCS errors \n" + " 0 3 collision frames 0 Oversize frames \n" + " 0 4 collision frames 0 Undersize frames \n" + " 0 5 collision frames 0 Collision fragments \n" + " 0 6 collision frames \n" + " 0 7 collision frames 0 Minimum size frames \n" + " 0 8 collision frames 0 65 to 127 byte frames \n" + " 0 9 collision frames 0 128 to 255 byte frames \n" + " 0 10 collision frames 0 256 to 511 byte frames \n" + " 0 11 collision frames 0 512 to 1023 byte frames \n" + " 0 12 collision frames 0 1024 to 1518 byte frames \n" + " 0 13 collision frames 0 Overrun frames \n" + " 0 14 collision frames 0 Pause frames \n" + " 0 15 collision frames \n" + " 0 Excessive collisions 0 Symbol error frames \n" + " 0 Late collisions 0 Invalid frames, too large\n" + " 0 VLAN discard frames 0 Valid frames, too large \n" + " 0 Excess defer frames 0 Invalid frames, too small\n" + " 0 64 byte frames 0 Valid frames, too small \n" + " 0 127 byte frames \n" + " 0 255 byte frames 0 Too old frames \n" + " 0 511 byte frames 0 Valid oversize frames \n" + " 0 1023 byte frames 0 System FCS error frames \n" + " 0 1518 byte frames 0 RxPortFifoFull drop frame\n" + " 0 Too large frames \n" + " 0 Good (1 coll) frames \n" + " 0 Good (>1 coll) frames \n\n\n" + " Transmit GigabitEthernet1/0/12 Receive\n" + " 0 Bytes 0 Bytes \n" + " 0 Unicast frames 0 Unicast frames \n" + " 0 Multicast frames 0 Multicast frames \n" + " 0 Broadcast frames 0 Broadcast frames \n" + " 0 Too old frames 0 Unicast bytes \n" + " 0 Deferred frames 0 Multicast bytes \n" + " 0 MTU exceeded frames 0 Broadcast bytes \n" + " 0 1 collision frames 0 Alignment errors \n" + " 0 2 collision frames 0 FCS errors \n" + " 0 3 collision frames 0 Oversize frames \n" + " 0 4 collision frames 0 Undersize frames \n" + " 0 5 collision frames 0 Collision fragments \n" + " 0 6 collision frames \n" + " 0 7 collision frames 0 Minimum size frames \n" + " 0 8 collision frames 0 65 to 127 byte frames \n" + " 0 9 collision frames 0 128 to 255 byte frames \n" + " 0 10 collision frames 0 256 to 511 byte frames \n" + " 0 11 collision frames 0 512 to 1023 byte frames \n" + " 0 12 collision frames 0 1024 to 1518 byte frames \n" + " 0 13 collision frames 0 Overrun frames \n" + " 0 14 collision frames 0 Pause frames \n" + " 0 15 collision frames \n" + " 0 Excessive collisions 0 Symbol error frames \n" + " 0 Late collisions 0 Invalid frames, too large\n" + " 0 VLAN discard frames 0 Valid frames, too large \n" + " 0 Excess defer frames 0 Invalid frames, too small\n" + " 0 64 byte frames 0 Valid frames, too small \n" + " 0 127 byte frames \n" + " 0 255 byte frames 0 Too old frames \n" + " 0 511 byte frames 0 Valid oversize frames \n" + " 0 1023 byte frames 0 System FCS error frames \n" + " 0 1518 byte frames 0 RxPortFifoFull drop frame\n" + " 0 Too large frames \n" + " 0 Good (1 coll) frames \n" + " 0 Good (>1 coll) frames \n\n\n" + " Transmit GigabitEthernet1/0/13 Receive\n" + " 0 Bytes 0 Bytes \n" + " 0 Unicast frames 0 Unicast frames \n" + " 0 Multicast frames 0 Multicast frames \n" + " 0 Broadcast frames 0 Broadcast frames \n" + " 0 Too old frames 0 Unicast bytes \n" + " 0 Deferred frames 0 Multicast bytes \n" + " 0 MTU exceeded frames 0 Broadcast bytes \n" + " 0 1 collision frames 0 Alignment errors \n" + " 0 2 collision frames 0 FCS errors \n" + " 0 3 collision frames 0 Oversize frames \n" + " 0 4 collision frames 0 Undersize frames \n" + " 0 5 collision frames 0 Collision fragments \n" + " 0 6 collision frames \n" + " 0 7 collision frames 0 Minimum size frames \n" + " 0 8 collision frames 0 65 to 127 byte frames \n" + " 0 9 collision frames 0 128 to 255 byte frames \n" + " 0 10 collision frames 0 256 to 511 byte frames \n" + " 0 11 collision frames 0 512 to 1023 byte frames \n" + " 0 12 collision frames 0 1024 to 1518 byte frames \n" + " 0 13 collision frames 0 Overrun frames \n" + " 0 14 collision frames 0 Pause frames \n" + " 0 15 collision frames \n" + " 0 Excessive collisions 0 Symbol error frames \n" + " 0 Late collisions 0 Invalid frames, too large\n" + " 0 VLAN discard frames 0 Valid frames, too large \n" + " 0 Excess defer frames 0 Invalid frames, too small\n" + " 0 64 byte frames 0 Valid frames, too small \n" + " 0 127 byte frames \n" + " 0 255 byte frames 0 Too old frames \n" + " 0 511 byte frames 0 Valid oversize frames \n" + " 0 1023 byte frames 0 System FCS error frames \n" + " 0 1518 byte frames 0 RxPortFifoFull drop frame\n" + " 0 Too large frames \n" + " 0 Good (1 coll) frames \n" + " 0 Good (>1 coll) frames \n\n\n" + " Transmit GigabitEthernet1/0/14 Receive\n" + " 0 Bytes 0 Bytes \n" + " 0 Unicast frames 0 Unicast frames \n" + " 0 Multicast frames 0 Multicast frames \n" + " 0 Broadcast frames 0 Broadcast frames \n" + " 0 Too old frames 0 Unicast bytes \n" + " 0 Deferred frames 0 Multicast bytes \n" + " 0 MTU exceeded frames 0 Broadcast bytes \n" + " 0 1 collision frames 0 Alignment errors \n" + " 0 2 collision frames 0 FCS errors \n" + " 0 3 collision frames 0 Oversize frames \n" + " 0 4 collision frames 0 Undersize frames \n" + " 0 5 collision frames 0 Collision fragments \n" + " 0 6 collision frames \n" + " 0 7 collision frames 0 Minimum size frames \n" + " 0 8 collision frames 0 65 to 127 byte frames \n" + " 0 9 collision frames 0 128 to 255 byte frames \n" + " 0 10 collision frames 0 256 to 511 byte frames \n" + " 0 11 collision frames 0 512 to 1023 byte frames \n" + " 0 12 collision frames 0 1024 to 1518 byte frames \n" + " 0 13 collision frames 0 Overrun frames \n" + " 0 14 collision frames 0 Pause frames \n" + " 0 15 collision frames \n" + " 0 Excessive collisions 0 Symbol error frames \n" + " 0 Late collisions 0 Invalid frames, too large\n" + " 0 VLAN discard frames 0 Valid frames, too large \n" + " 0 Excess defer frames 0 Invalid frames, too small\n" + " 0 64 byte frames 0 Valid frames, too small \n" + " 0 127 byte frames \n" + " 0 255 byte frames 0 Too old frames \n" + " 0 511 byte frames 0 Valid oversize frames \n" + " 0 1023 byte frames 0 System FCS error frames \n" + " 0 1518 byte frames 0 RxPortFifoFull drop frame\n" + " 0 Too large frames \n" + " 0 Good (1 coll) frames \n" + " 0 Good (>1 coll) frames \n\n\n" + " Transmit GigabitEthernet1/0/15 Receive\n" + " 0 Bytes 0 Bytes \n" + " 0 Unicast frames 0 Unicast frames \n" + " 0 Multicast frames 0 Multicast frames \n" + " 0 Broadcast frames 0 Broadcast frames \n" + " 0 Too old frames 0 Unicast bytes \n" + " 0 Deferred frames 0 Multicast bytes \n" + " 0 MTU exceeded frames 0 Broadcast bytes \n" + " 0 1 collision frames 0 Alignment errors \n" + " 0 2 collision frames 0 FCS errors \n" + " 0 3 collision frames 0 Oversize frames \n" + " 0 4 collision frames 0 Undersize frames \n" + " 0 5 collision frames 0 Collision fragments \n" + " 0 6 collision frames \n" + " 0 7 collision frames 0 Minimum size frames \n" + " 0 8 collision frames 0 65 to 127 byte frames \n" + " 0 9 collision frames 0 128 to 255 byte frames \n" + " 0 10 collision frames 0 256 to 511 byte frames \n" + " 0 11 collision frames 0 512 to 1023 byte frames \n" + " 0 12 collision frames 0 1024 to 1518 byte frames \n" + " 0 13 collision frames 0 Overrun frames \n" + " 0 14 collision frames 0 Pause frames \n" + " 0 15 collision frames \n" + " 0 Excessive collisions 0 Symbol error frames \n" + " 0 Late collisions 0 Invalid frames, too large\n" + " 0 VLAN discard frames 0 Valid frames, too large \n" + " 0 Excess defer frames 0 Invalid frames, too small\n" + " 0 64 byte frames 0 Valid frames, too small \n" + " 0 127 byte frames \n" + " 0 255 byte frames 0 Too old frames \n" + " 0 511 byte frames 0 Valid oversize frames \n" + " 0 1023 byte frames 0 System FCS error frames \n" + " 0 1518 byte frames 0 RxPortFifoFull drop frame\n" + " 0 Too large frames \n" + " 0 Good (1 coll) frames \n" + " 0 Good (>1 coll) frames \n\n\n" + " Transmit GigabitEthernet1/0/16 Receive\n" + " 0 Bytes 0 Bytes \n" + " 0 Unicast frames 0 Unicast frames \n" + " 0 Multicast frames 0 Multicast frames \n" + " 0 Broadcast frames 0 Broadcast frames \n" + " 0 Too old frames 0 Unicast bytes \n" + " 0 Deferred frames 0 Multicast bytes \n" + " 0 MTU exceeded frames 0 Broadcast bytes \n" + " 0 1 collision frames 0 Alignment errors \n" + " 0 2 collision frames 0 FCS errors \n" + " 0 3 collision frames 0 Oversize frames \n" + " 0 4 collision frames 0 Undersize frames \n" + " 0 5 collision frames 0 Collision fragments \n" + " 0 6 collision frames \n" + " 0 7 collision frames 0 Minimum size frames \n" + " 0 8 collision frames 0 65 to 127 byte frames \n" + " 0 9 collision frames 0 128 to 255 byte frames \n" + " 0 10 collision frames 0 256 to 511 byte frames \n" + " 0 11 collision frames 0 512 to 1023 byte frames \n" + " 0 12 collision frames 0 1024 to 1518 byte frames \n" + " 0 13 collision frames 0 Overrun frames \n" + " 0 14 collision frames 0 Pause frames \n" + " 0 15 collision frames \n" + " 0 Excessive collisions 0 Symbol error frames \n" + " 0 Late collisions 0 Invalid frames, too large\n" + " 0 VLAN discard frames 0 Valid frames, too large \n" + " 0 Excess defer frames 0 Invalid frames, too small\n" + " 0 64 byte frames 0 Valid frames, too small \n" + " 0 127 byte frames \n" + " 0 255 byte frames 0 Too old frames \n" + " 0 511 byte frames 0 Valid oversize frames \n" + " 0 1023 byte frames 0 System FCS error frames \n" + " 0 1518 byte frames 0 RxPortFifoFull drop frame\n" + " 0 Too large frames \n" + " 0 Good (1 coll) frames \n" + " 0 Good (>1 coll) frames \n\n\n" + " Transmit GigabitEthernet1/0/17 Receive\n" + " 0 Bytes 0 Bytes \n" + " 0 Unicast frames 0 Unicast frames \n" + " 0 Multicast frames 0 Multicast frames \n" + " 0 Broadcast frames 0 Broadcast frames \n" + " 0 Too old frames 0 Unicast bytes \n" + " 0 Deferred frames 0 Multicast bytes \n" + " 0 MTU exceeded frames 0 Broadcast bytes \n" + " 0 1 collision frames 0 Alignment errors \n" + " 0 2 collision frames 0 FCS errors \n" + " 0 3 collision frames 0 Oversize frames \n" + " 0 4 collision frames 0 Undersize frames \n" + " 0 5 collision frames 0 Collision fragments \n" + " 0 6 collision frames \n" + " 0 7 collision frames 0 Minimum size frames \n" + " 0 8 collision frames 0 65 to 127 byte frames \n" + " 0 9 collision frames 0 128 to 255 byte frames \n" + " 0 10 collision frames 0 256 to 511 byte frames \n" + " 0 11 collision frames 0 512 to 1023 byte frames \n" + " 0 12 collision frames 0 1024 to 1518 byte frames \n" + " 0 13 collision frames 0 Overrun frames \n" + " 0 14 collision frames 0 Pause frames \n" + " 0 15 collision frames \n" + " 0 Excessive collisions 0 Symbol error frames \n" + " 0 Late collisions 0 Invalid frames, too large\n" + " 0 VLAN discard frames 0 Valid frames, too large \n" + " 0 Excess defer frames 0 Invalid frames, too small\n" + " 0 64 byte frames 0 Valid frames, too small \n" + " 0 127 byte frames \n" + " 0 255 byte frames 0 Too old frames \n" + " 0 511 byte frames 0 Valid oversize frames \n" + " 0 1023 byte frames 0 System FCS error frames \n" + " 0 1518 byte frames 0 RxPortFifoFull drop frame\n" + " 0 Too large frames \n" + " 0 Good (1 coll) frames \n" + " 0 Good (>1 coll) frames \n\n\n" + " Transmit GigabitEthernet1/0/18 Receive\n" + " 0 Bytes 0 Bytes \n" + " 0 Unicast frames 0 Unicast frames \n" + " 0 Multicast frames 0 Multicast frames \n" + " 0 Broadcast frames 0 Broadcast frames \n" + " 0 Too old frames 0 Unicast bytes \n" + " 0 Deferred frames 0 Multicast bytes \n" + " 0 MTU exceeded frames 0 Broadcast bytes \n" + " 0 1 collision frames 0 Alignment errors \n" + " 0 2 collision frames 0 FCS errors \n" + " 0 3 collision frames 0 Oversize frames \n" + " 0 4 collision frames 0 Undersize frames \n" + " 0 5 collision frames 0 Collision fragments \n" + " 0 6 collision frames \n" + " 0 7 collision frames 0 Minimum size frames \n" + " 0 8 collision frames 0 65 to 127 byte frames \n" + " 0 9 collision frames 0 128 to 255 byte frames \n" + " 0 10 collision frames 0 256 to 511 byte frames \n" + " 0 11 collision frames 0 512 to 1023 byte frames \n" + " 0 12 collision frames 0 1024 to 1518 byte frames \n" + " 0 13 collision frames 0 Overrun frames \n" + " 0 14 collision frames 0 Pause frames \n" + " 0 15 collision frames \n" + " 0 Excessive collisions 0 Symbol error frames \n" + " 0 Late collisions 0 Invalid frames, too large\n" + " 0 VLAN discard frames 0 Valid frames, too large \n" + " 0 Excess defer frames 0 Invalid frames, too small\n" + " 0 64 byte frames 0 Valid frames, too small \n" + " 0 127 byte frames \n" + " 0 255 byte frames 0 Too old frames \n" + " 0 511 byte frames 0 Valid oversize frames \n" + " 0 1023 byte frames 0 System FCS error frames \n" + " 0 1518 byte frames 0 RxPortFifoFull drop frame\n" + " 0 Too large frames \n" + " 0 Good (1 coll) frames \n" + " 0 Good (>1 coll) frames \n\n\n" + " Transmit GigabitEthernet1/0/19 Receive\n" + " 0 Bytes 0 Bytes \n" + " 0 Unicast frames 0 Unicast frames \n" + " 0 Multicast frames 0 Multicast frames \n" + " 0 Broadcast frames 0 Broadcast frames \n" + " 0 Too old frames 0 Unicast bytes \n" + " 0 Deferred frames 0 Multicast bytes \n" + " 0 MTU exceeded frames 0 Broadcast bytes \n" + " 0 1 collision frames 0 Alignment errors \n" + " 0 2 collision frames 0 FCS errors \n" + " 0 3 collision frames 0 Oversize frames \n" + " 0 4 collision frames 0 Undersize frames \n" + " 0 5 collision frames 0 Collision fragments \n" + " 0 6 collision frames \n" + " 0 7 collision frames 0 Minimum size frames \n" + " 0 8 collision frames 0 65 to 127 byte frames \n" + " 0 9 collision frames 0 128 to 255 byte frames \n" + " 0 10 collision frames 0 256 to 511 byte frames \n" + " 0 11 collision frames 0 512 to 1023 byte frames \n" + " 0 12 collision frames 0 1024 to 1518 byte frames \n" + " 0 13 collision frames 0 Overrun frames \n" + " 0 14 collision frames 0 Pause frames \n" + " 0 15 collision frames \n" + " 0 Excessive collisions 0 Symbol error frames \n" + " 0 Late collisions 0 Invalid frames, too large\n" + " 0 VLAN discard frames 0 Valid frames, too large \n" + " 0 Excess defer frames 0 Invalid frames, too small\n" + " 0 64 byte frames 0 Valid frames, too small \n" + " 0 127 byte frames \n" + " 0 255 byte frames 0 Too old frames \n" + " 0 511 byte frames 0 Valid oversize frames \n" + " 0 1023 byte frames 0 System FCS error frames \n" + " 0 1518 byte frames 0 RxPortFifoFull drop frame\n" + " 0 Too large frames \n" + " 0 Good (1 coll) frames \n" + " 0 Good (>1 coll) frames \n\n\n" + " Transmit GigabitEthernet1/0/20 Receive\n" + " 0 Bytes 0 Bytes \n" + " 0 Unicast frames 0 Unicast frames \n" + " 0 Multicast frames 0 Multicast frames \n" + " 0 Broadcast frames 0 Broadcast frames \n" + " 0 Too old frames 0 Unicast bytes \n" + " 0 Deferred frames 0 Multicast bytes \n" + " 0 MTU exceeded frames 0 Broadcast bytes \n" + " 0 1 collision frames 0 Alignment errors \n" + " 0 2 collision frames 0 FCS errors \n" + " 0 3 collision frames 0 Oversize frames \n" + " 0 4 collision frames 0 Undersize frames \n" + " 0 5 collision frames 0 Collision fragments \n" + " 0 6 collision frames \n" + " 0 7 collision frames 0 Minimum size frames \n" + " 0 8 collision frames 0 65 to 127 byte frames \n" + " 0 9 collision frames 0 128 to 255 byte frames \n" + " 0 10 collision frames 0 256 to 511 byte frames \n" + " 0 11 collision frames 0 512 to 1023 byte frames \n" + " 0 12 collision frames 0 1024 to 1518 byte frames \n" + " 0 13 collision frames 0 Overrun frames \n" + " 0 14 collision frames 0 Pause frames \n" + " 0 15 collision frames \n" + " 0 Excessive collisions 0 Symbol error frames \n" + " 0 Late collisions 0 Invalid frames, too large\n" + " 0 VLAN discard frames 0 Valid frames, too large \n" + " 0 Excess defer frames 0 Invalid frames, too small\n" + " 0 64 byte frames 0 Valid frames, too small \n" + " 0 127 byte frames \n" + " 0 255 byte frames 0 Too old frames \n" + " 0 511 byte frames 0 Valid oversize frames \n" + " 0 1023 byte frames 0 System FCS error frames \n" + " 0 1518 byte frames 0 RxPortFifoFull drop frame\n" + " 0 Too large frames \n" + " 0 Good (1 coll) frames \n" + " 0 Good (>1 coll) frames \n\n\n" + " Transmit GigabitEthernet1/0/21 Receive\n" + " 0 Bytes 0 Bytes \n" + " 0 Unicast frames 0 Unicast frames \n" + " 0 Multicast frames 0 Multicast frames \n" + " 0 Broadcast frames 0 Broadcast frames \n" + " 0 Too old frames 0 Unicast bytes \n" + " 0 Deferred frames 0 Multicast bytes \n" + " 0 MTU exceeded frames 0 Broadcast bytes \n" + " 0 1 collision frames 0 Alignment errors \n" + " 0 2 collision frames 0 FCS errors \n" + " 0 3 collision frames 0 Oversize frames \n" + " 0 4 collision frames 0 Undersize frames \n" + " 0 5 collision frames 0 Collision fragments \n" + " 0 6 collision frames \n" + " 0 7 collision frames 0 Minimum size frames \n" + " 0 8 collision frames 0 65 to 127 byte frames \n" + " 0 9 collision frames 0 128 to 255 byte frames \n" + " 0 10 collision frames 0 256 to 511 byte frames \n" + " 0 11 collision frames 0 512 to 1023 byte frames \n" + " 0 12 collision frames 0 1024 to 1518 byte frames \n" + " 0 13 collision frames 0 Overrun frames \n" + " 0 14 collision frames 0 Pause frames \n" + " 0 15 collision frames \n" + " 0 Excessive collisions 0 Symbol error frames \n" + " 0 Late collisions 0 Invalid frames, too large\n" + " 0 VLAN discard frames 0 Valid frames, too large \n" + " 0 Excess defer frames 0 Invalid frames, too small\n" + " 0 64 byte frames 0 Valid frames, too small \n" + " 0 127 byte frames \n" + " 0 255 byte frames 0 Too old frames \n" + " 0 511 byte frames 0 Valid oversize frames \n" + " 0 1023 byte frames 0 System FCS error frames \n" + " 0 1518 byte frames 0 RxPortFifoFull drop frame\n" + " 0 Too large frames \n" + " 0 Good (1 coll) frames \n" + " 0 Good (>1 coll) frames \n\n\n" + " Transmit GigabitEthernet1/0/22 Receive\n" + " 0 Bytes 0 Bytes \n" + " 0 Unicast frames 0 Unicast frames \n" + " 0 Multicast frames 0 Multicast frames \n" + " 0 Broadcast frames 0 Broadcast frames \n" + " 0 Too old frames 0 Unicast bytes \n" + " 0 Deferred frames 0 Multicast bytes \n" + " 0 MTU exceeded frames 0 Broadcast bytes \n" + " 0 1 collision frames 0 Alignment errors \n" + " 0 2 collision frames 0 FCS errors \n" + " 0 3 collision frames 0 Oversize frames \n" + " 0 4 collision frames 0 Undersize frames \n" + " 0 5 collision frames 0 Collision fragments \n" + " 0 6 collision frames \n" + " 0 7 collision frames 0 Minimum size frames \n" + " 0 8 collision frames 0 65 to 127 byte frames \n" + " 0 9 collision frames 0 128 to 255 byte frames \n" + " 0 10 collision frames 0 256 to 511 byte frames \n" + " 0 11 collision frames 0 512 to 1023 byte frames \n" + " 0 12 collision frames 0 1024 to 1518 byte frames \n" + " 0 13 collision frames 0 Overrun frames \n" + " 0 14 collision frames 0 Pause frames \n" + " 0 15 collision frames \n" + " 0 Excessive collisions 0 Symbol error frames \n" + " 0 Late collisions 0 Invalid frames, too large\n" + " 0 VLAN discard frames 0 Valid frames, too large \n" + " 0 Excess defer frames 0 Invalid frames, too small\n" + " 0 64 byte frames 0 Valid frames, too small \n" + " 0 127 byte frames \n" + " 0 255 byte frames 0 Too old frames \n" + " 0 511 byte frames 0 Valid oversize frames \n" + " 0 1023 byte frames 0 System FCS error frames \n" + " 0 1518 byte frames 0 RxPortFifoFull drop frame\n" + " 0 Too large frames \n" + " 0 Good (1 coll) frames \n" + " 0 Good (>1 coll) frames \n\n\n" + " Transmit GigabitEthernet1/0/23 Receive\n" + " 0 Bytes 0 Bytes \n" + " 0 Unicast frames 0 Unicast frames \n" + " 0 Multicast frames 0 Multicast frames \n" + " 0 Broadcast frames 0 Broadcast frames \n" + " 0 Too old frames 0 Unicast bytes \n" + " 0 Deferred frames 0 Multicast bytes \n" + " 0 MTU exceeded frames 0 Broadcast bytes \n" + " 0 1 collision frames 0 Alignment errors \n" + " 0 2 collision frames 0 FCS errors \n" + " 0 3 collision frames 0 Oversize frames \n" + " 0 4 collision frames 0 Undersize frames \n" + " 0 5 collision frames 0 Collision fragments \n" + " 0 6 collision frames \n" + " 0 7 collision frames 0 Minimum size frames \n" + " 0 8 collision frames 0 65 to 127 byte frames \n" + " 0 9 collision frames 0 128 to 255 byte frames \n" + " 0 10 collision frames 0 256 to 511 byte frames \n" + " 0 11 collision frames 0 512 to 1023 byte frames \n" + " 0 12 collision frames 0 1024 to 1518 byte frames \n" + " 0 13 collision frames 0 Overrun frames \n" + " 0 14 collision frames 0 Pause frames \n" + " 0 15 collision frames \n" + " 0 Excessive collisions 0 Symbol error frames \n" + " 0 Late collisions 0 Invalid frames, too large\n" + " 0 VLAN discard frames 0 Valid frames, too large \n" + " 0 Excess defer frames 0 Invalid frames, too small\n" + " 0 64 byte frames 0 Valid frames, too small \n" + " 0 127 byte frames \n" + " 0 255 byte frames 0 Too old frames \n" + " 0 511 byte frames 0 Valid oversize frames \n" + " 0 1023 byte frames 0 System FCS error frames \n" + " 0 1518 byte frames 0 RxPortFifoFull drop frame\n" + " 0 Too large frames \n" + " 0 Good (1 coll) frames \n" + " 0 Good (>1 coll) frames \n\n\n" + " Transmit GigabitEthernet1/0/24 Receive\n" + " 0 Bytes 0 Bytes \n" + " 0 Unicast frames 0 Unicast frames \n" + " 0 Multicast frames 0 Multicast frames \n" + " 0 Broadcast frames 0 Broadcast frames \n" + " 0 Too old frames 0 Unicast bytes \n" + " 0 Deferred frames 0 Multicast bytes \n" + " 0 MTU exceeded frames 0 Broadcast bytes \n" + " 0 1 collision frames 0 Alignment errors \n" + " 0 2 collision frames 0 FCS errors \n" + " 0 3 collision frames 0 Oversize frames \n" + " 0 4 collision frames 0 Undersize frames \n" + " 0 5 collision frames 0 Collision fragments \n" + " 0 6 collision frames \n" + " 0 7 collision frames 0 Minimum size frames \n" + " 0 8 collision frames 0 65 to 127 byte frames \n" + " 0 9 collision frames 0 128 to 255 byte frames \n" + " 0 10 collision frames 0 256 to 511 byte frames \n" + " 0 11 collision frames 0 512 to 1023 byte frames \n" + " 0 12 collision frames 0 1024 to 1518 byte frames \n" + " 0 13 collision frames 0 Overrun frames \n" + " 0 14 collision frames 0 Pause frames \n" + " 0 15 collision frames \n" + " 0 Excessive collisions 0 Symbol error frames \n" + " 0 Late collisions 0 Invalid frames, too large\n" + " 0 VLAN discard frames 0 Valid frames, too large \n" + " 0 Excess defer frames 0 Invalid frames, too small\n" + " 0 64 byte frames 0 Valid frames, too small \n" + " 0 127 byte frames \n" + " 0 255 byte frames 0 Too old frames \n" + " 0 511 byte frames 0 Valid oversize frames \n" + " 0 1023 byte frames 0 System FCS error frames \n" + " 0 1518 byte frames 0 RxPortFifoFull drop frame\n" + " 0 Too large frames \n" + " 0 Good (1 coll) frames \n" + " 0 Good (>1 coll) frames \n\n\n" + " Transmit GigabitEthernet1/0/25 Receive\n" + " 4027591838 Bytes 1758003882 Bytes \n" + " 37274691 Unicast frames 1167209488 Unicast frames \n" + " 8758447 Multicast frames 242018484 Multicast frames \n" + " 7822 Broadcast frames 613244805 Broadcast frames \n" + " 0 Too old frames 915336757 Unicast bytes \n" + " 0 Deferred frames 816252016 Multicast bytes \n" + " 0 MTU exceeded frames 561494101 Broadcast bytes \n" + " 0 1 collision frames 0 Alignment errors \n" + " 0 2 collision frames 0 FCS errors \n" + " 0 3 collision frames 0 Oversize frames \n" + " 0 4 collision frames 0 Undersize frames \n" + " 0 5 collision frames 0 Collision fragments \n" + " 0 6 collision frames \n" + " 0 7 collision frames 2459767 Minimum size frames \n" + " 0 8 collision frames 911026787 65 to 127 byte frames \n" + " 0 9 collision frames 982226199 128 to 255 byte frames \n" + " 0 10 collision frames 40560577 256 to 511 byte frames \n" + " 0 11 collision frames 53026089 512 to 1023 byte frames \n" + " 0 12 collision frames 2304544 1024 to 1518 byte frames \n" + " 0 13 collision frames 0 Overrun frames \n" + " 0 14 collision frames 0 Pause frames \n" + " 0 15 collision frames \n" + " 0 Excessive collisions 0 Symbol error frames \n" + " 0 Late collisions 0 Invalid frames, too large\n" + " 0 VLAN discard frames 30868814 Valid frames, too large \n" + " 0 Excess defer frames 0 Invalid frames, too small\n" + " 2459518 64 byte frames 0 Valid frames, too small \n" + " 23328848 127 byte frames \n" + " 11541086 255 byte frames 0 Too old frames \n" + " 5450734 511 byte frames 0 Valid oversize frames \n" + " 3101771 1023 byte frames 0 System FCS error frames \n" + " 157300 1518 byte frames 0 RxPortFifoFull drop frame\n" + " 1703 Too large frames \n" + " 0 Good (1 coll) frames \n" + " 0 Good (>1 coll) frames \n\n\n" + " Transmit GigabitEthernet1/0/26 Receive\n" + " 1619708339 Bytes 309051199 Bytes \n" + " 43411 Unicast frames 1127162674 Unicast frames \n" + " 8758459 Multicast frames 242057227 Multicast frames \n" + " 150 Broadcast frames 613252503 Broadcast frames \n" + " 0 Too old frames 3925274396 Unicast bytes \n" + " 0 Deferred frames 811862153 Multicast bytes \n" + " 0 MTU exceeded frames 561961390 Broadcast bytes \n" + " 0 1 collision frames 0 Alignment errors \n" + " 0 2 collision frames 0 FCS errors \n" + " 0 3 collision frames 0 Oversize frames \n" + " 0 4 collision frames 0 Undersize frames \n" + " 0 5 collision frames 0 Collision fragments \n" + " 0 6 collision frames \n" + " 0 7 collision frames 2459452 Minimum size frames \n" + " 0 8 collision frames 882722351 65 to 127 byte frames \n" + " 0 9 collision frames 973935967 128 to 255 byte frames \n" + " 0 10 collision frames 37861531 256 to 511 byte frames \n" + " 0 11 collision frames 52359483 512 to 1023 byte frames \n" + " 0 12 collision frames 2265901 1024 to 1518 byte frames \n" + " 0 13 collision frames 0 Overrun frames \n" + " 0 14 collision frames 0 Pause frames \n" + " 0 15 collision frames \n" + " 0 Excessive collisions 0 Symbol error frames \n" + " 0 Late collisions 0 Invalid frames, too large\n" + " 0 VLAN discard frames 30867719 Valid frames, too large \n" + " 0 Excess defer frames 0 Invalid frames, too small\n" + " 2459518 64 byte frames 0 Valid frames, too small \n" + " 3014 127 byte frames \n" + " 4932717 255 byte frames 0 Too old frames \n" + " 1947 511 byte frames 0 Valid oversize frames \n" + " 1378490 1023 byte frames 0 System FCS error frames \n" + " 25261 1518 byte frames 0 RxPortFifoFull drop frame\n" + " 1073 Too large frames \n" + " 0 Good (1 coll) frames \n" + " 0 Good (>1 coll) frames \n\n\n" + " Transmit GigabitEthernet1/0/27 Receive\n" + " 0 Bytes 0 Bytes \n" + " 0 Unicast frames 0 Unicast frames \n" + " 0 Multicast frames 0 Multicast frames \n" + " 0 Broadcast frames 0 Broadcast frames \n" + " 0 Too old frames 0 Unicast bytes \n" + " 0 Deferred frames 0 Multicast bytes \n" + " 0 MTU exceeded frames 0 Broadcast bytes \n" + " 0 1 collision frames 0 Alignment errors \n" + " 0 2 collision frames 0 FCS errors \n" + " 0 3 collision frames 0 Oversize frames \n" + " 0 4 collision frames 0 Undersize frames \n" + " 0 5 collision frames 0 Collision fragments \n" + " 0 6 collision frames \n" + " 0 7 collision frames 0 Minimum size frames \n" + " 0 8 collision frames 0 65 to 127 byte frames \n" + " 0 9 collision frames 0 128 to 255 byte frames \n" + " 0 10 collision frames 0 256 to 511 byte frames \n" + " 0 11 collision frames 0 512 to 1023 byte frames \n" + " 0 12 collision frames 0 1024 to 1518 byte frames \n" + " 0 13 collision frames 0 Overrun frames \n" + " 0 14 collision frames 0 Pause frames \n" + " 0 15 collision frames \n" + " 0 Excessive collisions 0 Symbol error frames \n" + " 0 Late collisions 0 Invalid frames, too large\n" + " 0 VLAN discard frames 0 Valid frames, too large \n" + " 0 Excess defer frames 0 Invalid frames, too small\n" + " 0 64 byte frames 0 Valid frames, too small \n" + " 0 127 byte frames \n" + " 0 255 byte frames 0 Too old frames \n" + " 0 511 byte frames 0 Valid oversize frames \n" + " 0 1023 byte frames 0 System FCS error frames \n" + " 0 1518 byte frames 0 RxPortFifoFull drop frame\n" + " 0 Too large frames \n" + " 0 Good (1 coll) frames \n" + " 0 Good (>1 coll) frames \n\n\n" + " Transmit GigabitEthernet1/0/28 Receive\n" + " 0 Bytes 0 Bytes \n" + " 0 Unicast frames 0 Unicast frames \n" + " 0 Multicast frames 0 Multicast frames \n" + " 0 Broadcast frames 0 Broadcast frames \n" + " 0 Too old frames 0 Unicast bytes \n" + " 0 Deferred frames 0 Multicast bytes \n" + " 0 MTU exceeded frames 0 Broadcast bytes \n" + " 0 1 collision frames 0 Alignment errors \n" + " 0 2 collision frames 0 FCS errors \n" + " 0 3 collision frames 0 Oversize frames \n" + " 0 4 collision frames 0 Undersize frames \n" + " 0 5 collision frames 0 Collision fragments \n" + " 0 6 collision frames \n" + " 0 7 collision frames 0 Minimum size frames \n" + " 0 8 collision frames 0 65 to 127 byte frames \n" + " 0 9 collision frames 0 128 to 255 byte frames \n" + " 0 10 collision frames 0 256 to 511 byte frames \n" + " 0 11 collision frames 0 512 to 1023 byte frames \n" + " 0 12 collision frames 0 1024 to 1518 byte frames \n" + " 0 13 collision frames 0 Overrun frames \n" + " 0 14 collision frames 0 Pause frames \n" + " 0 15 collision frames \n" + " 0 Excessive collisions 0 Symbol error frames \n" + " 0 Late collisions 0 Invalid frames, too large\n" + " 0 VLAN discard frames 0 Valid frames, too large \n" + " 0 Excess defer frames 0 Invalid frames, too small\n" + " 0 64 byte frames 0 Valid frames, too small \n" + " 0 127 byte frames \n" + " 0 255 byte frames 0 Too old frames \n" + " 0 511 byte frames 0 Valid oversize frames \n" + " 0 1023 byte frames 0 System FCS error frames \n" + " 0 1518 byte frames 0 RxPortFifoFull drop frame\n" + " 0 Too large frames \n" + " 0 Good (1 coll) frames \n" + " 0 Good (>1 coll) frames \n" + "ASIC Rxbiterr Rxunder Fwdctfix Txbuflos Rxbufloc Rxbufdrain\n" + "-------------------------------------------------------------------------\n" + "ASIC0 0 0 0 0 0 0 \n" + "ASIC1 0 0 0 0 0 0 \n\n" + "HOL Fix Counts\n" + "--------------\n" + "No Fixes: 0 Added: 0 In Use: 0 Both: 0\n\n" + "CPU Heartbeat Statistics\n\n" + "Tx Success Tx Fail 1st Thr 2nd Thr Unthr RetryCtMax\n" + "---------- ---------- ---------- ---------- ---------- ----------\n" + "1476409427 0 0 0 0 1\n\n" + "Rx Delay\n" + " 0 1 2 3 4 \n" + "---------- ---------- ---------- ---------- ---------- \n" + "1476409427 0 0 0 0 \n\n" + "AddlDelay AdvanceCnt\n" + "---------- ----------\n" + " 0 0\n\n" + "Rx Retries by RetryCount\n" + " 0 1 2 3 4 5 6 \n" + "---------- ---------- ---------- ---------- ---------- ---------- ---------- \n" + "1476409427 0 0 0 0 0 0 \n\n" + " 7 8 9 \n" + "---------- ---------- ---------- \n" + " 0 0 0 \n\n" + "AddlRetry\n" + "----------\n" + " 0\n\n" + "cpu-queue-frames retrieved dropped invalid hol-block stray\n" + "----------------- ---------- ---------- ---------- ---------- ----------\n" + "rpc 0 0 0 0 0 \n" + "stp 182074084 0 0 0 0 \n" + "ipc 0 0 0 0 0 \n" + "routing protocol 1242428572 0 0 0 0 \n" + "L2 protocol 17517494 0 0 0 0 \n" + "remote console 0 0 0 0 0 \n" + "sw forwarding 0 0 0 0 0 \n" + "host 12050523 0 0 0 0 \n" + "broadcast 613248167 0 0 0 0 \n" + "cbt-to-spt 0 0 0 0 0 \n" + "igmp snooping 126894085 0 0 0 0 \n" + "icmp 0 0 0 0 0 \n" + "logging 0 0 0 0 0 \n" + "rpf-fail 0 0 0 0 0 \n" + "dstats 0 0 0 0 0 \n" + "cpu heartbeat 1476409427 0 0 0 0 \n" + "-------Supervisor ASIC exception status-------\n" + "Receive overrun 00000000 Transmit overrun 00000000\n" + "FrameSignatureErr 00000000 \n" + "BadFrameErr 00000000 LenExceededErr 00000000\n" + "BadJumboSegments 00000000\n" + "-------PCIe Supervisor Rx Registers-------\n" + "DescriptorTableOffset 06780000\n\n" + "q_num start end count current pop q_size stats disable\n" + "0 0x9800 0x992B 0x0000 0x9800 0x0000 0x012C 0x0000 0\n" + "1 0x992C 0x99AB 0x0000 0x9990 0x0001 0x0080 0x0000 0\n" + "2 0x99AC 0x99EB 0x0000 0x99AC 0x0000 0x0040 0x0000 0\n" + "3 0x99EC 0x9A2B 0x0000 0x9A08 0x0002 0x0040 0x0000 0\n" + "4 0x9A2C 0x9AAB 0x0000 0x9A62 0x0001 0x0080 0x0000 0\n" + "5 0x9AAC 0x9AEB 0x0000 0x9AAC 0x0000 0x0040 0x0000 0\n" + "6 0x9AEC 0x9B3B 0x0000 0x9AEC 0x0000 0x0050 0x0000 0\n" + "7 0x9B3C 0x9B97 0x0000 0x9B93 0x0001 0x005C 0x0000 0\n" + "8 0x9B98 0x9BBF 0x0000 0x9B9F 0x0001 0x0028 0x0000 0\n" + "9 0x0000 0x0000 0x0000 0x0000 0x0000 0x0000 0x0000 1\n" + "10 0x9BD0 0x9BF7 0x0000 0x9BD5 0x0001 0x0028 0x0000 0\n" + "11 0x9BF8 0x9C07 0x0000 0x9BF8 0x0000 0x0010 0x0000 0\n" + "12 0x9C08 0x9C43 0x0000 0x9C08 0x0000 0x003C 0x0000 0\n" + "13 0x0000 0x0000 0x0000 0x0000 0x0000 0x0000 0x0000 1\n" + "14 0x9C54 0x9C7B 0x0000 0x9C54 0x0000 0x0028 0x0000 0\n" + "15 0x9C7C 0x9C7F 0x0000 0x9C7F 0x0001 0x0004 0x0000 0\n" + "-------PCIe Supervisor Rx SW Pointers-------\n" + "q_num start end sw_read sw_cnt unfill(#|ptr|max) to_pop offset exception\n" + "0 0x9800 0x992B 0x9800 0 0|0x0000|0 0 0 0\n" + "1 0x992C 0x99AB 0x9990 0 0|0x0000|0 0 0 195\n" + "2 0x99AC 0x99EB 0x99AC 0 0|0x0000|0 0 0 0\n" + "3 0x99EC 0x9A2B 0x9A08 0 0|0x0000|0 0 0 3571\n" + "4 0x9A2C 0x9AAB 0x9A62 0 0|0x0000|0 0 0 138\n" + "5 0x9AAC 0x9AEB 0x9AAC 0 0|0x0000|0 0 0 0\n" + "6 0x9AEC 0x9B3B 0x9AEC 0 0|0x0000|0 0 0 0\n" + "7 0x9B3C 0x9B97 0x9B93 0 0|0x0000|0 0 0 9\n" + "8 0x9B98 0x9BBF 0x9B9F 0 0|0x0000|1 0 0 1626\n" + "9 0x0000 0x0000 0x0000 0 0|0x0000|0 0 0 0\n" + "10 0x9BD0 0x9BF7 0x9BD5 0 0|0x0000|0 0 0 60\n" + "11 0x9BF8 0x9C07 0x9BF8 0 0|0x0000|0 0 0 0\n" + "12 0x9C08 0x9C43 0x9C08 0 0|0x0000|0 0 0 0\n" + "13 0x0000 0x0000 0x0000 0 0|0x0000|0 0 0 0\n" + "14 0x9C54 0x9C7B 0x9C54 0 0|0x0000|0 0 0 0\n" + "15 0x9C7C 0x9C7F 0x9C7F 0 0|0x0000|1 0 0 0\n" + "------PCIe Supervisor Rx SW Info-------------\n" + "q_num offset pop|max idle|max\n" + "0 0 0|0 0|0\n" + "1 0 1|2 0|3\n" + "2 0 0|0 0|0\n" + "3 0 2|3 0|4\n" + "4 0 1|1 0|6\n" + "5 0 0|0 0|0\n" + "6 0 0|0 0|0\n" + "7 0 1|1 0|6\n" + "8 0 1|2 0|7\n" + "9 0 0|0 0|0\n" + "10 0 1|1 0|5\n" + "11 0 0|0 0|0\n" + "12 0 0|0 0|0\n" + "13 0 0|0 0|0\n" + "14 0 0|0 0|0\n" + "15 0 1|1 0|0\n" + "-------PCIe Supervisor Tx Registers-------\n" + "DescriptorTableOffset 06780000\n\n" + "q_num start end count current pushcnt pushptr qselect weight disable \n" + "0 0x4A00 0x4AFF 0x0000 0x4A9C 0x0001 0x4A9B 0x0000 30 0\n" + "1 0x4B00 0x4B7F 0x0000 0x4B7C 0x0001 0x4B7B 0x0001 10 0\n" + "2 0x4B80 0x4BBF 0x0000 0x4B80 0x0000 0x0000 0x0000 30 0\n" + "3 0x0000 0x0000 0x0000 0x0000 0x0000 0x0000 0x0000 0 1\n" + "4 0x0000 0x0000 0x0000 0x0000 0x0000 0x0000 0x0000 0 1\n" + "5 0x0000 0x0000 0x0000 0x0000 0x0000 0x0000 0x0000 0 1\n" + "6 0x0000 0x0000 0x0000 0x0000 0x0000 0x0000 0x0000 0 1\n" + "7 0x0000 0x0000 0x0000 0x0000 0x0000 0x0000 0x0000 0 1\n" + "-------PCIe Supervisor Tx SW Pointers-------\n" + "q_num start end sw_write txdone tx_cnt txdone_cnt\n" + "0 0x4A00 0x4AFF 0x4A9C 0x4A9C 1602709916 1602709916\n" + "1 0x4B00 0x4B7F 0x4B0B 0x4B0B 17727371 17727371\n" + "2 0x4B80 0x4BBF 0x4B80 0x4B80 0 0\n" + "3 0x0000 0x0000 0x0000 0x0000 0 0\n" + "4 0x0000 0x0000 0x0000 0x0000 0 0\n" + "5 0x0000 0x0000 0x0000 0x0000 0 0\n" + "6 0x0000 0x0000 0x0000 0x0000 0 0\n" + "7 0x0000 0x0000 0x0000 0x0000 0 0\n" + "------ASIC Rx/Tx Interrupts------\n" + "globalStatus=38000008 indicMask=FFFFFFFF intrMask=30F01010\n" + "asicRxTimeout asicTxTimeout asicRxDone asicTxDone asicTxOutofBuf\n" + "------------- ------------- ---------- ---------- --------------\n" + "0 0 219460621 312528916 380250754\n" + "--------CPU's PLB4A1 Error Status Registers----------\n\n" + "plb4a1_esrl= 00000000\n" + "plb4a1_esrh= 00000000\n" + "plb4a1_earl= E6DDFEF9\n" + "plb4a1_earh= 4EDE3E85\n" + "pe_tdc= FF80FF80\n\n" + "---------CPU's PCIe GPL Status Registers------------\n" + "pegpl_esr= 12000000\n" + "pegpl_earl= 00000000\n" + "pegpl_earh= 00000000\n" + "pegpl_eatr= 00000000\n\n" + "---------CPU's PCIe port-0 UTL Status Registers--------\n" + "PEUTL0_STA = 00000000\n" + "PEUTL0_PBASTA = 00C00000\n" + "PEUTL0_RCSTA = 00000000\n" + "PEUTL0_PSTA = 00000000\n" + "PEUTL0_EPSTA = 00000000\n\n" + "--------------CPU's PCIe SDR Registers--------------------\n" + "PE_DLPSET = 00401000\n" + "PE_UTLSET1 = 00000000\n" + "PE_UTLSET2 = 01010000\n" + "PE_PHYSET1 = 720E0000\n" + "PE_PHYSET2 = 50600003\n" + "PE_RCSSET = 00101000\n" + "PE_PHYSTA = 02111000\n" + "PE_RCSSTS = 00010100\n" + "PE_LOOP = 10001000\n\n" + "--------------CPU's PCIe GPL/UTL Registers--------------------\n" + "PEGPL_CFGBAH = 00000000\n" + "PEGPL_CFGBAL = A0000000\n" + "PEGPL_CFGMSK = E0000001\n" + "PEGPL_REGBAL = EF502000\n" + "PEGPL_REGBAH = 00000000\n" + "PEGPL_REGMSK = 00007001\n" + "PEGPL_SPECIAL = 00000000\n" + "PEGPL_CFG = 00000000\n" + "PEUTL_PBCTL = 0900000A\n" + "PEUTL_PBAEEN = EC000000\n" + "PEUTL_PCTL = 80804133\n" + "PEUTL_OUTTR = 02000000\n" + "PEUTL_INTR = 02000000\n" + "PEUTL_OPDBSZ = 04000000\n" + "PEUTL_PBBSZ = 00000000\n" + "PEUTL_IPHBSZ = 02000000\n" + "PEUTL_IPDBSZ = 04000000\n" + "PEUTL_RCIRQEN = FFFC0000\n" + "PEUTL_STA = 00000000\n" + "PEUTL_PBASTA = 00C00000\n" + "PEUTL_RCSTA = 00000000\n" + "PEUTL_PSTA = 00000000\n" + "PEUTL_EPSTA = 00000000\n" + "PEUTL0_PBAEEN = 0xEC000000\n" + "PEUTL0_PBAIEN = 0xEC000000\n" + "PEUTL0_PERREN = 0xFEE80000\n" + "PEUTL0_PIRQEN = 0xFE280000\n" + "PEUTL0_RCERREN = 0xFFFC0000\n" + "PEUTL0_RCIRQEN = 0xFFFC0000\n\n" + "------CPU's PCIe Outbound Memory Map Registers----------\n" + "PECFG_POM0LAH = 00000000\n" + "PECFG_POM0LAL = 00000000\n" + "PEGPL_OMR1BAH = 00000000\n" + "PEGPL_OMR1BAL = C0000000\n" + "PEGPL_OMR1MSKH = 7FFFFFFF\n" + "PEGPL_OMR1MSKL = E0000003\n\n" + "------CPU's PCIe Inbound Memory Map Registers----------\n" + "PECFG_BAR0HMPA = 7FFFFFFF\n" + "PECFG_BAR0LMPA = E0000004\n" + "PECFG_BAR1MPA = 00000000\n" + "PECFG_BAR2HMPA = 00000000\n" + "PECFG_BAR2LMPA = 00000000\n" + "PECFG_PIM0LAH|L = 00000000|C0000000\n" + "PECFG_PIM1LAH|L = 00000000|00000000\n" + "PECFG_PIM01SAH|L = 00000000|00000000\n" + "PECFG_PIM2LAH|L = 00000000|00000000\n" + "PECFG_PIM3LAH|L = 00000000|00000000\n" + "PECFG_PIM4LAH|L = 00000000|00000000\n" + "PECFG_PIM34SAH|L = 00000000|00000000\n" + "PCIE_BAR0 = 00000004\n" + "PCIE_BAR1 = 00000000\n" + "PCIE_CMD_STATUS = 00100407\n" + "PECFG_PIMEN = 00000001\n\n" + "--------------CPU's PCIe MSI Registers--------------------\n" + "PE_IHS1 = 00000000\n" + "PE_IHS2 = EF620002\n" + "PEIH_TERMADL = 10000000\n" + "PEIH_TERMADH = 00000000\n" + "PEIH_MSIED = 00001000\n" + "PEIH_MSIMK = 0000FFE0\n\n" + "------CPU's PCIe Config-Int Registers for port-0-----\n\n" + "pecfg0-ecdevctl = 0x0000281F\n" + "pecfg0-ecrtsta = 0x00000000\n" + "pecfg0-ecrtctl = 0x00010000\n" + "pecfg0-aeruesta = 0x00000000\n" + "pecfg0-aeruemsk = 0x0017F010\n" + "pecfg0-aercesta = 0x00000000\n" + "pecfg0-aercemsk = 0x000031C1\n" + "pecfg0-aerrtsta = 0x00000000\n" + "pecfg0-aerrtctl = 0x00000007\n" + "pecfg0-aerrtstapa = 0x00000000\n" + "uic0_er = 0x40000028\n" + "uic0_pr = 0x7FBFFBEF\n" + "uic0_tr = 0x00006400\n" + "uic0_sr = 0x80000010\n" + "uic0_msr = 0x00000000\n" + "uic1_er = 0x00000000\n" + "uic1_pr = 0xFFFEC785\n" + "uic1_tr = 0x06190045\n" + "uic1_sr = 0x10023018\n" + "uic1_msr = 0x00000000\n" + "uic2_er = 0x00004000\n" + "uic2_pr = 0xF7FFFFFE\n" + "uic2_tr = 0x01E1FFF8\n" + "uic2_sr = 0xE8100001\n" + "uic2_msr = 0x00000000\n\n" + "interpret and over-write AER status bits ^\n" + "% Invalid input detected at '^' marker.\n" + "11:12:21.177 UTC Sat Jun 4 2022 ^\n" + "% Invalid input detected at '^' marker.\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + " ^\n" + "% Invalid input detected at '^' marker.\n" + " ^\n" + "% Invalid input detected at '^' marker.\n"; final Pattern pattern = Pattern.compile(regex, Pattern.MULTILINE); final Matcher matcher = pattern.matcher(string); while (matcher.find()) { System.out.println("Full match: " + matcher.group(0)); for (int i = 1; i <= matcher.groupCount(); i++) { System.out.println("Group " + i + ": " + matcher.group(i)); } } } }

Please keep in mind that these code samples are automatically generated and are not guaranteed to work. If you find any syntax errors, feel free to submit a bug report. For a full regex reference for Java, please visit: https://docs.oracle.com/javase/7/docs/api/java/util/regex/Pattern.html