1-- ***************************************************************** 2-- CISCO-SWITCH-STATS-MIB.my: Switch Statistics Configuration and 3-- Information MIB. 4-- 5-- January 2009, Guichuan Tang, Jayakumar Kadirvelu 6-- 7-- Copyright (c) 2009, 2012-2013 by Cisco Systems, Inc. 8-- All rights reserved. 9-- 10-- ***************************************************************** 11 12CISCO-SWITCH-STATS-MIB DEFINITIONS ::= BEGIN 13 14IMPORTS 15 MODULE-IDENTITY, 16 OBJECT-TYPE, 17 Unsigned32, 18 Counter32, 19 Counter64, 20 Gauge32 21 FROM SNMPv2-SMI 22 MODULE-COMPLIANCE, 23 OBJECT-GROUP 24 FROM SNMPv2-CONF 25 SnmpAdminString 26 FROM SNMP-FRAMEWORK-MIB 27 DateAndTime 28 FROM SNMPv2-TC 29 VlanIndex 30 FROM Q-BRIDGE-MIB 31 ifIndex 32 FROM IF-MIB 33 entPhysicalIndex 34 FROM ENTITY-MIB 35 ciscoMgmt 36 FROM CISCO-SMI; 37 38 39ciscoSwitchStatsMIB MODULE-IDENTITY 40 LAST-UPDATED "201301300000Z" 41 ORGANIZATION "Cisco Systems, Inc." 42 CONTACT-INFO 43 "Cisco Systems 44 Customer Service 45 46 Postal: 170 W Tasman Drive 47 San Jose, CA 95134 48 USA 49 50 Tel: +1 800 553-NETS 51 52 E-mail: cs-lan-switch-snmp@cisco.com" 53 DESCRIPTION 54 "The MIB module provides management information for 55 configuration and monitoring of traffic statistics 56 on Cisco's switching devices." 57 REVISION "201301300000Z" 58 DESCRIPTION 59 "Added following OBJECT-GROUP 60 - ciscoSwitchStatsLayer3Group 61 - ciscoSwitchStatsLayer3ExtGroup 62 - ciscoSwitchStatsTotalGroup 63 - ciscoSwitchStatsInternalStatsGroup 64 - ciscoSwitchStatsInternalErrorGroup 65 - ciscoSwitchStatsInternalInstanceGroup 66 - ciscoSwitchStatsRewriteEngineStatsGroup 67 Added new compliance 68 - csstSwitchStatsMIBCompliance2 69 Deprecated ciscoSwitchStatsL3Group and 70 csstSwitchStatsMIBCompliance" 71 REVISION "200910300000Z" 72 DESCRIPTION 73 "Initial version of this MIB module." 74 ::= { ciscoMgmt 652 } 75 76 77ciscoSwitchStatsMIBNotifs OBJECT IDENTIFIER 78 ::= { ciscoSwitchStatsMIB 0 } 79 80ciscoSwitchStatsMIBObjects OBJECT IDENTIFIER 81 ::= { ciscoSwitchStatsMIB 1 } 82 83ciscoSwitchStatsMIBConform OBJECT IDENTIFIER 84 ::= { ciscoSwitchStatsMIB 2 } 85 86csstConfigurableStats OBJECT IDENTIFIER 87 ::= { ciscoSwitchStatsMIBObjects 1 } 88 89csstVlanStats OBJECT IDENTIFIER 90 ::= { ciscoSwitchStatsMIBObjects 2 } 91 92csstSwitchTrafficStats OBJECT IDENTIFIER 93 ::= { ciscoSwitchStatsMIBObjects 3 } 94 95csstHwInternalStats OBJECT IDENTIFIER 96 ::= { ciscoSwitchStatsMIBObjects 4 } 97 98csstRewriteEngineStats OBJECT IDENTIFIER 99 ::= { ciscoSwitchStatsMIBObjects 5 } 100 101-- The configurable statistics group 102 103csstConfigStatsOptionTable OBJECT-TYPE 104 SYNTAX SEQUENCE OF CsstConfigStatsOptionEntry 105 MAX-ACCESS not-accessible 106 STATUS current 107 DESCRIPTION 108 "This table contains a list of network traffic statistics 109 options capable to be configured in csstConfigStatsMap 110 for the statistics collection by the device." 111 ::= { csstConfigurableStats 1 } 112 113csstConfigStatsOptionEntry OBJECT-TYPE 114 SYNTAX CsstConfigStatsOptionEntry 115 MAX-ACCESS not-accessible 116 STATUS current 117 DESCRIPTION 118 "Each entry contains statistics information for a 119 specific traffic statistics option." 120 INDEX { csstConfigStatsOptionIndex } 121 ::= { csstConfigStatsOptionTable 1 } 122 123CsstConfigStatsOptionEntry ::= SEQUENCE { 124 csstConfigStatsOptionIndex Unsigned32, 125 csstConfigStatsOptionDesc SnmpAdminString 126} 127 128csstConfigStatsOptionIndex OBJECT-TYPE 129 SYNTAX Unsigned32 (1..4294967295) 130 MAX-ACCESS not-accessible 131 STATUS current 132 DESCRIPTION 133 "A unique value to indicate a specific traffic statistics 134 option." 135 ::= { csstConfigStatsOptionEntry 1 } 136 137csstConfigStatsOptionDesc OBJECT-TYPE 138 SYNTAX SnmpAdminString 139 MAX-ACCESS read-only 140 STATUS current 141 DESCRIPTION 142 "Indicates the description corresponding to a specific 143 traffic statistics option." 144 ::= { csstConfigStatsOptionEntry 2 } 145 146 147 148csstConfigStatsMapSize OBJECT-TYPE 149 SYNTAX Unsigned32 150 MAX-ACCESS read-only 151 STATUS current 152 DESCRIPTION 153 "Indicates the length of the csstConfigStatsMap object. 154 This object value indicates the total number of traffic 155 statistics options that can be configured in 156 csstConfigStatsMap." 157 ::= { csstConfigurableStats 2 } 158 159csstConfigStatsMap OBJECT-TYPE 160 SYNTAX OCTET STRING (SIZE (0..256)) 161 MAX-ACCESS read-write 162 STATUS current 163 DESCRIPTION 164 "Specifies the sequence of the traffic statistics options 165 that are configured to be collected by the device. 166 167 The length of this object is specified by the 168 csstConfigStatsMapSize object value, and the value of 169 each octet in the instance value of this object shall be 170 unique and can only be selected from the set of 171 csstConfigStatsOptionIndex values currently populated 172 in csstConfigStatsOptionTable. 173 174 If a traffic statistics option is configured in this object, 175 the corresponding network traffic statistics will be collected 176 on all the applicable interfaces in this device. 177 178 Setting this object to a different value will trigger the 179 csstConfigStatsIfTable to be repopulated." 180 ::= { csstConfigurableStats 3 } 181 182csstConfigStatsIfTable OBJECT-TYPE 183 SYNTAX SEQUENCE OF CsstConfigStatsIfEntry 184 MAX-ACCESS not-accessible 185 STATUS current 186 DESCRIPTION 187 "This table contains information about interface traffic 188 statistics, which is configured through csstConfigStatsMap, 189 for interfaces that are capable of providing such 190 information. 191 192 The total number of traffic statistics and the traffic 193 statistics options populated in this table will be based on 194 csstConfigStatsMapSize and csstConfigStatsMap. 195 196 When the csstConfigStatsMap object value is changed to a 197 different value, it will trigger this table to be 198 repopulated." 199 ::= { csstConfigurableStats 4 } 200 201csstConfigStatsIfEntry OBJECT-TYPE 202 SYNTAX CsstConfigStatsIfEntry 203 MAX-ACCESS not-accessible 204 STATUS current 205 DESCRIPTION 206 "Each entry provides traffic statistics information for 207 a specific interface." 208 INDEX { ifIndex } 209 ::= { csstConfigStatsIfTable 1 } 210 211CsstConfigStatsIfEntry ::= SEQUENCE { 212 csstConfigStatsIfPackets1 Counter64, 213 csstConfigStatsIfOctets1 Counter64, 214 csstConfigStatsIfPackets2 Counter64, 215 csstConfigStatsIfOctets2 Counter64, 216 csstConfigStatsIfPackets3 Counter64, 217 csstConfigStatsIfOctets3 Counter64, 218 csstConfigStatsIfPackets4 Counter64, 219 csstConfigStatsIfOctets4 Counter64, 220 csstConfigStatsIfPackets5 Counter64, 221 csstConfigStatsIfOctets5 Counter64, 222 csstConfigStatsIfPackets6 Counter64, 223 csstConfigStatsIfOctets6 Counter64, 224 csstConfigStatsIfPackets7 Counter64, 225 csstConfigStatsIfOctets7 Counter64, 226 csstConfigStatsIfPackets8 Counter64, 227 csstConfigStatsIfOctets8 Counter64 228} 229 230csstConfigStatsIfPackets1 OBJECT-TYPE 231 SYNTAX Counter64 232 UNITS "packets" 233 MAX-ACCESS read-only 234 STATUS current 235 DESCRIPTION 236 "The total number of packets counted on this interface 237 for the traffic statistics option that is specified by the first 238 octet value of the csstConfigStatsMap object." 239 ::= { csstConfigStatsIfEntry 1 } 240 241csstConfigStatsIfOctets1 OBJECT-TYPE 242 SYNTAX Counter64 243 UNITS "octets" 244 MAX-ACCESS read-only 245 STATUS current 246 DESCRIPTION 247 "The total number of octets counted on this interface 248 for the traffic statistics option that is specified by the first 249 octet value of the csstConfigStatsMap object." 250 ::= { csstConfigStatsIfEntry 2 } 251 252csstConfigStatsIfPackets2 OBJECT-TYPE 253 SYNTAX Counter64 254 UNITS "packets" 255 MAX-ACCESS read-only 256 STATUS current 257 DESCRIPTION 258 "The total number of packets counted on this interface 259 for the traffic statistics option that is specified by the second 260 octet value of the csstConfigStatsMap object." 261 ::= { csstConfigStatsIfEntry 3 } 262 263csstConfigStatsIfOctets2 OBJECT-TYPE 264 SYNTAX Counter64 265 UNITS "octets" 266 MAX-ACCESS read-only 267 STATUS current 268 DESCRIPTION 269 "The total number of octets counted on this interface 270 for the traffic statistics option that is specified by the second 271 octet value of the csstConfigStatsMap object." 272 ::= { csstConfigStatsIfEntry 4 } 273 274csstConfigStatsIfPackets3 OBJECT-TYPE 275 SYNTAX Counter64 276 UNITS "packets" 277 MAX-ACCESS read-only 278 STATUS current 279 DESCRIPTION 280 "The total number of packets counted on this interface 281 for the traffic statistics option that is specified by the third 282 octet value of the csstConfigStatsMap object." 283 ::= { csstConfigStatsIfEntry 5 } 284 285csstConfigStatsIfOctets3 OBJECT-TYPE 286 SYNTAX Counter64 287 UNITS "octets" 288 MAX-ACCESS read-only 289 STATUS current 290 DESCRIPTION 291 "The total number of octets counted on this interface 292 for the traffic statistics option that is specified by the third 293 octet value of the csstConfigStatsMap object." 294 ::= { csstConfigStatsIfEntry 6 } 295 296csstConfigStatsIfPackets4 OBJECT-TYPE 297 SYNTAX Counter64 298 UNITS "packets" 299 MAX-ACCESS read-only 300 STATUS current 301 DESCRIPTION 302 "The total number of packets counted on this interface 303 for the traffic statistics option that is specified by the fourth 304 octet value of the csstConfigStatsMap object." 305 ::= { csstConfigStatsIfEntry 7 } 306 307csstConfigStatsIfOctets4 OBJECT-TYPE 308 SYNTAX Counter64 309 UNITS "octets" 310 MAX-ACCESS read-only 311 STATUS current 312 DESCRIPTION 313 "The total number of octets counted on this interface 314 for the traffic statistics option that is specified by the fourth 315 octet value of the csstConfigStatsMap object." 316 ::= { csstConfigStatsIfEntry 8 } 317 318csstConfigStatsIfPackets5 OBJECT-TYPE 319 SYNTAX Counter64 320 UNITS "packets" 321 MAX-ACCESS read-only 322 STATUS current 323 DESCRIPTION 324 "The total number of packets counted on this interface 325 for the traffic statistics option that is specified by the fifth 326 octet value of the csstConfigStatsMap object." 327 ::= { csstConfigStatsIfEntry 9 } 328 329csstConfigStatsIfOctets5 OBJECT-TYPE 330 SYNTAX Counter64 331 UNITS "octets" 332 MAX-ACCESS read-only 333 STATUS current 334 DESCRIPTION 335 "The total number of octets counted on this interface 336 for the traffic statistics option that is specified by the fifth 337 octet value of the csstConfigStatsMap object." 338 ::= { csstConfigStatsIfEntry 10 } 339 340csstConfigStatsIfPackets6 OBJECT-TYPE 341 SYNTAX Counter64 342 UNITS "packets" 343 MAX-ACCESS read-only 344 STATUS current 345 DESCRIPTION 346 "The total number of packets counted on this interface 347 for the traffic statistics option that is specified by the sixth 348 octet value of the csstConfigStatsMap object." 349 ::= { csstConfigStatsIfEntry 11 } 350 351csstConfigStatsIfOctets6 OBJECT-TYPE 352 SYNTAX Counter64 353 UNITS "octets" 354 MAX-ACCESS read-only 355 STATUS current 356 DESCRIPTION 357 "The total number of octets counted on this interface 358 for the traffic statistics option that is specified by the sixth 359 octet value of the csstConfigStatsMap object." 360 ::= { csstConfigStatsIfEntry 12 } 361 362csstConfigStatsIfPackets7 OBJECT-TYPE 363 SYNTAX Counter64 364 UNITS "packets" 365 MAX-ACCESS read-only 366 STATUS current 367 DESCRIPTION 368 "The total number of packets counted on this interface 369 for the traffic statistics option that is specified by the seventh 370 octet value of the csstConfigStatsMap object." 371 ::= { csstConfigStatsIfEntry 13 } 372 373csstConfigStatsIfOctets7 OBJECT-TYPE 374 SYNTAX Counter64 375 UNITS "octets" 376 MAX-ACCESS read-only 377 STATUS current 378 DESCRIPTION 379 "The total number of octets counted on this interface 380 for the traffic statistics option that is specified by the seventh 381 octet value of the csstConfigStatsMap object." 382 ::= { csstConfigStatsIfEntry 14 } 383 384csstConfigStatsIfPackets8 OBJECT-TYPE 385 SYNTAX Counter64 386 UNITS "packets" 387 MAX-ACCESS read-only 388 STATUS current 389 DESCRIPTION 390 "The total number of packets counted on this interface 391 for the traffic statistics option that is specified by the eighth 392 octet value of the csstConfigStatsMap object." 393 ::= { csstConfigStatsIfEntry 15 } 394 395csstConfigStatsIfOctets8 OBJECT-TYPE 396 SYNTAX Counter64 397 UNITS "octets" 398 MAX-ACCESS read-only 399 STATUS current 400 DESCRIPTION 401 "The total number of octets counted on this interface 402 for the traffic statistics option that is specified by the eighth 403 octet value of the csstConfigStatsMap object." 404 ::= { csstConfigStatsIfEntry 16 } 405 406 407-- The VLAN statistics group 408 409csstVlanStatsTable OBJECT-TYPE 410 SYNTAX SEQUENCE OF CsstVlanStatsEntry 411 MAX-ACCESS not-accessible 412 STATUS current 413 DESCRIPTION 414 "This table provides specific traffic statistics 415 information for VLANs that are capable of providing 416 such statistics information." 417 ::= { csstVlanStats 1 } 418 419csstVlanStatsEntry OBJECT-TYPE 420 SYNTAX CsstVlanStatsEntry 421 MAX-ACCESS not-accessible 422 STATUS current 423 DESCRIPTION 424 "An entry providing traffic statistics information collected 425 for a specific VLAN" 426 INDEX { csstVlanIndex } 427 ::= { csstVlanStatsTable 1 } 428 429CsstVlanStatsEntry ::= SEQUENCE { 430 csstVlanIndex VlanIndex, 431 csstVlanKnownBridgedUcastPkts Counter64, 432 csstVlanKnownBridgedUcastOctets Counter64, 433 csstVlanKnownBridgedNUcastPkts Counter64, 434 csstVlanKnownBridgedNUcastOctets Counter64 435} 436 437csstVlanIndex OBJECT-TYPE 438 SYNTAX VlanIndex 439 MAX-ACCESS not-accessible 440 STATUS current 441 DESCRIPTION 442 "Indicates the VLAN number." 443 ::= { csstVlanStatsEntry 1 } 444 445csstVlanKnownBridgedUcastPkts OBJECT-TYPE 446 SYNTAX Counter64 447 UNITS "packets" 448 MAX-ACCESS read-only 449 STATUS current 450 DESCRIPTION 451 "The total number of bridged unicast packets, 452 counted on this VLAN, with known MAC (Media 453 Access Control) DA (destination address)." 454 ::= { csstVlanStatsEntry 2 } 455 456csstVlanKnownBridgedUcastOctets OBJECT-TYPE 457 SYNTAX Counter64 458 UNITS "octets" 459 MAX-ACCESS read-only 460 STATUS current 461 DESCRIPTION 462 "The total number of octets for the bridged unicast 463 packets, counted on this VLAN, with known MAC DA." 464 ::= { csstVlanStatsEntry 3 } 465 466csstVlanKnownBridgedNUcastPkts OBJECT-TYPE 467 SYNTAX Counter64 468 UNITS "packets" 469 MAX-ACCESS read-only 470 STATUS current 471 DESCRIPTION 472 "The total number of bridged non-unicast packets, 473 counted on this VLAN, with known MAC DA." 474 ::= { csstVlanStatsEntry 4 } 475 476csstVlanKnownBridgedNUcastOctets OBJECT-TYPE 477 SYNTAX Counter64 478 UNITS "octets" 479 MAX-ACCESS read-only 480 STATUS current 481 DESCRIPTION 482 "The total number of octets for the bridged 483 non-unicast packets, counted on this VLAN, 484 with known MAC DA." 485 ::= { csstVlanStatsEntry 5 } 486 487 488-- The Switch statistics table 489 490csstSwitchStatsTable OBJECT-TYPE 491 SYNTAX SEQUENCE OF CsstSwitchStatsEntry 492 MAX-ACCESS not-accessible 493 STATUS current 494 DESCRIPTION 495 "This table provides specific L2/L3 traffic statistics 496 information of switching engines." 497 ::= { csstSwitchTrafficStats 1 } 498 499csstSwitchStatsEntry OBJECT-TYPE 500 SYNTAX CsstSwitchStatsEntry 501 MAX-ACCESS not-accessible 502 STATUS current 503 DESCRIPTION 504 "An entry providing L2/L3 traffic statistics information 505 maintained by a particular switching engine entity 506 (identified by entPhysicalIndex). 507 508 An entry of this table is created if a switch engine with 509 these L2/L3 traffic statistics is detected by the 510 managed system. 511 512 An entry of this table is deleted if the 513 removal of the switching engine itself." 514 INDEX { entPhysicalIndex } 515 ::= { csstSwitchStatsTable 1 } 516 517CsstSwitchStatsEntry ::= SEQUENCE { 518 csstL2TotalBridgedPkts Counter32, 519 csstL3FibSwitchedIpv4UcastPkts Counter32, 520 csstL3FibSwitchedIpv6UcastPkts Counter32, 521 csstL3FibSwitchedEoMplsPkts Counter32, 522 csstL3FibSwitchedMplsPkts Counter32, 523 csstL3TotalMulticastPkts Counter32, 524 csstL3IgmpMldPkts Counter32, 525 csstL3Ipv4MulticastPkts Counter32, 526 csstL3Ipv6MulticastPkts Counter32, 527 csstL3MulticastLeakPkts Counter32, 528 csstL3InputAclRoutedPkts Counter32, 529 csstL3OutputAclRoutedPkts Counter32, 530 csstL3InputNetflowSwitchedPkts Counter32, 531 csstL3OutputNetflowSwitchedPkts Counter32, 532 csstL3InExceptionRedirectPkts Counter32, 533 csstL3OutExceptionRedirectPkts Counter32, 534 csstL3TotalNetflowSwitchedPkts Counter32, 535 csstL3TotalAclRoutedPkts Counter32, 536 csstTotalAclDenyPkts Counter32 537} 538 539csstL2TotalBridgedPkts OBJECT-TYPE 540 SYNTAX Counter32 541 UNITS "packets" 542 MAX-ACCESS read-only 543 STATUS current 544 DESCRIPTION 545 "The total number of bridged packets on this 546 switching engine." 547 ::= { csstSwitchStatsEntry 1 } 548 549csstL3FibSwitchedIpv4UcastPkts OBJECT-TYPE 550 SYNTAX Counter32 551 UNITS "packets" 552 MAX-ACCESS read-only 553 STATUS current 554 DESCRIPTION 555 "The total number of IPv4 Unicast packets, 556 switched by the FIB (Forwarding Information Base) 557 on this switching engine." 558 ::= { csstSwitchStatsEntry 2 } 559 560csstL3FibSwitchedIpv6UcastPkts OBJECT-TYPE 561 SYNTAX Counter32 562 UNITS "packets" 563 MAX-ACCESS read-only 564 STATUS current 565 DESCRIPTION 566 "The total number of IPv6 Unicast packets, 567 switched by the FIB (Forwarding Information Base) 568 on this switching engine." 569 ::= { csstSwitchStatsEntry 3 } 570 571csstL3FibSwitchedEoMplsPkts OBJECT-TYPE 572 SYNTAX Counter32 573 UNITS "packets" 574 MAX-ACCESS read-only 575 STATUS current 576 DESCRIPTION 577 "The total number of EoMPLS (Ethernet over MPLS) 578 packets switched by the FIB Forwarding 579 Information Base) on this switching engine." 580 ::= { csstSwitchStatsEntry 4 } 581 582csstL3FibSwitchedMplsPkts OBJECT-TYPE 583 SYNTAX Counter32 584 UNITS "packets" 585 MAX-ACCESS read-only 586 STATUS current 587 DESCRIPTION 588 "The total number of MPLS (Multiprotocol Label 589 Switching) packets switched by the FIB Forwarding 590 Information Base) on this switching engine." 591 ::= { csstSwitchStatsEntry 5 } 592 593csstL3TotalMulticastPkts OBJECT-TYPE 594 SYNTAX Counter32 595 UNITS "packets" 596 MAX-ACCESS read-only 597 STATUS current 598 DESCRIPTION 599 "The total number of Multicast packets switched 600 at Layer3 by this switching engine." 601 ::= { csstSwitchStatsEntry 6 } 602 603csstL3IgmpMldPkts OBJECT-TYPE 604 SYNTAX Counter32 605 UNITS "packets" 606 MAX-ACCESS read-only 607 STATUS current 608 DESCRIPTION 609 "The total number of IGMP MLD (Multicast Listener 610 Discovery) packets switched by this switching engine." 611 ::= { csstSwitchStatsEntry 7 } 612 613csstL3Ipv4MulticastPkts OBJECT-TYPE 614 SYNTAX Counter32 615 UNITS "packets" 616 MAX-ACCESS read-only 617 STATUS current 618 DESCRIPTION 619 "The total number of IPv4 Multicast packets 620 switched at Layer3 by this switching engine." 621 ::= { csstSwitchStatsEntry 8 } 622 623csstL3Ipv6MulticastPkts OBJECT-TYPE 624 SYNTAX Counter32 625 UNITS "packets" 626 MAX-ACCESS read-only 627 STATUS current 628 DESCRIPTION 629 "The total number of IPv6 Multicast packets 630 switched at Layer3 by this switching engine." 631 ::= { csstSwitchStatsEntry 9 } 632 633csstL3MulticastLeakPkts OBJECT-TYPE 634 SYNTAX Counter32 635 UNITS "packets" 636 MAX-ACCESS read-only 637 STATUS current 638 DESCRIPTION 639 "The total number of Multicast Reverse Path Forwarding 640 (RPF) check failed packets which are leaked to the 641 CPU for processing." 642 ::= { csstSwitchStatsEntry 10 } 643 644csstL3InputAclRoutedPkts OBJECT-TYPE 645 SYNTAX Counter32 646 UNITS "packets" 647 MAX-ACCESS read-only 648 STATUS current 649 DESCRIPTION 650 "The total number of Input ACL(Access Control List) 651 Routed packets." 652 ::= { csstSwitchStatsEntry 11 } 653 654csstL3OutputAclRoutedPkts OBJECT-TYPE 655 SYNTAX Counter32 656 UNITS "packets" 657 MAX-ACCESS read-only 658 STATUS current 659 DESCRIPTION 660 "The total number of Output ACL Routed packets." 661 ::= { csstSwitchStatsEntry 12 } 662 663csstL3InputNetflowSwitchedPkts OBJECT-TYPE 664 SYNTAX Counter32 665 UNITS "packets" 666 MAX-ACCESS read-only 667 STATUS current 668 DESCRIPTION 669 "The total number of Input Netflow Switched packets." 670 ::= { csstSwitchStatsEntry 13 } 671 672csstL3OutputNetflowSwitchedPkts OBJECT-TYPE 673 SYNTAX Counter32 674 UNITS "packets" 675 MAX-ACCESS read-only 676 STATUS current 677 DESCRIPTION 678 "The total number of Output Netflow Switched packets." 679 ::= { csstSwitchStatsEntry 14 } 680 681csstL3InExceptionRedirectPkts OBJECT-TYPE 682 SYNTAX Counter32 683 UNITS "packets" 684 MAX-ACCESS read-only 685 STATUS current 686 DESCRIPTION 687 "The total number of Input packets which are redirected 688 to the CPU due to an exception." 689 ::= { csstSwitchStatsEntry 15 } 690 691csstL3OutExceptionRedirectPkts OBJECT-TYPE 692 SYNTAX Counter32 693 UNITS "packets" 694 MAX-ACCESS read-only 695 STATUS current 696 DESCRIPTION 697 "The total number of Output packets which are redirected 698 to the CPU due to an exception." 699 ::= { csstSwitchStatsEntry 16 } 700 701csstL3TotalNetflowSwitchedPkts OBJECT-TYPE 702 SYNTAX Counter32 703 UNITS "packets" 704 MAX-ACCESS read-only 705 STATUS current 706 DESCRIPTION 707 "This object indicates the total number of Netflow 708 switched packets." 709 ::= { csstSwitchStatsEntry 17 } 710 711csstL3TotalAclRoutedPkts OBJECT-TYPE 712 SYNTAX Counter32 713 UNITS "packets" 714 MAX-ACCESS read-only 715 STATUS current 716 DESCRIPTION 717 "This object indicates the total number of ACL 718 routed packets." 719 ::= { csstSwitchStatsEntry 18 } 720 721csstTotalAclDenyPkts OBJECT-TYPE 722 SYNTAX Counter32 723 UNITS "packets" 724 MAX-ACCESS read-only 725 STATUS current 726 DESCRIPTION 727 "This object indicates the total number of ACL 728 deny packets." 729 ::= { csstSwitchStatsEntry 19 } 730 731 732-- The internal statistics group 733 734csstHwInternalStatsTable OBJECT-TYPE 735 SYNTAX SEQUENCE OF CsstHwInternalStatsEntry 736 MAX-ACCESS not-accessible 737 STATUS current 738 DESCRIPTION 739 "This table contains a list of traffic statistics 740 collection for internal devices of a specific physical 741 entity that is capable of providing this information. 742 Such physical entity is identified by the entPhysicalIndex 743 in ENTITY-MIB." 744 ::= { csstHwInternalStats 1 } 745 746csstHwInternalStatsEntry OBJECT-TYPE 747 SYNTAX CsstHwInternalStatsEntry 748 MAX-ACCESS not-accessible 749 STATUS current 750 DESCRIPTION 751 "Each entry contains statistics information for an 752 internal device of a specific physical entity." 753 INDEX { 754 entPhysicalIndex, 755 csstHwInternalStatsDeviceId, 756 csstHwInternalStatsInstanceNum, 757 csstHwInternalStatsDirection, 758 csstHwInternalStatsType, 759 csstHwInternalStatsIndex 760 } 761 ::= { csstHwInternalStatsTable 1 } 762 763CsstHwInternalStatsEntry ::= SEQUENCE { 764 csstHwInternalStatsDeviceId Unsigned32, 765 csstHwInternalStatsInstanceNum Unsigned32, 766 csstHwInternalStatsDirection INTEGER, 767 csstHwInternalStatsType INTEGER, 768 csstHwInternalStatsIndex Unsigned32, 769 csstHwInternalStatsDescr SnmpAdminString, 770 csstHwInternalStatsRate Gauge32 771} 772 773csstHwInternalStatsDeviceId OBJECT-TYPE 774 SYNTAX Unsigned32 775 MAX-ACCESS not-accessible 776 STATUS current 777 DESCRIPTION 778 "This object indicates an arbitrary number which uniquely 779 identifies a specific internal device." 780 ::= { csstHwInternalStatsEntry 1 } 781 782csstHwInternalStatsInstanceNum OBJECT-TYPE 783 SYNTAX Unsigned32 784 MAX-ACCESS not-accessible 785 STATUS current 786 DESCRIPTION 787 "This object indicates an arbitrary number which uniquely 788 identifies the instance number of a specific internal device." 789 ::= { csstHwInternalStatsEntry 2 } 790 791csstHwInternalStatsDirection OBJECT-TYPE 792 SYNTAX INTEGER { 793 ingressIn(1), 794 ingressOut(2), 795 egressIn(3), 796 egressOut(4) 797 } 798 MAX-ACCESS not-accessible 799 STATUS current 800 DESCRIPTION 801 "This object indicates the flow direction of a specific 802 traffic statistics." 803 ::= { csstHwInternalStatsEntry 3 } 804 805csstHwInternalStatsType OBJECT-TYPE 806 SYNTAX INTEGER { 807 packetsPerSec(1), 808 bytesPerSec(2) 809 } 810 MAX-ACCESS not-accessible 811 STATUS current 812 DESCRIPTION 813 "This object indicates the flow type of a specific traffic 814 statistics." 815 ::= { csstHwInternalStatsEntry 4 } 816 817csstHwInternalStatsIndex OBJECT-TYPE 818 SYNTAX Unsigned32 819 MAX-ACCESS not-accessible 820 STATUS current 821 DESCRIPTION 822 "This object indicates an arbitrary integer which uniquely 823 identifies a specific traffic statistics." 824 ::= { csstHwInternalStatsEntry 5 } 825 826csstHwInternalStatsDescr OBJECT-TYPE 827 SYNTAX SnmpAdminString 828 MAX-ACCESS read-only 829 STATUS current 830 DESCRIPTION 831 "This object indicates the internal device name and port list 832 of a specific traffic statistics." 833 ::= { csstHwInternalStatsEntry 6 } 834 835csstHwInternalStatsRate OBJECT-TYPE 836 SYNTAX Gauge32 837 MAX-ACCESS read-only 838 STATUS current 839 DESCRIPTION 840 "This object indicates the rate of a specific traffic 841 statistics." 842 ::= { csstHwInternalStatsEntry 7 } 843 844 845 846csstHwInternalErrorTable OBJECT-TYPE 847 SYNTAX SEQUENCE OF CsstHwInternalErrorEntry 848 MAX-ACCESS not-accessible 849 STATUS current 850 DESCRIPTION 851 "This table contains a list of internal error statistics 852 for internal devices of a specific physical entity that 853 is capable of providing this information. Such physical 854 entity is identified by the entPhysicalIndex in ENTITY-MIB." 855 ::= { csstHwInternalStats 2 } 856 857csstHwInternalErrorEntry OBJECT-TYPE 858 SYNTAX CsstHwInternalErrorEntry 859 MAX-ACCESS not-accessible 860 STATUS current 861 DESCRIPTION 862 "Each entry contains statistics information for an 863 internal device of a specific physical entity." 864 INDEX { 865 entPhysicalIndex, 866 csstHwInternalErrorDeviceId, 867 csstHwInternalErrorCategory 868 } 869 ::= { csstHwInternalErrorTable 1 } 870 871CsstHwInternalErrorEntry ::= SEQUENCE { 872 csstHwInternalErrorDeviceId Unsigned32, 873 csstHwInternalErrorCategory INTEGER, 874 csstHwInternalErrorDeviceInfo SnmpAdminString, 875 csstHwInternalErrorLastCleared DateAndTime 876} 877 878csstHwInternalErrorDeviceId OBJECT-TYPE 879 SYNTAX Unsigned32 880 MAX-ACCESS not-accessible 881 STATUS current 882 DESCRIPTION 883 "This object indicates an arbitrary number which 884 uniquely identifies a specific internal device." 885 ::= { csstHwInternalErrorEntry 1 } 886 887csstHwInternalErrorCategory OBJECT-TYPE 888 SYNTAX INTEGER { 889 error(1), 890 congestion(2), 891 qos(3) 892 } 893 MAX-ACCESS not-accessible 894 STATUS current 895 DESCRIPTION 896 "This object indicates the statistics category." 897 ::= { csstHwInternalErrorEntry 2 } 898 899csstHwInternalErrorDeviceInfo OBJECT-TYPE 900 SYNTAX SnmpAdminString 901 MAX-ACCESS read-only 902 STATUS current 903 DESCRIPTION 904 "This object indicates the name and role of a specific 905 internal device." 906 ::= { csstHwInternalErrorEntry 3 } 907 908csstHwInternalErrorLastCleared OBJECT-TYPE 909 SYNTAX DateAndTime 910 MAX-ACCESS read-only 911 STATUS current 912 DESCRIPTION 913 "This object indicates the most recent time the error 914 statistics was cleared." 915 ::= { csstHwInternalErrorEntry 4 } 916 917 918 919csstHwInternalErrorInstTable OBJECT-TYPE 920 SYNTAX SEQUENCE OF CsstHwInternalErrorInstEntry 921 MAX-ACCESS not-accessible 922 STATUS current 923 DESCRIPTION 924 "This table contains a list of internal error 925 instance management information for internal devices." 926 ::= { csstHwInternalStats 3 } 927 928csstHwInternalErrorInstEntry OBJECT-TYPE 929 SYNTAX CsstHwInternalErrorInstEntry 930 MAX-ACCESS not-accessible 931 STATUS current 932 DESCRIPTION 933 "Each entry contains a particular error statistics 934 information for a specific device." 935 INDEX { 936 entPhysicalIndex, 937 csstHwInternalErrorDeviceId, 938 csstHwInternalErrorCategory, 939 csstHwInternalErrorInstNum, 940 csstHwInternalErrorInstErrorId 941 } 942 ::= { csstHwInternalErrorInstTable 1 } 943 944CsstHwInternalErrorInstEntry ::= SEQUENCE { 945 csstHwInternalErrorInstNum Unsigned32, 946 csstHwInternalErrorInstErrorId Unsigned32, 947 csstHwInternalErrorInstDescr SnmpAdminString, 948 csstHwInternalErrorInstCount Counter64, 949 csstHwInternalErrorInstPorts SnmpAdminString 950} 951 952csstHwInternalErrorInstNum OBJECT-TYPE 953 SYNTAX Unsigned32 954 MAX-ACCESS not-accessible 955 STATUS current 956 DESCRIPTION 957 "This object indicates an arbitrary number which uniquely 958 identifies the instance number of a specific internal device." 959 ::= { csstHwInternalErrorInstEntry 1 } 960 961csstHwInternalErrorInstErrorId OBJECT-TYPE 962 SYNTAX Unsigned32 963 MAX-ACCESS not-accessible 964 STATUS current 965 DESCRIPTION 966 "This object indicates an arbitrary number which 967 uniquely identifies the internal error." 968 ::= { csstHwInternalErrorInstEntry 2 } 969 970csstHwInternalErrorInstDescr OBJECT-TYPE 971 SYNTAX SnmpAdminString 972 MAX-ACCESS read-only 973 STATUS current 974 DESCRIPTION 975 "This object indicates the internal error description. 976 A zero-length string indicates that the internal error 977 description is not available." 978 ::= { csstHwInternalErrorInstEntry 3 } 979 980csstHwInternalErrorInstCount OBJECT-TYPE 981 SYNTAX Counter64 982 MAX-ACCESS read-only 983 STATUS current 984 DESCRIPTION 985 "This object indicates the count of internal error." 986 ::= { csstHwInternalErrorInstEntry 4 } 987 988csstHwInternalErrorInstPorts OBJECT-TYPE 989 SYNTAX SnmpAdminString 990 MAX-ACCESS read-only 991 STATUS current 992 DESCRIPTION 993 "This object indicates the internal ports that generated 994 the error. 995 A zero-length string indicates that the internal ports 996 information is not available." 997 ::= { csstHwInternalErrorInstEntry 5 } 998 999 1000-- The rewrite engine packet drop statistics 1001 1002csstRewriteEnginePktDropStatsTable OBJECT-TYPE 1003 SYNTAX SEQUENCE OF CsstRewriteEnginePktDropStatsEntry 1004 MAX-ACCESS not-accessible 1005 STATUS current 1006 DESCRIPTION 1007 "This table contains packet drop information for each 1008 channel of a rewrite engine on each physical entity, 1009 sush as a module capable of providing this information." 1010 ::= { csstRewriteEngineStats 1 } 1011 1012csstRewriteEnginePktDropStatsEntry OBJECT-TYPE 1013 SYNTAX CsstRewriteEnginePktDropStatsEntry 1014 MAX-ACCESS not-accessible 1015 STATUS current 1016 DESCRIPTION 1017 "Each row contains packet drop statistic for a channel 1018 interface of a rewrite engine on a particular module 1019 identified by its entPhysicalIndex." 1020 INDEX { 1021 entPhysicalIndex, 1022 csstRewriteEngineChannelIndex 1023 } 1024 ::= { csstRewriteEnginePktDropStatsTable 1 } 1025 1026CsstRewriteEnginePktDropStatsEntry ::= SEQUENCE { 1027 csstRewriteEngineChannelIndex Unsigned32, 1028 csstRewriteEngineDropPkts Counter64, 1029 csstRewriteEngineTotalOverruns Counter32 1030} 1031 1032csstRewriteEngineChannelIndex OBJECT-TYPE 1033 SYNTAX Unsigned32 1034 MAX-ACCESS not-accessible 1035 STATUS current 1036 DESCRIPTION 1037 "The channel number of a rewrtie engine on a given module." 1038 ::= { csstRewriteEnginePktDropStatsEntry 1 } 1039 1040csstRewriteEngineDropPkts OBJECT-TYPE 1041 SYNTAX Counter64 1042 UNITS "packets" 1043 MAX-ACCESS read-only 1044 STATUS current 1045 DESCRIPTION 1046 "This object indicates the total number of rewrite engine 1047 dropped packets." 1048 ::= { csstRewriteEnginePktDropStatsEntry 2 } 1049 1050csstRewriteEngineTotalOverruns OBJECT-TYPE 1051 SYNTAX Counter32 1052 MAX-ACCESS read-only 1053 STATUS current 1054 DESCRIPTION 1055 "This object indicates the total number of counter overruns." 1056 ::= { csstRewriteEnginePktDropStatsEntry 3 } 1057 1058 1059-- Conformance information 1060 1061csstSwitchStatsMIBCompliances OBJECT IDENTIFIER 1062 ::= { ciscoSwitchStatsMIBConform 1 } 1063 1064csstSwitchStatsMIBGroups OBJECT IDENTIFIER 1065 ::= { ciscoSwitchStatsMIBConform 2 } 1066 1067 1068-- Compliance statements 1069 1070csstSwitchStatsMIBCompliance MODULE-COMPLIANCE 1071 STATUS deprecated 1072 DESCRIPTION 1073 "The compliance statement for CISCO-SWITCH-STATS-MIB." 1074 MODULE -- this module 1075 GROUP ciscoSwitchStatsConfOptionGroup 1076 DESCRIPTION 1077 "This group is mandatory for devices that provide 1078 traffic statistics options for configuration." 1079 1080 GROUP ciscoSwitchStatsConfMapGroup 1081 DESCRIPTION 1082 "This group is mandatory for devices that provide 1083 configuration of traffic statistics." 1084 1085 GROUP ciscoSwitchStatsConfIfGroup 1086 DESCRIPTION 1087 "This group is mandatory for devices that support 1088 configurable interface traffic statistics collection." 1089 1090 GROUP ciscoSwitchStatsVlanGroup 1091 DESCRIPTION 1092 "This group is mandatory for devices that support 1093 VLAN traffic statistics." 1094 1095 GROUP ciscoSwitchStatsL2Group 1096 DESCRIPTION 1097 "This group is mandatory for devices that support 1098 L2 Total Bridged Packets statistics." 1099 1100 GROUP ciscoSwitchStatsL3Group 1101 DESCRIPTION 1102 "This group is mandatory for devices that support 1103 L3 traffic statistics." 1104 1105 OBJECT csstConfigStatsMap 1106 MIN-ACCESS read-only 1107 DESCRIPTION 1108 "Write access is not required." 1109 ::= { csstSwitchStatsMIBCompliances 1 } 1110 1111csstSwitchStatsMIBCompliance2 MODULE-COMPLIANCE 1112 STATUS current 1113 DESCRIPTION 1114 "The compliance statement for CISCO-SWITCH-STATS-MIB." 1115 MODULE -- this module 1116 GROUP ciscoSwitchStatsConfOptionGroup 1117 DESCRIPTION 1118 "This group is mandatory for devices that provide 1119 traffic statistics options for configuration." 1120 1121 GROUP ciscoSwitchStatsConfMapGroup 1122 DESCRIPTION 1123 "This group is mandatory for devices that provide 1124 configuration of traffic statistics." 1125 1126 GROUP ciscoSwitchStatsConfIfGroup 1127 DESCRIPTION 1128 "This group is mandatory for devices that support 1129 configurable interface traffic statistics collection." 1130 1131 GROUP ciscoSwitchStatsVlanGroup 1132 DESCRIPTION 1133 "This group is mandatory for devices that support 1134 VLAN traffic statistics." 1135 1136 GROUP ciscoSwitchStatsL2Group 1137 DESCRIPTION 1138 "This group is mandatory for devices that support 1139 L2 Total Bridged Packets statistics." 1140 1141 GROUP ciscoSwitchStatsLayer3Group 1142 DESCRIPTION 1143 "This group is mandatory for devices that support 1144 L3 traffic statistics." 1145 1146 GROUP ciscoSwitchStatsLayer3ExtGroup 1147 DESCRIPTION 1148 "This group is mandatory for devices that support 1149 extended L3 traffic statistics." 1150 1151 GROUP ciscoSwitchStatsTotalGroup 1152 DESCRIPTION 1153 "This group is mandatory for devices that support 1154 total traffic packet statistics." 1155 1156 GROUP ciscoSwitchStatsInternalStatsGroup 1157 DESCRIPTION 1158 "This group is mandatory for devices that support 1159 internal traffic statistics" 1160 1161 GROUP ciscoSwitchStatsInternalErrorGroup 1162 DESCRIPTION 1163 "This group is mandatory for devices that support 1164 internal error statistics." 1165 1166 GROUP ciscoSwitchStatsInternalInstanceGroup 1167 DESCRIPTION 1168 "This group is mandatory for devices that support 1169 internal error statistics." 1170 1171 GROUP ciscoSwitchStatsRewriteEngineStatsGroup 1172 DESCRIPTION 1173 "This group is mandatory for devices that support 1174 rewrite engine statistics." 1175 1176 OBJECT csstConfigStatsMap 1177 MIN-ACCESS read-only 1178 DESCRIPTION 1179 "Write access is not required." 1180 ::= { csstSwitchStatsMIBCompliances 2 } 1181 1182-- Units of Conformance 1183 1184ciscoSwitchStatsConfOptionGroup OBJECT-GROUP 1185 OBJECTS { csstConfigStatsOptionDesc } 1186 STATUS current 1187 DESCRIPTION 1188 "A collection of objects providing information 1189 for optional traffic statistics for configuration." 1190 ::= { csstSwitchStatsMIBGroups 1 } 1191 1192ciscoSwitchStatsConfMapGroup OBJECT-GROUP 1193 OBJECTS { 1194 csstConfigStatsMapSize, 1195 csstConfigStatsMap 1196 } 1197 STATUS current 1198 DESCRIPTION 1199 "A collection of objects providing information 1200 for configuration of traffic statistics on 1201 this device." 1202 ::= { csstSwitchStatsMIBGroups 2 } 1203 1204ciscoSwitchStatsConfIfGroup OBJECT-GROUP 1205 OBJECTS { 1206 csstConfigStatsIfPackets1, 1207 csstConfigStatsIfOctets1, 1208 csstConfigStatsIfPackets2, 1209 csstConfigStatsIfOctets2, 1210 csstConfigStatsIfPackets3, 1211 csstConfigStatsIfOctets3, 1212 csstConfigStatsIfPackets4, 1213 csstConfigStatsIfOctets4, 1214 csstConfigStatsIfPackets5, 1215 csstConfigStatsIfOctets5, 1216 csstConfigStatsIfPackets6, 1217 csstConfigStatsIfOctets6, 1218 csstConfigStatsIfPackets7, 1219 csstConfigStatsIfOctets7, 1220 csstConfigStatsIfPackets8, 1221 csstConfigStatsIfOctets8 1222 } 1223 STATUS current 1224 DESCRIPTION 1225 "A collection of objects providing information 1226 for configured statistics for interfaces that are 1227 capable of providing such information." 1228 ::= { csstSwitchStatsMIBGroups 3 } 1229 1230ciscoSwitchStatsVlanGroup OBJECT-GROUP 1231 OBJECTS { 1232 csstVlanKnownBridgedUcastPkts, 1233 csstVlanKnownBridgedUcastOctets, 1234 csstVlanKnownBridgedNUcastPkts, 1235 csstVlanKnownBridgedNUcastOctets 1236 } 1237 STATUS current 1238 DESCRIPTION 1239 "A collection of objects providing information 1240 for traffic statistics for VLANs that are 1241 capable of providing such information." 1242 ::= { csstSwitchStatsMIBGroups 4 } 1243 1244ciscoSwitchStatsL2Group OBJECT-GROUP 1245 OBJECTS { csstL2TotalBridgedPkts } 1246 STATUS current 1247 DESCRIPTION 1248 "A collection of objects providing information 1249 for L2 Total Bridged Packets for switching engines." 1250 ::= { csstSwitchStatsMIBGroups 5 } 1251 1252ciscoSwitchStatsL3Group OBJECT-GROUP 1253 OBJECTS { 1254 csstL3FibSwitchedIpv4UcastPkts, 1255 csstL3FibSwitchedIpv6UcastPkts, 1256 csstL3FibSwitchedEoMplsPkts, 1257 csstL3FibSwitchedMplsPkts, 1258 csstL3TotalMulticastPkts, 1259 csstL3IgmpMldPkts, 1260 csstL3Ipv4MulticastPkts, 1261 csstL3Ipv6MulticastPkts, 1262 csstL3MulticastLeakPkts, 1263 csstL3InputAclRoutedPkts, 1264 csstL3OutputAclRoutedPkts, 1265 csstL3InputNetflowSwitchedPkts, 1266 csstL3OutputNetflowSwitchedPkts, 1267 csstL3InExceptionRedirectPkts, 1268 csstL3OutExceptionRedirectPkts 1269 } 1270 STATUS deprecated 1271 DESCRIPTION 1272 "A collection of objects providing information 1273 for L3 traffic statistics for switching engines." 1274 ::= { csstSwitchStatsMIBGroups 6 } 1275 1276ciscoSwitchStatsLayer3Group OBJECT-GROUP 1277 OBJECTS { 1278 csstL3FibSwitchedIpv4UcastPkts, 1279 csstL3FibSwitchedIpv6UcastPkts, 1280 csstL3FibSwitchedEoMplsPkts, 1281 csstL3FibSwitchedMplsPkts, 1282 csstL3IgmpMldPkts, 1283 csstL3Ipv4MulticastPkts, 1284 csstL3Ipv6MulticastPkts, 1285 csstL3MulticastLeakPkts, 1286 csstL3InputAclRoutedPkts, 1287 csstL3OutputAclRoutedPkts, 1288 csstL3InputNetflowSwitchedPkts, 1289 csstL3OutputNetflowSwitchedPkts, 1290 csstL3InExceptionRedirectPkts, 1291 csstL3OutExceptionRedirectPkts 1292 } 1293 STATUS current 1294 DESCRIPTION 1295 "A collection of objects providing information 1296 for L3 traffic statistics for switching engines." 1297 ::= { csstSwitchStatsMIBGroups 7 } 1298 1299ciscoSwitchStatsLayer3ExtGroup OBJECT-GROUP 1300 OBJECTS { csstL3TotalMulticastPkts } 1301 STATUS current 1302 DESCRIPTION 1303 "An extended collection of objects providing information 1304 for L3 traffic statistics for switching engines." 1305 ::= { csstSwitchStatsMIBGroups 8 } 1306 1307ciscoSwitchStatsTotalGroup OBJECT-GROUP 1308 OBJECTS { 1309 csstL3TotalNetflowSwitchedPkts, 1310 csstL3TotalAclRoutedPkts, 1311 csstTotalAclDenyPkts 1312 } 1313 STATUS current 1314 DESCRIPTION 1315 "A collection of objects providing information 1316 for Total Traffic Packets for switching engines." 1317 ::= { csstSwitchStatsMIBGroups 9 } 1318 1319ciscoSwitchStatsInternalStatsGroup OBJECT-GROUP 1320 OBJECTS { 1321 csstHwInternalStatsDescr, 1322 csstHwInternalStatsRate 1323 } 1324 STATUS current 1325 DESCRIPTION 1326 "A collection of objects providing information 1327 for internal traffic statistics." 1328 ::= { csstSwitchStatsMIBGroups 10 } 1329 1330ciscoSwitchStatsInternalErrorGroup OBJECT-GROUP 1331 OBJECTS { 1332 csstHwInternalErrorDeviceInfo, 1333 csstHwInternalErrorLastCleared 1334 } 1335 STATUS current 1336 DESCRIPTION 1337 "A collection of objects providing information 1338 for internal error statistics." 1339 ::= { csstSwitchStatsMIBGroups 11 } 1340 1341ciscoSwitchStatsInternalInstanceGroup OBJECT-GROUP 1342 OBJECTS { 1343 csstHwInternalErrorInstDescr, 1344 csstHwInternalErrorInstCount, 1345 csstHwInternalErrorInstPorts 1346 } 1347 STATUS current 1348 DESCRIPTION 1349 "A collection of objects providing device instance 1350 information for internal error statistics." 1351 ::= { csstSwitchStatsMIBGroups 12 } 1352 1353ciscoSwitchStatsRewriteEngineStatsGroup OBJECT-GROUP 1354 OBJECTS { 1355 csstRewriteEngineDropPkts, 1356 csstRewriteEngineTotalOverruns 1357 } 1358 STATUS current 1359 DESCRIPTION 1360 "A collection of objects providing information 1361 for rewrite engine statistics." 1362 ::= { csstSwitchStatsMIBGroups 13 } 1363 1364END 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378