logstash-integration-snmp 4.0.0-java

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (324) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +23 -0
  3. data/CONTRIBUTORS +20 -0
  4. data/Gemfile +11 -0
  5. data/LICENSE +202 -0
  6. data/README.md +89 -0
  7. data/VERSION +1 -0
  8. data/docs/index.asciidoc +202 -0
  9. data/docs/input-snmp.asciidoc +524 -0
  10. data/docs/input-snmptrap.asciidoc +392 -0
  11. data/lib/logstash/inputs/snmp.rb +369 -0
  12. data/lib/logstash/inputs/snmptrap.rb +190 -0
  13. data/lib/logstash/plugin_mixins/snmp/common.rb +197 -0
  14. data/lib/logstash-integration-snmp_jars.rb +6 -0
  15. data/lib/mibs/ietf/ACCOUNTING-CONTROL-MIB.dic +1316 -0
  16. data/lib/mibs/ietf/ADSL-LINE-EXT-MIB.dic +1724 -0
  17. data/lib/mibs/ietf/ADSL-LINE-MIB.dic +7297 -0
  18. data/lib/mibs/ietf/ADSL-TC-MIB.dic +160 -0
  19. data/lib/mibs/ietf/ADSL2-LINE-MIB.dic +8663 -0
  20. data/lib/mibs/ietf/ADSL2-LINE-TC-MIB.dic +1462 -0
  21. data/lib/mibs/ietf/AGENTX-MIB.dic +817 -0
  22. data/lib/mibs/ietf/AGGREGATE-MIB.dic +708 -0
  23. data/lib/mibs/ietf/ALARM-MIB.dic +1734 -0
  24. data/lib/mibs/ietf/APM-MIB.dic +2870 -0
  25. data/lib/mibs/ietf/APPC-MIB.dic +8687 -0
  26. data/lib/mibs/ietf/APPLETALK-MIB.dic +4399 -0
  27. data/lib/mibs/ietf/APPLICATION-MIB.dic +3750 -0
  28. data/lib/mibs/ietf/APPN-DLUR-MIB.dic +972 -0
  29. data/lib/mibs/ietf/APPN-MIB.dic +9364 -0
  30. data/lib/mibs/ietf/APPN-TRAP-MIB.dic +664 -0
  31. data/lib/mibs/ietf/APS-MIB.dic +2430 -0
  32. data/lib/mibs/ietf/ARC-MIB.dic +552 -0
  33. data/lib/mibs/ietf/ATM-ACCOUNTING-INFORMATION-MIB.dic +816 -0
  34. data/lib/mibs/ietf/ATM-MIB.dic +4104 -0
  35. data/lib/mibs/ietf/ATM-TC-MIB.dic +914 -0
  36. data/lib/mibs/ietf/ATM2-MIB.dic +4715 -0
  37. data/lib/mibs/ietf/BFD-STD-MIB.dic +2367 -0
  38. data/lib/mibs/ietf/BFD-TC-STD-MIB.dic +202 -0
  39. data/lib/mibs/ietf/BGP4-MIB.dic +1931 -0
  40. data/lib/mibs/ietf/BLDG-HVAC-MIB.dic +812 -0
  41. data/lib/mibs/ietf/BRIDGE-MIB.dic +2257 -0
  42. data/lib/mibs/ietf/CAPWAP-BASE-MIB.dic +4128 -0
  43. data/lib/mibs/ietf/CAPWAP-DOT11-MIB.dic +482 -0
  44. data/lib/mibs/ietf/CHARACTER-MIB.dic +1140 -0
  45. data/lib/mibs/ietf/CIRCUIT-IF-MIB.dic +493 -0
  46. data/lib/mibs/ietf/CLNS-MIB.dic +1702 -0
  47. data/lib/mibs/ietf/COFFEE-POT-MIB.dic +282 -0
  48. data/lib/mibs/ietf/COPS-CLIENT-MIB.dic +1270 -0
  49. data/lib/mibs/ietf/DECNET-PHIV-MIB.dic +5837 -0
  50. data/lib/mibs/ietf/DIAL-CONTROL-MIB.dic +2139 -0
  51. data/lib/mibs/ietf/DIFFSERV-CONFIG-MIB.dic +378 -0
  52. data/lib/mibs/ietf/DIFFSERV-MIB.dic +5073 -0
  53. data/lib/mibs/ietf/DIRECTORY-SERVER-MIB.dic +1041 -0
  54. data/lib/mibs/ietf/DISMAN-EVENT-MIB.dic +3151 -0
  55. data/lib/mibs/ietf/DISMAN-EXPRESSION-MIB.dic +1716 -0
  56. data/lib/mibs/ietf/DISMAN-NSLOOKUP-MIB.dic +698 -0
  57. data/lib/mibs/ietf/DISMAN-PING-MIB.dic +2635 -0
  58. data/lib/mibs/ietf/DISMAN-SCHEDULE-MIB.dic +1744 -0
  59. data/lib/mibs/ietf/DISMAN-SCRIPT-MIB.dic +2820 -0
  60. data/lib/mibs/ietf/DISMAN-TRACEROUTE-MIB.dic +3239 -0
  61. data/lib/mibs/ietf/DLSW-MIB.dic +5635 -0
  62. data/lib/mibs/ietf/DNS-RESOLVER-MIB.dic +1765 -0
  63. data/lib/mibs/ietf/DNS-SERVER-MIB.dic +1593 -0
  64. data/lib/mibs/ietf/DOCS-BPI-MIB.dic +2634 -0
  65. data/lib/mibs/ietf/DOCS-CABLE-DEVICE-MIB.dic +5042 -0
  66. data/lib/mibs/ietf/DOCS-IETF-BPI2-MIB.dic +5478 -0
  67. data/lib/mibs/ietf/DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB.dic +2447 -0
  68. data/lib/mibs/ietf/DOCS-IETF-QOS-MIB.dic +4886 -0
  69. data/lib/mibs/ietf/DOCS-IETF-SUBMGT-MIB.dic +1331 -0
  70. data/lib/mibs/ietf/DOCS-IF-MIB.dic +7980 -0
  71. data/lib/mibs/ietf/DOT12-IF-MIB.dic +1066 -0
  72. data/lib/mibs/ietf/DOT12-RPTR-MIB.dic +2669 -0
  73. data/lib/mibs/ietf/DOT3-EPON-MIB.dic +3297 -0
  74. data/lib/mibs/ietf/DOT3-OAM-MIB.dic +2830 -0
  75. data/lib/mibs/ietf/DS0-MIB.dic +466 -0
  76. data/lib/mibs/ietf/DS0BUNDLE-MIB.dic +468 -0
  77. data/lib/mibs/ietf/DS1-MIB.dic +4890 -0
  78. data/lib/mibs/ietf/DS3-MIB.dic +2719 -0
  79. data/lib/mibs/ietf/DSA-MIB.dic +888 -0
  80. data/lib/mibs/ietf/DSMON-MIB.dic +6177 -0
  81. data/lib/mibs/ietf/DVB-RCS-MIB.dic +5764 -0
  82. data/lib/mibs/ietf/EBN-MIB.dic +1026 -0
  83. data/lib/mibs/ietf/EFM-CU-MIB.dic +4335 -0
  84. data/lib/mibs/ietf/ENTITY-MIB.dic +2235 -0
  85. data/lib/mibs/ietf/ENTITY-SENSOR-MIB.dic +653 -0
  86. data/lib/mibs/ietf/ENTITY-STATE-MIB.dic +457 -0
  87. data/lib/mibs/ietf/ENTITY-STATE-TC-MIB.dic +260 -0
  88. data/lib/mibs/ietf/ETHER-CHIPSET-MIB.dic +787 -0
  89. data/lib/mibs/ietf/EtherLike-MIB.dic +2548 -0
  90. data/lib/mibs/ietf/FC-MGMT-MIB.dic +3465 -0
  91. data/lib/mibs/ietf/FCIP-MGMT-MIB.dic +1596 -0
  92. data/lib/mibs/ietf/FDDI-SMT73-MIB.dic +3378 -0
  93. data/lib/mibs/ietf/FIBRE-CHANNEL-FE-MIB.dic +2504 -0
  94. data/lib/mibs/ietf/FLOAT-TC-MIB.dic +128 -0
  95. data/lib/mibs/ietf/FLOW-METER-MIB.dic +3201 -0
  96. data/lib/mibs/ietf/FORCES-MIB.dic +598 -0
  97. data/lib/mibs/ietf/FR-ATM-PVC-SERVICE-IWF-MIB.dic +1601 -0
  98. data/lib/mibs/ietf/FR-MFR-MIB.dic +1351 -0
  99. data/lib/mibs/ietf/FRAME-RELAY-DTE-MIB.dic +1688 -0
  100. data/lib/mibs/ietf/FRNETSERV-MIB.dic +3940 -0
  101. data/lib/mibs/ietf/FRSLD-MIB.dic +2580 -0
  102. data/lib/mibs/ietf/Finisher-MIB.dic +1416 -0
  103. data/lib/mibs/ietf/GMPLS-LABEL-STD-MIB.dic +965 -0
  104. data/lib/mibs/ietf/GMPLS-LSR-STD-MIB.dic +693 -0
  105. data/lib/mibs/ietf/GMPLS-TC-STD-MIB.dic +180 -0
  106. data/lib/mibs/ietf/GMPLS-TE-STD-MIB.dic +2542 -0
  107. data/lib/mibs/ietf/GSMP-MIB.dic +2468 -0
  108. data/lib/mibs/ietf/HC-ALARM-MIB.dic +1050 -0
  109. data/lib/mibs/ietf/HC-PerfHist-TC-MIB.dic +310 -0
  110. data/lib/mibs/ietf/HC-RMON-MIB.dic +4456 -0
  111. data/lib/mibs/ietf/HDSL2-SHDSL-LINE-MIB.dic +3955 -0
  112. data/lib/mibs/ietf/HOST-RESOURCES-MIB.dic +2453 -0
  113. data/lib/mibs/ietf/HPR-IP-MIB.dic +640 -0
  114. data/lib/mibs/ietf/HPR-MIB.dic +1959 -0
  115. data/lib/mibs/ietf/IANA-ITU-ALARM-TC-MIB.dic +936 -0
  116. data/lib/mibs/ietf/IF-CAP-STACK-MIB.dic +356 -0
  117. data/lib/mibs/ietf/IF-INVERTED-STACK-MIB.dic +220 -0
  118. data/lib/mibs/ietf/IF-MIB.dic +2753 -0
  119. data/lib/mibs/ietf/IFCP-MGMT-MIB.dic +1717 -0
  120. data/lib/mibs/ietf/IGMP-STD-MIB.dic +809 -0
  121. data/lib/mibs/ietf/INET-ADDRESS-MIB.dic +570 -0
  122. data/lib/mibs/ietf/INTEGRATED-SERVICES-GUARANTEED-MIB.dic +319 -0
  123. data/lib/mibs/ietf/INTEGRATED-SERVICES-MIB.dic +1196 -0
  124. data/lib/mibs/ietf/INTERFACETOPN-MIB.dic +1705 -0
  125. data/lib/mibs/ietf/IP-FORWARD-MIB.dic +1853 -0
  126. data/lib/mibs/ietf/IP-MIB.dic +7064 -0
  127. data/lib/mibs/ietf/IPATM-IPMC-MIB.dic +4830 -0
  128. data/lib/mibs/ietf/IPFIX-MIB.dic +2334 -0
  129. data/lib/mibs/ietf/IPFIX-SELECTOR-MIB.dic +215 -0
  130. data/lib/mibs/ietf/IPMCAST-MIB.dic +3390 -0
  131. data/lib/mibs/ietf/IPMROUTE-STD-MIB.dic +1246 -0
  132. data/lib/mibs/ietf/IPOA-MIB.dic +2372 -0
  133. data/lib/mibs/ietf/IPS-AUTH-MIB.dic +1609 -0
  134. data/lib/mibs/ietf/IPSEC-SPD-MIB.dic +3989 -0
  135. data/lib/mibs/ietf/IPV6-FLOW-LABEL-MIB.dic +110 -0
  136. data/lib/mibs/ietf/IPV6-ICMP-MIB.dic +748 -0
  137. data/lib/mibs/ietf/IPV6-MIB.dic +2028 -0
  138. data/lib/mibs/ietf/IPV6-MLD-MIB.dic +659 -0
  139. data/lib/mibs/ietf/IPV6-TCP-MIB.dic +332 -0
  140. data/lib/mibs/ietf/IPV6-UDP-MIB.dic +209 -0
  141. data/lib/mibs/ietf/ISCSI-MIB.dic +4613 -0
  142. data/lib/mibs/ietf/ISDN-MIB.dic +1796 -0
  143. data/lib/mibs/ietf/ISIS-MIB.dic +6215 -0
  144. data/lib/mibs/ietf/ISNS-MIB.dic +6578 -0
  145. data/lib/mibs/ietf/ITU-ALARM-MIB.dic +665 -0
  146. data/lib/mibs/ietf/ITU-ALARM-TC-MIB.dic +137 -0
  147. data/lib/mibs/ietf/Job-Monitoring-MIB.dic +2519 -0
  148. data/lib/mibs/ietf/L2TP-MIB.dic +4050 -0
  149. data/lib/mibs/ietf/LANGTAG-TC-MIB.dic +104 -0
  150. data/lib/mibs/ietf/LISP-MIB.dic +4067 -0
  151. data/lib/mibs/ietf/LMP-MIB.dic +5166 -0
  152. data/lib/mibs/ietf/MALLOC-MIB.dic +2156 -0
  153. data/lib/mibs/ietf/MAU-MIB.dic +2619 -0
  154. data/lib/mibs/ietf/MIDCOM-MIB.dic +2856 -0
  155. data/lib/mibs/ietf/MIOX25-MIB.dic +828 -0
  156. data/lib/mibs/ietf/MIP-MIB.dic +3473 -0
  157. data/lib/mibs/ietf/MOBILEIPV6-MIB.dic +5228 -0
  158. data/lib/mibs/ietf/MPLS-FTN-STD-MIB.dic +1594 -0
  159. data/lib/mibs/ietf/MPLS-L3VPN-STD-MIB.dic +2548 -0
  160. data/lib/mibs/ietf/MPLS-LC-ATM-STD-MIB.dic +491 -0
  161. data/lib/mibs/ietf/MPLS-LC-FR-STD-MIB.dic +395 -0
  162. data/lib/mibs/ietf/MPLS-LDP-ATM-STD-MIB.dic +1019 -0
  163. data/lib/mibs/ietf/MPLS-LDP-FRAME-RELAY-STD-MIB.dic +862 -0
  164. data/lib/mibs/ietf/MPLS-LDP-GENERIC-STD-MIB.dic +445 -0
  165. data/lib/mibs/ietf/MPLS-LDP-STD-MIB.dic +3657 -0
  166. data/lib/mibs/ietf/MPLS-LSR-STD-MIB.dic +3103 -0
  167. data/lib/mibs/ietf/MPLS-TC-STD-MIB.dic +911 -0
  168. data/lib/mibs/ietf/MPLS-TE-STD-MIB.dic +3673 -0
  169. data/lib/mibs/ietf/MSDP-MIB.dic +1893 -0
  170. data/lib/mibs/ietf/MTA-MIB.dic +1898 -0
  171. data/lib/mibs/ietf/Modem-MIB.dic +2054 -0
  172. data/lib/mibs/ietf/NAT-MIB.dic +3866 -0
  173. data/lib/mibs/ietf/NETWORK-SERVICES-MIB.dic +1034 -0
  174. data/lib/mibs/ietf/NHDP-MIB.dic +3005 -0
  175. data/lib/mibs/ietf/NHRP-MIB.dic +3660 -0
  176. data/lib/mibs/ietf/NOTIFICATION-LOG-MIB.dic +1156 -0
  177. data/lib/mibs/ietf/NTPv4-MIB.dic +1535 -0
  178. data/lib/mibs/ietf/OPT-IF-MIB.dic +8972 -0
  179. data/lib/mibs/ietf/OSPF-MIB.dic +5963 -0
  180. data/lib/mibs/ietf/OSPF-TRAP-MIB.dic +1190 -0
  181. data/lib/mibs/ietf/OSPFV3-MIB.dic +5708 -0
  182. data/lib/mibs/ietf/P-BRIDGE-MIB.dic +1499 -0
  183. data/lib/mibs/ietf/PARALLEL-MIB.dic +476 -0
  184. data/lib/mibs/ietf/PIM-MIB.dic +1393 -0
  185. data/lib/mibs/ietf/PIM-STD-MIB.dic +6819 -0
  186. data/lib/mibs/ietf/PINT-MIB.dic +830 -0
  187. data/lib/mibs/ietf/PKTC-IETF-MTA-MIB.dic +3191 -0
  188. data/lib/mibs/ietf/PKTC-IETF-SIG-MIB.dic +4713 -0
  189. data/lib/mibs/ietf/PMIPV6-MIB.dic +3010 -0
  190. data/lib/mibs/ietf/PMIPV6-TC-MIB.dic +293 -0
  191. data/lib/mibs/ietf/POLICY-BASED-MANAGEMENT-MIB.dic +3316 -0
  192. data/lib/mibs/ietf/POWER-ETHERNET-MIB.dic +959 -0
  193. data/lib/mibs/ietf/PPP-BRIDGE-NCP-MIB.dic +587 -0
  194. data/lib/mibs/ietf/PPP-IP-NCP-MIB.dic +269 -0
  195. data/lib/mibs/ietf/PPP-LCP-MIB.dic +994 -0
  196. data/lib/mibs/ietf/PPP-SEC-MIB.dic +411 -0
  197. data/lib/mibs/ietf/PSAMP-MIB.dic +998 -0
  198. data/lib/mibs/ietf/PTOPO-MIB.dic +1135 -0
  199. data/lib/mibs/ietf/PW-ATM-MIB.dic +1642 -0
  200. data/lib/mibs/ietf/PW-CEP-STD-MIB.dic +3661 -0
  201. data/lib/mibs/ietf/PW-STD-MIB.dic +3592 -0
  202. data/lib/mibs/ietf/PW-TC-STD-MIB.dic +437 -0
  203. data/lib/mibs/ietf/PW-TDM-MIB.dic +1896 -0
  204. data/lib/mibs/ietf/PerfHist-TC-MIB.dic +152 -0
  205. data/lib/mibs/ietf/Printer-MIB.dic +6665 -0
  206. data/lib/mibs/ietf/Q-BRIDGE-MIB.dic +3115 -0
  207. data/lib/mibs/ietf/RADIUS-ACC-CLIENT-MIB.dic +991 -0
  208. data/lib/mibs/ietf/RADIUS-ACC-SERVER-MIB.dic +1183 -0
  209. data/lib/mibs/ietf/RADIUS-AUTH-CLIENT-MIB.dic +1073 -0
  210. data/lib/mibs/ietf/RADIUS-AUTH-SERVER-MIB.dic +1251 -0
  211. data/lib/mibs/ietf/RADIUS-DYNAUTH-CLIENT-MIB.dic +1116 -0
  212. data/lib/mibs/ietf/RADIUS-DYNAUTH-SERVER-MIB.dic +1003 -0
  213. data/lib/mibs/ietf/RAQMON-MIB.dic +2695 -0
  214. data/lib/mibs/ietf/RBRIDGE-MIB.dic +2981 -0
  215. data/lib/mibs/ietf/RDBMS-MIB.dic +1935 -0
  216. data/lib/mibs/ietf/RFC1065-SMI.dic +108 -0
  217. data/lib/mibs/ietf/RFC1155-SMI.dic +118 -0
  218. data/lib/mibs/ietf/RFC1158-MIB.dic +2440 -0
  219. data/lib/mibs/ietf/RFC1213-MIB.dic +3434 -0
  220. data/lib/mibs/ietf/RFC1269-MIB.dic +557 -0
  221. data/lib/mibs/ietf/RFC1271-MIB.dic +4135 -0
  222. data/lib/mibs/ietf/RFC1285-MIB.dic +2842 -0
  223. data/lib/mibs/ietf/RFC1316-MIB.dic +800 -0
  224. data/lib/mibs/ietf/RFC1381-MIB.dic +1347 -0
  225. data/lib/mibs/ietf/RFC1382-MIB.dic +3820 -0
  226. data/lib/mibs/ietf/RFC1414-MIB.dic +214 -0
  227. data/lib/mibs/ietf/RIPv2-MIB.dic +773 -0
  228. data/lib/mibs/ietf/RMON-MIB.dic +5551 -0
  229. data/lib/mibs/ietf/RMON2-MIB.dic +8224 -0
  230. data/lib/mibs/ietf/ROHC-MIB.dic +1613 -0
  231. data/lib/mibs/ietf/ROHC-RTP-MIB.dic +859 -0
  232. data/lib/mibs/ietf/ROHC-UNCOMPRESSED-MIB.dic +267 -0
  233. data/lib/mibs/ietf/RPKI-ROUTER-MIB.dic +1363 -0
  234. data/lib/mibs/ietf/RS-232-MIB.dic +1335 -0
  235. data/lib/mibs/ietf/RSERPOOL-MIB.dic +2501 -0
  236. data/lib/mibs/ietf/RSTP-MIB.dic +427 -0
  237. data/lib/mibs/ietf/RSVP-MIB.dic +4135 -0
  238. data/lib/mibs/ietf/RTP-MIB.dic +1376 -0
  239. data/lib/mibs/ietf/SCSI-MIB.dic +3804 -0
  240. data/lib/mibs/ietf/SCTP-MIB.dic +1924 -0
  241. data/lib/mibs/ietf/SFLOW-MIB.dic +568 -0
  242. data/lib/mibs/ietf/SIP-COMMON-MIB.dic +2769 -0
  243. data/lib/mibs/ietf/SIP-MIB.dic +1438 -0
  244. data/lib/mibs/ietf/SIP-SERVER-MIB.dic +1150 -0
  245. data/lib/mibs/ietf/SIP-TC-MIB.dic +257 -0
  246. data/lib/mibs/ietf/SIP-UA-MIB.dic +268 -0
  247. data/lib/mibs/ietf/SLAPM-MIB.dic +4527 -0
  248. data/lib/mibs/ietf/SMON-MIB.dic +1758 -0
  249. data/lib/mibs/ietf/SNA-NAU-MIB.dic +4042 -0
  250. data/lib/mibs/ietf/SNA-SDLC-MIB.dic +3858 -0
  251. data/lib/mibs/ietf/SNMP-COMMUNITY-MIB.dic +715 -0
  252. data/lib/mibs/ietf/SNMP-FRAMEWORK-MIB.dic +709 -0
  253. data/lib/mibs/ietf/SNMP-MPD-MIB.dic +230 -0
  254. data/lib/mibs/ietf/SNMP-NOTIFICATION-MIB.dic +859 -0
  255. data/lib/mibs/ietf/SNMP-PROXY-MIB.dic +414 -0
  256. data/lib/mibs/ietf/SNMP-REPEATER-MIB.dic +4335 -0
  257. data/lib/mibs/ietf/SNMP-SSH-TM-MIB.dic +447 -0
  258. data/lib/mibs/ietf/SNMP-TARGET-MIB.dic +924 -0
  259. data/lib/mibs/ietf/SNMP-TLS-TM-MIB.dic +1449 -0
  260. data/lib/mibs/ietf/SNMP-TSM-MIB.dic +315 -0
  261. data/lib/mibs/ietf/SNMP-USER-BASED-SM-MIB.dic +1164 -0
  262. data/lib/mibs/ietf/SNMP-USM-AES-MIB.dic +95 -0
  263. data/lib/mibs/ietf/SNMP-USM-DH-OBJECTS-MIB.dic +653 -0
  264. data/lib/mibs/ietf/SNMP-VIEW-BASED-ACM-MIB.dic +1202 -0
  265. data/lib/mibs/ietf/SNMPv2-MIB.dic +1382 -0
  266. data/lib/mibs/ietf/SNMPv2-SMI.dic +223 -0
  267. data/lib/mibs/ietf/SNMPv2-USEC-MIB.dic +405 -0
  268. data/lib/mibs/ietf/SONET-MIB.dic +3308 -0
  269. data/lib/mibs/ietf/SOURCE-ROUTING-MIB.dic +542 -0
  270. data/lib/mibs/ietf/SSPM-MIB.dic +1530 -0
  271. data/lib/mibs/ietf/SYSAPPL-MIB.dic +2092 -0
  272. data/lib/mibs/ietf/T11-FC-FABRIC-ADDR-MGR-MIB.dic +1779 -0
  273. data/lib/mibs/ietf/T11-FC-FABRIC-CONFIG-SERVER-MIB.dic +2822 -0
  274. data/lib/mibs/ietf/T11-FC-FABRIC-LOCK-MIB.dic +700 -0
  275. data/lib/mibs/ietf/T11-FC-FSPF-MIB.dic +1889 -0
  276. data/lib/mibs/ietf/T11-FC-NAME-SERVER-MIB.dic +1775 -0
  277. data/lib/mibs/ietf/T11-FC-ROUTE-MIB.dic +655 -0
  278. data/lib/mibs/ietf/T11-FC-RSCN-MIB.dic +1110 -0
  279. data/lib/mibs/ietf/T11-FC-VIRTUAL-FABRIC-MIB.dic +770 -0
  280. data/lib/mibs/ietf/T11-FC-ZONE-SERVER-MIB.dic +3886 -0
  281. data/lib/mibs/ietf/T11-TC-MIB.dic +110 -0
  282. data/lib/mibs/ietf/TCP-ESTATS-MIB.dic +3926 -0
  283. data/lib/mibs/ietf/TCP-MIB.dic +1319 -0
  284. data/lib/mibs/ietf/TCPIPX-MIB.dic +457 -0
  285. data/lib/mibs/ietf/TE-LINK-STD-MIB.dic +2876 -0
  286. data/lib/mibs/ietf/TE-MIB.dic +2924 -0
  287. data/lib/mibs/ietf/TED-MIB.dic +1749 -0
  288. data/lib/mibs/ietf/TIME-AGGREGATE-MIB.dic +550 -0
  289. data/lib/mibs/ietf/TN3270E-MIB.dic +2785 -0
  290. data/lib/mibs/ietf/TN3270E-RT-MIB.dic +1317 -0
  291. data/lib/mibs/ietf/TOKEN-RING-RMON-MIB.dic +2820 -0
  292. data/lib/mibs/ietf/TOKENRING-MIB.dic +1184 -0
  293. data/lib/mibs/ietf/TOKENRING-STATION-SR-MIB.dic +292 -0
  294. data/lib/mibs/ietf/TRANSPORT-ADDRESS-MIB.dic +610 -0
  295. data/lib/mibs/ietf/TRIP-MIB.dic +3159 -0
  296. data/lib/mibs/ietf/TRIP-TC-MIB.dic +241 -0
  297. data/lib/mibs/ietf/TUNNEL-MIB.dic +1095 -0
  298. data/lib/mibs/ietf/UDP-MIB.dic +751 -0
  299. data/lib/mibs/ietf/UDPLITE-MIB.dic +704 -0
  300. data/lib/mibs/ietf/UPS-MIB.dic +3088 -0
  301. data/lib/mibs/ietf/URI-TC-MIB.dic +193 -0
  302. data/lib/mibs/ietf/UUID-TC-MIB.dic +135 -0
  303. data/lib/mibs/ietf/VDSL-LINE-EXT-MCM-MIB.dic +989 -0
  304. data/lib/mibs/ietf/VDSL-LINE-EXT-SCM-MIB.dic +605 -0
  305. data/lib/mibs/ietf/VDSL-LINE-MIB.dic +4518 -0
  306. data/lib/mibs/ietf/VDSL2-LINE-MIB.dic +11029 -0
  307. data/lib/mibs/ietf/VDSL2-LINE-TC-MIB.dic +3152 -0
  308. data/lib/mibs/ietf/VPN-TC-STD-MIB.dic +121 -0
  309. data/lib/mibs/ietf/VRRP-MIB.dic +1163 -0
  310. data/lib/mibs/ietf/VRRPV3-MIB.dic +1403 -0
  311. data/lib/mibs/ietf/WWW-MIB.dic +1810 -0
  312. data/lib/mibs/logstash/iso.dic +18 -0
  313. data/logstash-integration-snmp.gemspec +40 -0
  314. data/spec/fixtures/RFC1213-MIB.dic +3445 -0
  315. data/spec/fixtures/collision.dic +25 -0
  316. data/spec/integration/inputs/snmp_spec.rb +443 -0
  317. data/spec/integration/inputs/snmptrap_spec.rb +383 -0
  318. data/spec/unit/inputs/common_spec.rb +264 -0
  319. data/spec/unit/inputs/snmp_spec.rb +510 -0
  320. data/spec/unit/inputs/snmptrap_spec.rb +141 -0
  321. data/vendor/jar-dependencies/org/logstash/integrations/plugin/4.0.0/plugin-4.0.0.jar +0 -0
  322. data/vendor/jar-dependencies/org/snakeyaml/snakeyaml-engine/2.7/snakeyaml-engine-2.7.jar +0 -0
  323. data/vendor/jar-dependencies/org/snmp4j/snmp4j/3.8.0/snmp4j-3.8.0.jar +0 -0
  324. metadata +523 -0
@@ -0,0 +1,4135 @@
1
+ # python version 1.0 DO NOT EDIT
2
+ #
3
+ # This python file has been generated by smidump version 0.5.0:
4
+ #
5
+ # smidump -f python RFC1271-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/RFC1271-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "RFC1271-MIB",
11
+
12
+ "RFC1271-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv1",
15
+ },
16
+
17
+ "imports" : (
18
+ {"module" : "RFC1155-SMI", "name" : "Counter"},
19
+ {"module" : "RFC1213-MIB", "name" : "mib-2"},
20
+ {"module" : "RFC1213-MIB", "name" : "DisplayString"},
21
+ {"module" : "RFC-1212", "name" : "OBJECT-TYPE"},
22
+ ),
23
+
24
+ "typedefs" : {
25
+ "OwnerString" : {
26
+ "basetype" : "OctetString",
27
+ "parent module" : {
28
+ "name" : "RFC1213-MIB",
29
+ "type" : "DisplayString",
30
+ },
31
+ },
32
+ "EntryStatus" : {
33
+ "basetype" : "Enumeration",
34
+ "valid" : {
35
+ "nodetype" : "namednumber",
36
+ "number" : "1"
37
+ },
38
+ "createRequest" : {
39
+ "nodetype" : "namednumber",
40
+ "number" : "2"
41
+ },
42
+ "underCreation" : {
43
+ "nodetype" : "namednumber",
44
+ "number" : "3"
45
+ },
46
+ "invalid" : {
47
+ "nodetype" : "namednumber",
48
+ "number" : "4"
49
+ },
50
+ },
51
+ }, # typedefs
52
+
53
+ "nodes" : {
54
+ "rmon" : {
55
+ "nodetype" : "node",
56
+ "moduleName" : "RFC1271-MIB",
57
+ "oid" : "1.3.6.1.2.1.16",
58
+ }, # node
59
+ "statistics" : {
60
+ "nodetype" : "node",
61
+ "moduleName" : "RFC1271-MIB",
62
+ "oid" : "1.3.6.1.2.1.16.1",
63
+ }, # node
64
+ "etherStatsTable" : {
65
+ "nodetype" : "table",
66
+ "moduleName" : "RFC1271-MIB",
67
+ "oid" : "1.3.6.1.2.1.16.1.1",
68
+ "status" : "current",
69
+ "description" :
70
+ """A list of Ethernet statistics entries.""",
71
+ }, # table
72
+ "etherStatsEntry" : {
73
+ "nodetype" : "row",
74
+ "moduleName" : "RFC1271-MIB",
75
+ "oid" : "1.3.6.1.2.1.16.1.1.1",
76
+ "status" : "current",
77
+ "linkage" : [
78
+ "etherStatsIndex",
79
+ ],
80
+ "description" :
81
+ """A collection of statistics kept for a particular
82
+ Ethernet interface.""",
83
+ }, # row
84
+ "etherStatsIndex" : {
85
+ "nodetype" : "column",
86
+ "moduleName" : "RFC1271-MIB",
87
+ "oid" : "1.3.6.1.2.1.16.1.1.1.1",
88
+ "status" : "current",
89
+ "syntax" : {
90
+ "type" : {
91
+ "basetype" : "Integer32",
92
+ "ranges" : [
93
+ {
94
+ "min" : "1",
95
+ "max" : "65535"
96
+ },
97
+ ],
98
+ "range" : {
99
+ "min" : "1",
100
+ "max" : "65535"
101
+ },
102
+ },
103
+ },
104
+ "access" : "readonly",
105
+ "description" :
106
+ """The value of this object uniquely identifies this
107
+ etherStats entry.""",
108
+ }, # column
109
+ "etherStatsDataSource" : {
110
+ "nodetype" : "column",
111
+ "moduleName" : "RFC1271-MIB",
112
+ "oid" : "1.3.6.1.2.1.16.1.1.1.2",
113
+ "status" : "current",
114
+ "syntax" : {
115
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
116
+ },
117
+ "access" : "readwrite",
118
+ "description" :
119
+ """This object identifies the source of the data that
120
+ this etherStats entry is configured to analyze. This
121
+ source can be any ethernet interface on this device.
122
+ In order to identify a particular interface, this
123
+ object shall identify the instance of the ifIndex
124
+ object, defined in [4,6], for the desired interface.
125
+ For example, if an entry were to receive data from
126
+ interface #1, this object would be set to ifIndex.1.
127
+
128
+ The statistics in this group reflect all packets
129
+ on the local network segment attached to the
130
+ identified interface.
131
+
132
+ This object may not be modified if the associated
133
+ etherStatsStatus object is equal to valid(1).""",
134
+ }, # column
135
+ "etherStatsDropEvents" : {
136
+ "nodetype" : "column",
137
+ "moduleName" : "RFC1271-MIB",
138
+ "oid" : "1.3.6.1.2.1.16.1.1.1.3",
139
+ "status" : "current",
140
+ "syntax" : {
141
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
142
+ },
143
+ "access" : "readonly",
144
+ "description" :
145
+ """The total number of events in which packets
146
+ were dropped by the probe due to lack of resources.
147
+ Note that this number is not necessarily the number of
148
+ packets dropped; it is just the number of times this
149
+ condition has been detected.""",
150
+ }, # column
151
+ "etherStatsOctets" : {
152
+ "nodetype" : "column",
153
+ "moduleName" : "RFC1271-MIB",
154
+ "oid" : "1.3.6.1.2.1.16.1.1.1.4",
155
+ "status" : "current",
156
+ "syntax" : {
157
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
158
+ },
159
+ "access" : "readonly",
160
+ "description" :
161
+ """The total number of octets of data (including
162
+ those in bad packets) received on the
163
+ network (excluding framing bits but including
164
+ FCS octets).""",
165
+ }, # column
166
+ "etherStatsPkts" : {
167
+ "nodetype" : "column",
168
+ "moduleName" : "RFC1271-MIB",
169
+ "oid" : "1.3.6.1.2.1.16.1.1.1.5",
170
+ "status" : "current",
171
+ "syntax" : {
172
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
173
+ },
174
+ "access" : "readonly",
175
+ "description" :
176
+ """The total number of packets (including error packets)
177
+ received.""",
178
+ }, # column
179
+ "etherStatsBroadcastPkts" : {
180
+ "nodetype" : "column",
181
+ "moduleName" : "RFC1271-MIB",
182
+ "oid" : "1.3.6.1.2.1.16.1.1.1.6",
183
+ "status" : "current",
184
+ "syntax" : {
185
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
186
+ },
187
+ "access" : "readonly",
188
+ "description" :
189
+ """The total number of good packets received that were
190
+ directed to the broadcast address.""",
191
+ }, # column
192
+ "etherStatsMulticastPkts" : {
193
+ "nodetype" : "column",
194
+ "moduleName" : "RFC1271-MIB",
195
+ "oid" : "1.3.6.1.2.1.16.1.1.1.7",
196
+ "status" : "current",
197
+ "syntax" : {
198
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
199
+ },
200
+ "access" : "readonly",
201
+ "description" :
202
+ """The total number of good packets received that were
203
+ directed to a multicast address. Note that this
204
+ number does not include packets directed to the
205
+ broadcast address.""",
206
+ }, # column
207
+ "etherStatsCRCAlignErrors" : {
208
+ "nodetype" : "column",
209
+ "moduleName" : "RFC1271-MIB",
210
+ "oid" : "1.3.6.1.2.1.16.1.1.1.8",
211
+ "status" : "current",
212
+ "syntax" : {
213
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
214
+ },
215
+ "access" : "readonly",
216
+ "description" :
217
+ """The total number of packets received that
218
+ had a length (excluding framing bits, but
219
+ including FCS octets) of between 64 and 1518
220
+ octets, inclusive, but were not an integral number
221
+ of octets in length or had a bad Frame Check
222
+ Sequence (FCS).""",
223
+ }, # column
224
+ "etherStatsUndersizePkts" : {
225
+ "nodetype" : "column",
226
+ "moduleName" : "RFC1271-MIB",
227
+ "oid" : "1.3.6.1.2.1.16.1.1.1.9",
228
+ "status" : "current",
229
+ "syntax" : {
230
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
231
+ },
232
+ "access" : "readonly",
233
+ "description" :
234
+ """The total number of packets received that were
235
+ less than 64 octets long (excluding framing bits,
236
+ but including FCS octets) and were otherwise well
237
+ formed.""",
238
+ }, # column
239
+ "etherStatsOversizePkts" : {
240
+ "nodetype" : "column",
241
+ "moduleName" : "RFC1271-MIB",
242
+ "oid" : "1.3.6.1.2.1.16.1.1.1.10",
243
+ "status" : "current",
244
+ "syntax" : {
245
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
246
+ },
247
+ "access" : "readonly",
248
+ "description" :
249
+ """The total number of packets received that were
250
+ longer than 1518 octets (excluding framing bits,
251
+ but including FCS octets) and were otherwise
252
+ well formed.""",
253
+ }, # column
254
+ "etherStatsFragments" : {
255
+ "nodetype" : "column",
256
+ "moduleName" : "RFC1271-MIB",
257
+ "oid" : "1.3.6.1.2.1.16.1.1.1.11",
258
+ "status" : "current",
259
+ "syntax" : {
260
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
261
+ },
262
+ "access" : "readonly",
263
+ "description" :
264
+ """The total number of packets received that were not an
265
+ integral number of octets in length or that had a bad
266
+ Frame Check Sequence (FCS), and were less than 64
267
+ octets in length (excluding framing bits but
268
+ including FCS octets).""",
269
+ }, # column
270
+ "etherStatsJabbers" : {
271
+ "nodetype" : "column",
272
+ "moduleName" : "RFC1271-MIB",
273
+ "oid" : "1.3.6.1.2.1.16.1.1.1.12",
274
+ "status" : "current",
275
+ "syntax" : {
276
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
277
+ },
278
+ "access" : "readonly",
279
+ "description" :
280
+ """The total number of packets received that were
281
+ longer than 1518 octets (excluding framing bits,
282
+ but including FCS octets), and were not an
283
+ integral number of octets in length or had
284
+ a bad Frame Check Sequence (FCS).""",
285
+ }, # column
286
+ "etherStatsCollisions" : {
287
+ "nodetype" : "column",
288
+ "moduleName" : "RFC1271-MIB",
289
+ "oid" : "1.3.6.1.2.1.16.1.1.1.13",
290
+ "status" : "current",
291
+ "syntax" : {
292
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
293
+ },
294
+ "access" : "readonly",
295
+ "description" :
296
+ """The best estimate of the total number of collisions
297
+ on this Ethernet segment.""",
298
+ }, # column
299
+ "etherStatsPkts64Octets" : {
300
+ "nodetype" : "column",
301
+ "moduleName" : "RFC1271-MIB",
302
+ "oid" : "1.3.6.1.2.1.16.1.1.1.14",
303
+ "status" : "current",
304
+ "syntax" : {
305
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
306
+ },
307
+ "access" : "readonly",
308
+ "description" :
309
+ """The total number of packets (including error
310
+ packets) received that were 64 octets in length
311
+ (excluding framing bits but including FCS octets).""",
312
+ }, # column
313
+ "etherStatsPkts65to127Octets" : {
314
+ "nodetype" : "column",
315
+ "moduleName" : "RFC1271-MIB",
316
+ "oid" : "1.3.6.1.2.1.16.1.1.1.15",
317
+ "status" : "current",
318
+ "syntax" : {
319
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
320
+ },
321
+ "access" : "readonly",
322
+ "description" :
323
+ """The total number of packets (including error
324
+ packets) received that were between
325
+ 65 and 127 octets in length inclusive
326
+ (excluding framing bits but including FCS octets).""",
327
+ }, # column
328
+ "etherStatsPkts128to255Octets" : {
329
+ "nodetype" : "column",
330
+ "moduleName" : "RFC1271-MIB",
331
+ "oid" : "1.3.6.1.2.1.16.1.1.1.16",
332
+ "status" : "current",
333
+ "syntax" : {
334
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
335
+ },
336
+ "access" : "readonly",
337
+ "description" :
338
+ """The total number of packets (including error
339
+ packets) received that were between
340
+ 128 and 255 octets in length inclusive
341
+ (excluding framing bits but including FCS octets).""",
342
+ }, # column
343
+ "etherStatsPkts256to511Octets" : {
344
+ "nodetype" : "column",
345
+ "moduleName" : "RFC1271-MIB",
346
+ "oid" : "1.3.6.1.2.1.16.1.1.1.17",
347
+ "status" : "current",
348
+ "syntax" : {
349
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
350
+ },
351
+ "access" : "readonly",
352
+ "description" :
353
+ """The total number of packets (including error
354
+ packets) received that were between
355
+ 256 and 511 octets in length inclusive
356
+ (excluding framing bits but including FCS octets).""",
357
+ }, # column
358
+ "etherStatsPkts512to1023Octets" : {
359
+ "nodetype" : "column",
360
+ "moduleName" : "RFC1271-MIB",
361
+ "oid" : "1.3.6.1.2.1.16.1.1.1.18",
362
+ "status" : "current",
363
+ "syntax" : {
364
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
365
+ },
366
+ "access" : "readonly",
367
+ "description" :
368
+ """The total number of packets (including error
369
+ packets) received that were between
370
+ 512 and 1023 octets in length inclusive
371
+ (excluding framing bits but including FCS octets).""",
372
+ }, # column
373
+ "etherStatsPkts1024to1518Octets" : {
374
+ "nodetype" : "column",
375
+ "moduleName" : "RFC1271-MIB",
376
+ "oid" : "1.3.6.1.2.1.16.1.1.1.19",
377
+ "status" : "current",
378
+ "syntax" : {
379
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
380
+ },
381
+ "access" : "readonly",
382
+ "description" :
383
+ """The total number of packets (including error
384
+ packets) received that were between
385
+ 1024 and 1518 octets in length inclusive
386
+ (excluding framing bits but including FCS octets).""",
387
+ }, # column
388
+ "etherStatsOwner" : {
389
+ "nodetype" : "column",
390
+ "moduleName" : "RFC1271-MIB",
391
+ "oid" : "1.3.6.1.2.1.16.1.1.1.20",
392
+ "status" : "current",
393
+ "syntax" : {
394
+ "type" : { "module" :"RFC1271-MIB", "name" : "OwnerString"},
395
+ },
396
+ "access" : "readwrite",
397
+ "description" :
398
+ """The entity that configured this entry and is
399
+ therefore using the resources assigned to it.""",
400
+ }, # column
401
+ "etherStatsStatus" : {
402
+ "nodetype" : "column",
403
+ "moduleName" : "RFC1271-MIB",
404
+ "oid" : "1.3.6.1.2.1.16.1.1.1.21",
405
+ "status" : "current",
406
+ "syntax" : {
407
+ "type" : { "module" :"RFC1271-MIB", "name" : "EntryStatus"},
408
+ },
409
+ "access" : "readwrite",
410
+ "description" :
411
+ """The status of this etherStats entry.""",
412
+ }, # column
413
+ "history" : {
414
+ "nodetype" : "node",
415
+ "moduleName" : "RFC1271-MIB",
416
+ "oid" : "1.3.6.1.2.1.16.2",
417
+ }, # node
418
+ "historyControlTable" : {
419
+ "nodetype" : "table",
420
+ "moduleName" : "RFC1271-MIB",
421
+ "oid" : "1.3.6.1.2.1.16.2.1",
422
+ "status" : "current",
423
+ "description" :
424
+ """A list of history control entries.""",
425
+ }, # table
426
+ "historyControlEntry" : {
427
+ "nodetype" : "row",
428
+ "moduleName" : "RFC1271-MIB",
429
+ "oid" : "1.3.6.1.2.1.16.2.1.1",
430
+ "status" : "current",
431
+ "linkage" : [
432
+ "historyControlIndex",
433
+ ],
434
+ "description" :
435
+ """A list of parameters that set up a periodic
436
+ sampling of statistics.""",
437
+ }, # row
438
+ "historyControlIndex" : {
439
+ "nodetype" : "column",
440
+ "moduleName" : "RFC1271-MIB",
441
+ "oid" : "1.3.6.1.2.1.16.2.1.1.1",
442
+ "status" : "current",
443
+ "syntax" : {
444
+ "type" : {
445
+ "basetype" : "Integer32",
446
+ "ranges" : [
447
+ {
448
+ "min" : "1",
449
+ "max" : "65535"
450
+ },
451
+ ],
452
+ "range" : {
453
+ "min" : "1",
454
+ "max" : "65535"
455
+ },
456
+ },
457
+ },
458
+ "access" : "readonly",
459
+ "description" :
460
+ """An index that uniquely identifies an entry in the
461
+ historyControl table. Each such entry defines a
462
+ set of samples at a particular interval for an
463
+ interface on the device.""",
464
+ }, # column
465
+ "historyControlDataSource" : {
466
+ "nodetype" : "column",
467
+ "moduleName" : "RFC1271-MIB",
468
+ "oid" : "1.3.6.1.2.1.16.2.1.1.2",
469
+ "status" : "current",
470
+ "syntax" : {
471
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
472
+ },
473
+ "access" : "readwrite",
474
+ "description" :
475
+ """This object identifies the source of the data for
476
+ which historical data was collected and
477
+ placed in a media-specific table on behalf of this
478
+ historyControlEntry. This source can be any
479
+ interface on this device. In order to identify
480
+ a particular interface, this object shall identify
481
+ the instance of the ifIndex object, defined
482
+ in [4,6], for the desired interface. For example,
483
+ if an entry were to receive data from interface #1,
484
+ this object would be set to ifIndex.1.
485
+
486
+ The statistics in this group reflect all packets
487
+ on the local network segment attached to the
488
+ identified interface.
489
+
490
+ This object may not be modified if the associated
491
+ historyControlStatus object is equal to valid(1).""",
492
+ }, # column
493
+ "historyControlBucketsRequested" : {
494
+ "nodetype" : "column",
495
+ "moduleName" : "RFC1271-MIB",
496
+ "oid" : "1.3.6.1.2.1.16.2.1.1.3",
497
+ "status" : "current",
498
+ "syntax" : {
499
+ "type" : {
500
+ "basetype" : "Integer32",
501
+ "ranges" : [
502
+ {
503
+ "min" : "1",
504
+ "max" : "65535"
505
+ },
506
+ ],
507
+ "range" : {
508
+ "min" : "1",
509
+ "max" : "65535"
510
+ },
511
+ },
512
+ },
513
+ "access" : "readwrite",
514
+ "default" : "50",
515
+ "description" :
516
+ """The requested number of discrete time intervals
517
+ over which data is to be saved in the part of the
518
+ media-specific table associated with this
519
+ historyControl entry.
520
+
521
+ When this object is created or modified, the probe
522
+ should set historyControlBucketsGranted as closely to
523
+ this object as is possible for the particular probe
524
+ implementation and available resources.""",
525
+ }, # column
526
+ "historyControlBucketsGranted" : {
527
+ "nodetype" : "column",
528
+ "moduleName" : "RFC1271-MIB",
529
+ "oid" : "1.3.6.1.2.1.16.2.1.1.4",
530
+ "status" : "current",
531
+ "syntax" : {
532
+ "type" : {
533
+ "basetype" : "Integer32",
534
+ "ranges" : [
535
+ {
536
+ "min" : "1",
537
+ "max" : "65535"
538
+ },
539
+ ],
540
+ "range" : {
541
+ "min" : "1",
542
+ "max" : "65535"
543
+ },
544
+ },
545
+ },
546
+ "access" : "readonly",
547
+ "description" :
548
+ """The number of discrete sampling intervals
549
+ over which data shall be saved in the part of
550
+ the media-specific table associated with this
551
+ historyControl entry.
552
+
553
+ When the associated historyControlBucketsRequested
554
+ object is created or modified, the probe
555
+ should set this object as closely to the requested
556
+ value as is possible for the particular
557
+ probe implementation and available resources. The
558
+ probe must not lower this value except as a result
559
+ of a modification to the associated
560
+ historyControlBucketsRequested object.
561
+
562
+ There will be times when the actual number of
563
+ buckets associated with this entry is less than
564
+ the value of this object. In this case, at the
565
+ end of each sampling interval, a new bucket will
566
+ be added to the media-specific table.
567
+
568
+ When the number of buckets reaches the value of
569
+ this object and a new bucket is to be added to the
570
+ media-specific table, the oldest bucket associated
571
+ with this historyControlEntry shall be deleted by
572
+ the agent so that the new bucket can be added.
573
+
574
+ When the value of this object changes to a value less
575
+ than the current value, entries are deleted
576
+ from the media-specific table associated with this
577
+ historyControlEntry. Enough of the oldest of these
578
+ entries shall be deleted by the agent so that their
579
+ number remains less than or equal to the new value of
580
+ this object.
581
+
582
+ When the value of this object changes to a value
583
+ greater than the current value, the number of
584
+ associated media-specific entries may be allowed
585
+ to grow.""",
586
+ }, # column
587
+ "historyControlInterval" : {
588
+ "nodetype" : "column",
589
+ "moduleName" : "RFC1271-MIB",
590
+ "oid" : "1.3.6.1.2.1.16.2.1.1.5",
591
+ "status" : "current",
592
+ "syntax" : {
593
+ "type" : {
594
+ "basetype" : "Integer32",
595
+ "ranges" : [
596
+ {
597
+ "min" : "1",
598
+ "max" : "3600"
599
+ },
600
+ ],
601
+ "range" : {
602
+ "min" : "1",
603
+ "max" : "3600"
604
+ },
605
+ },
606
+ },
607
+ "access" : "readwrite",
608
+ "default" : "1800",
609
+ "description" :
610
+ """The interval in seconds over which the data is
611
+ sampled for each bucket in the part of the
612
+ media-specific table associated with this
613
+ historyControl entry. This interval can
614
+ be set to any number of seconds between 1 and
615
+ 3600 (1 hour).
616
+
617
+ Because the counters in a bucket may overflow at their
618
+ maximum value with no indication, a prudent manager
619
+ will take into account the possibility of overflow
620
+ in any of the associated counters. It is important
621
+ to consider the minimum time in which any counter
622
+ could overflow on a particular media type and set
623
+ the historyControlInterval object to a value less
624
+ than this interval. This is typically most
625
+ important for the 'octets' counter in any
626
+ media-specific table. For example, on an Ethernet
627
+ network, the etherHistoryOctets counter could overflow
628
+ in about one hour at the Ethernet's maximum
629
+ utilization.
630
+
631
+ This object may not be modified if the associated
632
+ historyControlStatus object is equal to valid(1).""",
633
+ }, # column
634
+ "historyControlOwner" : {
635
+ "nodetype" : "column",
636
+ "moduleName" : "RFC1271-MIB",
637
+ "oid" : "1.3.6.1.2.1.16.2.1.1.6",
638
+ "status" : "current",
639
+ "syntax" : {
640
+ "type" : { "module" :"RFC1271-MIB", "name" : "OwnerString"},
641
+ },
642
+ "access" : "readwrite",
643
+ "description" :
644
+ """The entity that configured this entry and is therefore
645
+ using the resources assigned to it.""",
646
+ }, # column
647
+ "historyControlStatus" : {
648
+ "nodetype" : "column",
649
+ "moduleName" : "RFC1271-MIB",
650
+ "oid" : "1.3.6.1.2.1.16.2.1.1.7",
651
+ "status" : "current",
652
+ "syntax" : {
653
+ "type" : { "module" :"RFC1271-MIB", "name" : "EntryStatus"},
654
+ },
655
+ "access" : "readwrite",
656
+ "description" :
657
+ """The status of this historyControl entry.
658
+
659
+ Each instance of the media-specific table associated
660
+ with this historyControlEntry will be deleted by the
661
+ agent if this historyControlEntry is not equal to
662
+ valid(1).""",
663
+ }, # column
664
+ "etherHistoryTable" : {
665
+ "nodetype" : "table",
666
+ "moduleName" : "RFC1271-MIB",
667
+ "oid" : "1.3.6.1.2.1.16.2.2",
668
+ "status" : "current",
669
+ "description" :
670
+ """A list of Ethernet history entries.""",
671
+ }, # table
672
+ "etherHistoryEntry" : {
673
+ "nodetype" : "row",
674
+ "moduleName" : "RFC1271-MIB",
675
+ "oid" : "1.3.6.1.2.1.16.2.2.1",
676
+ "status" : "current",
677
+ "linkage" : [
678
+ "etherHistoryIndex",
679
+ "etherHistorySampleIndex",
680
+ ],
681
+ "description" :
682
+ """An historical sample of Ethernet statistics on a
683
+ particular Ethernet interface. This sample is
684
+ associated with the historyControlEntry which set
685
+ up the parameters for a regular collection of these
686
+ samples.""",
687
+ }, # row
688
+ "etherHistoryIndex" : {
689
+ "nodetype" : "column",
690
+ "moduleName" : "RFC1271-MIB",
691
+ "oid" : "1.3.6.1.2.1.16.2.2.1.1",
692
+ "status" : "current",
693
+ "syntax" : {
694
+ "type" : {
695
+ "basetype" : "Integer32",
696
+ "ranges" : [
697
+ {
698
+ "min" : "1",
699
+ "max" : "65535"
700
+ },
701
+ ],
702
+ "range" : {
703
+ "min" : "1",
704
+ "max" : "65535"
705
+ },
706
+ },
707
+ },
708
+ "access" : "readonly",
709
+ "description" :
710
+ """The history of which this entry is a part. The
711
+ history identified by a particular value of this
712
+ index is the same history as identified
713
+ by the same value of historyControlIndex.""",
714
+ }, # column
715
+ "etherHistorySampleIndex" : {
716
+ "nodetype" : "column",
717
+ "moduleName" : "RFC1271-MIB",
718
+ "oid" : "1.3.6.1.2.1.16.2.2.1.2",
719
+ "status" : "current",
720
+ "syntax" : {
721
+ "type" : { "module" :"", "name" : "Integer32"},
722
+ },
723
+ "access" : "readonly",
724
+ "description" :
725
+ """An index that uniquely identifies the particular
726
+ sample this entry represents among all samples
727
+ associated with the same historyControlEntry.
728
+ This index starts at 1 and increases by one
729
+ as each new sample is taken.""",
730
+ }, # column
731
+ "etherHistoryIntervalStart" : {
732
+ "nodetype" : "column",
733
+ "moduleName" : "RFC1271-MIB",
734
+ "oid" : "1.3.6.1.2.1.16.2.2.1.3",
735
+ "status" : "current",
736
+ "syntax" : {
737
+ "type" : { "module" :"RFC1155-SMI", "name" : "TimeTicks"},
738
+ },
739
+ "access" : "readonly",
740
+ "description" :
741
+ """The value of sysUpTime at the start of the interval
742
+ over which this sample was measured. If the probe
743
+ keeps track of the time of day, it should start
744
+ the first sample of the history at a time such that
745
+ when the next hour of the day begins, a sample is
746
+ started at that instant. Note that following this
747
+ rule may require the probe to delay collecting the
748
+ first sample of the history, as each sample must be
749
+ of the same interval. Also note that the sample which
750
+ is currently being collected is not accessible in this
751
+ table until the end of its interval.""",
752
+ }, # column
753
+ "etherHistoryDropEvents" : {
754
+ "nodetype" : "column",
755
+ "moduleName" : "RFC1271-MIB",
756
+ "oid" : "1.3.6.1.2.1.16.2.2.1.4",
757
+ "status" : "current",
758
+ "syntax" : {
759
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
760
+ },
761
+ "access" : "readonly",
762
+ "description" :
763
+ """The total number of events in which packets
764
+ were dropped by the probe due to lack of resources
765
+ during this interval. Note that this number is not
766
+ necessarily the number of packets dropped, it is just
767
+ the number of times this condition has been detected.""",
768
+ }, # column
769
+ "etherHistoryOctets" : {
770
+ "nodetype" : "column",
771
+ "moduleName" : "RFC1271-MIB",
772
+ "oid" : "1.3.6.1.2.1.16.2.2.1.5",
773
+ "status" : "current",
774
+ "syntax" : {
775
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
776
+ },
777
+ "access" : "readonly",
778
+ "description" :
779
+ """The total number of octets of data (including
780
+ those in bad packets) received on the
781
+ network (excluding framing bits but including
782
+ FCS octets).""",
783
+ }, # column
784
+ "etherHistoryPkts" : {
785
+ "nodetype" : "column",
786
+ "moduleName" : "RFC1271-MIB",
787
+ "oid" : "1.3.6.1.2.1.16.2.2.1.6",
788
+ "status" : "current",
789
+ "syntax" : {
790
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
791
+ },
792
+ "access" : "readonly",
793
+ "description" :
794
+ """The number of packets (including error packets)
795
+ received during this sampling interval.""",
796
+ }, # column
797
+ "etherHistoryBroadcastPkts" : {
798
+ "nodetype" : "column",
799
+ "moduleName" : "RFC1271-MIB",
800
+ "oid" : "1.3.6.1.2.1.16.2.2.1.7",
801
+ "status" : "current",
802
+ "syntax" : {
803
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
804
+ },
805
+ "access" : "readonly",
806
+ "description" :
807
+ """The number of good packets received during this
808
+ sampling interval that were directed to the
809
+ broadcast address.""",
810
+ }, # column
811
+ "etherHistoryMulticastPkts" : {
812
+ "nodetype" : "column",
813
+ "moduleName" : "RFC1271-MIB",
814
+ "oid" : "1.3.6.1.2.1.16.2.2.1.8",
815
+ "status" : "current",
816
+ "syntax" : {
817
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
818
+ },
819
+ "access" : "readonly",
820
+ "description" :
821
+ """The number of good packets received during this
822
+ sampling interval that were directed to a
823
+ multicast address. Note that this number does not
824
+ include packets addressed to the broadcast address.""",
825
+ }, # column
826
+ "etherHistoryCRCAlignErrors" : {
827
+ "nodetype" : "column",
828
+ "moduleName" : "RFC1271-MIB",
829
+ "oid" : "1.3.6.1.2.1.16.2.2.1.9",
830
+ "status" : "current",
831
+ "syntax" : {
832
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
833
+ },
834
+ "access" : "readonly",
835
+ "description" :
836
+ """The number of packets received during this
837
+ sampling interval that had a length (excluding
838
+ framing bits but including FCS octets) between
839
+ 64 and 1518 octets, inclusive, but were not an
840
+ integral number of octets in length or had a
841
+ bad Frame Check Sequence (FCS).""",
842
+ }, # column
843
+ "etherHistoryUndersizePkts" : {
844
+ "nodetype" : "column",
845
+ "moduleName" : "RFC1271-MIB",
846
+ "oid" : "1.3.6.1.2.1.16.2.2.1.10",
847
+ "status" : "current",
848
+ "syntax" : {
849
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
850
+ },
851
+ "access" : "readonly",
852
+ "description" :
853
+ """The number of packets received during this
854
+ interval that were less than 64 octets long
855
+ (excluding framing bits but including FCS
856
+ octets) and were otherwise well formed.""",
857
+ }, # column
858
+ "etherHistoryOversizePkts" : {
859
+ "nodetype" : "column",
860
+ "moduleName" : "RFC1271-MIB",
861
+ "oid" : "1.3.6.1.2.1.16.2.2.1.11",
862
+ "status" : "current",
863
+ "syntax" : {
864
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
865
+ },
866
+ "access" : "readonly",
867
+ "description" :
868
+ """The number of packets received during this
869
+ interval that were longer than 1518 octets
870
+ (excluding framing bits but including FCS
871
+ octets) but were otherwise well formed.""",
872
+ }, # column
873
+ "etherHistoryFragments" : {
874
+ "nodetype" : "column",
875
+ "moduleName" : "RFC1271-MIB",
876
+ "oid" : "1.3.6.1.2.1.16.2.2.1.12",
877
+ "status" : "current",
878
+ "syntax" : {
879
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
880
+ },
881
+ "access" : "readonly",
882
+ "description" :
883
+ """The total number of packets received during this
884
+ sampling interval that were not an integral
885
+ number of octets in length or that
886
+ had a bad Frame Check Sequence (FCS), and
887
+ were less than 64 octets in length (excluding
888
+ framing bits but including FCS octets).""",
889
+ }, # column
890
+ "etherHistoryJabbers" : {
891
+ "nodetype" : "column",
892
+ "moduleName" : "RFC1271-MIB",
893
+ "oid" : "1.3.6.1.2.1.16.2.2.1.13",
894
+ "status" : "current",
895
+ "syntax" : {
896
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
897
+ },
898
+ "access" : "readonly",
899
+ "description" :
900
+ """The number of packets received during this
901
+ interval that were longer than 1518 octets
902
+ (excluding framing bits but including FCS octets),
903
+ and were not an integral number of octets in
904
+ length or had a bad Frame Check Sequence (FCS).""",
905
+ }, # column
906
+ "etherHistoryCollisions" : {
907
+ "nodetype" : "column",
908
+ "moduleName" : "RFC1271-MIB",
909
+ "oid" : "1.3.6.1.2.1.16.2.2.1.14",
910
+ "status" : "current",
911
+ "syntax" : {
912
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
913
+ },
914
+ "access" : "readonly",
915
+ "description" :
916
+ """The best estimate of the total number of collisions
917
+ on this Ethernet segment during this interval.""",
918
+ }, # column
919
+ "etherHistoryUtilization" : {
920
+ "nodetype" : "column",
921
+ "moduleName" : "RFC1271-MIB",
922
+ "oid" : "1.3.6.1.2.1.16.2.2.1.15",
923
+ "status" : "current",
924
+ "syntax" : {
925
+ "type" : {
926
+ "basetype" : "Integer32",
927
+ "ranges" : [
928
+ {
929
+ "min" : "0",
930
+ "max" : "10000"
931
+ },
932
+ ],
933
+ "range" : {
934
+ "min" : "0",
935
+ "max" : "10000"
936
+ },
937
+ },
938
+ },
939
+ "access" : "readonly",
940
+ "description" :
941
+ """The best estimate of the mean physical layer
942
+ network utilization on this interface during this
943
+ interval, in hundredths of a percent.""",
944
+ }, # column
945
+ "alarm" : {
946
+ "nodetype" : "node",
947
+ "moduleName" : "RFC1271-MIB",
948
+ "oid" : "1.3.6.1.2.1.16.3",
949
+ }, # node
950
+ "alarmTable" : {
951
+ "nodetype" : "table",
952
+ "moduleName" : "RFC1271-MIB",
953
+ "oid" : "1.3.6.1.2.1.16.3.1",
954
+ "status" : "current",
955
+ "description" :
956
+ """A list of alarm entries.""",
957
+ }, # table
958
+ "alarmEntry" : {
959
+ "nodetype" : "row",
960
+ "moduleName" : "RFC1271-MIB",
961
+ "oid" : "1.3.6.1.2.1.16.3.1.1",
962
+ "status" : "current",
963
+ "linkage" : [
964
+ "alarmIndex",
965
+ ],
966
+ "description" :
967
+ """A list of parameters that set up a periodic checking
968
+ for alarm conditions.""",
969
+ }, # row
970
+ "alarmIndex" : {
971
+ "nodetype" : "column",
972
+ "moduleName" : "RFC1271-MIB",
973
+ "oid" : "1.3.6.1.2.1.16.3.1.1.1",
974
+ "status" : "current",
975
+ "syntax" : {
976
+ "type" : {
977
+ "basetype" : "Integer32",
978
+ "ranges" : [
979
+ {
980
+ "min" : "1",
981
+ "max" : "65535"
982
+ },
983
+ ],
984
+ "range" : {
985
+ "min" : "1",
986
+ "max" : "65535"
987
+ },
988
+ },
989
+ },
990
+ "access" : "readonly",
991
+ "description" :
992
+ """An index that uniquely identifies an entry in the
993
+ alarm table. Each such entry defines a
994
+ diagnostic sample at a particular interval
995
+ for an object on the device.""",
996
+ }, # column
997
+ "alarmInterval" : {
998
+ "nodetype" : "column",
999
+ "moduleName" : "RFC1271-MIB",
1000
+ "oid" : "1.3.6.1.2.1.16.3.1.1.2",
1001
+ "status" : "current",
1002
+ "syntax" : {
1003
+ "type" : { "module" :"", "name" : "Integer32"},
1004
+ },
1005
+ "access" : "readwrite",
1006
+ "description" :
1007
+ """The interval in seconds over which the data is
1008
+ sampled and compared with the rising and falling
1009
+ thresholds. When setting this variable, care
1010
+ should be given to ensure that the variable being
1011
+ monitored will not exceed 2^31 - 1 and roll
1012
+ over the alarmValue object during the interval.
1013
+
1014
+ This object may not be modified if the associated
1015
+ alarmStatus object is equal to valid(1).""",
1016
+ }, # column
1017
+ "alarmVariable" : {
1018
+ "nodetype" : "column",
1019
+ "moduleName" : "RFC1271-MIB",
1020
+ "oid" : "1.3.6.1.2.1.16.3.1.1.3",
1021
+ "status" : "current",
1022
+ "syntax" : {
1023
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
1024
+ },
1025
+ "access" : "readwrite",
1026
+ "description" :
1027
+ """The object identifier of the particular variable to
1028
+ be sampled. Only variables that resolve to an ASN.1
1029
+ primitive type of INTEGER (INTEGER, Counter, Gauge,
1030
+ or TimeTicks) may be sampled.
1031
+
1032
+ Because SNMP access control is articulated entirely
1033
+ in terms of the contents of MIB views, no access
1034
+ control mechanism exists that can restrict the value of
1035
+ this object to identify only those objects that exist
1036
+ in a particular MIB view. Because there is thus no
1037
+ acceptable means of restricting the read access that
1038
+ could be obtained through the alarm mechanism, the
1039
+ probe must only grant write access to this object in
1040
+ those views that have read access to all objects on
1041
+ the probe.
1042
+
1043
+ During a set operation, if the supplied variable
1044
+ name is not available in the selected MIB view, a
1045
+ badValue error must be returned. If at any time
1046
+ the variable name of an established alarmEntry is
1047
+ no longer available in the selected MIB view, the
1048
+ probe must change the status of this alarmEntry
1049
+ to invalid(4).
1050
+
1051
+ This object may not be modified if the associated
1052
+ alarmStatus object is equal to valid(1).""",
1053
+ }, # column
1054
+ "alarmSampleType" : {
1055
+ "nodetype" : "column",
1056
+ "moduleName" : "RFC1271-MIB",
1057
+ "oid" : "1.3.6.1.2.1.16.3.1.1.4",
1058
+ "status" : "current",
1059
+ "syntax" : {
1060
+ "type" : {
1061
+ "basetype" : "Enumeration",
1062
+ "absoluteValue" : {
1063
+ "nodetype" : "namednumber",
1064
+ "number" : "1"
1065
+ },
1066
+ "deltaValue" : {
1067
+ "nodetype" : "namednumber",
1068
+ "number" : "2"
1069
+ },
1070
+ },
1071
+ },
1072
+ "access" : "readwrite",
1073
+ "description" :
1074
+ """The method of sampling the selected variable and
1075
+ calculating the value to be compared against the
1076
+ thresholds. If the value of this object is
1077
+ absoluteValue(1), the value of the selected variable
1078
+ will be compared directly with the thresholds at the
1079
+ end of the sampling interval. If the value of this
1080
+ object is deltaValue(2), the value of the selected
1081
+ variable at the last sample will be subtracted from
1082
+ the current value, and the difference compared with
1083
+ the thresholds.
1084
+
1085
+ This object may not be modified if the associated
1086
+ alarmStatus object is equal to valid(1).""",
1087
+ }, # column
1088
+ "alarmValue" : {
1089
+ "nodetype" : "column",
1090
+ "moduleName" : "RFC1271-MIB",
1091
+ "oid" : "1.3.6.1.2.1.16.3.1.1.5",
1092
+ "status" : "current",
1093
+ "syntax" : {
1094
+ "type" : { "module" :"", "name" : "Integer32"},
1095
+ },
1096
+ "access" : "readonly",
1097
+ "description" :
1098
+ """The value of the statistic during the last sampling
1099
+ period. The value during the current sampling period
1100
+ is not made available until the period is completed.""",
1101
+ }, # column
1102
+ "alarmStartupAlarm" : {
1103
+ "nodetype" : "column",
1104
+ "moduleName" : "RFC1271-MIB",
1105
+ "oid" : "1.3.6.1.2.1.16.3.1.1.6",
1106
+ "status" : "current",
1107
+ "syntax" : {
1108
+ "type" : {
1109
+ "basetype" : "Enumeration",
1110
+ "risingAlarm" : {
1111
+ "nodetype" : "namednumber",
1112
+ "number" : "1"
1113
+ },
1114
+ "fallingAlarm" : {
1115
+ "nodetype" : "namednumber",
1116
+ "number" : "2"
1117
+ },
1118
+ "risingOrFallingAlarm" : {
1119
+ "nodetype" : "namednumber",
1120
+ "number" : "3"
1121
+ },
1122
+ },
1123
+ },
1124
+ "access" : "readwrite",
1125
+ "description" :
1126
+ """The alarm that may be sent when this entry is first
1127
+ set to valid. If the first sample after this entry
1128
+ becomes valid is greater than or equal to the
1129
+ risingThreshold and alarmStartupAlarm is equal to
1130
+ risingAlarm(1) or risingOrFallingAlarm(3), then a
1131
+ single rising alarm will be generated. If the first
1132
+ sample after this entry becomes valid is less than
1133
+ or equal to the fallingThreshold and
1134
+ alarmStartupAlarm is equal to fallingAlarm(2) or
1135
+ risingOrFallingAlarm(3), then a single falling
1136
+ alarm will be generated.
1137
+
1138
+ This object may not be modified if the associated
1139
+ alarmStatus object is equal to valid(1).""",
1140
+ }, # column
1141
+ "alarmRisingThreshold" : {
1142
+ "nodetype" : "column",
1143
+ "moduleName" : "RFC1271-MIB",
1144
+ "oid" : "1.3.6.1.2.1.16.3.1.1.7",
1145
+ "status" : "current",
1146
+ "syntax" : {
1147
+ "type" : { "module" :"", "name" : "Integer32"},
1148
+ },
1149
+ "access" : "readwrite",
1150
+ "description" :
1151
+ """A threshold for the sampled statistic. When the
1152
+ current sampled value is greater than or equal to
1153
+ this threshold, and the value at the last sampling
1154
+ interval was less than this threshold, a single
1155
+ event will be generated.
1156
+ A single event will also be generated if the first
1157
+ sample after this entry becomes valid is greater
1158
+ than or equal to this threshold and the associated
1159
+ alarmStartupAlarm is equal to risingAlarm(1) or
1160
+ risingOrFallingAlarm(3).
1161
+
1162
+ After a rising event is generated, another such event
1163
+ will not be generated until the sampled value
1164
+ falls below this threshold and reaches the
1165
+ alarmFallingThreshold.
1166
+
1167
+ This object may not be modified if the associated
1168
+ alarmStatus object is equal to valid(1).""",
1169
+ }, # column
1170
+ "alarmFallingThreshold" : {
1171
+ "nodetype" : "column",
1172
+ "moduleName" : "RFC1271-MIB",
1173
+ "oid" : "1.3.6.1.2.1.16.3.1.1.8",
1174
+ "status" : "current",
1175
+ "syntax" : {
1176
+ "type" : { "module" :"", "name" : "Integer32"},
1177
+ },
1178
+ "access" : "readwrite",
1179
+ "description" :
1180
+ """A threshold for the sampled statistic. When the
1181
+ current sampled value is less than or equal to
1182
+ this threshold, and the value at the last sampling
1183
+ interval was greater than this threshold, a single
1184
+ event will be generated.
1185
+ A single event will also be generated if the first
1186
+ sample after this entry becomes valid is less than or
1187
+ equal to this threshold and the associated
1188
+ alarmStartupAlarm is equal to fallingAlarm(2) or
1189
+ risingOrFallingAlarm(3).
1190
+
1191
+ After a falling event is generated, another such event
1192
+ will not be generated until the sampled value
1193
+ rises above this threshold and reaches the
1194
+ alarmRisingThreshold.
1195
+
1196
+ This object may not be modified if the associated
1197
+ alarmStatus object is equal to valid(1).""",
1198
+ }, # column
1199
+ "alarmRisingEventIndex" : {
1200
+ "nodetype" : "column",
1201
+ "moduleName" : "RFC1271-MIB",
1202
+ "oid" : "1.3.6.1.2.1.16.3.1.1.9",
1203
+ "status" : "current",
1204
+ "syntax" : {
1205
+ "type" : {
1206
+ "basetype" : "Integer32",
1207
+ "ranges" : [
1208
+ {
1209
+ "min" : "0",
1210
+ "max" : "65535"
1211
+ },
1212
+ ],
1213
+ "range" : {
1214
+ "min" : "0",
1215
+ "max" : "65535"
1216
+ },
1217
+ },
1218
+ },
1219
+ "access" : "readwrite",
1220
+ "description" :
1221
+ """The index of the eventEntry that is
1222
+ used when a rising threshold is crossed. The
1223
+ eventEntry identified by a particular value of
1224
+ this index is the same as identified by the same value
1225
+ of the eventIndex object. If there is no
1226
+ corresponding entry in the eventTable, then
1227
+ no association exists. In particular, if this value
1228
+ is zero, no associated event will be generated, as
1229
+ zero is not a valid event index.
1230
+
1231
+ This object may not be modified if the associated
1232
+ alarmStatus object is equal to valid(1).""",
1233
+ }, # column
1234
+ "alarmFallingEventIndex" : {
1235
+ "nodetype" : "column",
1236
+ "moduleName" : "RFC1271-MIB",
1237
+ "oid" : "1.3.6.1.2.1.16.3.1.1.10",
1238
+ "status" : "current",
1239
+ "syntax" : {
1240
+ "type" : {
1241
+ "basetype" : "Integer32",
1242
+ "ranges" : [
1243
+ {
1244
+ "min" : "0",
1245
+ "max" : "65535"
1246
+ },
1247
+ ],
1248
+ "range" : {
1249
+ "min" : "0",
1250
+ "max" : "65535"
1251
+ },
1252
+ },
1253
+ },
1254
+ "access" : "readwrite",
1255
+ "description" :
1256
+ """The index of the eventEntry that is
1257
+ used when a falling threshold is crossed. The
1258
+ eventEntry identified by a particular value of
1259
+ this index is the same as identified by the same value
1260
+ of the eventIndex object. If there is no
1261
+ corresponding entry in the eventTable, then
1262
+ no association exists. In particular, if this value
1263
+ is zero, no associated event will be generated, as
1264
+ zero is not a valid event index.
1265
+
1266
+ This object may not be modified if the associated
1267
+ alarmStatus object is equal to valid(1).""",
1268
+ }, # column
1269
+ "alarmOwner" : {
1270
+ "nodetype" : "column",
1271
+ "moduleName" : "RFC1271-MIB",
1272
+ "oid" : "1.3.6.1.2.1.16.3.1.1.11",
1273
+ "status" : "current",
1274
+ "syntax" : {
1275
+ "type" : { "module" :"RFC1271-MIB", "name" : "OwnerString"},
1276
+ },
1277
+ "access" : "readwrite",
1278
+ "description" :
1279
+ """The entity that configured this entry and is
1280
+ therefore using the resources assigned to it.""",
1281
+ }, # column
1282
+ "alarmStatus" : {
1283
+ "nodetype" : "column",
1284
+ "moduleName" : "RFC1271-MIB",
1285
+ "oid" : "1.3.6.1.2.1.16.3.1.1.12",
1286
+ "status" : "current",
1287
+ "syntax" : {
1288
+ "type" : { "module" :"RFC1271-MIB", "name" : "EntryStatus"},
1289
+ },
1290
+ "access" : "readwrite",
1291
+ "description" :
1292
+ """The status of this alarm entry.""",
1293
+ }, # column
1294
+ "hosts" : {
1295
+ "nodetype" : "node",
1296
+ "moduleName" : "RFC1271-MIB",
1297
+ "oid" : "1.3.6.1.2.1.16.4",
1298
+ }, # node
1299
+ "hostControlTable" : {
1300
+ "nodetype" : "table",
1301
+ "moduleName" : "RFC1271-MIB",
1302
+ "oid" : "1.3.6.1.2.1.16.4.1",
1303
+ "status" : "current",
1304
+ "description" :
1305
+ """A list of host table control entries.""",
1306
+ }, # table
1307
+ "hostControlEntry" : {
1308
+ "nodetype" : "row",
1309
+ "moduleName" : "RFC1271-MIB",
1310
+ "oid" : "1.3.6.1.2.1.16.4.1.1",
1311
+ "status" : "current",
1312
+ "linkage" : [
1313
+ "hostControlIndex",
1314
+ ],
1315
+ "description" :
1316
+ """A list of parameters that set up the discovery of
1317
+ hosts on a particular interface and the collection
1318
+ of statistics about these hosts.""",
1319
+ }, # row
1320
+ "hostControlIndex" : {
1321
+ "nodetype" : "column",
1322
+ "moduleName" : "RFC1271-MIB",
1323
+ "oid" : "1.3.6.1.2.1.16.4.1.1.1",
1324
+ "status" : "current",
1325
+ "syntax" : {
1326
+ "type" : {
1327
+ "basetype" : "Integer32",
1328
+ "ranges" : [
1329
+ {
1330
+ "min" : "1",
1331
+ "max" : "65535"
1332
+ },
1333
+ ],
1334
+ "range" : {
1335
+ "min" : "1",
1336
+ "max" : "65535"
1337
+ },
1338
+ },
1339
+ },
1340
+ "access" : "readonly",
1341
+ "description" :
1342
+ """An index that uniquely identifies an entry in the
1343
+ hostControl table. Each such entry defines
1344
+ a function that discovers hosts on a particular
1345
+ interface and places statistics about them in the
1346
+ hostTable and the hostTimeTable on behalf of this
1347
+ hostControlEntry.""",
1348
+ }, # column
1349
+ "hostControlDataSource" : {
1350
+ "nodetype" : "column",
1351
+ "moduleName" : "RFC1271-MIB",
1352
+ "oid" : "1.3.6.1.2.1.16.4.1.1.2",
1353
+ "status" : "current",
1354
+ "syntax" : {
1355
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
1356
+ },
1357
+ "access" : "readwrite",
1358
+ "description" :
1359
+ """This object identifies the source of the data for
1360
+ this instance of the host function. This source
1361
+ can be any interface on this device. In order
1362
+ to identify a particular interface, this object shall
1363
+ identify the instance of the ifIndex object, defined
1364
+ in [4,6], for the desired interface. For example,
1365
+ if an entry were to receive data from interface #1,
1366
+ this object would be set to ifIndex.1.
1367
+
1368
+ The statistics in this group reflect all packets
1369
+ on the local network segment attached to the
1370
+ identified interface.
1371
+
1372
+ This object may not be modified if the associated
1373
+ hostControlStatus object is equal to valid(1).""",
1374
+ }, # column
1375
+ "hostControlTableSize" : {
1376
+ "nodetype" : "column",
1377
+ "moduleName" : "RFC1271-MIB",
1378
+ "oid" : "1.3.6.1.2.1.16.4.1.1.3",
1379
+ "status" : "current",
1380
+ "syntax" : {
1381
+ "type" : { "module" :"", "name" : "Integer32"},
1382
+ },
1383
+ "access" : "readonly",
1384
+ "description" :
1385
+ """The number of hostEntries in the hostTable and the
1386
+ hostTimeTable associated with this hostControlEntry.""",
1387
+ }, # column
1388
+ "hostControlLastDeleteTime" : {
1389
+ "nodetype" : "column",
1390
+ "moduleName" : "RFC1271-MIB",
1391
+ "oid" : "1.3.6.1.2.1.16.4.1.1.4",
1392
+ "status" : "current",
1393
+ "syntax" : {
1394
+ "type" : { "module" :"RFC1155-SMI", "name" : "TimeTicks"},
1395
+ },
1396
+ "access" : "readonly",
1397
+ "description" :
1398
+ """The value of sysUpTime when the last entry
1399
+ was deleted from the portion of the hostTable
1400
+ associated with this hostControlEntry. If no
1401
+ deletions have occurred, this value shall be zero.""",
1402
+ }, # column
1403
+ "hostControlOwner" : {
1404
+ "nodetype" : "column",
1405
+ "moduleName" : "RFC1271-MIB",
1406
+ "oid" : "1.3.6.1.2.1.16.4.1.1.5",
1407
+ "status" : "current",
1408
+ "syntax" : {
1409
+ "type" : { "module" :"RFC1271-MIB", "name" : "OwnerString"},
1410
+ },
1411
+ "access" : "readwrite",
1412
+ "description" :
1413
+ """The entity that configured this entry and is
1414
+ therefore using the resources assigned to it.""",
1415
+ }, # column
1416
+ "hostControlStatus" : {
1417
+ "nodetype" : "column",
1418
+ "moduleName" : "RFC1271-MIB",
1419
+ "oid" : "1.3.6.1.2.1.16.4.1.1.6",
1420
+ "status" : "current",
1421
+ "syntax" : {
1422
+ "type" : { "module" :"RFC1271-MIB", "name" : "EntryStatus"},
1423
+ },
1424
+ "access" : "readwrite",
1425
+ "description" :
1426
+ """The status of this hostControl entry.
1427
+
1428
+ If this object is not equal to valid(1), all
1429
+ associated entries in the hostTable,
1430
+ hostTimeTable, and the hostTopNTable shall be
1431
+ deleted by the agent.""",
1432
+ }, # column
1433
+ "hostTable" : {
1434
+ "nodetype" : "table",
1435
+ "moduleName" : "RFC1271-MIB",
1436
+ "oid" : "1.3.6.1.2.1.16.4.2",
1437
+ "status" : "current",
1438
+ "description" :
1439
+ """A list of host entries.""",
1440
+ }, # table
1441
+ "hostEntry" : {
1442
+ "nodetype" : "row",
1443
+ "moduleName" : "RFC1271-MIB",
1444
+ "oid" : "1.3.6.1.2.1.16.4.2.1",
1445
+ "status" : "current",
1446
+ "linkage" : [
1447
+ "hostIndex",
1448
+ "hostAddress",
1449
+ ],
1450
+ "description" :
1451
+ """A collection of statistics for a particular host
1452
+ that has been discovered on an interface of this
1453
+ device.""",
1454
+ }, # row
1455
+ "hostAddress" : {
1456
+ "nodetype" : "column",
1457
+ "moduleName" : "RFC1271-MIB",
1458
+ "oid" : "1.3.6.1.2.1.16.4.2.1.1",
1459
+ "status" : "current",
1460
+ "syntax" : {
1461
+ "type" : { "module" :"", "name" : "OctetString"},
1462
+ },
1463
+ "access" : "readonly",
1464
+ "description" :
1465
+ """The physical address of this host.""",
1466
+ }, # column
1467
+ "hostCreationOrder" : {
1468
+ "nodetype" : "column",
1469
+ "moduleName" : "RFC1271-MIB",
1470
+ "oid" : "1.3.6.1.2.1.16.4.2.1.2",
1471
+ "status" : "current",
1472
+ "syntax" : {
1473
+ "type" : {
1474
+ "basetype" : "Integer32",
1475
+ "ranges" : [
1476
+ {
1477
+ "min" : "1",
1478
+ "max" : "65535"
1479
+ },
1480
+ ],
1481
+ "range" : {
1482
+ "min" : "1",
1483
+ "max" : "65535"
1484
+ },
1485
+ },
1486
+ },
1487
+ "access" : "readonly",
1488
+ "description" :
1489
+ """An index that defines the relative ordering of
1490
+ the creation time of hosts captured for a
1491
+ particular hostControlEntry. This index shall
1492
+ be between 1 and N, where N is the value of
1493
+ the associated hostControlTableSize. The ordering
1494
+ of the indexes is based on the order of each entry's
1495
+ insertion into the table, in which entries added
1496
+ earlier have a lower index value than entries added
1497
+ later.
1498
+
1499
+ It is important to note that the order for a
1500
+ particular entry may change as an (earlier) entry
1501
+ is deleted from the table. Because this order may
1502
+ change, management stations should make use of the
1503
+ hostControlLastDeleteTime variable in the
1504
+ hostControlEntry associated with the relevant
1505
+ portion of the hostTable. By observing
1506
+ this variable, the management station may detect
1507
+ the circumstances where a previous association
1508
+ between a value of hostCreationOrder
1509
+ and a hostEntry may no longer hold.""",
1510
+ }, # column
1511
+ "hostIndex" : {
1512
+ "nodetype" : "column",
1513
+ "moduleName" : "RFC1271-MIB",
1514
+ "oid" : "1.3.6.1.2.1.16.4.2.1.3",
1515
+ "status" : "current",
1516
+ "syntax" : {
1517
+ "type" : {
1518
+ "basetype" : "Integer32",
1519
+ "ranges" : [
1520
+ {
1521
+ "min" : "1",
1522
+ "max" : "65535"
1523
+ },
1524
+ ],
1525
+ "range" : {
1526
+ "min" : "1",
1527
+ "max" : "65535"
1528
+ },
1529
+ },
1530
+ },
1531
+ "access" : "readonly",
1532
+ "description" :
1533
+ """The set of collected host statistics of which
1534
+ this entry is a part. The set of hosts
1535
+ identified by a particular value of this
1536
+ index is associated with the hostControlEntry
1537
+ as identified by the same value of hostControlIndex.""",
1538
+ }, # column
1539
+ "hostInPkts" : {
1540
+ "nodetype" : "column",
1541
+ "moduleName" : "RFC1271-MIB",
1542
+ "oid" : "1.3.6.1.2.1.16.4.2.1.4",
1543
+ "status" : "current",
1544
+ "syntax" : {
1545
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1546
+ },
1547
+ "access" : "readonly",
1548
+ "description" :
1549
+ """The number of packets without errors transmitted to
1550
+ this address since it was added to the hostTable.""",
1551
+ }, # column
1552
+ "hostOutPkts" : {
1553
+ "nodetype" : "column",
1554
+ "moduleName" : "RFC1271-MIB",
1555
+ "oid" : "1.3.6.1.2.1.16.4.2.1.5",
1556
+ "status" : "current",
1557
+ "syntax" : {
1558
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1559
+ },
1560
+ "access" : "readonly",
1561
+ "description" :
1562
+ """The number of packets including errors transmitted
1563
+ by this address since it was added to the hostTable.""",
1564
+ }, # column
1565
+ "hostInOctets" : {
1566
+ "nodetype" : "column",
1567
+ "moduleName" : "RFC1271-MIB",
1568
+ "oid" : "1.3.6.1.2.1.16.4.2.1.6",
1569
+ "status" : "current",
1570
+ "syntax" : {
1571
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1572
+ },
1573
+ "access" : "readonly",
1574
+ "description" :
1575
+ """The number of octets transmitted to this address
1576
+ since it was added to the hostTable (excluding
1577
+ framing bits but including FCS octets), except for
1578
+ those octets in packets that contained errors.""",
1579
+ }, # column
1580
+ "hostOutOctets" : {
1581
+ "nodetype" : "column",
1582
+ "moduleName" : "RFC1271-MIB",
1583
+ "oid" : "1.3.6.1.2.1.16.4.2.1.7",
1584
+ "status" : "current",
1585
+ "syntax" : {
1586
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1587
+ },
1588
+ "access" : "readonly",
1589
+ "description" :
1590
+ """The number of octets transmitted by this address
1591
+ since it was added to the hostTable (excluding
1592
+ framing bits but including FCS octets), including
1593
+ those octets in packets that contained errors.""",
1594
+ }, # column
1595
+ "hostOutErrors" : {
1596
+ "nodetype" : "column",
1597
+ "moduleName" : "RFC1271-MIB",
1598
+ "oid" : "1.3.6.1.2.1.16.4.2.1.8",
1599
+ "status" : "current",
1600
+ "syntax" : {
1601
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1602
+ },
1603
+ "access" : "readonly",
1604
+ "description" :
1605
+ """The number of error packets transmitted by this
1606
+ address since this host was added to the hostTable.""",
1607
+ }, # column
1608
+ "hostOutBroadcastPkts" : {
1609
+ "nodetype" : "column",
1610
+ "moduleName" : "RFC1271-MIB",
1611
+ "oid" : "1.3.6.1.2.1.16.4.2.1.9",
1612
+ "status" : "current",
1613
+ "syntax" : {
1614
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1615
+ },
1616
+ "access" : "readonly",
1617
+ "description" :
1618
+ """The number of good packets transmitted by this
1619
+ address that were directed to the broadcast address
1620
+ since this host was added to the hostTable.""",
1621
+ }, # column
1622
+ "hostOutMulticastPkts" : {
1623
+ "nodetype" : "column",
1624
+ "moduleName" : "RFC1271-MIB",
1625
+ "oid" : "1.3.6.1.2.1.16.4.2.1.10",
1626
+ "status" : "current",
1627
+ "syntax" : {
1628
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1629
+ },
1630
+ "access" : "readonly",
1631
+ "description" :
1632
+ """The number of good packets transmitted by this
1633
+ address that were directed to a multicast address
1634
+ since this host was added to the hostTable.
1635
+ Note that this number does not include packets
1636
+ directed to the broadcast address.""",
1637
+ }, # column
1638
+ "hostTimeTable" : {
1639
+ "nodetype" : "table",
1640
+ "moduleName" : "RFC1271-MIB",
1641
+ "oid" : "1.3.6.1.2.1.16.4.3",
1642
+ "status" : "current",
1643
+ "description" :
1644
+ """A list of time-ordered host table entries.""",
1645
+ }, # table
1646
+ "hostTimeEntry" : {
1647
+ "nodetype" : "row",
1648
+ "moduleName" : "RFC1271-MIB",
1649
+ "oid" : "1.3.6.1.2.1.16.4.3.1",
1650
+ "status" : "current",
1651
+ "linkage" : [
1652
+ "hostTimeIndex",
1653
+ "hostTimeCreationOrder",
1654
+ ],
1655
+ "description" :
1656
+ """A collection of statistics for a particular host
1657
+ that has been discovered on an interface of this
1658
+ device. This collection includes the relative
1659
+ ordering of the creation time of this object.""",
1660
+ }, # row
1661
+ "hostTimeAddress" : {
1662
+ "nodetype" : "column",
1663
+ "moduleName" : "RFC1271-MIB",
1664
+ "oid" : "1.3.6.1.2.1.16.4.3.1.1",
1665
+ "status" : "current",
1666
+ "syntax" : {
1667
+ "type" : { "module" :"", "name" : "OctetString"},
1668
+ },
1669
+ "access" : "readonly",
1670
+ "description" :
1671
+ """The physical address of this host.""",
1672
+ }, # column
1673
+ "hostTimeCreationOrder" : {
1674
+ "nodetype" : "column",
1675
+ "moduleName" : "RFC1271-MIB",
1676
+ "oid" : "1.3.6.1.2.1.16.4.3.1.2",
1677
+ "status" : "current",
1678
+ "syntax" : {
1679
+ "type" : {
1680
+ "basetype" : "Integer32",
1681
+ "ranges" : [
1682
+ {
1683
+ "min" : "1",
1684
+ "max" : "65535"
1685
+ },
1686
+ ],
1687
+ "range" : {
1688
+ "min" : "1",
1689
+ "max" : "65535"
1690
+ },
1691
+ },
1692
+ },
1693
+ "access" : "readonly",
1694
+ "description" :
1695
+ """An index that uniquely identifies an entry in
1696
+ the hostTime table among those entries associated
1697
+ with the same hostControlEntry. This index shall
1698
+ be between 1 and N, where N is the value of
1699
+ the associated hostControlTableSize. The ordering
1700
+ of the indexes is based on the order of each entry's
1701
+ insertion into the table, in which entries added
1702
+ earlier have a lower index value than entries added
1703
+ later. Thus the management station has the ability
1704
+ to learn of new entries added to this table without
1705
+ downloading the entire table.
1706
+
1707
+ It is important to note that the index for a
1708
+ particular entry may change as an (earlier) entry
1709
+ is deleted from the table. Because this order may
1710
+ change, management stations should make use of the
1711
+ hostControlLastDeleteTime variable in the
1712
+ hostControlEntry associated with the relevant
1713
+ portion of the hostTimeTable. By observing
1714
+ this variable, the management station may detect
1715
+ the circumstances where a download of the table
1716
+ may have missed entries, and where a previous
1717
+ association between a value of hostTimeCreationOrder
1718
+ and a hostTimeEntry may no longer hold.""",
1719
+ }, # column
1720
+ "hostTimeIndex" : {
1721
+ "nodetype" : "column",
1722
+ "moduleName" : "RFC1271-MIB",
1723
+ "oid" : "1.3.6.1.2.1.16.4.3.1.3",
1724
+ "status" : "current",
1725
+ "syntax" : {
1726
+ "type" : {
1727
+ "basetype" : "Integer32",
1728
+ "ranges" : [
1729
+ {
1730
+ "min" : "1",
1731
+ "max" : "65535"
1732
+ },
1733
+ ],
1734
+ "range" : {
1735
+ "min" : "1",
1736
+ "max" : "65535"
1737
+ },
1738
+ },
1739
+ },
1740
+ "access" : "readonly",
1741
+ "description" :
1742
+ """The set of collected host statistics of which
1743
+ this entry is a part. The set of hosts
1744
+ identified by a particular value of this
1745
+ index is associated with the hostControlEntry
1746
+ as identified by the same value of hostControlIndex.""",
1747
+ }, # column
1748
+ "hostTimeInPkts" : {
1749
+ "nodetype" : "column",
1750
+ "moduleName" : "RFC1271-MIB",
1751
+ "oid" : "1.3.6.1.2.1.16.4.3.1.4",
1752
+ "status" : "current",
1753
+ "syntax" : {
1754
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1755
+ },
1756
+ "access" : "readonly",
1757
+ "description" :
1758
+ """The number of packets without errors transmitted to
1759
+ this address since it was added to the hostTimeTable.""",
1760
+ }, # column
1761
+ "hostTimeOutPkts" : {
1762
+ "nodetype" : "column",
1763
+ "moduleName" : "RFC1271-MIB",
1764
+ "oid" : "1.3.6.1.2.1.16.4.3.1.5",
1765
+ "status" : "current",
1766
+ "syntax" : {
1767
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1768
+ },
1769
+ "access" : "readonly",
1770
+ "description" :
1771
+ """The number of packets including errors transmitted
1772
+ by this address since it was added to the
1773
+ hostTimeTable.""",
1774
+ }, # column
1775
+ "hostTimeInOctets" : {
1776
+ "nodetype" : "column",
1777
+ "moduleName" : "RFC1271-MIB",
1778
+ "oid" : "1.3.6.1.2.1.16.4.3.1.6",
1779
+ "status" : "current",
1780
+ "syntax" : {
1781
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1782
+ },
1783
+ "access" : "readonly",
1784
+ "description" :
1785
+ """The number of octets transmitted to this address
1786
+ since it was added to the hostTimeTable (excluding
1787
+ framing bits but including FCS octets), except for
1788
+ those octets in packets that contained errors.""",
1789
+ }, # column
1790
+ "hostTimeOutOctets" : {
1791
+ "nodetype" : "column",
1792
+ "moduleName" : "RFC1271-MIB",
1793
+ "oid" : "1.3.6.1.2.1.16.4.3.1.7",
1794
+ "status" : "current",
1795
+ "syntax" : {
1796
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1797
+ },
1798
+ "access" : "readonly",
1799
+ "description" :
1800
+ """The number of octets transmitted by this address since
1801
+ it was added to the hostTimeTable (excluding framing
1802
+ bits but including FCS octets), including those
1803
+ octets in packets that contained errors.""",
1804
+ }, # column
1805
+ "hostTimeOutErrors" : {
1806
+ "nodetype" : "column",
1807
+ "moduleName" : "RFC1271-MIB",
1808
+ "oid" : "1.3.6.1.2.1.16.4.3.1.8",
1809
+ "status" : "current",
1810
+ "syntax" : {
1811
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1812
+ },
1813
+ "access" : "readonly",
1814
+ "description" :
1815
+ """The number of error packets transmitted by this
1816
+ address since this host was added to the
1817
+ hostTimeTable.""",
1818
+ }, # column
1819
+ "hostTimeOutBroadcastPkts" : {
1820
+ "nodetype" : "column",
1821
+ "moduleName" : "RFC1271-MIB",
1822
+ "oid" : "1.3.6.1.2.1.16.4.3.1.9",
1823
+ "status" : "current",
1824
+ "syntax" : {
1825
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1826
+ },
1827
+ "access" : "readonly",
1828
+ "description" :
1829
+ """The number of good packets transmitted by this
1830
+ address that were directed to the broadcast address
1831
+ since this host was added to the hostTimeTable.""",
1832
+ }, # column
1833
+ "hostTimeOutMulticastPkts" : {
1834
+ "nodetype" : "column",
1835
+ "moduleName" : "RFC1271-MIB",
1836
+ "oid" : "1.3.6.1.2.1.16.4.3.1.10",
1837
+ "status" : "current",
1838
+ "syntax" : {
1839
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1840
+ },
1841
+ "access" : "readonly",
1842
+ "description" :
1843
+ """The number of good packets transmitted by this
1844
+ address that were directed to a multicast address
1845
+ since this host was added to the hostTimeTable.
1846
+ Note that this number does not include packets
1847
+ directed to the broadcast address.""",
1848
+ }, # column
1849
+ "hostTopN" : {
1850
+ "nodetype" : "node",
1851
+ "moduleName" : "RFC1271-MIB",
1852
+ "oid" : "1.3.6.1.2.1.16.5",
1853
+ }, # node
1854
+ "hostTopNControlTable" : {
1855
+ "nodetype" : "table",
1856
+ "moduleName" : "RFC1271-MIB",
1857
+ "oid" : "1.3.6.1.2.1.16.5.1",
1858
+ "status" : "current",
1859
+ "description" :
1860
+ """A list of top N host control entries.""",
1861
+ }, # table
1862
+ "hostTopNControlEntry" : {
1863
+ "nodetype" : "row",
1864
+ "moduleName" : "RFC1271-MIB",
1865
+ "oid" : "1.3.6.1.2.1.16.5.1.1",
1866
+ "status" : "current",
1867
+ "linkage" : [
1868
+ "hostTopNControlIndex",
1869
+ ],
1870
+ "description" :
1871
+ """A set of parameters that control the creation of a
1872
+ report of the top N hosts according to several
1873
+ metrics.""",
1874
+ }, # row
1875
+ "hostTopNControlIndex" : {
1876
+ "nodetype" : "column",
1877
+ "moduleName" : "RFC1271-MIB",
1878
+ "oid" : "1.3.6.1.2.1.16.5.1.1.1",
1879
+ "status" : "current",
1880
+ "syntax" : {
1881
+ "type" : {
1882
+ "basetype" : "Integer32",
1883
+ "ranges" : [
1884
+ {
1885
+ "min" : "1",
1886
+ "max" : "65535"
1887
+ },
1888
+ ],
1889
+ "range" : {
1890
+ "min" : "1",
1891
+ "max" : "65535"
1892
+ },
1893
+ },
1894
+ },
1895
+ "access" : "readonly",
1896
+ "description" :
1897
+ """An index that uniquely identifies an entry
1898
+ in the hostTopNControl table. Each such
1899
+ entry defines one top N report prepared for
1900
+ one interface.""",
1901
+ }, # column
1902
+ "hostTopNHostIndex" : {
1903
+ "nodetype" : "column",
1904
+ "moduleName" : "RFC1271-MIB",
1905
+ "oid" : "1.3.6.1.2.1.16.5.1.1.2",
1906
+ "status" : "current",
1907
+ "syntax" : {
1908
+ "type" : {
1909
+ "basetype" : "Integer32",
1910
+ "ranges" : [
1911
+ {
1912
+ "min" : "1",
1913
+ "max" : "65535"
1914
+ },
1915
+ ],
1916
+ "range" : {
1917
+ "min" : "1",
1918
+ "max" : "65535"
1919
+ },
1920
+ },
1921
+ },
1922
+ "access" : "readwrite",
1923
+ "description" :
1924
+ """The host table for which a top N report will be
1925
+ prepared on behalf of this entry. The host table
1926
+ identified by a particular value of this index is
1927
+ associated with the same host table as identified
1928
+ by the same value of hostIndex.
1929
+
1930
+ This object may not be modified if the associated
1931
+ hostTopNStatus object is equal to valid(1).""",
1932
+ }, # column
1933
+ "hostTopNRateBase" : {
1934
+ "nodetype" : "column",
1935
+ "moduleName" : "RFC1271-MIB",
1936
+ "oid" : "1.3.6.1.2.1.16.5.1.1.3",
1937
+ "status" : "current",
1938
+ "syntax" : {
1939
+ "type" : {
1940
+ "basetype" : "Enumeration",
1941
+ "hostTopNInPkts" : {
1942
+ "nodetype" : "namednumber",
1943
+ "number" : "1"
1944
+ },
1945
+ "hostTopNOutPkts" : {
1946
+ "nodetype" : "namednumber",
1947
+ "number" : "2"
1948
+ },
1949
+ "hostTopNInOctets" : {
1950
+ "nodetype" : "namednumber",
1951
+ "number" : "3"
1952
+ },
1953
+ "hostTopNOutOctets" : {
1954
+ "nodetype" : "namednumber",
1955
+ "number" : "4"
1956
+ },
1957
+ "hostTopNOutErrors" : {
1958
+ "nodetype" : "namednumber",
1959
+ "number" : "5"
1960
+ },
1961
+ "hostTopNOutBroadcastPkts" : {
1962
+ "nodetype" : "namednumber",
1963
+ "number" : "6"
1964
+ },
1965
+ "hostTopNOutMulticastPkts" : {
1966
+ "nodetype" : "namednumber",
1967
+ "number" : "7"
1968
+ },
1969
+ },
1970
+ },
1971
+ "access" : "readwrite",
1972
+ "description" :
1973
+ """The variable for each host that the hostTopNRate
1974
+ variable is based upon.
1975
+
1976
+ This object may not be modified if the associated
1977
+ hostTopNStatus object is equal to valid(1).""",
1978
+ }, # column
1979
+ "hostTopNTimeRemaining" : {
1980
+ "nodetype" : "column",
1981
+ "moduleName" : "RFC1271-MIB",
1982
+ "oid" : "1.3.6.1.2.1.16.5.1.1.4",
1983
+ "status" : "current",
1984
+ "syntax" : {
1985
+ "type" : { "module" :"", "name" : "Integer32"},
1986
+ },
1987
+ "access" : "readwrite",
1988
+ "default" : "0",
1989
+ "description" :
1990
+ """The number of seconds left in the report currently
1991
+ being collected. When this object is modified by
1992
+ the management station, a new collection is started,
1993
+ possibly aborting a currently running report. The
1994
+ new value is used as the requested duration of this
1995
+ report, which is loaded into the associated
1996
+ hostTopNDuration object.
1997
+
1998
+ When this object is set to a non-zero value, any
1999
+ associated hostTopNEntries shall be made
2000
+ inaccessible by the monitor. While the value of this
2001
+ object is non-zero, it decrements by one per second
2002
+ until it reaches zero. During this time, all
2003
+ associated hostTopNEntries shall remain
2004
+ inaccessible. At the time that this object
2005
+ decrements to zero, the report is made
2006
+ accessible in the hostTopNTable. Thus, the hostTopN
2007
+ table needs to be created only at the end of the
2008
+ collection interval.""",
2009
+ }, # column
2010
+ "hostTopNDuration" : {
2011
+ "nodetype" : "column",
2012
+ "moduleName" : "RFC1271-MIB",
2013
+ "oid" : "1.3.6.1.2.1.16.5.1.1.5",
2014
+ "status" : "current",
2015
+ "syntax" : {
2016
+ "type" : { "module" :"", "name" : "Integer32"},
2017
+ },
2018
+ "access" : "readonly",
2019
+ "default" : "0",
2020
+ "description" :
2021
+ """The number of seconds that this report has collected
2022
+ during the last sampling interval, or if this
2023
+ report is currently being collected, the number
2024
+ of seconds that this report is being collected
2025
+ during this sampling interval.
2026
+
2027
+ When the associated hostTopNTimeRemaining object is
2028
+ set, this object shall be set by the probe to the
2029
+ same value and shall not be modified until the next
2030
+ time the hostTopNTimeRemaining is set.
2031
+
2032
+ This value shall be zero if no reports have been
2033
+ requested for this hostTopNControlEntry.""",
2034
+ }, # column
2035
+ "hostTopNRequestedSize" : {
2036
+ "nodetype" : "column",
2037
+ "moduleName" : "RFC1271-MIB",
2038
+ "oid" : "1.3.6.1.2.1.16.5.1.1.6",
2039
+ "status" : "current",
2040
+ "syntax" : {
2041
+ "type" : { "module" :"", "name" : "Integer32"},
2042
+ },
2043
+ "access" : "readwrite",
2044
+ "default" : "10",
2045
+ "description" :
2046
+ """The maximum number of hosts requested for the top N
2047
+ table.
2048
+
2049
+ When this object is created or modified, the probe
2050
+ should set hostTopNGrantedSize as closely to this
2051
+ object as is possible for the particular probe
2052
+ implementation and available resources.""",
2053
+ }, # column
2054
+ "hostTopNGrantedSize" : {
2055
+ "nodetype" : "column",
2056
+ "moduleName" : "RFC1271-MIB",
2057
+ "oid" : "1.3.6.1.2.1.16.5.1.1.7",
2058
+ "status" : "current",
2059
+ "syntax" : {
2060
+ "type" : { "module" :"", "name" : "Integer32"},
2061
+ },
2062
+ "access" : "readonly",
2063
+ "description" :
2064
+ """The maximum number of hosts in the top N table.
2065
+
2066
+ When the associated hostTopNRequestedSize object is
2067
+ created or modified, the probe should set this
2068
+ object as closely to the requested value as is
2069
+ possible for the particular implementation and
2070
+ available resources. The probe must not lower this
2071
+ value except as a result of a set to the associated
2072
+ hostTopNRequestedSize object.
2073
+
2074
+ Hosts with the highest value of hostTopNRate shall be
2075
+ placed in this table in decreasing order of this rate
2076
+ until there is no more room or until there are no more
2077
+ hosts.""",
2078
+ }, # column
2079
+ "hostTopNStartTime" : {
2080
+ "nodetype" : "column",
2081
+ "moduleName" : "RFC1271-MIB",
2082
+ "oid" : "1.3.6.1.2.1.16.5.1.1.8",
2083
+ "status" : "current",
2084
+ "syntax" : {
2085
+ "type" : { "module" :"RFC1155-SMI", "name" : "TimeTicks"},
2086
+ },
2087
+ "access" : "readonly",
2088
+ "description" :
2089
+ """The value of sysUpTime when this top N report was
2090
+ last started. In other words, this is the time that
2091
+ the associated hostTopNTimeRemaining object was
2092
+ modified to start the requested report.""",
2093
+ }, # column
2094
+ "hostTopNOwner" : {
2095
+ "nodetype" : "column",
2096
+ "moduleName" : "RFC1271-MIB",
2097
+ "oid" : "1.3.6.1.2.1.16.5.1.1.9",
2098
+ "status" : "current",
2099
+ "syntax" : {
2100
+ "type" : { "module" :"RFC1271-MIB", "name" : "OwnerString"},
2101
+ },
2102
+ "access" : "readwrite",
2103
+ "description" :
2104
+ """The entity that configured this entry and is
2105
+ therefore using the resources assigned to it.""",
2106
+ }, # column
2107
+ "hostTopNStatus" : {
2108
+ "nodetype" : "column",
2109
+ "moduleName" : "RFC1271-MIB",
2110
+ "oid" : "1.3.6.1.2.1.16.5.1.1.10",
2111
+ "status" : "current",
2112
+ "syntax" : {
2113
+ "type" : { "module" :"RFC1271-MIB", "name" : "EntryStatus"},
2114
+ },
2115
+ "access" : "readwrite",
2116
+ "description" :
2117
+ """The status of this hostTopNControl entry.
2118
+ If this object is not equal to valid(1), all
2119
+ associated hostTopNEntries shall be deleted by
2120
+ the agent.""",
2121
+ }, # column
2122
+ "hostTopNTable" : {
2123
+ "nodetype" : "table",
2124
+ "moduleName" : "RFC1271-MIB",
2125
+ "oid" : "1.3.6.1.2.1.16.5.2",
2126
+ "status" : "current",
2127
+ "description" :
2128
+ """A list of top N host entries.""",
2129
+ }, # table
2130
+ "hostTopNEntry" : {
2131
+ "nodetype" : "row",
2132
+ "moduleName" : "RFC1271-MIB",
2133
+ "oid" : "1.3.6.1.2.1.16.5.2.1",
2134
+ "status" : "current",
2135
+ "linkage" : [
2136
+ "hostTopNReport",
2137
+ "hostTopNIndex",
2138
+ ],
2139
+ "description" :
2140
+ """A set of statistics for a host that is part of a
2141
+ top N report.""",
2142
+ }, # row
2143
+ "hostTopNReport" : {
2144
+ "nodetype" : "column",
2145
+ "moduleName" : "RFC1271-MIB",
2146
+ "oid" : "1.3.6.1.2.1.16.5.2.1.1",
2147
+ "status" : "current",
2148
+ "syntax" : {
2149
+ "type" : {
2150
+ "basetype" : "Integer32",
2151
+ "ranges" : [
2152
+ {
2153
+ "min" : "1",
2154
+ "max" : "65535"
2155
+ },
2156
+ ],
2157
+ "range" : {
2158
+ "min" : "1",
2159
+ "max" : "65535"
2160
+ },
2161
+ },
2162
+ },
2163
+ "access" : "readonly",
2164
+ "description" :
2165
+ """This object identifies the top N report of which
2166
+ this entry is a part. The set of hosts
2167
+ identified by a particular value of this
2168
+ object is part of the same report as identified
2169
+ by the same value of the hostTopNControlIndex object.""",
2170
+ }, # column
2171
+ "hostTopNIndex" : {
2172
+ "nodetype" : "column",
2173
+ "moduleName" : "RFC1271-MIB",
2174
+ "oid" : "1.3.6.1.2.1.16.5.2.1.2",
2175
+ "status" : "current",
2176
+ "syntax" : {
2177
+ "type" : {
2178
+ "basetype" : "Integer32",
2179
+ "ranges" : [
2180
+ {
2181
+ "min" : "1",
2182
+ "max" : "65535"
2183
+ },
2184
+ ],
2185
+ "range" : {
2186
+ "min" : "1",
2187
+ "max" : "65535"
2188
+ },
2189
+ },
2190
+ },
2191
+ "access" : "readonly",
2192
+ "description" :
2193
+ """An index that uniquely identifies an entry in
2194
+ the hostTopN table among those in the same report.
2195
+ This index is between 1 and N, where N is the
2196
+ number of entries in this table. Increasing values
2197
+ of hostTopNIndex shall be assigned to entries with
2198
+ decreasing values of hostTopNRate until index N
2199
+ is assigned to the entry with the lowest value of
2200
+ hostTopNRate or there are no more hostTopNEntries.""",
2201
+ }, # column
2202
+ "hostTopNAddress" : {
2203
+ "nodetype" : "column",
2204
+ "moduleName" : "RFC1271-MIB",
2205
+ "oid" : "1.3.6.1.2.1.16.5.2.1.3",
2206
+ "status" : "current",
2207
+ "syntax" : {
2208
+ "type" : { "module" :"", "name" : "OctetString"},
2209
+ },
2210
+ "access" : "readonly",
2211
+ "description" :
2212
+ """The physical address of this host.""",
2213
+ }, # column
2214
+ "hostTopNRate" : {
2215
+ "nodetype" : "column",
2216
+ "moduleName" : "RFC1271-MIB",
2217
+ "oid" : "1.3.6.1.2.1.16.5.2.1.4",
2218
+ "status" : "current",
2219
+ "syntax" : {
2220
+ "type" : { "module" :"", "name" : "Integer32"},
2221
+ },
2222
+ "access" : "readonly",
2223
+ "description" :
2224
+ """The amount of change in the selected variable
2225
+ during this sampling interval. The selected
2226
+ variable is this host's instance of the object
2227
+ selected by hostTopNRateBase.""",
2228
+ }, # column
2229
+ "matrix" : {
2230
+ "nodetype" : "node",
2231
+ "moduleName" : "RFC1271-MIB",
2232
+ "oid" : "1.3.6.1.2.1.16.6",
2233
+ }, # node
2234
+ "matrixControlTable" : {
2235
+ "nodetype" : "table",
2236
+ "moduleName" : "RFC1271-MIB",
2237
+ "oid" : "1.3.6.1.2.1.16.6.1",
2238
+ "status" : "current",
2239
+ "description" :
2240
+ """A list of information entries for the
2241
+ traffic matrix on each interface.""",
2242
+ }, # table
2243
+ "matrixControlEntry" : {
2244
+ "nodetype" : "row",
2245
+ "moduleName" : "RFC1271-MIB",
2246
+ "oid" : "1.3.6.1.2.1.16.6.1.1",
2247
+ "status" : "current",
2248
+ "linkage" : [
2249
+ "matrixControlIndex",
2250
+ ],
2251
+ "description" :
2252
+ """Information about a traffic matrix on a
2253
+ particular interface.""",
2254
+ }, # row
2255
+ "matrixControlIndex" : {
2256
+ "nodetype" : "column",
2257
+ "moduleName" : "RFC1271-MIB",
2258
+ "oid" : "1.3.6.1.2.1.16.6.1.1.1",
2259
+ "status" : "current",
2260
+ "syntax" : {
2261
+ "type" : {
2262
+ "basetype" : "Integer32",
2263
+ "ranges" : [
2264
+ {
2265
+ "min" : "1",
2266
+ "max" : "65535"
2267
+ },
2268
+ ],
2269
+ "range" : {
2270
+ "min" : "1",
2271
+ "max" : "65535"
2272
+ },
2273
+ },
2274
+ },
2275
+ "access" : "readonly",
2276
+ "description" :
2277
+ """An index that uniquely identifies an entry in the
2278
+ matrixControl table. Each such entry defines
2279
+ a function that discovers conversations on a particular
2280
+ interface and places statistics about them in the
2281
+ matrixSDTable and the matrixDSTable on behalf of this
2282
+ matrixControlEntry.""",
2283
+ }, # column
2284
+ "matrixControlDataSource" : {
2285
+ "nodetype" : "column",
2286
+ "moduleName" : "RFC1271-MIB",
2287
+ "oid" : "1.3.6.1.2.1.16.6.1.1.2",
2288
+ "status" : "current",
2289
+ "syntax" : {
2290
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
2291
+ },
2292
+ "access" : "readwrite",
2293
+ "description" :
2294
+ """This object identifies the source of
2295
+ the data from which this entry creates a traffic matrix.
2296
+ This source can be any interface on this device. In
2297
+ order to identify a particular interface, this object
2298
+ shall identify the instance of the ifIndex object,
2299
+ defined in [4,6], for the desired interface. For
2300
+ example, if an entry were to receive data from
2301
+ interface #1, this object would be set to ifIndex.1.
2302
+
2303
+ The statistics in this group reflect all packets
2304
+ on the local network segment attached to the
2305
+ identified interface.
2306
+
2307
+ This object may not be modified if the associated
2308
+ matrixControlStatus object is equal to valid(1).""",
2309
+ }, # column
2310
+ "matrixControlTableSize" : {
2311
+ "nodetype" : "column",
2312
+ "moduleName" : "RFC1271-MIB",
2313
+ "oid" : "1.3.6.1.2.1.16.6.1.1.3",
2314
+ "status" : "current",
2315
+ "syntax" : {
2316
+ "type" : { "module" :"", "name" : "Integer32"},
2317
+ },
2318
+ "access" : "readonly",
2319
+ "description" :
2320
+ """The number of matrixSDEntries in the matrixSDTable
2321
+ for this interface. This must also be the value of
2322
+ the number of entries in the matrixDSTable for this
2323
+ interface.""",
2324
+ }, # column
2325
+ "matrixControlLastDeleteTime" : {
2326
+ "nodetype" : "column",
2327
+ "moduleName" : "RFC1271-MIB",
2328
+ "oid" : "1.3.6.1.2.1.16.6.1.1.4",
2329
+ "status" : "current",
2330
+ "syntax" : {
2331
+ "type" : { "module" :"RFC1155-SMI", "name" : "TimeTicks"},
2332
+ },
2333
+ "access" : "readonly",
2334
+ "description" :
2335
+ """The value of sysUpTime when the last entry
2336
+ was deleted from the portion of the matrixSDTable
2337
+ or matrixDSTable associated with this
2338
+ matrixControlEntry.
2339
+ If no deletions have occurred, this value shall be
2340
+ zero.""",
2341
+ }, # column
2342
+ "matrixControlOwner" : {
2343
+ "nodetype" : "column",
2344
+ "moduleName" : "RFC1271-MIB",
2345
+ "oid" : "1.3.6.1.2.1.16.6.1.1.5",
2346
+ "status" : "current",
2347
+ "syntax" : {
2348
+ "type" : { "module" :"RFC1271-MIB", "name" : "OwnerString"},
2349
+ },
2350
+ "access" : "readwrite",
2351
+ "description" :
2352
+ """The entity that configured this entry and is
2353
+ therefore using the resources assigned to it.""",
2354
+ }, # column
2355
+ "matrixControlStatus" : {
2356
+ "nodetype" : "column",
2357
+ "moduleName" : "RFC1271-MIB",
2358
+ "oid" : "1.3.6.1.2.1.16.6.1.1.6",
2359
+ "status" : "current",
2360
+ "syntax" : {
2361
+ "type" : { "module" :"RFC1271-MIB", "name" : "EntryStatus"},
2362
+ },
2363
+ "access" : "readwrite",
2364
+ "description" :
2365
+ """The status of this matrixControl entry.
2366
+
2367
+ If this object is not equal to valid(1), all
2368
+ associated entries in the matrixSDTable and the
2369
+ matrixDSTable shall be deleted by the agent.""",
2370
+ }, # column
2371
+ "matrixSDTable" : {
2372
+ "nodetype" : "table",
2373
+ "moduleName" : "RFC1271-MIB",
2374
+ "oid" : "1.3.6.1.2.1.16.6.2",
2375
+ "status" : "current",
2376
+ "description" :
2377
+ """A list of traffic matrix entries indexed by
2378
+ source and destination MAC address.""",
2379
+ }, # table
2380
+ "matrixSDEntry" : {
2381
+ "nodetype" : "row",
2382
+ "moduleName" : "RFC1271-MIB",
2383
+ "oid" : "1.3.6.1.2.1.16.6.2.1",
2384
+ "status" : "current",
2385
+ "linkage" : [
2386
+ "matrixSDIndex",
2387
+ "matrixSDSourceAddress",
2388
+ "matrixSDDestAddress",
2389
+ ],
2390
+ "description" :
2391
+ """A collection of statistics for communications between
2392
+ two addresses on a particular interface.""",
2393
+ }, # row
2394
+ "matrixSDSourceAddress" : {
2395
+ "nodetype" : "column",
2396
+ "moduleName" : "RFC1271-MIB",
2397
+ "oid" : "1.3.6.1.2.1.16.6.2.1.1",
2398
+ "status" : "current",
2399
+ "syntax" : {
2400
+ "type" : { "module" :"", "name" : "OctetString"},
2401
+ },
2402
+ "access" : "readonly",
2403
+ "description" :
2404
+ """The source physical address.""",
2405
+ }, # column
2406
+ "matrixSDDestAddress" : {
2407
+ "nodetype" : "column",
2408
+ "moduleName" : "RFC1271-MIB",
2409
+ "oid" : "1.3.6.1.2.1.16.6.2.1.2",
2410
+ "status" : "current",
2411
+ "syntax" : {
2412
+ "type" : { "module" :"", "name" : "OctetString"},
2413
+ },
2414
+ "access" : "readonly",
2415
+ "description" :
2416
+ """The destination physical address.""",
2417
+ }, # column
2418
+ "matrixSDIndex" : {
2419
+ "nodetype" : "column",
2420
+ "moduleName" : "RFC1271-MIB",
2421
+ "oid" : "1.3.6.1.2.1.16.6.2.1.3",
2422
+ "status" : "current",
2423
+ "syntax" : {
2424
+ "type" : {
2425
+ "basetype" : "Integer32",
2426
+ "ranges" : [
2427
+ {
2428
+ "min" : "1",
2429
+ "max" : "65535"
2430
+ },
2431
+ ],
2432
+ "range" : {
2433
+ "min" : "1",
2434
+ "max" : "65535"
2435
+ },
2436
+ },
2437
+ },
2438
+ "access" : "readonly",
2439
+ "description" :
2440
+ """The set of collected matrix statistics of which
2441
+ this entry is a part. The set of matrix statistics
2442
+ identified by a particular value of this index
2443
+ is associated with the same matrixControlEntry
2444
+ as identified by the same value of matrixControlIndex.""",
2445
+ }, # column
2446
+ "matrixSDPkts" : {
2447
+ "nodetype" : "column",
2448
+ "moduleName" : "RFC1271-MIB",
2449
+ "oid" : "1.3.6.1.2.1.16.6.2.1.4",
2450
+ "status" : "current",
2451
+ "syntax" : {
2452
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2453
+ },
2454
+ "access" : "readonly",
2455
+ "description" :
2456
+ """The number of packets transmitted from the source
2457
+ address to the destination address (this number
2458
+ includes error packets).""",
2459
+ }, # column
2460
+ "matrixSDOctets" : {
2461
+ "nodetype" : "column",
2462
+ "moduleName" : "RFC1271-MIB",
2463
+ "oid" : "1.3.6.1.2.1.16.6.2.1.5",
2464
+ "status" : "current",
2465
+ "syntax" : {
2466
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2467
+ },
2468
+ "access" : "readonly",
2469
+ "description" :
2470
+ """The number of octets (excluding framing bits but
2471
+ including FCS octets) contained in all packets
2472
+ transmitted from the source address to the
2473
+ destination address.""",
2474
+ }, # column
2475
+ "matrixSDErrors" : {
2476
+ "nodetype" : "column",
2477
+ "moduleName" : "RFC1271-MIB",
2478
+ "oid" : "1.3.6.1.2.1.16.6.2.1.6",
2479
+ "status" : "current",
2480
+ "syntax" : {
2481
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2482
+ },
2483
+ "access" : "readonly",
2484
+ "description" :
2485
+ """The number of error packets transmitted from
2486
+ the source address to the destination address.""",
2487
+ }, # column
2488
+ "matrixDSTable" : {
2489
+ "nodetype" : "table",
2490
+ "moduleName" : "RFC1271-MIB",
2491
+ "oid" : "1.3.6.1.2.1.16.6.3",
2492
+ "status" : "current",
2493
+ "description" :
2494
+ """A list of traffic matrix entries indexed by
2495
+ destination and source MAC address.""",
2496
+ }, # table
2497
+ "matrixDSEntry" : {
2498
+ "nodetype" : "row",
2499
+ "moduleName" : "RFC1271-MIB",
2500
+ "oid" : "1.3.6.1.2.1.16.6.3.1",
2501
+ "status" : "current",
2502
+ "linkage" : [
2503
+ "matrixDSIndex",
2504
+ "matrixDSDestAddress",
2505
+ "matrixDSSourceAddress",
2506
+ ],
2507
+ "description" :
2508
+ """A collection of statistics for communications between
2509
+ two address on a particular interface.""",
2510
+ }, # row
2511
+ "matrixDSSourceAddress" : {
2512
+ "nodetype" : "column",
2513
+ "moduleName" : "RFC1271-MIB",
2514
+ "oid" : "1.3.6.1.2.1.16.6.3.1.1",
2515
+ "status" : "current",
2516
+ "syntax" : {
2517
+ "type" : { "module" :"", "name" : "OctetString"},
2518
+ },
2519
+ "access" : "readonly",
2520
+ "description" :
2521
+ """The source physical address.""",
2522
+ }, # column
2523
+ "matrixDSDestAddress" : {
2524
+ "nodetype" : "column",
2525
+ "moduleName" : "RFC1271-MIB",
2526
+ "oid" : "1.3.6.1.2.1.16.6.3.1.2",
2527
+ "status" : "current",
2528
+ "syntax" : {
2529
+ "type" : { "module" :"", "name" : "OctetString"},
2530
+ },
2531
+ "access" : "readonly",
2532
+ "description" :
2533
+ """The destination physical address.""",
2534
+ }, # column
2535
+ "matrixDSIndex" : {
2536
+ "nodetype" : "column",
2537
+ "moduleName" : "RFC1271-MIB",
2538
+ "oid" : "1.3.6.1.2.1.16.6.3.1.3",
2539
+ "status" : "current",
2540
+ "syntax" : {
2541
+ "type" : {
2542
+ "basetype" : "Integer32",
2543
+ "ranges" : [
2544
+ {
2545
+ "min" : "1",
2546
+ "max" : "65535"
2547
+ },
2548
+ ],
2549
+ "range" : {
2550
+ "min" : "1",
2551
+ "max" : "65535"
2552
+ },
2553
+ },
2554
+ },
2555
+ "access" : "readonly",
2556
+ "description" :
2557
+ """The set of collected matrix statistics of which
2558
+ this entry is a part. The set of matrix statistics
2559
+ identified by a particular value of this index
2560
+ is associated with the same matrixControlEntry
2561
+ as identified by the same value of matrixControlIndex.""",
2562
+ }, # column
2563
+ "matrixDSPkts" : {
2564
+ "nodetype" : "column",
2565
+ "moduleName" : "RFC1271-MIB",
2566
+ "oid" : "1.3.6.1.2.1.16.6.3.1.4",
2567
+ "status" : "current",
2568
+ "syntax" : {
2569
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2570
+ },
2571
+ "access" : "readonly",
2572
+ "description" :
2573
+ """The number of packets transmitted from the source
2574
+ address to the destination address (this number
2575
+ includes error packets).""",
2576
+ }, # column
2577
+ "matrixDSOctets" : {
2578
+ "nodetype" : "column",
2579
+ "moduleName" : "RFC1271-MIB",
2580
+ "oid" : "1.3.6.1.2.1.16.6.3.1.5",
2581
+ "status" : "current",
2582
+ "syntax" : {
2583
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2584
+ },
2585
+ "access" : "readonly",
2586
+ "description" :
2587
+ """The number of octets (excluding framing bits
2588
+ but including FCS octets) contained in all packets
2589
+ transmitted from the source address to the
2590
+ destination address.""",
2591
+ }, # column
2592
+ "matrixDSErrors" : {
2593
+ "nodetype" : "column",
2594
+ "moduleName" : "RFC1271-MIB",
2595
+ "oid" : "1.3.6.1.2.1.16.6.3.1.6",
2596
+ "status" : "current",
2597
+ "syntax" : {
2598
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2599
+ },
2600
+ "access" : "readonly",
2601
+ "description" :
2602
+ """The number of error packets transmitted from
2603
+ the source address to the destination address.""",
2604
+ }, # column
2605
+ "filter" : {
2606
+ "nodetype" : "node",
2607
+ "moduleName" : "RFC1271-MIB",
2608
+ "oid" : "1.3.6.1.2.1.16.7",
2609
+ }, # node
2610
+ "filterTable" : {
2611
+ "nodetype" : "table",
2612
+ "moduleName" : "RFC1271-MIB",
2613
+ "oid" : "1.3.6.1.2.1.16.7.1",
2614
+ "status" : "current",
2615
+ "description" :
2616
+ """A list of packet filter entries.""",
2617
+ }, # table
2618
+ "filterEntry" : {
2619
+ "nodetype" : "row",
2620
+ "moduleName" : "RFC1271-MIB",
2621
+ "oid" : "1.3.6.1.2.1.16.7.1.1",
2622
+ "status" : "current",
2623
+ "linkage" : [
2624
+ "filterIndex",
2625
+ ],
2626
+ "description" :
2627
+ """A set of parameters for a packet filter applied on a
2628
+ particular interface.""",
2629
+ }, # row
2630
+ "filterIndex" : {
2631
+ "nodetype" : "column",
2632
+ "moduleName" : "RFC1271-MIB",
2633
+ "oid" : "1.3.6.1.2.1.16.7.1.1.1",
2634
+ "status" : "current",
2635
+ "syntax" : {
2636
+ "type" : {
2637
+ "basetype" : "Integer32",
2638
+ "ranges" : [
2639
+ {
2640
+ "min" : "1",
2641
+ "max" : "65535"
2642
+ },
2643
+ ],
2644
+ "range" : {
2645
+ "min" : "1",
2646
+ "max" : "65535"
2647
+ },
2648
+ },
2649
+ },
2650
+ "access" : "readonly",
2651
+ "description" :
2652
+ """An index that uniquely identifies an entry
2653
+ in the filter table. Each such entry defines
2654
+ one filter that is to be applied to every packet
2655
+ received on an interface.""",
2656
+ }, # column
2657
+ "filterChannelIndex" : {
2658
+ "nodetype" : "column",
2659
+ "moduleName" : "RFC1271-MIB",
2660
+ "oid" : "1.3.6.1.2.1.16.7.1.1.2",
2661
+ "status" : "current",
2662
+ "syntax" : {
2663
+ "type" : {
2664
+ "basetype" : "Integer32",
2665
+ "ranges" : [
2666
+ {
2667
+ "min" : "1",
2668
+ "max" : "65535"
2669
+ },
2670
+ ],
2671
+ "range" : {
2672
+ "min" : "1",
2673
+ "max" : "65535"
2674
+ },
2675
+ },
2676
+ },
2677
+ "access" : "readwrite",
2678
+ "description" :
2679
+ """This object identifies the channel of which this
2680
+ filter is a part. The filters identified by a
2681
+ particular value of this object are associated
2682
+ with the same channel as identified by the same
2683
+ value of the channelIndex object.""",
2684
+ }, # column
2685
+ "filterPktDataOffset" : {
2686
+ "nodetype" : "column",
2687
+ "moduleName" : "RFC1271-MIB",
2688
+ "oid" : "1.3.6.1.2.1.16.7.1.1.3",
2689
+ "status" : "current",
2690
+ "syntax" : {
2691
+ "type" : { "module" :"", "name" : "Integer32"},
2692
+ },
2693
+ "access" : "readwrite",
2694
+ "default" : "0",
2695
+ "description" :
2696
+ """The offset from the beginning of each packet where
2697
+ a match of packet data will be attempted. This offset
2698
+ is measured from the point in the physical layer
2699
+ packet after the framing bits, if any. For example,
2700
+ in an Ethernet frame, this point is at the beginning
2701
+ of the destination MAC address.
2702
+
2703
+ This object may not be modified if the associated
2704
+ filterStatus object is equal to valid(1).""",
2705
+ }, # column
2706
+ "filterPktData" : {
2707
+ "nodetype" : "column",
2708
+ "moduleName" : "RFC1271-MIB",
2709
+ "oid" : "1.3.6.1.2.1.16.7.1.1.4",
2710
+ "status" : "current",
2711
+ "syntax" : {
2712
+ "type" : { "module" :"", "name" : "OctetString"},
2713
+ },
2714
+ "access" : "readwrite",
2715
+ "description" :
2716
+ """The data that is to be matched with the input packet.
2717
+ For each packet received, this filter and the
2718
+ accompanying filterPktDataMask and
2719
+ filterPktDataNotMask will be adjusted for the
2720
+ offset. The only bits relevant to this
2721
+ match algorithm are those that have the corresponding
2722
+ filterPktDataMask bit equal to one. The following
2723
+ three rules are then applied to every packet:
2724
+
2725
+ (1) If the packet is too short and does not have data
2726
+ corresponding to part of the filterPktData, the
2727
+ packet will fail this data match.
2728
+
2729
+ (2) For each relevant bit from the packet with the
2730
+ corresponding filterPktDataNotMask bit set to
2731
+ zero, if the bit from the packet is not equal to
2732
+ the corresponding bit from the filterPktData,
2733
+ then the packet will fail this data match.
2734
+
2735
+ (3) If for every relevant bit from the packet with the
2736
+ corresponding filterPktDataNotMask bit set to one,
2737
+ the bit from the packet is equal to the
2738
+ corresponding bit from the filterPktData, then
2739
+ the packet will fail this data match.
2740
+
2741
+ Any packets that have not failed any of the three
2742
+ matches above have passed this data match.
2743
+
2744
+ This object may not be modified if the associated
2745
+ filterStatus object is equal to valid(1).""",
2746
+ }, # column
2747
+ "filterPktDataMask" : {
2748
+ "nodetype" : "column",
2749
+ "moduleName" : "RFC1271-MIB",
2750
+ "oid" : "1.3.6.1.2.1.16.7.1.1.5",
2751
+ "status" : "current",
2752
+ "syntax" : {
2753
+ "type" : { "module" :"", "name" : "OctetString"},
2754
+ },
2755
+ "access" : "readwrite",
2756
+ "description" :
2757
+ """The mask that is applied to the match process.
2758
+ After adjusting this mask for the offset, only those
2759
+ bits in the received packet that correspond to bits
2760
+ set in this mask are relevant for further processing
2761
+ by the match algorithm. The offset is applied to
2762
+ filterPktDataMask in the same way it is applied to
2763
+ the filter. For the purposes of the matching
2764
+ algorithm, if the associated filterPktData object
2765
+ is longer than this mask, this mask is conceptually
2766
+ extended with '1' bits until it reaches the
2767
+ length of the filterPktData object.
2768
+ This object may not be modified if the associated
2769
+ filterStatus object is equal to valid(1).""",
2770
+ }, # column
2771
+ "filterPktDataNotMask" : {
2772
+ "nodetype" : "column",
2773
+ "moduleName" : "RFC1271-MIB",
2774
+ "oid" : "1.3.6.1.2.1.16.7.1.1.6",
2775
+ "status" : "current",
2776
+ "syntax" : {
2777
+ "type" : { "module" :"", "name" : "OctetString"},
2778
+ },
2779
+ "access" : "readwrite",
2780
+ "description" :
2781
+ """The inversion mask that is applied to the match
2782
+ process. After adjusting this mask for the offset,
2783
+ those relevant bits in the received packet that
2784
+ correspond to bits cleared in this mask must all
2785
+ be equal to their corresponding bits in the
2786
+ filterPktData object for the packet to be accepted.
2787
+ In addition, at least one of those relevant
2788
+ bits in the received packet that correspond to bits
2789
+ set in this mask must be different to its
2790
+ corresponding bit in the filterPktData object.
2791
+
2792
+ For the purposes of the matching algorithm, if
2793
+ the associated filterPktData object is longer than
2794
+ this mask, this mask is conceptually extended with
2795
+ '0' bits until it reaches the length of the
2796
+ filterPktData object.
2797
+
2798
+ This object may not be modified if the associated
2799
+ filterStatus object is equal to valid(1).""",
2800
+ }, # column
2801
+ "filterPktStatus" : {
2802
+ "nodetype" : "column",
2803
+ "moduleName" : "RFC1271-MIB",
2804
+ "oid" : "1.3.6.1.2.1.16.7.1.1.7",
2805
+ "status" : "current",
2806
+ "syntax" : {
2807
+ "type" : { "module" :"", "name" : "Integer32"},
2808
+ },
2809
+ "access" : "readwrite",
2810
+ "description" :
2811
+ """The status that is to be matched with the input
2812
+ packet. The only bits relevant to this match
2813
+ algorithm are those that have the corresponding
2814
+ filterPktStatusMask bit equal to one.
2815
+
2816
+ The following two rules are then applied to every
2817
+ packet:
2818
+
2819
+ (1) For each relevant bit from the packet status
2820
+ with the corresponding filterPktStatusNotMask
2821
+ bit set to zero, if the bit from the packet
2822
+ status is not equal to the corresponding bit
2823
+ from the filterPktStatus, then the packet will
2824
+ fail this status match.
2825
+
2826
+ (2) If for every relevant bit from the packet status
2827
+ with the corresponding filterPktStatusNotMask
2828
+ bit set to one, the bit from the packet status
2829
+ is equal to the corresponding bit from the
2830
+ filterPktStatus, then the packet will fail
2831
+ this status match.
2832
+
2833
+ Any packets that have not failed either of the two
2834
+ matches above have passed this status match.
2835
+
2836
+ The value of the packet status is a sum. This sum
2837
+ initially takes the value zero. Then, for each
2838
+ error, E, that has been discovered in this packet,
2839
+ 2 raised to a value representing E is added to the sum.
2840
+ The errors and the bits that represent them are
2841
+ dependent on the media type of the interface that
2842
+ this channel is receiving packets from.
2843
+
2844
+ The errors defined for a packet captured off of an
2845
+ Ethernet interface are as follows:
2846
+
2847
+ bit # Error
2848
+ 0 Packet is longer than 1518 octets
2849
+ 1 Packet is shorter than 64 octets
2850
+ 2 Packet experienced a CRC or Alignment
2851
+ error
2852
+
2853
+ For example, an Ethernet fragment would have a
2854
+ value of 6 (2^1 + 2^2).
2855
+
2856
+ As this MIB is expanded to new media types, this
2857
+ object will have other media-specific errors defined.
2858
+
2859
+ For the purposes of this status matching algorithm, if
2860
+ the packet status is longer than this
2861
+ object, filterPktStatus this object is conceptually
2862
+ extended with '0' bits until it reaches the size of
2863
+ the packet status.
2864
+
2865
+ This object may not be modified if the associated
2866
+ filterStatus object is equal to valid(1).""",
2867
+ }, # column
2868
+ "filterPktStatusMask" : {
2869
+ "nodetype" : "column",
2870
+ "moduleName" : "RFC1271-MIB",
2871
+ "oid" : "1.3.6.1.2.1.16.7.1.1.8",
2872
+ "status" : "current",
2873
+ "syntax" : {
2874
+ "type" : { "module" :"", "name" : "Integer32"},
2875
+ },
2876
+ "access" : "readwrite",
2877
+ "description" :
2878
+ """The mask that is applied to the status match process.
2879
+ Only those bits in the received packet that correspond
2880
+ to bits set in this mask are relevant for further
2881
+ processing by the status match algorithm. For the
2882
+ purposes of the matching algorithm, if the
2883
+ associated filterPktStatus object is longer than
2884
+ this mask, this mask is conceptually extended with
2885
+ '1' bits until it reaches the size of the
2886
+ filterPktStatus. In addition, if a packet status is
2887
+ longer than this mask, this mask is conceptually
2888
+ extended with '0' bits until it reaches the size of
2889
+ the packet status.
2890
+
2891
+ This object may not be modified if the associated
2892
+ filterStatus object is equal to valid(1).""",
2893
+ }, # column
2894
+ "filterPktStatusNotMask" : {
2895
+ "nodetype" : "column",
2896
+ "moduleName" : "RFC1271-MIB",
2897
+ "oid" : "1.3.6.1.2.1.16.7.1.1.9",
2898
+ "status" : "current",
2899
+ "syntax" : {
2900
+ "type" : { "module" :"", "name" : "Integer32"},
2901
+ },
2902
+ "access" : "readwrite",
2903
+ "description" :
2904
+ """The inversion mask that is applied to the status match
2905
+ process. Those relevant bits in the received packet
2906
+ status that correspond to bits cleared in this mask
2907
+ must all be equal to their corresponding bits in the
2908
+ filterPktStatus object for the packet to be accepted.
2909
+ In addition, at least one of those relevant bits in the
2910
+ received packet status that correspond to bits set in
2911
+ this mask must be different to its corresponding bit
2912
+ in the filterPktStatus object for the packet to be
2913
+ accepted.
2914
+
2915
+ For the purposes of the matching algorithm, if the
2916
+ associated filterPktStatus object or a packet status
2917
+ is longer than this mask, this mask is conceptually
2918
+ extended with '0' bits until it reaches the longer of
2919
+ the lengths of the filterPktStatus object and the
2920
+ packet status.
2921
+
2922
+ This object may not be modified if the associated
2923
+ filterStatus object is equal to valid(1).""",
2924
+ }, # column
2925
+ "filterOwner" : {
2926
+ "nodetype" : "column",
2927
+ "moduleName" : "RFC1271-MIB",
2928
+ "oid" : "1.3.6.1.2.1.16.7.1.1.10",
2929
+ "status" : "current",
2930
+ "syntax" : {
2931
+ "type" : { "module" :"RFC1271-MIB", "name" : "OwnerString"},
2932
+ },
2933
+ "access" : "readwrite",
2934
+ "description" :
2935
+ """The entity that configured this entry and is
2936
+ therefore using the resources assigned to it.""",
2937
+ }, # column
2938
+ "filterStatus" : {
2939
+ "nodetype" : "column",
2940
+ "moduleName" : "RFC1271-MIB",
2941
+ "oid" : "1.3.6.1.2.1.16.7.1.1.11",
2942
+ "status" : "current",
2943
+ "syntax" : {
2944
+ "type" : { "module" :"RFC1271-MIB", "name" : "EntryStatus"},
2945
+ },
2946
+ "access" : "readwrite",
2947
+ "description" :
2948
+ """The status of this filter entry.""",
2949
+ }, # column
2950
+ "channelTable" : {
2951
+ "nodetype" : "table",
2952
+ "moduleName" : "RFC1271-MIB",
2953
+ "oid" : "1.3.6.1.2.1.16.7.2",
2954
+ "status" : "current",
2955
+ "description" :
2956
+ """A list of packet channel entries.""",
2957
+ }, # table
2958
+ "channelEntry" : {
2959
+ "nodetype" : "row",
2960
+ "moduleName" : "RFC1271-MIB",
2961
+ "oid" : "1.3.6.1.2.1.16.7.2.1",
2962
+ "status" : "current",
2963
+ "linkage" : [
2964
+ "channelIndex",
2965
+ ],
2966
+ "description" :
2967
+ """A set of parameters for a packet channel applied on a
2968
+ particular interface.""",
2969
+ }, # row
2970
+ "channelIndex" : {
2971
+ "nodetype" : "column",
2972
+ "moduleName" : "RFC1271-MIB",
2973
+ "oid" : "1.3.6.1.2.1.16.7.2.1.1",
2974
+ "status" : "current",
2975
+ "syntax" : {
2976
+ "type" : {
2977
+ "basetype" : "Integer32",
2978
+ "ranges" : [
2979
+ {
2980
+ "min" : "1",
2981
+ "max" : "65535"
2982
+ },
2983
+ ],
2984
+ "range" : {
2985
+ "min" : "1",
2986
+ "max" : "65535"
2987
+ },
2988
+ },
2989
+ },
2990
+ "access" : "readonly",
2991
+ "description" :
2992
+ """An index that uniquely identifies an entry
2993
+ in the channel table. Each such
2994
+ entry defines one channel, a logical data
2995
+ and event stream.""",
2996
+ }, # column
2997
+ "channelIfIndex" : {
2998
+ "nodetype" : "column",
2999
+ "moduleName" : "RFC1271-MIB",
3000
+ "oid" : "1.3.6.1.2.1.16.7.2.1.2",
3001
+ "status" : "current",
3002
+ "syntax" : {
3003
+ "type" : {
3004
+ "basetype" : "Integer32",
3005
+ "ranges" : [
3006
+ {
3007
+ "min" : "1",
3008
+ "max" : "65535"
3009
+ },
3010
+ ],
3011
+ "range" : {
3012
+ "min" : "1",
3013
+ "max" : "65535"
3014
+ },
3015
+ },
3016
+ },
3017
+ "access" : "readwrite",
3018
+ "description" :
3019
+ """The value of this object uniquely identifies the
3020
+ interface on this remote network monitoring device
3021
+ to which the associated filters are applied to allow
3022
+ data into this channel. The interface identified by
3023
+ a particular value of this object is the same
3024
+ interface as identified by the same value of the
3025
+ ifIndex object, defined in [4,6]. The filters in
3026
+ this group are applied to all packets on the local
3027
+ network segment attached to the identified
3028
+ interface.
3029
+
3030
+ This object may not be modified if the associated
3031
+ channelStatus object is equal to valid(1).""",
3032
+ }, # column
3033
+ "channelAcceptType" : {
3034
+ "nodetype" : "column",
3035
+ "moduleName" : "RFC1271-MIB",
3036
+ "oid" : "1.3.6.1.2.1.16.7.2.1.3",
3037
+ "status" : "current",
3038
+ "syntax" : {
3039
+ "type" : {
3040
+ "basetype" : "Enumeration",
3041
+ "acceptMatched" : {
3042
+ "nodetype" : "namednumber",
3043
+ "number" : "1"
3044
+ },
3045
+ "acceptFailed" : {
3046
+ "nodetype" : "namednumber",
3047
+ "number" : "2"
3048
+ },
3049
+ },
3050
+ },
3051
+ "access" : "readwrite",
3052
+ "description" :
3053
+ """This object controls the action of the filters
3054
+ associated with this channel. If this object is equal
3055
+ to acceptMatched(1), packets will be accepted to this
3056
+ channel if they are accepted by both the packet data
3057
+ and packet status matches of an associated filter. If
3058
+ this object is equal to acceptFailed(2), packets will
3059
+ be accepted to this channel only if they fail either
3060
+ the packet data match or the packet status match of
3061
+ each of the associated filters.
3062
+ This object may not be modified if the associated
3063
+ channelStatus object is equal to valid(1).""",
3064
+ }, # column
3065
+ "channelDataControl" : {
3066
+ "nodetype" : "column",
3067
+ "moduleName" : "RFC1271-MIB",
3068
+ "oid" : "1.3.6.1.2.1.16.7.2.1.4",
3069
+ "status" : "current",
3070
+ "syntax" : {
3071
+ "type" : {
3072
+ "basetype" : "Enumeration",
3073
+ "on" : {
3074
+ "nodetype" : "namednumber",
3075
+ "number" : "1"
3076
+ },
3077
+ "off" : {
3078
+ "nodetype" : "namednumber",
3079
+ "number" : "2"
3080
+ },
3081
+ },
3082
+ },
3083
+ "access" : "readwrite",
3084
+ "default" : "off",
3085
+ "description" :
3086
+ """This object controls the flow of data through this
3087
+ channel. If this object is on(1), data, status and
3088
+ events flow through this channel. If this object is
3089
+ off(2), data, status and events will not flow through
3090
+ this channel.""",
3091
+ }, # column
3092
+ "channelTurnOnEventIndex" : {
3093
+ "nodetype" : "column",
3094
+ "moduleName" : "RFC1271-MIB",
3095
+ "oid" : "1.3.6.1.2.1.16.7.2.1.5",
3096
+ "status" : "current",
3097
+ "syntax" : {
3098
+ "type" : {
3099
+ "basetype" : "Integer32",
3100
+ "ranges" : [
3101
+ {
3102
+ "min" : "0",
3103
+ "max" : "65535"
3104
+ },
3105
+ ],
3106
+ "range" : {
3107
+ "min" : "0",
3108
+ "max" : "65535"
3109
+ },
3110
+ },
3111
+ },
3112
+ "access" : "readwrite",
3113
+ "description" :
3114
+ """The value of this object identifies the event
3115
+ that is configured to turn the associated
3116
+ channelDataControl from off to on when the event is
3117
+ generated. The event identified by a particular value
3118
+ of this object is the same event as identified by the
3119
+ same value of the eventIndex object. If there is no
3120
+ corresponding entry in the eventTable, then no
3121
+ association exists. In fact, if no event is intended
3122
+ for this channel, channelTurnOnEventIndex must be
3123
+ set to zero, a non-existent event index.
3124
+
3125
+ This object may not be modified if the associated
3126
+ channelStatus object is equal to valid(1).""",
3127
+ }, # column
3128
+ "channelTurnOffEventIndex" : {
3129
+ "nodetype" : "column",
3130
+ "moduleName" : "RFC1271-MIB",
3131
+ "oid" : "1.3.6.1.2.1.16.7.2.1.6",
3132
+ "status" : "current",
3133
+ "syntax" : {
3134
+ "type" : {
3135
+ "basetype" : "Integer32",
3136
+ "ranges" : [
3137
+ {
3138
+ "min" : "0",
3139
+ "max" : "65535"
3140
+ },
3141
+ ],
3142
+ "range" : {
3143
+ "min" : "0",
3144
+ "max" : "65535"
3145
+ },
3146
+ },
3147
+ },
3148
+ "access" : "readwrite",
3149
+ "description" :
3150
+ """The value of this object identifies the event
3151
+ that is configured to turn the associated
3152
+ channelDataControl from on to off when the event is
3153
+ generated. The event identified by a particular value
3154
+ of this object is the same event as identified by the
3155
+ same value of the eventIndex object. If there is no
3156
+ corresponding entry in the eventTable, then no
3157
+ association exists. In fact, if no event is intended
3158
+ for this channel, channelTurnOffEventIndex must be
3159
+ set to zero, a non-existent event index.
3160
+
3161
+ This object may not be modified if the associated
3162
+ channelStatus object is equal to valid(1).""",
3163
+ }, # column
3164
+ "channelEventIndex" : {
3165
+ "nodetype" : "column",
3166
+ "moduleName" : "RFC1271-MIB",
3167
+ "oid" : "1.3.6.1.2.1.16.7.2.1.7",
3168
+ "status" : "current",
3169
+ "syntax" : {
3170
+ "type" : {
3171
+ "basetype" : "Integer32",
3172
+ "ranges" : [
3173
+ {
3174
+ "min" : "0",
3175
+ "max" : "65535"
3176
+ },
3177
+ ],
3178
+ "range" : {
3179
+ "min" : "0",
3180
+ "max" : "65535"
3181
+ },
3182
+ },
3183
+ },
3184
+ "access" : "readwrite",
3185
+ "description" :
3186
+ """The value of this object identifies the event
3187
+ that is configured to be generated when the
3188
+ associated channelDataControl is on and a packet
3189
+ is matched. The event identified by a particular value
3190
+ of this object is the same event as identified by the
3191
+ same value of the eventIndex object. If there is no
3192
+ corresponding entry in the eventTable, then no
3193
+ association exists. In fact, if no event is intended
3194
+ for this channel, channelEventIndex must be
3195
+ set to zero, a non-existent event index.
3196
+
3197
+ This object may not be modified if the associated
3198
+ channelStatus object is equal to valid(1).""",
3199
+ }, # column
3200
+ "channelEventStatus" : {
3201
+ "nodetype" : "column",
3202
+ "moduleName" : "RFC1271-MIB",
3203
+ "oid" : "1.3.6.1.2.1.16.7.2.1.8",
3204
+ "status" : "current",
3205
+ "syntax" : {
3206
+ "type" : {
3207
+ "basetype" : "Enumeration",
3208
+ "eventReady" : {
3209
+ "nodetype" : "namednumber",
3210
+ "number" : "1"
3211
+ },
3212
+ "eventFired" : {
3213
+ "nodetype" : "namednumber",
3214
+ "number" : "2"
3215
+ },
3216
+ "eventAlwaysReady" : {
3217
+ "nodetype" : "namednumber",
3218
+ "number" : "3"
3219
+ },
3220
+ },
3221
+ },
3222
+ "access" : "readwrite",
3223
+ "default" : "eventReady",
3224
+ "description" :
3225
+ """The event status of this channel.
3226
+
3227
+ If this channel is configured to generate events
3228
+ when packets are matched, a means of controlling
3229
+ the flow of those events is often needed. When
3230
+ this object is equal to eventReady(1), a single
3231
+ event may be generated, after which this object
3232
+ will be set by the probe to eventFired(2). While
3233
+ in the eventFired(2) state, no events will be
3234
+ generated until the object is modified to
3235
+ eventReady(1) (or eventAlwaysReady(3)). The
3236
+ management station can thus easily respond to a
3237
+ notification of an event by re-enabling this object.
3238
+
3239
+ If the management station wishes to disable this
3240
+ flow control and allow events to be generated
3241
+ at will, this object may be set to
3242
+ eventAlwaysReady(3). Disabling the flow control
3243
+ is discouraged as it can result in high network
3244
+ traffic or other performance problems.""",
3245
+ }, # column
3246
+ "channelMatches" : {
3247
+ "nodetype" : "column",
3248
+ "moduleName" : "RFC1271-MIB",
3249
+ "oid" : "1.3.6.1.2.1.16.7.2.1.9",
3250
+ "status" : "current",
3251
+ "syntax" : {
3252
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3253
+ },
3254
+ "access" : "readonly",
3255
+ "description" :
3256
+ """The number of times this channel has matched a packet.
3257
+ Note that this object is updated even when
3258
+ channelDataControl is set to off.""",
3259
+ }, # column
3260
+ "channelDescription" : {
3261
+ "nodetype" : "column",
3262
+ "moduleName" : "RFC1271-MIB",
3263
+ "oid" : "1.3.6.1.2.1.16.7.2.1.10",
3264
+ "status" : "current",
3265
+ "syntax" : {
3266
+ "type" : {
3267
+ "basetype" : "OctetString",
3268
+ "parent module" : {
3269
+ "name" : "RFC1213-MIB",
3270
+ "type" : "DisplayString",
3271
+ },
3272
+ "ranges" : [
3273
+ {
3274
+ "min" : "0",
3275
+ "max" : "127"
3276
+ },
3277
+ ],
3278
+ "range" : {
3279
+ "min" : "0",
3280
+ "max" : "127"
3281
+ },
3282
+ },
3283
+ },
3284
+ "access" : "readwrite",
3285
+ "description" :
3286
+ """A comment describing this channel.""",
3287
+ }, # column
3288
+ "channelOwner" : {
3289
+ "nodetype" : "column",
3290
+ "moduleName" : "RFC1271-MIB",
3291
+ "oid" : "1.3.6.1.2.1.16.7.2.1.11",
3292
+ "status" : "current",
3293
+ "syntax" : {
3294
+ "type" : { "module" :"RFC1271-MIB", "name" : "OwnerString"},
3295
+ },
3296
+ "access" : "readwrite",
3297
+ "description" :
3298
+ """The entity that configured this entry and is therefore
3299
+ using the resources assigned to it.""",
3300
+ }, # column
3301
+ "channelStatus" : {
3302
+ "nodetype" : "column",
3303
+ "moduleName" : "RFC1271-MIB",
3304
+ "oid" : "1.3.6.1.2.1.16.7.2.1.12",
3305
+ "status" : "current",
3306
+ "syntax" : {
3307
+ "type" : { "module" :"RFC1271-MIB", "name" : "EntryStatus"},
3308
+ },
3309
+ "access" : "readwrite",
3310
+ "description" :
3311
+ """The status of this channel entry.""",
3312
+ }, # column
3313
+ "capture" : {
3314
+ "nodetype" : "node",
3315
+ "moduleName" : "RFC1271-MIB",
3316
+ "oid" : "1.3.6.1.2.1.16.8",
3317
+ }, # node
3318
+ "bufferControlTable" : {
3319
+ "nodetype" : "table",
3320
+ "moduleName" : "RFC1271-MIB",
3321
+ "oid" : "1.3.6.1.2.1.16.8.1",
3322
+ "status" : "current",
3323
+ "description" :
3324
+ """A list of buffers control entries.""",
3325
+ }, # table
3326
+ "bufferControlEntry" : {
3327
+ "nodetype" : "row",
3328
+ "moduleName" : "RFC1271-MIB",
3329
+ "oid" : "1.3.6.1.2.1.16.8.1.1",
3330
+ "status" : "current",
3331
+ "linkage" : [
3332
+ "bufferControlIndex",
3333
+ ],
3334
+ "description" :
3335
+ """A set of parameters that control the collection of
3336
+ a stream of packets that have matched filters.""",
3337
+ }, # row
3338
+ "bufferControlIndex" : {
3339
+ "nodetype" : "column",
3340
+ "moduleName" : "RFC1271-MIB",
3341
+ "oid" : "1.3.6.1.2.1.16.8.1.1.1",
3342
+ "status" : "current",
3343
+ "syntax" : {
3344
+ "type" : {
3345
+ "basetype" : "Integer32",
3346
+ "ranges" : [
3347
+ {
3348
+ "min" : "1",
3349
+ "max" : "65535"
3350
+ },
3351
+ ],
3352
+ "range" : {
3353
+ "min" : "1",
3354
+ "max" : "65535"
3355
+ },
3356
+ },
3357
+ },
3358
+ "access" : "readonly",
3359
+ "description" :
3360
+ """An index that uniquely identifies an entry
3361
+ in the bufferControl table. The value of this
3362
+ index shall never be zero. Each such
3363
+ entry defines one set of packets that is
3364
+ captured and controlled by one or more filters.""",
3365
+ }, # column
3366
+ "bufferControlChannelIndex" : {
3367
+ "nodetype" : "column",
3368
+ "moduleName" : "RFC1271-MIB",
3369
+ "oid" : "1.3.6.1.2.1.16.8.1.1.2",
3370
+ "status" : "current",
3371
+ "syntax" : {
3372
+ "type" : {
3373
+ "basetype" : "Integer32",
3374
+ "ranges" : [
3375
+ {
3376
+ "min" : "1",
3377
+ "max" : "65535"
3378
+ },
3379
+ ],
3380
+ "range" : {
3381
+ "min" : "1",
3382
+ "max" : "65535"
3383
+ },
3384
+ },
3385
+ },
3386
+ "access" : "readwrite",
3387
+ "description" :
3388
+ """An index that identifies the channel that is the
3389
+ source of packets for this bufferControl table.
3390
+ The channel identified by a particular value of this
3391
+ index is the same as identified by the same value of
3392
+ the channelIndex object.
3393
+
3394
+ This object may not be modified if the associated
3395
+ bufferControlStatus object is equal to valid(1).""",
3396
+ }, # column
3397
+ "bufferControlFullStatus" : {
3398
+ "nodetype" : "column",
3399
+ "moduleName" : "RFC1271-MIB",
3400
+ "oid" : "1.3.6.1.2.1.16.8.1.1.3",
3401
+ "status" : "current",
3402
+ "syntax" : {
3403
+ "type" : {
3404
+ "basetype" : "Enumeration",
3405
+ "spaceAvailable" : {
3406
+ "nodetype" : "namednumber",
3407
+ "number" : "1"
3408
+ },
3409
+ "full" : {
3410
+ "nodetype" : "namednumber",
3411
+ "number" : "2"
3412
+ },
3413
+ },
3414
+ },
3415
+ "access" : "readonly",
3416
+ "description" :
3417
+ """This object shows whether the buffer has room to
3418
+ accept new packets or if it is full.
3419
+
3420
+ If the status is spaceAvailable(1), the buffer is
3421
+ accepting new packets normally. If the status is
3422
+ full(2) and the associated bufferControlFullAction
3423
+ object is wrapWhenFull, the buffer is accepting new
3424
+ packets by deleting enough of the oldest packets
3425
+ to make room for new ones as they arrive. Otherwise,
3426
+ if the status is full(2) and the
3427
+ bufferControlFullAction object is lockWhenFull,
3428
+ then the buffer has stopped collecting packets.
3429
+
3430
+ When this object is set to full(2) the probe must
3431
+ not later set it to spaceAvailable(1) except in the
3432
+ case of a significant gain in resources such as
3433
+ an increase of bufferControlOctetsGranted. In
3434
+ particular, the wrap-mode action of deleting old
3435
+ packets to make room for newly arrived packets
3436
+ must not affect the value of this object.""",
3437
+ }, # column
3438
+ "bufferControlFullAction" : {
3439
+ "nodetype" : "column",
3440
+ "moduleName" : "RFC1271-MIB",
3441
+ "oid" : "1.3.6.1.2.1.16.8.1.1.4",
3442
+ "status" : "current",
3443
+ "syntax" : {
3444
+ "type" : {
3445
+ "basetype" : "Enumeration",
3446
+ "lockWhenFull" : {
3447
+ "nodetype" : "namednumber",
3448
+ "number" : "1"
3449
+ },
3450
+ "wrapWhenFull" : {
3451
+ "nodetype" : "namednumber",
3452
+ "number" : "2"
3453
+ },
3454
+ },
3455
+ },
3456
+ "access" : "readwrite",
3457
+ "description" :
3458
+ """Controls the action of the buffer when it
3459
+ reaches the full status. When in the lockWhenFull(1)
3460
+ state a packet is added to the buffer that
3461
+ fills the buffer, the bufferControlFullStatus will
3462
+ be set to full(2) and this buffer will stop capturing
3463
+ packets.""",
3464
+ }, # column
3465
+ "bufferControlCaptureSliceSize" : {
3466
+ "nodetype" : "column",
3467
+ "moduleName" : "RFC1271-MIB",
3468
+ "oid" : "1.3.6.1.2.1.16.8.1.1.5",
3469
+ "status" : "current",
3470
+ "syntax" : {
3471
+ "type" : { "module" :"", "name" : "Integer32"},
3472
+ },
3473
+ "access" : "readwrite",
3474
+ "default" : "100",
3475
+ "description" :
3476
+ """The maximum number of octets of each packet
3477
+ that will be saved in this capture buffer.
3478
+ For example, if a 1500 octet packet is received by
3479
+ the probe and this object is set to 500, then only
3480
+ 500 octets of the packet will be stored in the
3481
+ associated capture buffer. If this variable is set
3482
+ to 0, the capture buffer will save as many octets
3483
+ as is possible.
3484
+
3485
+ This object may not be modified if the associated
3486
+ bufferControlStatus object is equal to valid(1).""",
3487
+ }, # column
3488
+ "bufferControlDownloadSliceSize" : {
3489
+ "nodetype" : "column",
3490
+ "moduleName" : "RFC1271-MIB",
3491
+ "oid" : "1.3.6.1.2.1.16.8.1.1.6",
3492
+ "status" : "current",
3493
+ "syntax" : {
3494
+ "type" : { "module" :"", "name" : "Integer32"},
3495
+ },
3496
+ "access" : "readwrite",
3497
+ "default" : "100",
3498
+ "description" :
3499
+ """The maximum number of octets of each packet
3500
+ in this capture buffer that will be returned in
3501
+ an SNMP retrieval of that packet. For example,
3502
+ if 500 octets of a packet have been stored in the
3503
+ associated capture buffer, the associated
3504
+ bufferControlDownloadOffset is 0, and this
3505
+ object is set to 100, then the captureBufferPacket
3506
+ object that contains the packet will contain only
3507
+ the first 100 octets of the packet.
3508
+
3509
+ A prudent manager will take into account possible
3510
+ interoperability or fragmentation problems that may
3511
+ occur if the download slice size is set too large.
3512
+ In particular, conformant SNMP implementations are not
3513
+ required to accept messages whose length exceeds 484
3514
+ octets, although they are encouraged to support larger
3515
+ datagrams whenever feasible.""",
3516
+ }, # column
3517
+ "bufferControlDownloadOffset" : {
3518
+ "nodetype" : "column",
3519
+ "moduleName" : "RFC1271-MIB",
3520
+ "oid" : "1.3.6.1.2.1.16.8.1.1.7",
3521
+ "status" : "current",
3522
+ "syntax" : {
3523
+ "type" : { "module" :"", "name" : "Integer32"},
3524
+ },
3525
+ "access" : "readwrite",
3526
+ "default" : "0",
3527
+ "description" :
3528
+ """The offset of the first octet of each packet
3529
+ in this capture buffer that will be returned in
3530
+ an SNMP retrieval of that packet. For example,
3531
+ if 500 octets of a packet have been stored in the
3532
+ associated capture buffer and this object is set to
3533
+ 100, then the captureBufferPacket object that
3534
+ contains the packet will contain bytes starting
3535
+ 100 octets into the packet.""",
3536
+ }, # column
3537
+ "bufferControlMaxOctetsRequested" : {
3538
+ "nodetype" : "column",
3539
+ "moduleName" : "RFC1271-MIB",
3540
+ "oid" : "1.3.6.1.2.1.16.8.1.1.8",
3541
+ "status" : "current",
3542
+ "syntax" : {
3543
+ "type" : { "module" :"", "name" : "Integer32"},
3544
+ },
3545
+ "access" : "readwrite",
3546
+ "default" : "-1",
3547
+ "description" :
3548
+ """The requested maximum number of octets to be
3549
+ saved in this captureBuffer, including any
3550
+ implementation-specific overhead. If this variable
3551
+ is set to -1, the capture buffer will save as many
3552
+ octets as is possible.
3553
+
3554
+ When this object is created or modified, the probe
3555
+ should set bufferControlMaxOctetsGranted as closely
3556
+ to this object as is possible for the particular probe
3557
+ implementation and available resources. However, if
3558
+ the object has the special value of -1, the probe
3559
+ must set bufferControlMaxOctetsGranted to -1.""",
3560
+ }, # column
3561
+ "bufferControlMaxOctetsGranted" : {
3562
+ "nodetype" : "column",
3563
+ "moduleName" : "RFC1271-MIB",
3564
+ "oid" : "1.3.6.1.2.1.16.8.1.1.9",
3565
+ "status" : "current",
3566
+ "syntax" : {
3567
+ "type" : { "module" :"", "name" : "Integer32"},
3568
+ },
3569
+ "access" : "readonly",
3570
+ "description" :
3571
+ """The maximum number of octets that can be
3572
+ saved in this captureBuffer, including overhead.
3573
+ If this variable is -1, the capture buffer will save
3574
+ as many octets as possible.
3575
+
3576
+ When the bufferControlMaxOctetsRequested object is
3577
+ created or modified, the probe should set this object
3578
+ as closely to the requested value as is possible for
3579
+ the particular probe implementation and available
3580
+ resources. However, if the request object has the
3581
+ special value of -1, the probe must set this object
3582
+ to -1. The probe must not lower this value except
3583
+ as a result of a modification to the associated
3584
+ bufferControlMaxOctetsRequested object.
3585
+
3586
+ When this maximum number of octets is reached
3587
+ and a new packet is to be added to this
3588
+ capture buffer and the corresponding
3589
+ bufferControlFullAction is set to wrapWhenFull(2),
3590
+ enough of the oldest packets associated with this
3591
+ capture buffer shall be deleted by the agent so
3592
+ that the new packet can be added. If the
3593
+ corresponding bufferControlFullAction is set to
3594
+ lockWhenFull(1), the new packet shall be discarded.
3595
+ In either case, the probe must set
3596
+ bufferControlFullStatus to full(2).
3597
+
3598
+ When the value of this object changes to a value less
3599
+ than the current value, entries are deleted from
3600
+ the captureBufferTable associated with this
3601
+ bufferControlEntry. Enough of the
3602
+ oldest of these captureBufferEntries shall be
3603
+ deleted by the agent so that the number of octets
3604
+ used remains less than or equal to the new value of
3605
+ this object.
3606
+
3607
+ When the value of this object changes to a value greater
3608
+ than the current value, the number of associated
3609
+ captureBufferEntries may be allowed to grow.""",
3610
+ }, # column
3611
+ "bufferControlCapturedPackets" : {
3612
+ "nodetype" : "column",
3613
+ "moduleName" : "RFC1271-MIB",
3614
+ "oid" : "1.3.6.1.2.1.16.8.1.1.10",
3615
+ "status" : "current",
3616
+ "syntax" : {
3617
+ "type" : { "module" :"", "name" : "Integer32"},
3618
+ },
3619
+ "access" : "readonly",
3620
+ "description" :
3621
+ """The number of packets currently in this captureBuffer.""",
3622
+ }, # column
3623
+ "bufferControlTurnOnTime" : {
3624
+ "nodetype" : "column",
3625
+ "moduleName" : "RFC1271-MIB",
3626
+ "oid" : "1.3.6.1.2.1.16.8.1.1.11",
3627
+ "status" : "current",
3628
+ "syntax" : {
3629
+ "type" : { "module" :"RFC1155-SMI", "name" : "TimeTicks"},
3630
+ },
3631
+ "access" : "readonly",
3632
+ "description" :
3633
+ """The value of sysUpTime when this capture buffer was
3634
+ first turned on.""",
3635
+ }, # column
3636
+ "bufferControlOwner" : {
3637
+ "nodetype" : "column",
3638
+ "moduleName" : "RFC1271-MIB",
3639
+ "oid" : "1.3.6.1.2.1.16.8.1.1.12",
3640
+ "status" : "current",
3641
+ "syntax" : {
3642
+ "type" : { "module" :"RFC1271-MIB", "name" : "OwnerString"},
3643
+ },
3644
+ "access" : "readwrite",
3645
+ "description" :
3646
+ """The entity that configured this entry and is therefore
3647
+ using the resources assigned to it.""",
3648
+ }, # column
3649
+ "bufferControlStatus" : {
3650
+ "nodetype" : "column",
3651
+ "moduleName" : "RFC1271-MIB",
3652
+ "oid" : "1.3.6.1.2.1.16.8.1.1.13",
3653
+ "status" : "current",
3654
+ "syntax" : {
3655
+ "type" : { "module" :"RFC1271-MIB", "name" : "EntryStatus"},
3656
+ },
3657
+ "access" : "readwrite",
3658
+ "description" :
3659
+ """The status of this buffer Control Entry.""",
3660
+ }, # column
3661
+ "captureBufferTable" : {
3662
+ "nodetype" : "table",
3663
+ "moduleName" : "RFC1271-MIB",
3664
+ "oid" : "1.3.6.1.2.1.16.8.2",
3665
+ "status" : "current",
3666
+ "description" :
3667
+ """A list of packets captured off of a channel.""",
3668
+ }, # table
3669
+ "captureBufferEntry" : {
3670
+ "nodetype" : "row",
3671
+ "moduleName" : "RFC1271-MIB",
3672
+ "oid" : "1.3.6.1.2.1.16.8.2.1",
3673
+ "status" : "current",
3674
+ "linkage" : [
3675
+ "captureBufferControlIndex",
3676
+ "captureBufferIndex",
3677
+ ],
3678
+ "description" :
3679
+ """A packet captured off of an attached network.""",
3680
+ }, # row
3681
+ "captureBufferControlIndex" : {
3682
+ "nodetype" : "column",
3683
+ "moduleName" : "RFC1271-MIB",
3684
+ "oid" : "1.3.6.1.2.1.16.8.2.1.1",
3685
+ "status" : "current",
3686
+ "syntax" : {
3687
+ "type" : {
3688
+ "basetype" : "Integer32",
3689
+ "ranges" : [
3690
+ {
3691
+ "min" : "1",
3692
+ "max" : "65535"
3693
+ },
3694
+ ],
3695
+ "range" : {
3696
+ "min" : "1",
3697
+ "max" : "65535"
3698
+ },
3699
+ },
3700
+ },
3701
+ "access" : "readonly",
3702
+ "description" :
3703
+ """The index of the bufferControlEntry with which
3704
+ this packet is associated.""",
3705
+ }, # column
3706
+ "captureBufferIndex" : {
3707
+ "nodetype" : "column",
3708
+ "moduleName" : "RFC1271-MIB",
3709
+ "oid" : "1.3.6.1.2.1.16.8.2.1.2",
3710
+ "status" : "current",
3711
+ "syntax" : {
3712
+ "type" : { "module" :"", "name" : "Integer32"},
3713
+ },
3714
+ "access" : "readonly",
3715
+ "description" :
3716
+ """An index that uniquely identifies an entry
3717
+ in the captureBuffer table associated with a
3718
+ particular bufferControlEntry. This index will
3719
+ start at 1 and increase by one for each new packet
3720
+ added with the same captureBufferControlIndex.""",
3721
+ }, # column
3722
+ "captureBufferPacketID" : {
3723
+ "nodetype" : "column",
3724
+ "moduleName" : "RFC1271-MIB",
3725
+ "oid" : "1.3.6.1.2.1.16.8.2.1.3",
3726
+ "status" : "current",
3727
+ "syntax" : {
3728
+ "type" : { "module" :"", "name" : "Integer32"},
3729
+ },
3730
+ "access" : "readonly",
3731
+ "description" :
3732
+ """An index that describes the order of packets
3733
+ that are received on a particular interface.
3734
+ The packetID of a packet captured on an
3735
+ interface is defined to be greater than the
3736
+ packetID's of all packets captured previously on
3737
+ the same interface. As the captureBufferPacketID
3738
+ object has a maximum positive value of 2^31 - 1,
3739
+ any captureBufferPacketID object shall have the
3740
+ value of the associated packet's packetID mod 2^31.""",
3741
+ }, # column
3742
+ "captureBufferPacketData" : {
3743
+ "nodetype" : "column",
3744
+ "moduleName" : "RFC1271-MIB",
3745
+ "oid" : "1.3.6.1.2.1.16.8.2.1.4",
3746
+ "status" : "current",
3747
+ "syntax" : {
3748
+ "type" : { "module" :"", "name" : "OctetString"},
3749
+ },
3750
+ "access" : "readonly",
3751
+ "description" :
3752
+ """The data inside the packet, starting at the beginning
3753
+ of the packet plus any offset specified in the
3754
+ associated bufferControlDownloadOffset, including any
3755
+ link level headers. The length of the data in this
3756
+ object is the minimum of the length of the captured
3757
+ packet minus the offset, the length of the associated
3758
+ bufferControlCaptureSliceSize minus the offset, and the
3759
+ associated bufferControlDownloadSliceSize. If this
3760
+ minimum is less than zero, this object shall have a
3761
+ length of zero.""",
3762
+ }, # column
3763
+ "captureBufferPacketLength" : {
3764
+ "nodetype" : "column",
3765
+ "moduleName" : "RFC1271-MIB",
3766
+ "oid" : "1.3.6.1.2.1.16.8.2.1.5",
3767
+ "status" : "current",
3768
+ "syntax" : {
3769
+ "type" : { "module" :"", "name" : "Integer32"},
3770
+ },
3771
+ "access" : "readonly",
3772
+ "description" :
3773
+ """The actual length (off the wire) of the packet stored
3774
+ in this entry, including FCS octets.""",
3775
+ }, # column
3776
+ "captureBufferPacketTime" : {
3777
+ "nodetype" : "column",
3778
+ "moduleName" : "RFC1271-MIB",
3779
+ "oid" : "1.3.6.1.2.1.16.8.2.1.6",
3780
+ "status" : "current",
3781
+ "syntax" : {
3782
+ "type" : { "module" :"", "name" : "Integer32"},
3783
+ },
3784
+ "access" : "readonly",
3785
+ "description" :
3786
+ """The number of milliseconds that had passed since
3787
+ this capture buffer was first turned on when this
3788
+ packet was captured.""",
3789
+ }, # column
3790
+ "captureBufferPacketStatus" : {
3791
+ "nodetype" : "column",
3792
+ "moduleName" : "RFC1271-MIB",
3793
+ "oid" : "1.3.6.1.2.1.16.8.2.1.7",
3794
+ "status" : "current",
3795
+ "syntax" : {
3796
+ "type" : { "module" :"", "name" : "Integer32"},
3797
+ },
3798
+ "access" : "readonly",
3799
+ "description" :
3800
+ """A value which indicates the error status of this
3801
+ packet.
3802
+
3803
+ The value of this object is defined in the same way as
3804
+ filterPacketStatus. The value is a sum. This sum
3805
+ initially takes the value zero. Then, for each
3806
+ error, E, that has been discovered in this packet,
3807
+ 2 raised to a value representing E is added to the sum.
3808
+
3809
+ The errors defined for a packet captured off of an
3810
+ Ethernet interface are as follows:
3811
+
3812
+ bit # Error
3813
+ 0 Packet is longer than 1518 octets
3814
+ 1 Packet is shorter than 64 octets
3815
+ 2 Packet experienced a CRC or Alignment
3816
+ error
3817
+ 3 First packet in this capture buffer after
3818
+ it was detected that some packets were
3819
+ not processed correctly.
3820
+
3821
+ For example, an Ethernet fragment would have a
3822
+ value of 6 (2^1 + 2^2).
3823
+
3824
+ As this MIB is expanded to new media types, this object
3825
+ will have other media-specific errors defined.""",
3826
+ }, # column
3827
+ "event" : {
3828
+ "nodetype" : "node",
3829
+ "moduleName" : "RFC1271-MIB",
3830
+ "oid" : "1.3.6.1.2.1.16.9",
3831
+ }, # node
3832
+ "eventTable" : {
3833
+ "nodetype" : "table",
3834
+ "moduleName" : "RFC1271-MIB",
3835
+ "oid" : "1.3.6.1.2.1.16.9.1",
3836
+ "status" : "current",
3837
+ "description" :
3838
+ """A list of events to be generated.""",
3839
+ }, # table
3840
+ "eventEntry" : {
3841
+ "nodetype" : "row",
3842
+ "moduleName" : "RFC1271-MIB",
3843
+ "oid" : "1.3.6.1.2.1.16.9.1.1",
3844
+ "status" : "current",
3845
+ "linkage" : [
3846
+ "eventIndex",
3847
+ ],
3848
+ "description" :
3849
+ """A set of parameters that describe an event to be
3850
+ generated when certain conditions are met.""",
3851
+ }, # row
3852
+ "eventIndex" : {
3853
+ "nodetype" : "column",
3854
+ "moduleName" : "RFC1271-MIB",
3855
+ "oid" : "1.3.6.1.2.1.16.9.1.1.1",
3856
+ "status" : "current",
3857
+ "syntax" : {
3858
+ "type" : {
3859
+ "basetype" : "Integer32",
3860
+ "ranges" : [
3861
+ {
3862
+ "min" : "1",
3863
+ "max" : "65535"
3864
+ },
3865
+ ],
3866
+ "range" : {
3867
+ "min" : "1",
3868
+ "max" : "65535"
3869
+ },
3870
+ },
3871
+ },
3872
+ "access" : "readonly",
3873
+ "description" :
3874
+ """An index that uniquely identifies an entry in the
3875
+ event table. Each such entry defines one event that
3876
+ is to be generated when the appropriate conditions
3877
+ occur.""",
3878
+ }, # column
3879
+ "eventDescription" : {
3880
+ "nodetype" : "column",
3881
+ "moduleName" : "RFC1271-MIB",
3882
+ "oid" : "1.3.6.1.2.1.16.9.1.1.2",
3883
+ "status" : "current",
3884
+ "syntax" : {
3885
+ "type" : {
3886
+ "basetype" : "OctetString",
3887
+ "parent module" : {
3888
+ "name" : "RFC1213-MIB",
3889
+ "type" : "DisplayString",
3890
+ },
3891
+ "ranges" : [
3892
+ {
3893
+ "min" : "0",
3894
+ "max" : "127"
3895
+ },
3896
+ ],
3897
+ "range" : {
3898
+ "min" : "0",
3899
+ "max" : "127"
3900
+ },
3901
+ },
3902
+ },
3903
+ "access" : "readwrite",
3904
+ "description" :
3905
+ """A comment describing this event entry.""",
3906
+ }, # column
3907
+ "eventType" : {
3908
+ "nodetype" : "column",
3909
+ "moduleName" : "RFC1271-MIB",
3910
+ "oid" : "1.3.6.1.2.1.16.9.1.1.3",
3911
+ "status" : "current",
3912
+ "syntax" : {
3913
+ "type" : {
3914
+ "basetype" : "Enumeration",
3915
+ "none" : {
3916
+ "nodetype" : "namednumber",
3917
+ "number" : "1"
3918
+ },
3919
+ "log" : {
3920
+ "nodetype" : "namednumber",
3921
+ "number" : "2"
3922
+ },
3923
+ "snmp-trap" : {
3924
+ "nodetype" : "namednumber",
3925
+ "number" : "3"
3926
+ },
3927
+ "log-and-trap" : {
3928
+ "nodetype" : "namednumber",
3929
+ "number" : "4"
3930
+ },
3931
+ },
3932
+ },
3933
+ "access" : "readwrite",
3934
+ "description" :
3935
+ """The type of notification that the probe will make
3936
+ about this event. In the case of log, an entry is
3937
+ made in the log table for each event. In the case of
3938
+ snmp-trap, an SNMP trap is sent to one or more
3939
+ management stations.""",
3940
+ }, # column
3941
+ "eventCommunity" : {
3942
+ "nodetype" : "column",
3943
+ "moduleName" : "RFC1271-MIB",
3944
+ "oid" : "1.3.6.1.2.1.16.9.1.1.4",
3945
+ "status" : "current",
3946
+ "syntax" : {
3947
+ "type" : {
3948
+ "basetype" : "OctetString",
3949
+ "ranges" : [
3950
+ {
3951
+ "min" : "0",
3952
+ "max" : "127"
3953
+ },
3954
+ ],
3955
+ "range" : {
3956
+ "min" : "0",
3957
+ "max" : "127"
3958
+ },
3959
+ },
3960
+ },
3961
+ "access" : "readwrite",
3962
+ "description" :
3963
+ """If an SNMP trap is to be sent, it will be sent to
3964
+ the SNMP community specified by this octet string.
3965
+ In the future this table will be extended to include
3966
+ the party security mechanism. This object shall be
3967
+ set to a string of length zero if it is intended that
3968
+ that mechanism be used to specify the destination of
3969
+ the trap.""",
3970
+ }, # column
3971
+ "eventLastTimeSent" : {
3972
+ "nodetype" : "column",
3973
+ "moduleName" : "RFC1271-MIB",
3974
+ "oid" : "1.3.6.1.2.1.16.9.1.1.5",
3975
+ "status" : "current",
3976
+ "syntax" : {
3977
+ "type" : { "module" :"RFC1155-SMI", "name" : "TimeTicks"},
3978
+ },
3979
+ "access" : "readonly",
3980
+ "description" :
3981
+ """The value of sysUpTime at the time this event
3982
+ entry last generated an event. If this entry has
3983
+ not generated any events, this value will be
3984
+ zero.""",
3985
+ }, # column
3986
+ "eventOwner" : {
3987
+ "nodetype" : "column",
3988
+ "moduleName" : "RFC1271-MIB",
3989
+ "oid" : "1.3.6.1.2.1.16.9.1.1.6",
3990
+ "status" : "current",
3991
+ "syntax" : {
3992
+ "type" : { "module" :"RFC1271-MIB", "name" : "OwnerString"},
3993
+ },
3994
+ "access" : "readwrite",
3995
+ "description" :
3996
+ """The entity that configured this entry and is therefore
3997
+ using the resources assigned to it.
3998
+
3999
+ If this object contains a string starting with 'monitor'
4000
+ and has associated entries in the log table, all
4001
+ connected management stations should retrieve those
4002
+ log entries, as they may have significance to all
4003
+ management stations connected to this device""",
4004
+ }, # column
4005
+ "eventStatus" : {
4006
+ "nodetype" : "column",
4007
+ "moduleName" : "RFC1271-MIB",
4008
+ "oid" : "1.3.6.1.2.1.16.9.1.1.7",
4009
+ "status" : "current",
4010
+ "syntax" : {
4011
+ "type" : { "module" :"RFC1271-MIB", "name" : "EntryStatus"},
4012
+ },
4013
+ "access" : "readwrite",
4014
+ "description" :
4015
+ """The status of this event entry.
4016
+
4017
+ If this object is not equal to valid(1), all associated
4018
+ log entries shall be deleted by the agent.""",
4019
+ }, # column
4020
+ "logTable" : {
4021
+ "nodetype" : "table",
4022
+ "moduleName" : "RFC1271-MIB",
4023
+ "oid" : "1.3.6.1.2.1.16.9.2",
4024
+ "status" : "current",
4025
+ "description" :
4026
+ """A list of events that have been logged.""",
4027
+ }, # table
4028
+ "logEntry" : {
4029
+ "nodetype" : "row",
4030
+ "moduleName" : "RFC1271-MIB",
4031
+ "oid" : "1.3.6.1.2.1.16.9.2.1",
4032
+ "status" : "current",
4033
+ "linkage" : [
4034
+ "logEventIndex",
4035
+ "logIndex",
4036
+ ],
4037
+ "description" :
4038
+ """A set of data describing an event that has been
4039
+ logged.""",
4040
+ }, # row
4041
+ "logEventIndex" : {
4042
+ "nodetype" : "column",
4043
+ "moduleName" : "RFC1271-MIB",
4044
+ "oid" : "1.3.6.1.2.1.16.9.2.1.1",
4045
+ "status" : "current",
4046
+ "syntax" : {
4047
+ "type" : {
4048
+ "basetype" : "Integer32",
4049
+ "ranges" : [
4050
+ {
4051
+ "min" : "1",
4052
+ "max" : "65535"
4053
+ },
4054
+ ],
4055
+ "range" : {
4056
+ "min" : "1",
4057
+ "max" : "65535"
4058
+ },
4059
+ },
4060
+ },
4061
+ "access" : "readonly",
4062
+ "description" :
4063
+ """The event entry that generated this log
4064
+ entry. The log identified by a particular
4065
+ value of this index is associated with the same
4066
+ eventEntry as identified by the same value
4067
+ of eventIndex.""",
4068
+ }, # column
4069
+ "logIndex" : {
4070
+ "nodetype" : "column",
4071
+ "moduleName" : "RFC1271-MIB",
4072
+ "oid" : "1.3.6.1.2.1.16.9.2.1.2",
4073
+ "status" : "current",
4074
+ "syntax" : {
4075
+ "type" : { "module" :"", "name" : "Integer32"},
4076
+ },
4077
+ "access" : "readonly",
4078
+ "description" :
4079
+ """An index that uniquely identifies an entry
4080
+ in the log table amongst those generated by the
4081
+ same eventEntries. These indexes are
4082
+ assigned beginning with 1 and increase by one
4083
+ with each new log entry. The association
4084
+ between values of logIndex and logEntries
4085
+ is fixed for the lifetime of each logEntry.
4086
+ The agent may choose to delete the oldest
4087
+ instances of logEntry as required because of
4088
+ lack of memory. It is an implementation-specific
4089
+ matter as to when this deletion may occur.""",
4090
+ }, # column
4091
+ "logTime" : {
4092
+ "nodetype" : "column",
4093
+ "moduleName" : "RFC1271-MIB",
4094
+ "oid" : "1.3.6.1.2.1.16.9.2.1.3",
4095
+ "status" : "current",
4096
+ "syntax" : {
4097
+ "type" : { "module" :"RFC1155-SMI", "name" : "TimeTicks"},
4098
+ },
4099
+ "access" : "readonly",
4100
+ "description" :
4101
+ """The value of sysUpTime when this log entry was
4102
+ created.""",
4103
+ }, # column
4104
+ "logDescription" : {
4105
+ "nodetype" : "column",
4106
+ "moduleName" : "RFC1271-MIB",
4107
+ "oid" : "1.3.6.1.2.1.16.9.2.1.4",
4108
+ "status" : "current",
4109
+ "syntax" : {
4110
+ "type" : {
4111
+ "basetype" : "OctetString",
4112
+ "parent module" : {
4113
+ "name" : "RFC1213-MIB",
4114
+ "type" : "DisplayString",
4115
+ },
4116
+ "ranges" : [
4117
+ {
4118
+ "min" : "0",
4119
+ "max" : "255"
4120
+ },
4121
+ ],
4122
+ "range" : {
4123
+ "min" : "0",
4124
+ "max" : "255"
4125
+ },
4126
+ },
4127
+ },
4128
+ "access" : "readonly",
4129
+ "description" :
4130
+ """An implementation dependent description of the
4131
+ event that activated this log entry.""",
4132
+ }, # column
4133
+ }, # nodes
4134
+
4135
+ }