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.6 KiB

  1. GatewayServer-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. GatewayServer OBJECT IDENTIFIER ::= { InternetServer 5 }
  13. GatewayStatistics OBJECT IDENTIFIER ::= { GatewayServer 1 }
  14. -- Gateway 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 Gateway Server"
  22. ::= { GatewayStatistics 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 Gateway Server"
  30. ::= { GatewayStatistics 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 Gateway Server"
  38. ::= { GatewayStatistics 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 Gateway Server"
  46. ::= { GatewayStatistics 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. Gateway Server"
  54. ::= { GatewayStatistics 5 }
  55. TotalFilesReceived OBJECT-TYPE
  56. SYNTAX Counter
  57. ACCESS read-only
  58. STATUS mandatory
  59. DESCRIPTION
  60. "This is the total number of files received by this
  61. Gateway Server"
  62. ::= { GatewayStatistics 6 }
  63. CurrentUsers OBJECT-TYPE
  64. SYNTAX Integer
  65. ACCESS read-only
  66. STATUS mandatory
  67. DESCRIPTION
  68. "This is the number of users currently connected
  69. to the Gateway Server"
  70. ::= { GatewayStatistics 7 }
  71. TotalUsers OBJECT-TYPE
  72. SYNTAX Counter
  73. ACCESS read-only
  74. STATUS mandatory
  75. DESCRIPTION
  76. "This is the total number of users that have
  77. ever connected to the Gateway Server"
  78. ::= { GatewayStatistics 8 }
  79. MaxUsers OBJECT-TYPE
  80. SYNTAX Counter
  81. ACCESS read-only
  82. STATUS mandatory
  83. DESCRIPTION
  84. "This is the maximum number of users
  85. simultaneously connected to the Gateway Server"
  86. ::= { GatewayStatistics 9 }
  87. CurrentConnections OBJECT-TYPE
  88. SYNTAX Integer
  89. ACCESS read-only
  90. STATUS mandatory
  91. DESCRIPTION
  92. "This is the current number of connections to the
  93. Gateway Server"
  94. ::= { GatewayStatistics 10 }
  95. MaxConnections OBJECT-TYPE
  96. SYNTAX Counter
  97. ACCESS read-only
  98. STATUS mandatory
  99. DESCRIPTION
  100. "This is the maximum number of simultaneous
  101. connections to the Gateway Server"
  102. ::= { GatewayStatistics 11 }
  103. ConnectionAttempts OBJECT-TYPE
  104. SYNTAX Counter
  105. ACCESS read-only
  106. STATUS mandatory
  107. DESCRIPTION
  108. "This is the number of connection attempts that
  109. have been made to the Gateway Server"
  110. ::= { GatewayStatistics 12 }
  111. FtpRequests OBJECT-TYPE
  112. SYNTAX Counter
  113. ACCESS read-only
  114. STATUS mandatory
  115. DESCRIPTION
  116. "This is the number of Ftp requests that have
  117. been made to this Gateway Server"
  118. ::= { GatewayStatistics 13 }
  119. GopherRequests OBJECT-TYPE
  120. SYNTAX Counter
  121. ACCESS read-only
  122. STATUS mandatory
  123. DESCRIPTION
  124. "This is the number of Gopher requests that have
  125. been made to this Gateway Server"
  126. ::= { GatewayStatistics 14 }
  127. HttpRequests OBJECT-TYPE
  128. SYNTAX Counter
  129. ACCESS read-only
  130. STATUS mandatory
  131. DESCRIPTION
  132. "This is the number of Http requests that have
  133. been made to this Gateway Server"
  134. ::= { GatewayStatistics 15 }
  135. TotalInternetRequests OBJECT-TYPE
  136. SYNTAX Counter
  137. ACCESS read-only
  138. STATUS mandatory
  139. DESCRIPTION
  140. "This is the number of requests using the GET method
  141. that have been made to this Gateway Server"
  142. ::= { GatewayStatistics 16 }
  143. TotalInternetFetches OBJECT-TYPE
  144. SYNTAX Counter
  145. ACCESS read-only
  146. STATUS mandatory
  147. DESCRIPTION
  148. "This is the number of Internet fetches for the Internet
  149. requests that have been made to this Gateway Server"
  150. ::= { GatewayStatistics 17 }
  151. TotalCacheFetches OBJECT-TYPE
  152. SYNTAX Counter
  153. ACCESS read-only
  154. STATUS mandatory
  155. DESCRIPTION
  156. "This is the number of Cache fetches for the Internet
  157. requests that have been made to this Gateway Server"
  158. ::= { GatewayStatistics 18 }
  159. END