Source code of Windows XP (NT5)
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.7 KiB

  1. GopherServer-MIB DEFINITIONS ::= BEGIN
  2. IMPORTS
  3. enterprises,
  4. OBJECT-TYPE,
  5. Counter
  6. FROM RFC1155-SMI
  7. InternetServer
  8. FROM inetsrv;
  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. TotalBytesSent_HighWord 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. TotalBytesSent_LowWord 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. TotalBytesReceived_HighWord 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. TotalBytesReceived_LowWord 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
  160.