github.com/influxdata/telegraf@v1.30.3/internal/snmp/testdata/gosmi/ifPhysAddress (about)

     1  IF-MIB DEFINITIONS ::= BEGIN
     2  
     3  IMPORTS
     4          MODULE-IDENTITY, OBJECT-TYPE, Integer32, mib-2,
     5          PhysAddress             FROM ifPhysAddressImports;
     6  
     7  ifMIB MODULE-IDENTITY
     8      LAST-UPDATED "200006140000Z"
     9      ORGANIZATION "IETF Interfaces MIB Working Group"
    10      CONTACT-INFO
    11              "   Keith McCloghrie
    12                  Cisco Systems, Inc.
    13                  170 West Tasman Drive
    14                  San Jose, CA  95134-1706
    15                  US
    16  
    17                  408-526-5260
    18                  kzm@cisco.com"
    19      DESCRIPTION
    20              "The MIB module to describe generic objects for network
    21              interface sub-layers.  This MIB is an updated version of
    22              MIB-II's ifTable, and incorporates the extensions defined in
    23              RFC 1229."
    24  
    25      REVISION      "200006140000Z"
    26      DESCRIPTION
    27              "Clarifications agreed upon by the Interfaces MIB WG, and
    28              published as RFC 2863."
    29      REVISION      "199602282155Z"
    30      DESCRIPTION
    31              "Revisions made by the Interfaces MIB WG, and published in
    32              RFC 2233."
    33      REVISION      "199311082155Z"
    34      DESCRIPTION
    35              "Initial revision, published as part of RFC 1573."
    36      ::= { mib-2 31 }
    37  
    38  ifMIBObjects OBJECT IDENTIFIER ::= { ifMIB 1 }
    39  
    40  interfaces   OBJECT IDENTIFIER ::= { mib-2 2 }
    41  
    42  
    43  ifTable OBJECT-TYPE
    44      SYNTAX      SEQUENCE OF IfEntry
    45      MAX-ACCESS  not-accessible
    46      STATUS      current
    47      DESCRIPTION
    48              "A list of interface entries.  The number of entries is
    49              given by the value of ifNumber."
    50      ::= { interfaces 2 }
    51  
    52  ifEntry OBJECT-TYPE
    53      SYNTAX      IfEntry
    54      MAX-ACCESS  not-accessible
    55      STATUS      current
    56      DESCRIPTION
    57              "An entry containing management information applicable to a
    58              particular interface."
    59      INDEX   { ifIndex }
    60      ::= { ifTable 1 }
    61  
    62  
    63  
    64  ifPhysAddress OBJECT-TYPE
    65                SYNTAX  PhysAddress
    66                ACCESS  read-only
    67                STATUS  mandatory
    68                DESCRIPTION
    69                        "The interface's address at the protocol layer
    70                        immediately `below' the network layer in the
    71                        protocol stack.  For interfaces which do not have
    72                        such an address (e.g., a serial line), this object
    73                        should contain an octet string of zero length."
    74                ::= { ifEntry 6 }
    75  
    76  foo OBJECT-TYPE 
    77              SYNTAX Integer32
    78              ACCESS read-only
    79              STATUS current 
    80              DESCRIPTION
    81                  "foo mib for testing"
    82              ::= { ifEntry 9 }
    83      
    84  END