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.

515 lines
19 KiB

  1. NntpServer-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. nntpServer OBJECT IDENTIFIER ::= { internetServer 6 }
  13. nntpStatistics OBJECT IDENTIFIER ::= { nntpServer 1 }
  14. -- NNTP 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 NNTP Server"
  22. ::= { nntpStatistics 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 NNTP Server"
  30. ::= { nntpStatistics 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 NNTP Server"
  38. ::= { nntpStatistics 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 NNTP Server"
  46. ::= { nntpStatistics 4 }
  47. totalConnections OBJECT-TYPE
  48. SYNTAX Counter
  49. ACCESS read-only
  50. STATUS mandatory
  51. DESCRIPTION
  52. "This is the total number of connections made to this
  53. NNTP Server"
  54. ::= { nntpStatistics 5 }
  55. totalSslConnections OBJECT-TYPE
  56. SYNTAX Counter
  57. ACCESS read-only
  58. STATUS mandatory
  59. DESCRIPTION
  60. "This is the total number of SSL connections made
  61. to this NNTP Server"
  62. ::= { nntpStatistics 6 }
  63. currentConnections OBJECT-TYPE
  64. SYNTAX INTEGER
  65. ACCESS read-only
  66. STATUS mandatory
  67. DESCRIPTION
  68. "This is the number of sessions currently
  69. connected to the NNTP Server"
  70. ::= { nntpStatistics 7 }
  71. maxConnections OBJECT-TYPE
  72. SYNTAX INTEGER
  73. ACCESS read-only
  74. STATUS mandatory
  75. DESCRIPTION
  76. "This is the maximum number of users simulateously
  77. connected to the NNTP Server"
  78. ::= { nntpStatistics 8 }
  79. logonAttempts OBJECT-TYPE
  80. SYNTAX Counter
  81. ACCESS read-only
  82. STATUS mandatory
  83. DESCRIPTION
  84. "This is the total number of logon attempts
  85. against the NNTP Server"
  86. ::= { nntpStatistics 9 }
  87. logonFailures OBJECT-TYPE
  88. SYNTAX Counter
  89. ACCESS read-only
  90. STATUS mandatory
  91. DESCRIPTION
  92. "This is the total number of logon attempts
  93. that failed against the NNTP Server"
  94. ::= { nntpStatistics 10 }
  95. currentAnonymousUsers OBJECT-TYPE
  96. SYNTAX Counter
  97. ACCESS read-only
  98. STATUS mandatory
  99. DESCRIPTION
  100. "This is the current number of anonymous users
  101. connected to the NNTP Server"
  102. ::= { nntpStatistics 11 }
  103. currentNonAnonymousUsers OBJECT-TYPE
  104. SYNTAX Counter
  105. ACCESS read-only
  106. STATUS mandatory
  107. DESCRIPTION
  108. "This is the current number of nonanonymous users
  109. connected to the NNTP Server"
  110. ::= { nntpStatistics 12 }
  111. totalAnonymousUsers OBJECT-TYPE
  112. SYNTAX Counter
  113. ACCESS read-only
  114. STATUS mandatory
  115. DESCRIPTION
  116. "This is the total number of anonymous users
  117. connected to the NNTP Server"
  118. ::= { nntpStatistics 13 }
  119. totalNonAnonymousUsers OBJECT-TYPE
  120. SYNTAX Counter
  121. ACCESS read-only
  122. STATUS mandatory
  123. DESCRIPTION
  124. "This is the total number of nonanonymous users
  125. connected to the NNTP Server"
  126. ::= { nntpStatistics 14 }
  127. maxAnonymousUsers OBJECT-TYPE
  128. SYNTAX Counter
  129. ACCESS read-only
  130. STATUS mandatory
  131. DESCRIPTION
  132. "This is the maximum number of anonymous users
  133. simultaneously connected to the NNTP Server"
  134. ::= { nntpStatistics 15 }
  135. maxNonAnonymousUsers OBJECT-TYPE
  136. SYNTAX Counter
  137. ACCESS read-only
  138. STATUS mandatory
  139. DESCRIPTION
  140. "This is the maximum number of nonanonymous users
  141. simultaneously connected to the NNTP Server"
  142. ::= { nntpStatistics 16 }
  143. totalOutboundConnects OBJECT-TYPE
  144. SYNTAX INTEGER
  145. ACCESS read-only
  146. STATUS mandatory
  147. DESCRIPTION
  148. "This is the total number of outbound connections
  149. that have been made by the NNTP Server"
  150. ::= { nntpStatistics 17 }
  151. outboundConnectFailures OBJECT-TYPE
  152. SYNTAX INTEGER
  153. ACCESS read-only
  154. STATUS mandatory
  155. DESCRIPTION
  156. "This is the total number of failed outbound
  157. connections made by the NNTP Server"
  158. ::= { nntpStatistics 18 }
  159. currentOutboundConnects OBJECT-TYPE
  160. SYNTAX INTEGER
  161. ACCESS read-only
  162. STATUS mandatory
  163. DESCRIPTION
  164. "This is the current number of outbound connections
  165. made by the NNTP Server"
  166. ::= { nntpStatistics 19 }
  167. outboundLogonFailures OBJECT-TYPE
  168. SYNTAX INTEGER
  169. ACCESS read-only
  170. STATUS mandatory
  171. DESCRIPTION
  172. "This is the total number of failed outbound logons
  173. made by the NNTP Server"
  174. ::= { nntpStatistics 20 }
  175. totalPushFeeds OBJECT-TYPE
  176. SYNTAX Counter
  177. ACCESS read-only
  178. STATUS mandatory
  179. DESCRIPTION
  180. "This is the total number of push feeds
  181. made by the NNTP Server"
  182. ::= { nntpStatistics 21 }
  183. totalPullFeeds OBJECT-TYPE
  184. SYNTAX Counter
  185. ACCESS read-only
  186. STATUS mandatory
  187. DESCRIPTION
  188. "This is the total number of pull feeds
  189. made to the NNTP Server"
  190. ::= { nntpStatistics 22 }
  191. totalPassiveFeeds OBJECT-TYPE
  192. SYNTAX Counter
  193. ACCESS read-only
  194. STATUS mandatory
  195. DESCRIPTION
  196. "This is the total number of passive feeds
  197. accepted by the NNTP Server"
  198. ::= { nntpStatistics 23 }
  199. totalArticlesSent OBJECT-TYPE
  200. SYNTAX Counter
  201. ACCESS read-only
  202. STATUS mandatory
  203. DESCRIPTION
  204. "This is the total number of articles sent
  205. by the NNTP Server"
  206. ::= { nntpStatistics 24 }
  207. totalArticlesReceived OBJECT-TYPE
  208. SYNTAX Counter
  209. ACCESS read-only
  210. STATUS mandatory
  211. DESCRIPTION
  212. "This is the total number of articles received
  213. by the NNTP Server"
  214. ::= { nntpStatistics 25 }
  215. totalArticlesPosted OBJECT-TYPE
  216. SYNTAX Counter
  217. ACCESS read-only
  218. STATUS mandatory
  219. DESCRIPTION
  220. "This is the total number of articles posted
  221. to the NNTP Server"
  222. ::= { nntpStatistics 26 }
  223. currentArticleMapEntries OBJECT-TYPE
  224. SYNTAX Counter
  225. ACCESS read-only
  226. STATUS mandatory
  227. DESCRIPTION
  228. "This is the current number of entries in the
  229. article mapping table the NNTP Server"
  230. ::= { nntpStatistics 27 }
  231. currentHistoryMapEntries OBJECT-TYPE
  232. SYNTAX Counter
  233. ACCESS read-only
  234. STATUS mandatory
  235. DESCRIPTION
  236. "This is the current number of entries in the
  237. history mapping table the NNTP Server"
  238. ::= { nntpStatistics 28 }
  239. currentXoverEntries OBJECT-TYPE
  240. SYNTAX Counter
  241. ACCESS read-only
  242. STATUS mandatory
  243. DESCRIPTION
  244. "This is the current number of entries in the
  245. XOVER table the NNTP Server"
  246. ::= { nntpStatistics 29 }
  247. currentSessionsFlowControlled OBJECT-TYPE
  248. SYNTAX Counter
  249. ACCESS read-only
  250. STATUS mandatory
  251. DESCRIPTION
  252. "This is the current number of sessions in the
  253. flow control state for the NNTP Server"
  254. ::= { nntpStatistics 30 }
  255. totalArticlesExpired OBJECT-TYPE
  256. SYNTAX Counter
  257. ACCESS read-only
  258. STATUS mandatory
  259. DESCRIPTION
  260. "This is the total number of articles expired
  261. by the NNTP Server"
  262. ::= { nntpStatistics 31 }
  263. totalControlMessagesIn OBJECT-TYPE
  264. SYNTAX Counter
  265. ACCESS read-only
  266. STATUS mandatory
  267. DESCRIPTION
  268. "This is the total number of control messages received
  269. by the NNTP Server"
  270. ::= { nntpStatistics 32 }
  271. totalControlMessagesFailed OBJECT-TYPE
  272. SYNTAX Counter
  273. ACCESS read-only
  274. STATUS mandatory
  275. DESCRIPTION
  276. "This is the total number of control messages failed or not applied
  277. by the NNTP Server"
  278. ::= { nntpStatistics 33 }
  279. totalModeratedPostingsSent OBJECT-TYPE
  280. SYNTAX Counter
  281. ACCESS read-only
  282. STATUS mandatory
  283. DESCRIPTION
  284. "This is the total number of moderated postings the NNTP Server
  285. attempts to send to an SMTP Server"
  286. ::= { nntpStatistics 34 }
  287. totalModeratedPostingsFailed OBJECT-TYPE
  288. SYNTAX Counter
  289. ACCESS read-only
  290. STATUS mandatory
  291. DESCRIPTION
  292. "This is the total number of moderated postings the NNTP Server
  293. fails to send to an SMTP Server"
  294. ::= { nntpStatistics 35 }
  295. totalArticleCommands OBJECT-TYPE
  296. SYNTAX Counter
  297. ACCESS read-only
  298. STATUS mandatory
  299. DESCRIPTION
  300. "This is the total number of ARTICLE commands received
  301. by the NNTP Server"
  302. ::= { nntpStatistics 36 }
  303. totalGroupCommands OBJECT-TYPE
  304. SYNTAX Counter
  305. ACCESS read-only
  306. STATUS mandatory
  307. DESCRIPTION
  308. "This is the total number of GROUP commands received
  309. by the NNTP Server"
  310. ::= { nntpStatistics 37 }
  311. totalHelpCommands OBJECT-TYPE
  312. SYNTAX Counter
  313. ACCESS read-only
  314. STATUS mandatory
  315. DESCRIPTION
  316. "This is the total number of HELP commands received
  317. by the NNTP Server"
  318. ::= { nntpStatistics 38 }
  319. totalIHaveCommands OBJECT-TYPE
  320. SYNTAX Counter
  321. ACCESS read-only
  322. STATUS mandatory
  323. DESCRIPTION
  324. "This is the total number of IHAVE commands received
  325. by the NNTP Server"
  326. ::= { nntpStatistics 39 }
  327. totalLastCommands OBJECT-TYPE
  328. SYNTAX Counter
  329. ACCESS read-only
  330. STATUS mandatory
  331. DESCRIPTION
  332. "This is the total number of LAST commands received
  333. by the NNTP Server"
  334. ::= { nntpStatistics 40 }
  335. totalListCommands OBJECT-TYPE
  336. SYNTAX Counter
  337. ACCESS read-only
  338. STATUS mandatory
  339. DESCRIPTION
  340. "This is the total number of LIST commands received
  341. by the NNTP Server"
  342. ::= { nntpStatistics 41 }
  343. totalNewgroupsCommands OBJECT-TYPE
  344. SYNTAX Counter
  345. ACCESS read-only
  346. STATUS mandatory
  347. DESCRIPTION
  348. "This is the total number of NEWGROUPS commands received
  349. by the NNTP Server"
  350. ::= { nntpStatistics 42 }
  351. totalNewnewsCommands OBJECT-TYPE
  352. SYNTAX Counter
  353. ACCESS read-only
  354. STATUS mandatory
  355. DESCRIPTION
  356. "This is the total number of NEWNEWS commands received
  357. by the NNTP Server"
  358. ::= { nntpStatistics 43 }
  359. totalNextCommands OBJECT-TYPE
  360. SYNTAX Counter
  361. ACCESS read-only
  362. STATUS mandatory
  363. DESCRIPTION
  364. "This is the total number of NEXT commands received
  365. by the NNTP Server"
  366. ::= { nntpStatistics 44 }
  367. totalPostCommands OBJECT-TYPE
  368. SYNTAX Counter
  369. ACCESS read-only
  370. STATUS mandatory
  371. DESCRIPTION
  372. "This is the total number of POST commands received
  373. by the NNTP Server"
  374. ::= { nntpStatistics 45 }
  375. totalQuitCommands OBJECT-TYPE
  376. SYNTAX Counter
  377. ACCESS read-only
  378. STATUS mandatory
  379. DESCRIPTION
  380. "This is the total number of QUIT commands received
  381. by the NNTP Server"
  382. ::= { nntpStatistics 46 }
  383. totalStatCommands OBJECT-TYPE
  384. SYNTAX Counter
  385. ACCESS read-only
  386. STATUS mandatory
  387. DESCRIPTION
  388. "This is the total number of STAT commands received
  389. by the NNTP Server"
  390. ::= { nntpStatistics 47 }
  391. totalCheckCommands OBJECT-TYPE
  392. SYNTAX Counter
  393. ACCESS read-only
  394. STATUS mandatory
  395. DESCRIPTION
  396. "This is the total number of CHECK commands received
  397. by the NNTP Server"
  398. ::= { nntpStatistics 48 }
  399. totalTakethisCommands OBJECT-TYPE
  400. SYNTAX Counter
  401. ACCESS read-only
  402. STATUS mandatory
  403. DESCRIPTION
  404. "This is the total number of TAKETHIS commands received
  405. by the NNTP Server"
  406. ::= { nntpStatistics 49 }
  407. totalModeCommands OBJECT-TYPE
  408. SYNTAX Counter
  409. ACCESS read-only
  410. STATUS mandatory
  411. DESCRIPTION
  412. "This is the total number of MODE commands received
  413. by the NNTP Server"
  414. ::= { nntpStatistics 50 }
  415. totalSearchCommands OBJECT-TYPE
  416. SYNTAX Counter
  417. ACCESS read-only
  418. STATUS mandatory
  419. DESCRIPTION
  420. "This is the total number of SEARCH commands received
  421. by the NNTP Server"
  422. ::= { nntpStatistics 51 }
  423. totalXHdrCommands OBJECT-TYPE
  424. SYNTAX Counter
  425. ACCESS read-only
  426. STATUS mandatory
  427. DESCRIPTION
  428. "This is the total number of XHDR commands received
  429. by the NNTP Server"
  430. ::= { nntpStatistics 52 }
  431. totalXOverCommands OBJECT-TYPE
  432. SYNTAX Counter
  433. ACCESS read-only
  434. STATUS mandatory
  435. DESCRIPTION
  436. "This is the total number of XOVER commands received
  437. by the NNTP Server"
  438. ::= { nntpStatistics 53 }
  439. totalXPatCommands OBJECT-TYPE
  440. SYNTAX Counter
  441. ACCESS read-only
  442. STATUS mandatory
  443. DESCRIPTION
  444. "This is the total number of XPAT commands received
  445. by the NNTP Server"
  446. ::= { nntpStatistics 54 }
  447. totalXReplicCommands OBJECT-TYPE
  448. SYNTAX Counter
  449. ACCESS read-only
  450. STATUS mandatory
  451. DESCRIPTION
  452. "This is the total number of XREPLIC commands received
  453. by the NNTP Server"
  454. ::= { nntpStatistics 55 }
  455. END