Blame mibs/ietf/RFC1414-MIB

Packit 022b05
RFC1414-MIB DEFINITIONS ::= BEGIN
Packit 022b05
Packit 022b05
IMPORTS
Packit 022b05
    OBJECT-TYPE
Packit 022b05
        FROM RFC-1212
Packit 022b05
    tcpConnLocalAddress, tcpConnLocalPort,
Packit 022b05
    tcpConnRemAddress, tcpConnRemPort, mib-2
Packit 022b05
            FROM RFC1213-MIB;
Packit 022b05
Packit 022b05
Packit 022b05
ident   OBJECT IDENTIFIER ::= { mib-2 24 }
Packit 022b05
Packit 022b05
Packit 022b05
-- conformance groups
Packit 022b05
Packit 022b05
identInfo       OBJECT IDENTIFIER ::= { ident 1 }
Packit 022b05
Packit 022b05
Packit 022b05
-- textual conventions
Packit 022b05
Packit 022b05
-- none
Packit 022b05
Packit 022b05
-- the ident information system group
Packit 022b05
--
Packit 022b05
-- implementation of this group is mandatory
Packit 022b05
Packit 022b05
identTable OBJECT-TYPE
Packit 022b05
        SYNTAX  SEQUENCE OF IdentEntry
Packit 022b05
        ACCESS  not-accessible
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
            "A table containing user information for TCP
Packit 022b05
            connections.
Packit 022b05
Packit 022b05
            Note that this table contains entries for all TCP
Packit 022b05
            connections on a managed system.  The
Packit 022b05
            corresponding instance of tcpConnState (defined in
Packit 022b05
            MIB-II) indicates the state of a particular
Packit 022b05
            connection."
Packit 022b05
        ::= { identInfo 1 }
Packit 022b05
Packit 022b05
identEntry OBJECT-TYPE
Packit 022b05
        SYNTAX  IdentEntry
Packit 022b05
        ACCESS  not-accessible
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
            "User information about a particular TCP
Packit 022b05
            connection."
Packit 022b05
        INDEX   { tcpConnLocalAddress, tcpConnLocalPort,
Packit 022b05
                  tcpConnRemAddress, tcpConnRemPort }
Packit 022b05
        ::= { identTable 1 }
Packit 022b05
Packit 022b05
IdentEntry ::=
Packit 022b05
    SEQUENCE {
Packit 022b05
        identStatus     INTEGER,
Packit 022b05
        identOpSys      OCTET STRING,
Packit 022b05
        identCharset    OCTET STRING,
Packit 022b05
        identUserid     OCTET STRING,
Packit 022b05
        identMisc       OCTET STRING
Packit 022b05
    }
Packit 022b05
Packit 022b05
identStatus OBJECT-TYPE
Packit 022b05
        SYNTAX  INTEGER {
Packit 022b05
                    noError(1),
Packit 022b05
                    unknownError(2)
Packit 022b05
                }
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Indicates whether user information for the
Packit 022b05
            associated TCP connection can be determined.  A
Packit 022b05
            value of `noError(1)' indicates that user
Packit 022b05
            information is available.  A value of
Packit 022b05
            `unknownError(2)' indicates that user information
Packit 022b05
            is not available."
Packit 022b05
        ::= { identEntry 1 }
Packit 022b05
Packit 022b05
identOpSys OBJECT-TYPE
Packit 022b05
        SYNTAX  OCTET STRING (SIZE(0..40))
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Indicates the type of operating system in use.
Packit 022b05
            In addition to identifying an operating system,
Packit 022b05
            each assignment made for this purpose also
Packit 022b05
            (implicitly) identifies the textual format and
Packit 022b05
            maximum size of the corresponding identUserid and
Packit 022b05
            identMisc objects.
Packit 022b05
Packit 022b05
            The legal values for the `indentOpSys' strings
Packit 022b05
            are those listed in the SYSTEM NAMES section of
Packit 022b05
            the most recent edition of the ASSIGNED NUMBERS
Packit 022b05
            RFC [8]."
Packit 022b05
        ::= { identEntry 2 }
Packit 022b05
Packit 022b05
Packit 022b05
identCharset OBJECT-TYPE
Packit 022b05
        SYNTAX  OCTET STRING (SIZE(0..40))
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Indicates the repertoire of the corresponding
Packit 022b05
            identUserid and identMisc objects.
Packit 022b05
Packit 022b05
            The legal values for the `identCharset' strings
Packit 022b05
            are those listed in the CHARACTER SET section of
Packit 022b05
            the most recent edition of the ASSIGNED NUMBERS
Packit 022b05
            RFC [8]."
Packit 022b05
        ::= { identEntry 3 }
Packit 022b05
Packit 022b05
identUserid OBJECT-TYPE
Packit 022b05
        SYNTAX  OCTET STRING (SIZE (0..255))
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Indicates the user's identity.  Interpretation of
Packit 022b05
            this object requires examination of the
Packit 022b05
            corresponding value of the identOpSys and
Packit 022b05
            identCharset objects."
Packit 022b05
        ::= { identEntry 4 }
Packit 022b05
Packit 022b05
identMisc OBJECT-TYPE
Packit 022b05
        SYNTAX  OCTET STRING (SIZE (0..255))
Packit 022b05
        ACCESS  read-only
Packit 022b05
        STATUS  mandatory
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Indicates miscellaneous information about the
Packit 022b05
            user.  Interpretation of this object requires
Packit 022b05
            examination of the corresponding value of the
Packit 022b05
            identOpSys and identCharset objects."
Packit 022b05
        ::= { identEntry 5 }
Packit 022b05
Packit 022b05
Packit 022b05
END