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.

182 lines
6.8 KiB

  1. GopherServer-MIB DEFINITIONS ::= BEGIN
  2. IMPORTS
  3. enterprises,
  4. OBJECT-TYPE,
  5. Counter
  6. FROM RFC1155-SMI
  7. internetServer
  8. FROM INTERNETSERVER-MIB;
  9. -- microsoft OBJECT IDENTIFIER ::= { enterprises 311 }
  10. -- software OBJECT IDENTIFIER ::= { microsoft 1 }
  11. -- internetServer OBJECT IDENTIFIER ::= { software 7 }
  12. gopherServer OBJECT IDENTIFIER ::= { internetServer 4 }
  13. gopherStatistics OBJECT IDENTIFIER ::= { gopherServer 1 }
  14. -- Gopher Server Statistics
  15. totalBytesSentHighWord OBJECT-TYPE
  16. SYNTAX Counter
  17. ACCESS read-only
  18. STATUS mandatory
  19. DESCRIPTION
  20. "This is the high 32-bits of the total number of
  21. of BYTEs sent by the Gopher Server"
  22. ::= { gopherStatistics 1 }
  23. totalBytesSentLowWord OBJECT-TYPE
  24. SYNTAX Counter
  25. ACCESS read-only
  26. STATUS mandatory
  27. DESCRIPTION
  28. "This is the low 32-bits of the total number of
  29. of BYTEs sent by the Gopher Server"
  30. ::= { gopherStatistics 2 }
  31. totalBytesReceivedHighWord OBJECT-TYPE
  32. SYNTAX Counter
  33. ACCESS read-only
  34. STATUS mandatory
  35. DESCRIPTION
  36. "This is the high 32-bits of the total number of
  37. of BYTEs received by the Gopher Server"
  38. ::= { gopherStatistics 3 }
  39. totalBytesReceivedLowWord OBJECT-TYPE
  40. SYNTAX Counter
  41. ACCESS read-only
  42. STATUS mandatory
  43. DESCRIPTION
  44. "This is the low 32-bits of the total number of
  45. of BYTEs received by the Gopher Server"
  46. ::= { gopherStatistics 4 }
  47. totalFilesSent OBJECT-TYPE
  48. SYNTAX Counter
  49. ACCESS read-only
  50. STATUS mandatory
  51. DESCRIPTION
  52. "This is the total number of files sent by this
  53. Gopher Server"
  54. ::= { gopherStatistics 5 }
  55. totalDirectorySent OBJECT-TYPE
  56. SYNTAX Counter
  57. ACCESS read-only
  58. STATUS mandatory
  59. DESCRIPTION
  60. "This is the total number of directory listings sent
  61. by this Gopher Server"
  62. ::= { gopherStatistics 6 }
  63. totalSearchesDone OBJECT-TYPE
  64. SYNTAX Counter
  65. ACCESS read-only
  66. STATUS mandatory
  67. DESCRIPTION
  68. "This is the total number of searches done by this
  69. Gopher Server"
  70. ::= { gopherStatistics 7 }
  71. currentAnonymousUsers OBJECT-TYPE
  72. SYNTAX INTEGER
  73. ACCESS read-only
  74. STATUS mandatory
  75. DESCRIPTION
  76. "This is the number of anonymous users currently
  77. connected to the Gopher Server"
  78. ::= { gopherStatistics 8 }
  79. currentNonAnonymousUsers OBJECT-TYPE
  80. SYNTAX INTEGER
  81. ACCESS read-only
  82. STATUS mandatory
  83. DESCRIPTION
  84. "This is the number of nonanonymous users currently
  85. connected to the Gopher Server"
  86. ::= { gopherStatistics 9 }
  87. totalAnonymousUsers OBJECT-TYPE
  88. SYNTAX Counter
  89. ACCESS read-only
  90. STATUS mandatory
  91. DESCRIPTION
  92. "This is the total number of anonymous users that
  93. have ever connected to the Gopher Server"
  94. ::= { gopherStatistics 10 }
  95. totalNonAnonymousUsers OBJECT-TYPE
  96. SYNTAX Counter
  97. ACCESS read-only
  98. STATUS mandatory
  99. DESCRIPTION
  100. "This is the total number of nonanonymous users that
  101. have ever connected to the Gopher Server"
  102. ::= { gopherStatistics 11 }
  103. maxAnonymousUsers OBJECT-TYPE
  104. SYNTAX Counter
  105. ACCESS read-only
  106. STATUS mandatory
  107. DESCRIPTION
  108. "This is the maximum number of anonymous users
  109. simultaneously connected to the Gopher Server"
  110. ::= { gopherStatistics 12 }
  111. maxNonAnonymousUsers OBJECT-TYPE
  112. SYNTAX Counter
  113. ACCESS read-only
  114. STATUS mandatory
  115. DESCRIPTION
  116. "This is the maximum number of nonanonymous users
  117. simultaneously connected to the Gopher Server"
  118. ::= { gopherStatistics 13 }
  119. currentConnections OBJECT-TYPE
  120. SYNTAX INTEGER
  121. ACCESS read-only
  122. STATUS mandatory
  123. DESCRIPTION
  124. "This is the current number of connections to the
  125. Gopher Server"
  126. ::= { gopherStatistics 14 }
  127. maxConnections OBJECT-TYPE
  128. SYNTAX Counter
  129. ACCESS read-only
  130. STATUS mandatory
  131. DESCRIPTION
  132. "This is the maximum number of simultaneous
  133. connections to the Gopher Server"
  134. ::= { gopherStatistics 15 }
  135. connectionAttempts OBJECT-TYPE
  136. SYNTAX Counter
  137. ACCESS read-only
  138. STATUS mandatory
  139. DESCRIPTION
  140. "This is the number of connection attempts that
  141. have been made to the Gopher Server"
  142. ::= { gopherStatistics 16 }
  143. logonAttempts OBJECT-TYPE
  144. SYNTAX Counter
  145. ACCESS read-only
  146. STATUS mandatory
  147. DESCRIPTION
  148. "This is the number of logon attempts that have
  149. been made to this Gopher Server"
  150. ::= { gopherStatistics 17 }
  151. abortedConnections OBJECT-TYPE
  152. SYNTAX Counter
  153. ACCESS read-only
  154. STATUS mandatory
  155. DESCRIPTION
  156. " This is the number of aborted connections that have
  157. been made to this Gopher Server"
  158. ::= { gopherStatistics 18 }
  159. END