    DELL-NETWORKING-IF-EXTENSION-MIB DEFINITIONS ::= BEGIN
    --  This module provides authoritative definitions for 
    --  Dell Networking OS extenstion to the IF MIB.
    --
    --  This module will be extended, as needed.
    --  

    IMPORTS
        MODULE-IDENTITY, OBJECT-TYPE, 
        Counter64, Unsigned32 
            FROM SNMPv2-SMI
        TimeStamp, DisplayString, TruthValue
            FROM SNMPv2-TC
        MODULE-COMPLIANCE, OBJECT-GROUP
            FROM SNMPv2-CONF
        ifIndex
            FROM IF-MIB
        Integer32
            FROM SNMPv2-SMI
        dellNetMgmt
            FROM DELL-NETWORKING-SMI;     
        
    dellNetIfExtensionMib MODULE-IDENTITY
    LAST-UPDATED "201203061200Z"  -- Mar 6, 2012 12:00:00 GMT
    ORGANIZATION
      "Dell Inc"
    CONTACT-INFO
      "http://www.dell.com/support" 

    DESCRIPTION
       "Dell Networking OS IF Extenstion MIB. "
   
    REVISION     "201408121200Z"
    DESCRIPTION
          "Added dellNetIfPortListBitPos.Removed dellNetIfDhcpAdminStatus and dellNetIfDhcpOperStatus."
 
    REVISION     "201203061200Z"
    DESCRIPTION
          "Added DHCP Client attributes."

    REVISION     "201008111200Z"
    DESCRIPTION
        "Add dellNetIfOutThrottles."
        
    REVISION     "201008101200Z"
    DESCRIPTION
          "Initial version of this mib module."
    
           ::= { dellNetMgmt 11 }   


    -- ### Groups ###

    dellNetIfExtensionMibObject OBJECT IDENTIFIER ::={ dellNetIfExtensionMib 1 }
    dellNetIfExtensionParams    OBJECT IDENTIFIER ::={ dellNetIfExtensionMibObject 1 }
    dellNetIfExtensionStats     OBJECT IDENTIFIER ::={ dellNetIfExtensionMibObject 2 }
        
    -- ### Dell Networking OS IF Extenstion Tables
    
    --
    -- Interface Table
    --

      dellNetIfTable     OBJECT-TYPE
        SYNTAX        SEQUENCE OF DellNetIfEntry
        MAX-ACCESS    not-accessible
        STATUS        current
        DESCRIPTION
            "Dell Networking OS Extension ifTable contains
            generic interface parameters."
        ::= { dellNetIfExtensionParams 1 }

      dellNetIfEntry  OBJECT-TYPE 
        SYNTAX        DellNetIfEntry
        MAX-ACCESS    not-accessible
        STATUS        current
        DESCRIPTION
            " A row defintion of Dell Networking OS Interface
            Extension parameters." 
        INDEX    { ifIndex }
        ::= { dellNetIfTable 1 }
      DellNetIfEntry    ::=
        SEQUENCE {
           dellNetIfIpMtu                 Unsigned32,
           dellNetIfDuplexMode            INTEGER,
           dellNetIfQueueingStrategy      DisplayString,
           dellNetIfRxFlowCtrl            TruthValue,
           dellNetIfTxFlowCtrl            TruthValue,
           dellNetIfDescr                 OCTET STRING,
           dellNetIfAdminStatus           INTEGER,
           dellNetIfRateInterval          Unsigned32,
           dellNetIfSpeed                 INTEGER,
           dellNetIfPortListBitPos        Integer32
        }
        
       dellNetIfIpMtu     OBJECT-TYPE
        SYNTAX        Unsigned32 (594..9252)
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The IP (Internet Protocol), Maximum 
            Transmission Unit value."
        ::= { dellNetIfEntry 1 }

       dellNetIfDuplexMode  OBJECT-TYPE
        SYNTAX        INTEGER {
                      half(1),
                      full(2),
                      auto(3)
                      }
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "Duplex mode of the interface. 
            This will be read-write only for s60"
        ::= { dellNetIfEntry 2 }

       dellNetIfQueueingStrategy OBJECT-TYPE
        SYNTAX        DisplayString (SIZE (0..32))
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "Queueing strategy used for packets."
        ::= { dellNetIfEntry 3 }

       dellNetIfRxFlowCtrl OBJECT-TYPE
        SYNTAX        TruthValue
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "Flow control receive. This will be read-write only for s60"
        ::= { dellNetIfEntry 4 }

       dellNetIfTxFlowCtrl OBJECT-TYPE
        SYNTAX        TruthValue
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "Flow Control transmit.This will be read-only only for s60"
        ::= { dellNetIfEntry 5 }
                
       dellNetIfDescr  OBJECT-TYPE
        SYNTAX        OCTET STRING (SIZE (0..241))
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "A textual string containing information about the interface.
            This will be read-write only for s60"
        ::= { dellNetIfEntry 6 }

       dellNetIfAdminStatus OBJECT-TYPE
        SYNTAX        INTEGER{
                        up (1),
                        down(2)
                        }
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "A admin status of any interface.
            This will be read-write only for s60"
        ::= { dellNetIfEntry 7 }

       dellNetIfRateInterval  OBJECT-TYPE
        SYNTAX        Unsigned32 (30..299)
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The rate info interval for the interface.
            This will be read-write only for s60"
        ::= { dellNetIfEntry 8 }

       dellNetIfSpeed  OBJECT-TYPE
        SYNTAX        INTEGER{
                  auto (1),
                  tenMbps (10),
                  hundredMbps (100),
                  thousandMbps (1000)
               }
        MAX-ACCESS    read-write
        STATUS        current
        DESCRIPTION
            "The interface's current bandwidth in bits per second.
            This will be read-write only for s60"
        ::= { dellNetIfEntry 9 }

        dellNetIfPortListBitPos    OBJECT-TYPE
        SYNTAX         Integer32 
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
        "This is used for identifying the bit position in PortList Object for a given interface."
        ::= { dellNetIfEntry 10 }


    --
    -- Interface Statistics Table
    --
    
      dellNetIfStaticsTable     OBJECT-TYPE
        SYNTAX        SEQUENCE OF DellNetIfStaticsEntry
        MAX-ACCESS    not-accessible
        STATUS        current
        DESCRIPTION
            "The statistcs information of the interfaces for performance monitoring." 
        ::= { dellNetIfExtensionStats 1 }

      dellNetIfStaticsEntry  OBJECT-TYPE 
        SYNTAX        DellNetIfStaticsEntry
        MAX-ACCESS    not-accessible
        STATUS        current
        DESCRIPTION
            "A row defintion of Dell Networking OS Extension 
             interface statistics."
        INDEX    { ifIndex }
        ::= { dellNetIfStaticsTable 1 }

      DellNetIfStaticsEntry    ::=
        SEQUENCE {
           dellNetIfInVlanPkts                Counter64,
           dellNetIfIn64BytePkts              Counter64,
           dellNetifIn65To127BytePkts         Counter64,
           dellNetIfIn128To255BytePkts        Counter64,
           dellNetIfIn256To511BytePkts        Counter64, 
           dellNetIfIn512To1023BytePkts       Counter64,
           dellNetIfInOver1023BytePkts        Counter64,
           dellNetIfInThrottles               Counter64,
           dellNetIfInRunts                   Counter64,
           dellNetIfInGiants                  Counter64,
           dellNetIfInCRC                     Counter64,
           dellNetIfInOverruns                Counter64, 
           dellNetIfOutVlanPkts               Counter64,
           dellNetIfOutUnderruns              Counter64,
           dellNetIfOutUnicasts               Counter64,
           dellNetIfOutCollisions             Counter64,
           dellNetIfOutWredDrops              Counter64,
           dellNetIfOut64BytePkts             Counter64,
           dellNetIfOut65To127BytePkts        Counter64,
           dellNetIfOut128To255BytePkts       Counter64,
           dellNetIfOut256To511BytePkts       Counter64,
           dellNetIfOut512To1023BytePkts      Counter64,
           dellNetIfOutOver1023BytePkts       Counter64,
           dellNetIfOutThrottles              Counter64,
           dellNetIfLastDiscontinuityTime     TimeStamp,
           dellNetIfInCentRate                Integer32,
           dellNetIfOutCentRate               Integer32
        }
       
       dellNetIfInVlanPkts OBJECT-TYPE
        SYNTAX        Counter64
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
             "The total number of valid VLAN Tagged 
             frames received." 
        ::= { dellNetIfStaticsEntry 1 }
        
       dellNetIfIn64BytePkts OBJECT-TYPE
        SYNTAX        Counter64
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
             "The total number of frames (including bad
             frames) received that were 64 octets in length 
             (excluding framing bits but in-cluding FCS octets)." 
        ::= { dellNetIfStaticsEntry 2 }

       dellNetifIn65To127BytePkts OBJECT-TYPE
        SYNTAX        Counter64
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
             "The total number of frames (including bad 
             frames) received that were between 65 and 127
             octets in length inclusive (ex-cluding framing
             bits but including FCS octets)." 
        ::= { dellNetIfStaticsEntry 3 }
                
       dellNetIfIn128To255BytePkts OBJECT-TYPE
        SYNTAX        Counter64
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
             "The total number of frames (including bad
             frames) received that were between 128 and 255 
             octets in length inclusive (excluding framing
             bits but including FCS octets)." 
        ::= { dellNetIfStaticsEntry 4 }
        
       dellNetIfIn256To511BytePkts OBJECT-TYPE
        SYNTAX        Counter64
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
             "The total number of frames (including bad 
             frames) received that were between 256 and 511 
             octets in length inclusive (excluding framing 
             bits but including FCS octets)." 
        ::= { dellNetIfStaticsEntry 5 }        
        
       dellNetIfIn512To1023BytePkts OBJECT-TYPE
        SYNTAX        Counter64
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
             "The total number of frames (including bad 
             frames) received that were between 512 and 1023
             octets in length inclusive (excluding framing 
             bits but including FCS octets)." 
        ::= { dellNetIfStaticsEntry 6 }
                
       dellNetIfInOver1023BytePkts OBJECT-TYPE
        SYNTAX        Counter64
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
             "The total number of frames received that
              were longer than 1023 (1025 Bytes in case of
              VLAN Tag) octets (excluding framing bits, but
              including FCS octets) and were otherwise
              well formed. This counter is not incremented 
              for too long frames."  
        ::= { dellNetIfStaticsEntry 7 }
                
       dellNetIfInThrottles OBJECT-TYPE
        SYNTAX        Counter64
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
             "This counter is incremented when a valid 
             frame with a length or type field value equal
             to 0x8808 (Control Frame) is re-ceived." 
        ::= { dellNetIfStaticsEntry 8 }
                
       dellNetIfInRunts OBJECT-TYPE
        SYNTAX        Counter64
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
             "The total number of frames received that were
             less than 64 octets long (excluding framing bits, 
             but including FCS octets) and were otherwise 
             well formed."  
        ::= { dellNetIfStaticsEntry 9 }
                
       dellNetIfInGiants OBJECT-TYPE
        SYNTAX        Counter64
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
             "The total number of frames received that were 
             longer than 1518 (1522 Bytes in case of VLAN Tag) 
             octets (excluding framing bits, but including FCS
             octets) and were otherwise well formed. This counter
             is not incremented for too long frames."  
        ::= { dellNetIfStaticsEntry 10 }
                
       dellNetIfInCRC OBJECT-TYPE
        SYNTAX        Counter64
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
             "The total number of frames received that had
             a length (ex-cluding framing bits, but including
             FCS octets) of between 64 and 1518 octets, 
             inclusive, but had a bad CRC."  
        ::= { dellNetIfStaticsEntry 11 }
                
       dellNetIfInOverruns OBJECT-TYPE
        SYNTAX        Counter64
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
             "The total number of frames dropped because 
             of buffer issue." 
        ::= { dellNetIfStaticsEntry 12 }
                
       dellNetIfOutVlanPkts OBJECT-TYPE
        SYNTAX        Counter64
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
             "The Number of Good VLAN Tagged Frames sent 
             successfully." 
        ::= { dellNetIfStaticsEntry 13 }
                
       dellNetIfOutUnderruns OBJECT-TYPE
        SYNTAX        Counter64
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
             "The total number of frames dropped because 
             of buffer underrun." 
        ::= { dellNetIfStaticsEntry 14 }
                
       dellNetIfOutUnicasts OBJECT-TYPE
        SYNTAX        Counter64
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
             "The Number of Good Unicast Frames sent successfully." 
        ::= { dellNetIfStaticsEntry 15 }
                
       dellNetIfOutCollisions OBJECT-TYPE
        SYNTAX        Counter64
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
             "A count of the frames that due to excessive 
             or late collisions are not transmitted successfully."  
        ::= { dellNetIfStaticsEntry 16 }
                
       dellNetIfOutWredDrops OBJECT-TYPE
        SYNTAX        Counter64
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
             "A count of the frames that are dropped using 
             WRED policy because of to excessive traffic." 
        ::= { dellNetIfStaticsEntry 17 }
                
       dellNetIfOut64BytePkts OBJECT-TYPE
        SYNTAX        Counter64
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
             "The Number of Good Frames sent successfully 
             whose size was 64 Bytes." 
        ::= { dellNetIfStaticsEntry 18 }
                
       dellNetIfOut65To127BytePkts OBJECT-TYPE
        SYNTAX        Counter64
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
             "The Number of Good Frames sent successfully 
             whose size was in the range of 65 to 127 Bytes." 
        ::= { dellNetIfStaticsEntry 19 } 
               
       dellNetIfOut128To255BytePkts OBJECT-TYPE
        SYNTAX        Counter64
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
             "The Number of Good Frames sent successfully 
             whose size was in the range of 128 to 255 Bytes." 
        ::= { dellNetIfStaticsEntry 20 }
               
       dellNetIfOut256To511BytePkts OBJECT-TYPE
        SYNTAX        Counter64
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
             "The Number of Good Frames sent successfully 
             whose size was in the range of 256 to 511 Bytes." 
        ::= { dellNetIfStaticsEntry 21 }
                       
       dellNetIfOut512To1023BytePkts OBJECT-TYPE
        SYNTAX        Counter64
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
             "The Number of Good Frames sent successfully 
             whose size was in the range of 512 to 1023 Bytes." 
        ::= { dellNetIfStaticsEntry 22 }             
          
       dellNetIfOutOver1023BytePkts OBJECT-TYPE
        SYNTAX        Counter64
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
             "The Number of Good Frames sent successfully 
             whose size was greater than 1023 Bytes." 
        ::= { dellNetIfStaticsEntry 23 }               
                
       dellNetIfOutThrottles OBJECT-TYPE
        SYNTAX        Counter64
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
             "This counter is incremented when a valid 
             frame with a length or type field value equal
             to 0x8808 (Control Frame) is sent." 
        ::= { dellNetIfStaticsEntry 24 }
               
       dellNetIfLastDiscontinuityTime OBJECT-TYPE
        SYNTAX        TimeStamp
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
            "The value of sysUpTime on the most recent occasion
            at which this interface's counters suffered a 
            discontinuity via a reset. If no such discontinuities 
            have occurred since the last reinitialization of 
            the local management subsystem, then this object
            contains a zero value."
        ::= { dellNetIfStaticsEntry 25 }

       dellNetIfInCentRate OBJECT-TYPE
        SYNTAX        Integer32 (0..100)
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
             "This is the ingress rate in percentage.
             This is an integer value which can go from 0 to 100." 
        ::= { dellNetIfStaticsEntry 26 }

       dellNetIfOutCentRate OBJECT-TYPE
        SYNTAX        Integer32 (0..100)
        MAX-ACCESS    read-only
        STATUS        current
        DESCRIPTION
             "This is the egress rate in percentage.
             This is an integer value which can go from 0 to 100." 
        ::= { dellNetIfStaticsEntry 27 }



    -- ### conformance information ###
    dellNetIfExtensionMibConformance OBJECT IDENTIFIER ::= { dellNetIfExtensionMib 2 }
    dellNetIfExtensionMibCompliances OBJECT IDENTIFIER ::= { dellNetIfExtensionMibConformance 1 }
    dellNetIfExtensionMibGroups      OBJECT IDENTIFIER ::= { dellNetIfExtensionMibConformance 2 }

    -- ## compliance statements
    dellNetIfExtensionMibCompliance    MODULE-COMPLIANCE
        STATUS                  current
        DESCRIPTION
            "The compliance statement for Dell Networking OS
            IF Extension MIB."
        MODULE    -- this module
        MANDATORY-GROUPS {
            dellNetIfParamsGroup,
            dellNetIfStatsGroup
        }
        ::= { dellNetIfExtensionMibCompliances 1 }

    -- ## units of conformance

    dellNetIfParamsGroup OBJECT-GROUP
        OBJECTS {
           dellNetIfIpMtu,
           dellNetIfDuplexMode,
           dellNetIfQueueingStrategy,
           dellNetIfRxFlowCtrl,
           dellNetIfTxFlowCtrl,
           dellNetIfDescr,
           dellNetIfAdminStatus,
           dellNetIfRateInterval,
           dellNetIfSpeed, 
           dellNetIfPortListBitPos 
        }
        STATUS    current
        DESCRIPTION
            "A collection of objects providing the
            Dell Networking OS IF Extenstion parameters."
        ::= { dellNetIfExtensionMibGroups 1 }

    dellNetIfStatsGroup    OBJECT-GROUP
        OBJECTS {
           dellNetIfInVlanPkts,
           dellNetIfIn64BytePkts,
           dellNetifIn65To127BytePkts,
           dellNetIfIn128To255BytePkts,
           dellNetIfIn256To511BytePkts, 
           dellNetIfIn512To1023BytePkts,
           dellNetIfInOver1023BytePkts,
           dellNetIfInThrottles,
           dellNetIfInRunts,
           dellNetIfInGiants,
           dellNetIfInCRC,
           dellNetIfInOverruns, 
           dellNetIfOutVlanPkts,
           dellNetIfOutUnderruns,
           dellNetIfOutUnicasts,
           dellNetIfOutCollisions,
           dellNetIfOutWredDrops,
           dellNetIfOut64BytePkts,
           dellNetIfOut65To127BytePkts,
           dellNetIfOut128To255BytePkts,
           dellNetIfOut256To511BytePkts,
           dellNetIfOut512To1023BytePkts,
           dellNetIfOutOver1023BytePkts,
           dellNetIfOutThrottles,
           dellNetIfLastDiscontinuityTime,
           dellNetIfInCentRate,
           dellNetIfOutCentRate
        }
        STATUS    current
        DESCRIPTION
            "A collection of objects providing the
            interface statistics."
        ::= { dellNetIfExtensionMibGroups 2 }

    END

