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.

164 lines
5.9 KiB

  1. FTPSERVER-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. ftpServer OBJECT IDENTIFIER ::= { internetServer 2 }
  13. ftpStatistics OBJECT IDENTIFIER ::= { ftpServer 1 }
  14. -- FTP 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 FTP Server"
  22. ::= { ftpStatistics 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 FTP Server"
  30. ::= { ftpStatistics 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 FTP Server"
  38. ::= { ftpStatistics 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 FTP Server"
  46. ::= { ftpStatistics 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. FTP Server"
  54. ::= { ftpStatistics 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. FTP Server"
  62. ::= { ftpStatistics 6 }
  63. currentAnonymousUsers OBJECT-TYPE
  64. SYNTAX INTEGER
  65. ACCESS read-only
  66. STATUS mandatory
  67. DESCRIPTION
  68. "This is the number of anonymous users currently
  69. connected to the FTP Server"
  70. ::= { ftpStatistics 7 }
  71. currentNonAnonymousUsers OBJECT-TYPE
  72. SYNTAX INTEGER
  73. ACCESS read-only
  74. STATUS mandatory
  75. DESCRIPTION
  76. "This is the number of nonanonymous users currently
  77. connected to the FTP Server"
  78. ::= { ftpStatistics 8 }
  79. totalAnonymousUsers OBJECT-TYPE
  80. SYNTAX Counter
  81. ACCESS read-only
  82. STATUS mandatory
  83. DESCRIPTION
  84. "This is the total number of anonymous users that
  85. have ever connected to the FTP Server"
  86. ::= { ftpStatistics 9 }
  87. totalNonAnonymousUsers OBJECT-TYPE
  88. SYNTAX Counter
  89. ACCESS read-only
  90. STATUS mandatory
  91. DESCRIPTION
  92. "This is the total number of nonanonymous users that
  93. have ever connected to the FTP Server"
  94. ::= { ftpStatistics 10 }
  95. maxAnonymousUsers OBJECT-TYPE
  96. SYNTAX Counter
  97. ACCESS read-only
  98. STATUS mandatory
  99. DESCRIPTION
  100. "This is the maximum number of anonymous users
  101. simultaneously connected to the FTP Server"
  102. ::= { ftpStatistics 11 }
  103. maxNonAnonymousUsers OBJECT-TYPE
  104. SYNTAX Counter
  105. ACCESS read-only
  106. STATUS mandatory
  107. DESCRIPTION
  108. "This is the maximum number of nonanonymous users
  109. simultaneously connected to the FTP Server"
  110. ::= { ftpStatistics 12 }
  111. currentConnections OBJECT-TYPE
  112. SYNTAX INTEGER
  113. ACCESS read-only
  114. STATUS mandatory
  115. DESCRIPTION
  116. "This is the current number of connections to the
  117. FTP Server"
  118. ::= { ftpStatistics 13 }
  119. maxConnections OBJECT-TYPE
  120. SYNTAX Counter
  121. ACCESS read-only
  122. STATUS mandatory
  123. DESCRIPTION
  124. "This is the maximum number of simultaneous
  125. connections to the FTP Server"
  126. ::= { ftpStatistics 14 }
  127. connectionAttempts OBJECT-TYPE
  128. SYNTAX Counter
  129. ACCESS read-only
  130. STATUS mandatory
  131. DESCRIPTION
  132. "This is the number of connection attempts that
  133. have been made to the FTP Server"
  134. ::= { ftpStatistics 15 }
  135. logonAttempts OBJECT-TYPE
  136. SYNTAX Counter
  137. ACCESS read-only
  138. STATUS mandatory
  139. DESCRIPTION
  140. "This is the number of logon attempts that have
  141. been made to the FTP Server"
  142. ::= { ftpStatistics 16 }
  143. END