Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

134 lines
5.1 KiB

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