smilint output for ./RFC1414-MIB


Message Severities
SeverityCount
severe1
Message Types
TypeCount
object-identifier-unknown (severe)1

Messages:

RFC1414-MIB

   1: -- extracted from rfc1414.txt
   2: -- at Mon Nov 15 17:11:56 1999
   3: 
   4:           RFC1414-MIB DEFINITIONS ::= BEGIN
   5: 
   6:           IMPORTS
   7:               OBJECT-TYPE
   8:                   FROM RFC-1212
   9:               tcpConnLocalAddress, tcpConnLocalPort,
  10:               tcpConnRemAddress, tcpConnRemPort
  11:                       FROM RFC1213-MIB;
  12: 
  13: 
  14:           ident   OBJECT IDENTIFIER ::= { mib-2 24 }
  14: severe - unknown object identifier label `mib-2'
  15: 
  16: 
  17:           -- conformance groups
  18: 
  19:           identInfo       OBJECT IDENTIFIER ::= { ident 1 }
  20: 
  21: 
  22:           -- textual conventions
  23: 
  24:           -- none
  25: 
  26:           -- the ident information system group
  27:           --
  28:           -- implementation of this group is mandatory
  29: 
  30:           identTable OBJECT-TYPE
  31:                   SYNTAX  SEQUENCE OF IdentEntry
  32:                   ACCESS  not-accessible
  33:                   STATUS  mandatory
  34:                   DESCRIPTION
  35:                       "A table containing user information for TCP
  36:                       connections.
  37: 
  38:                       Note that this table contains entries for all TCP
  39:                       connections on a managed system.  The
  40:                       corresponding instance of tcpConnState (defined in
  41:                       MIB-II) indicates the state of a particular
  42:                       connection."
  43:                   ::= { identInfo 1 }
  44: 
  45:           identEntry OBJECT-TYPE
  46:                   SYNTAX  IdentEntry
  47:                   ACCESS  not-accessible
  48:                   STATUS  mandatory
  49:                   DESCRIPTION
  50:                       "User information about a particular TCP
  51:                       connection."
  52:                   INDEX   { tcpConnLocalAddress, tcpConnLocalPort,
  53:                             tcpConnRemAddress, tcpConnRemPort }
  54:                   ::= { identTable 1 }
  55: 
  56:           IdentEntry ::=
  57:               SEQUENCE {
  58:                   identStatus     INTEGER,
  59:                   identOpSys      OCTET STRING,
  60:                   identCharset    OCTET STRING,
  61:                   identUserid     OCTET STRING,
  62:                   identMisc       OCTET STRING
  63:               }
  64: 
  65:           identStatus OBJECT-TYPE
  66:                   SYNTAX  INTEGER {
  67:                               noError(1),
  68:                               unknownError(2)
  69:                           }
  70:                   ACCESS  read-only
  71:                   STATUS  mandatory
  72:                   DESCRIPTION
  73:                       "Indicates whether user information for the
  74:                       associated TCP connection can be determined.  A
  75:                       value of `noError(1)' indicates that user
  76:                       information is available.  A value of
  77:                       `unknownError(2)' indicates that user information
  78:                       is not available."
  79:                   ::= { identEntry 1 }
  80: 
  81:           identOpSys OBJECT-TYPE
  82:                   SYNTAX  OCTET STRING (SIZE(0..40))
  83:                   ACCESS  read-only
  84:                   STATUS  mandatory
  85:                   DESCRIPTION
  86:                       "Indicates the type of operating system in use.
  87:                       In addition to identifying an operating system,
  88:                       each assignment made for this purpose also
  89:                       (implicitly) identifies the textual format and
  90:                       maximum size of the corresponding identUserid and
  91:                       identMisc objects.
  92: 
  93:                       The legal values for the `indentOpSys' strings
  94:                       are those listed in the SYSTEM NAMES section of
  95:                       the most recent edition of the ASSIGNED NUMBERS
  96:                       RFC [8]."
  97:                   ::= { identEntry 2 }
  98: 
  99: 
 100:           identCharset OBJECT-TYPE
 101:                   SYNTAX  OCTET STRING (SIZE(0..40))
 102:                   ACCESS  read-only
 103:                   STATUS  mandatory
 104:                   DESCRIPTION
 105:                       "Indicates the repertoire of the corresponding
 106:                       identUserid and identMisc objects.
 107: 
 108:                       The legal values for the `identCharset' strings
 109:                       are those listed in the CHARACTER SET section of
 110:                       the most recent edition of the ASSIGNED NUMBERS
 111:                       RFC [8]."
 112:                   ::= { identEntry 3 }
 113: 
 114:           identUserid OBJECT-TYPE
 115:                   SYNTAX  OCTET STRING (SIZE (0..255))
 116:                   ACCESS  read-only
 117:                   STATUS  mandatory
 118:                   DESCRIPTION
 119:                       "Indicates the user's identity.  Interpretation of
 120:                       this object requires examination of the
 121:                       corresponding value of the identOpSys and
 122:                       identCharset objects."
 123:                   ::= { identEntry 4 }
 124: 
 125:           identMisc OBJECT-TYPE
 126:                   SYNTAX  OCTET STRING (SIZE (0..255))
 127:                   ACCESS  read-only
 128:                   STATUS  mandatory
 129:                   DESCRIPTION
 130:                       "Indicates miscellaneous information about the
 131:                       user.  Interpretation of this object requires
 132:                       examination of the corresponding value of the
 133:                       identOpSys and identCharset objects."
 134:                   ::= { identEntry 5 }
 135: 
 136: 
 137:           END