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,2028 @@
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 IPV6-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/IPV6-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "IPV6-MIB",
11
+
12
+ "IPV6-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF IPv6 Working Group""",
17
+ "contact" :
18
+ """ Dimitry Haskin
19
+
20
+ Postal: Bay Networks, Inc.
21
+ 660 Techology Park Drive.
22
+ Billerica, MA 01821
23
+ US
24
+
25
+ Tel: +1-978-916-8124
26
+ E-mail: dhaskin@baynetworks.com
27
+
28
+ Steve Onishi
29
+
30
+ Postal: Bay Networks, Inc.
31
+ 3 Federal Street
32
+ Billerica, MA 01821
33
+ US
34
+
35
+ Tel: +1-978-916-3816
36
+ E-mail: sonishi@baynetworks.com""",
37
+ "description" :
38
+ """The MIB module for entities implementing the IPv6
39
+ protocol.""",
40
+ "revisions" : (
41
+ {
42
+ "date" : "1998-02-05 21:55",
43
+ "description" :
44
+ """[Revision added by libsmi due to a LAST-UPDATED clause.]""",
45
+ },
46
+ ),
47
+ "identity node" : "ipv6MIB",
48
+ },
49
+
50
+ "imports" : (
51
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
52
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
53
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
54
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
55
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
56
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
57
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
58
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
59
+ {"module" : "SNMPv2-TC", "name" : "DisplayString"},
60
+ {"module" : "SNMPv2-TC", "name" : "PhysAddress"},
61
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
62
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
63
+ {"module" : "SNMPv2-TC", "name" : "VariablePointer"},
64
+ {"module" : "SNMPv2-TC", "name" : "RowPointer"},
65
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
66
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
67
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
68
+ {"module" : "IPV6-TC", "name" : "Ipv6IfIndex"},
69
+ {"module" : "IPV6-TC", "name" : "Ipv6Address"},
70
+ {"module" : "IPV6-TC", "name" : "Ipv6AddressPrefix"},
71
+ {"module" : "IPV6-TC", "name" : "Ipv6AddressIfIdentifier"},
72
+ {"module" : "IPV6-TC", "name" : "Ipv6IfIndexOrZero"},
73
+ ),
74
+
75
+ "nodes" : {
76
+ "ipv6MIB" : {
77
+ "nodetype" : "node",
78
+ "moduleName" : "IPV6-MIB",
79
+ "oid" : "1.3.6.1.2.1.55",
80
+ "status" : "current",
81
+ }, # node
82
+ "ipv6MIBObjects" : {
83
+ "nodetype" : "node",
84
+ "moduleName" : "IPV6-MIB",
85
+ "oid" : "1.3.6.1.2.1.55.1",
86
+ }, # node
87
+ "ipv6Forwarding" : {
88
+ "nodetype" : "scalar",
89
+ "moduleName" : "IPV6-MIB",
90
+ "oid" : "1.3.6.1.2.1.55.1.1",
91
+ "status" : "current",
92
+ "syntax" : {
93
+ "type" : {
94
+ "basetype" : "Enumeration",
95
+ "forwarding" : {
96
+ "nodetype" : "namednumber",
97
+ "number" : "1"
98
+ },
99
+ "notForwarding" : {
100
+ "nodetype" : "namednumber",
101
+ "number" : "2"
102
+ },
103
+ },
104
+ },
105
+ "access" : "readwrite",
106
+ "description" :
107
+ """The indication of whether this entity is acting
108
+ as an IPv6 router in respect to the forwarding of
109
+ datagrams received by, but not addressed to, this
110
+ entity. IPv6 routers forward datagrams. IPv6
111
+ hosts do not (except those source-routed via the
112
+ host).
113
+
114
+ Note that for some managed nodes, this object may
115
+ take on only a subset of the values possible.
116
+ Accordingly, it is appropriate for an agent to
117
+ return a `wrongValue' response if a management
118
+ station attempts to change this object to an
119
+ inappropriate value.""",
120
+ }, # scalar
121
+ "ipv6DefaultHopLimit" : {
122
+ "nodetype" : "scalar",
123
+ "moduleName" : "IPV6-MIB",
124
+ "oid" : "1.3.6.1.2.1.55.1.2",
125
+ "status" : "current",
126
+ "syntax" : {
127
+ "type" : {
128
+ "basetype" : "Integer32",
129
+ "ranges" : [
130
+ {
131
+ "min" : "0",
132
+ "max" : "255"
133
+ },
134
+ ],
135
+ "range" : {
136
+ "min" : "0",
137
+ "max" : "255"
138
+ },
139
+ },
140
+ },
141
+ "access" : "readwrite",
142
+ "default" : "64",
143
+ "description" :
144
+ """The default value inserted into the Hop Limit
145
+ field of the IPv6 header of datagrams originated
146
+ at this entity, whenever a Hop Limit value is not
147
+ supplied by the transport layer protocol.""",
148
+ }, # scalar
149
+ "ipv6Interfaces" : {
150
+ "nodetype" : "scalar",
151
+ "moduleName" : "IPV6-MIB",
152
+ "oid" : "1.3.6.1.2.1.55.1.3",
153
+ "status" : "current",
154
+ "syntax" : {
155
+ "type" : { "module" :"", "name" : "Unsigned32"},
156
+ },
157
+ "access" : "readonly",
158
+ "description" :
159
+ """The number of IPv6 interfaces (regardless of
160
+ their current state) present on this system.""",
161
+ }, # scalar
162
+ "ipv6IfTableLastChange" : {
163
+ "nodetype" : "scalar",
164
+ "moduleName" : "IPV6-MIB",
165
+ "oid" : "1.3.6.1.2.1.55.1.4",
166
+ "status" : "current",
167
+ "syntax" : {
168
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
169
+ },
170
+ "access" : "readonly",
171
+ "description" :
172
+ """The value of sysUpTime at the time of the last
173
+ insertion or removal of an entry in the
174
+ ipv6IfTable. If the number of entries has been
175
+ unchanged since the last re-initialization of
176
+ the local network management subsystem, then this
177
+ object contains a zero value.""",
178
+ }, # scalar
179
+ "ipv6IfTable" : {
180
+ "nodetype" : "table",
181
+ "moduleName" : "IPV6-MIB",
182
+ "oid" : "1.3.6.1.2.1.55.1.5",
183
+ "status" : "current",
184
+ "description" :
185
+ """The IPv6 Interfaces table contains information
186
+ on the entity's internetwork-layer interfaces.
187
+ An IPv6 interface constitutes a logical network
188
+ layer attachment to the layer immediately below
189
+ IPv6 including internet layer 'tunnels', such as
190
+ tunnels over IPv4 or IPv6 itself.""",
191
+ }, # table
192
+ "ipv6IfEntry" : {
193
+ "nodetype" : "row",
194
+ "moduleName" : "IPV6-MIB",
195
+ "oid" : "1.3.6.1.2.1.55.1.5.1",
196
+ "status" : "current",
197
+ "linkage" : [
198
+ "ipv6IfIndex",
199
+ ],
200
+ "description" :
201
+ """An interface entry containing objects
202
+ about a particular IPv6 interface.""",
203
+ }, # row
204
+ "ipv6IfIndex" : {
205
+ "nodetype" : "column",
206
+ "moduleName" : "IPV6-MIB",
207
+ "oid" : "1.3.6.1.2.1.55.1.5.1.1",
208
+ "status" : "current",
209
+ "syntax" : {
210
+ "type" : { "module" :"IPV6-TC", "name" : "Ipv6IfIndex"},
211
+ },
212
+ "access" : "noaccess",
213
+ "description" :
214
+ """A unique non-zero value identifying
215
+ the particular IPv6 interface.""",
216
+ }, # column
217
+ "ipv6IfDescr" : {
218
+ "nodetype" : "column",
219
+ "moduleName" : "IPV6-MIB",
220
+ "oid" : "1.3.6.1.2.1.55.1.5.1.2",
221
+ "status" : "current",
222
+ "syntax" : {
223
+ "type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
224
+ },
225
+ "access" : "readwrite",
226
+ "description" :
227
+ """A textual string containing information about the
228
+ interface. This string may be set by the network
229
+ management system.""",
230
+ }, # column
231
+ "ipv6IfLowerLayer" : {
232
+ "nodetype" : "column",
233
+ "moduleName" : "IPV6-MIB",
234
+ "oid" : "1.3.6.1.2.1.55.1.5.1.3",
235
+ "status" : "current",
236
+ "syntax" : {
237
+ "type" : { "module" :"SNMPv2-TC", "name" : "VariablePointer"},
238
+ },
239
+ "access" : "readonly",
240
+ "description" :
241
+ """This object identifies the protocol layer over
242
+ which this network interface operates. If this
243
+ network interface operates over the data-link
244
+ layer, then the value of this object refers to an
245
+ instance of ifIndex [6]. If this network interface
246
+ operates over an IPv4 interface, the value of this
247
+ object refers to an instance of ipAdEntAddr [3].
248
+
249
+ If this network interface operates over another
250
+ IPv6 interface, the value of this object refers to
251
+ an instance of ipv6IfIndex. If this network
252
+ interface is not currently operating over an active
253
+ protocol layer, then the value of this object
254
+ should be set to the OBJECT ID { 0 0 }.""",
255
+ }, # column
256
+ "ipv6IfEffectiveMtu" : {
257
+ "nodetype" : "column",
258
+ "moduleName" : "IPV6-MIB",
259
+ "oid" : "1.3.6.1.2.1.55.1.5.1.4",
260
+ "status" : "current",
261
+ "syntax" : {
262
+ "type" : { "module" :"", "name" : "Unsigned32"},
263
+ },
264
+ "access" : "readonly",
265
+ "units" : "octets",
266
+ "description" :
267
+ """The size of the largest IPv6 packet which can be
268
+ sent/received on the interface, specified in
269
+ octets.""",
270
+ }, # column
271
+ "ipv6IfReasmMaxSize" : {
272
+ "nodetype" : "column",
273
+ "moduleName" : "IPV6-MIB",
274
+ "oid" : "1.3.6.1.2.1.55.1.5.1.5",
275
+ "status" : "current",
276
+ "syntax" : {
277
+ "type" : {
278
+ "basetype" : "Unsigned32",
279
+ "ranges" : [
280
+ {
281
+ "min" : "0",
282
+ "max" : "65535"
283
+ },
284
+ ],
285
+ "range" : {
286
+ "min" : "0",
287
+ "max" : "65535"
288
+ },
289
+ },
290
+ },
291
+ "access" : "readonly",
292
+ "units" : "octets",
293
+ "description" :
294
+ """The size of the largest IPv6 datagram which this
295
+ entity can re-assemble from incoming IPv6 fragmented
296
+ datagrams received on this interface.""",
297
+ }, # column
298
+ "ipv6IfIdentifier" : {
299
+ "nodetype" : "column",
300
+ "moduleName" : "IPV6-MIB",
301
+ "oid" : "1.3.6.1.2.1.55.1.5.1.6",
302
+ "status" : "current",
303
+ "syntax" : {
304
+ "type" : { "module" :"IPV6-TC", "name" : "Ipv6AddressIfIdentifier"},
305
+ },
306
+ "access" : "readwrite",
307
+ "description" :
308
+ """The Interface Identifier for this interface that
309
+ is (at least) unique on the link this interface is
310
+ attached to. The Interface Identifier is combined
311
+ with an address prefix to form an interface address.
312
+
313
+ By default, the Interface Identifier is autoconfigured
314
+ according to the rules of the link type this
315
+ interface is attached to.""",
316
+ }, # column
317
+ "ipv6IfIdentifierLength" : {
318
+ "nodetype" : "column",
319
+ "moduleName" : "IPV6-MIB",
320
+ "oid" : "1.3.6.1.2.1.55.1.5.1.7",
321
+ "status" : "current",
322
+ "syntax" : {
323
+ "type" : {
324
+ "basetype" : "Integer32",
325
+ "ranges" : [
326
+ {
327
+ "min" : "0",
328
+ "max" : "64"
329
+ },
330
+ ],
331
+ "range" : {
332
+ "min" : "0",
333
+ "max" : "64"
334
+ },
335
+ },
336
+ },
337
+ "access" : "readwrite",
338
+ "units" : "bits",
339
+ "description" :
340
+ """The length of the Interface Identifier in bits.""",
341
+ }, # column
342
+ "ipv6IfPhysicalAddress" : {
343
+ "nodetype" : "column",
344
+ "moduleName" : "IPV6-MIB",
345
+ "oid" : "1.3.6.1.2.1.55.1.5.1.8",
346
+ "status" : "current",
347
+ "syntax" : {
348
+ "type" : { "module" :"SNMPv2-TC", "name" : "PhysAddress"},
349
+ },
350
+ "access" : "readonly",
351
+ "description" :
352
+ """The interface's physical address. For example, for
353
+ an IPv6 interface attached to an 802.x link, this
354
+ object normally contains a MAC address. Note that
355
+ in some cases this address may differ from the
356
+ address of the interface's protocol sub-layer. The
357
+ interface's media-specific MIB must define the bit
358
+ and byte ordering and the format of the value of
359
+ this object. For interfaces which do not have such
360
+ an address (e.g., a serial line), this object should
361
+ contain an octet string of zero length.""",
362
+ }, # column
363
+ "ipv6IfAdminStatus" : {
364
+ "nodetype" : "column",
365
+ "moduleName" : "IPV6-MIB",
366
+ "oid" : "1.3.6.1.2.1.55.1.5.1.9",
367
+ "status" : "current",
368
+ "syntax" : {
369
+ "type" : {
370
+ "basetype" : "Enumeration",
371
+ "up" : {
372
+ "nodetype" : "namednumber",
373
+ "number" : "1"
374
+ },
375
+ "down" : {
376
+ "nodetype" : "namednumber",
377
+ "number" : "2"
378
+ },
379
+ },
380
+ },
381
+ "access" : "readwrite",
382
+ "description" :
383
+ """The desired state of the interface. When a managed
384
+ system initializes, all IPv6 interfaces start with
385
+ ipv6IfAdminStatus in the down(2) state. As a result
386
+ of either explicit management action or per
387
+ configuration information retained by the managed
388
+ system, ipv6IfAdminStatus is then changed to
389
+ the up(1) state (or remains in the down(2) state).""",
390
+ }, # column
391
+ "ipv6IfOperStatus" : {
392
+ "nodetype" : "column",
393
+ "moduleName" : "IPV6-MIB",
394
+ "oid" : "1.3.6.1.2.1.55.1.5.1.10",
395
+ "status" : "current",
396
+ "syntax" : {
397
+ "type" : {
398
+ "basetype" : "Enumeration",
399
+ "up" : {
400
+ "nodetype" : "namednumber",
401
+ "number" : "1"
402
+ },
403
+ "down" : {
404
+ "nodetype" : "namednumber",
405
+ "number" : "2"
406
+ },
407
+ "noIfIdentifier" : {
408
+ "nodetype" : "namednumber",
409
+ "number" : "3"
410
+ },
411
+ "unknown" : {
412
+ "nodetype" : "namednumber",
413
+ "number" : "4"
414
+ },
415
+ "notPresent" : {
416
+ "nodetype" : "namednumber",
417
+ "number" : "5"
418
+ },
419
+ },
420
+ },
421
+ "access" : "readonly",
422
+ "description" :
423
+ """The current operational state of the interface.
424
+ The noIfIdentifier(3) state indicates that no valid
425
+ Interface Identifier is assigned to the interface.
426
+ This state usually indicates that the link-local
427
+ interface address failed Duplicate Address Detection.
428
+ If ipv6IfAdminStatus is down(2) then ipv6IfOperStatus
429
+ should be down(2). If ipv6IfAdminStatus is changed
430
+ to up(1) then ipv6IfOperStatus should change to up(1)
431
+ if the interface is ready to transmit and receive
432
+ network traffic; it should remain in the down(2) or
433
+ noIfIdentifier(3) state if and only if there is a
434
+ fault that prevents it from going to the up(1) state;
435
+ it should remain in the notPresent(5) state if
436
+ the interface has missing (typically, lower layer)
437
+ components.""",
438
+ }, # column
439
+ "ipv6IfLastChange" : {
440
+ "nodetype" : "column",
441
+ "moduleName" : "IPV6-MIB",
442
+ "oid" : "1.3.6.1.2.1.55.1.5.1.11",
443
+ "status" : "current",
444
+ "syntax" : {
445
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
446
+ },
447
+ "access" : "readonly",
448
+ "description" :
449
+ """The value of sysUpTime at the time the interface
450
+ entered its current operational state. If the
451
+ current state was entered prior to the last
452
+ re-initialization of the local network management
453
+ subsystem, then this object contains a zero
454
+ value.""",
455
+ }, # column
456
+ "ipv6IfStatsTable" : {
457
+ "nodetype" : "table",
458
+ "moduleName" : "IPV6-MIB",
459
+ "oid" : "1.3.6.1.2.1.55.1.6",
460
+ "status" : "current",
461
+ "description" :
462
+ """IPv6 interface traffic statistics.""",
463
+ }, # table
464
+ "ipv6IfStatsEntry" : {
465
+ "nodetype" : "row",
466
+ "moduleName" : "IPV6-MIB",
467
+ "oid" : "1.3.6.1.2.1.55.1.6.1",
468
+ "status" : "current",
469
+ "linkage" : [
470
+ { "IPV6-MIB" : {
471
+ "indexkind" : "augments",
472
+ "relatedNode" : "ipv6IfEntry",
473
+ }},
474
+ ],
475
+ "description" :
476
+ """An interface statistics entry containing objects
477
+ at a particular IPv6 interface.""",
478
+ }, # row
479
+ "ipv6IfStatsInReceives" : {
480
+ "nodetype" : "column",
481
+ "moduleName" : "IPV6-MIB",
482
+ "oid" : "1.3.6.1.2.1.55.1.6.1.1",
483
+ "status" : "current",
484
+ "syntax" : {
485
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
486
+ },
487
+ "access" : "readonly",
488
+ "description" :
489
+ """The total number of input datagrams received by
490
+ the interface, including those received in error.""",
491
+ }, # column
492
+ "ipv6IfStatsInHdrErrors" : {
493
+ "nodetype" : "column",
494
+ "moduleName" : "IPV6-MIB",
495
+ "oid" : "1.3.6.1.2.1.55.1.6.1.2",
496
+ "status" : "current",
497
+ "syntax" : {
498
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
499
+ },
500
+ "access" : "readonly",
501
+ "description" :
502
+ """The number of input datagrams discarded due to
503
+ errors in their IPv6 headers, including version
504
+ number mismatch, other format errors, hop count
505
+ exceeded, errors discovered in processing their
506
+ IPv6 options, etc.""",
507
+ }, # column
508
+ "ipv6IfStatsInTooBigErrors" : {
509
+ "nodetype" : "column",
510
+ "moduleName" : "IPV6-MIB",
511
+ "oid" : "1.3.6.1.2.1.55.1.6.1.3",
512
+ "status" : "current",
513
+ "syntax" : {
514
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
515
+ },
516
+ "access" : "readonly",
517
+ "description" :
518
+ """The number of input datagrams that could not be
519
+ forwarded because their size exceeded the link MTU
520
+ of outgoing interface.""",
521
+ }, # column
522
+ "ipv6IfStatsInNoRoutes" : {
523
+ "nodetype" : "column",
524
+ "moduleName" : "IPV6-MIB",
525
+ "oid" : "1.3.6.1.2.1.55.1.6.1.4",
526
+ "status" : "current",
527
+ "syntax" : {
528
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
529
+ },
530
+ "access" : "readonly",
531
+ "description" :
532
+ """The number of input datagrams discarded because no
533
+ route could be found to transmit them to their
534
+ destination.""",
535
+ }, # column
536
+ "ipv6IfStatsInAddrErrors" : {
537
+ "nodetype" : "column",
538
+ "moduleName" : "IPV6-MIB",
539
+ "oid" : "1.3.6.1.2.1.55.1.6.1.5",
540
+ "status" : "current",
541
+ "syntax" : {
542
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
543
+ },
544
+ "access" : "readonly",
545
+ "description" :
546
+ """The number of input datagrams discarded because
547
+ the IPv6 address in their IPv6 header's destination
548
+ field was not a valid address to be received at
549
+ this entity. This count includes invalid
550
+ addresses (e.g., ::0) and unsupported addresses
551
+ (e.g., addresses with unallocated prefixes). For
552
+ entities which are not IPv6 routers and therefore
553
+ do not forward datagrams, this counter includes
554
+ datagrams discarded because the destination address
555
+ was not a local address.""",
556
+ }, # column
557
+ "ipv6IfStatsInUnknownProtos" : {
558
+ "nodetype" : "column",
559
+ "moduleName" : "IPV6-MIB",
560
+ "oid" : "1.3.6.1.2.1.55.1.6.1.6",
561
+ "status" : "current",
562
+ "syntax" : {
563
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
564
+ },
565
+ "access" : "readonly",
566
+ "description" :
567
+ """The number of locally-addressed datagrams
568
+ received successfully but discarded because of an
569
+ unknown or unsupported protocol. This counter is
570
+ incremented at the interface to which these
571
+ datagrams were addressed which might not be
572
+ necessarily the input interface for some of
573
+ the datagrams.""",
574
+ }, # column
575
+ "ipv6IfStatsInTruncatedPkts" : {
576
+ "nodetype" : "column",
577
+ "moduleName" : "IPV6-MIB",
578
+ "oid" : "1.3.6.1.2.1.55.1.6.1.7",
579
+ "status" : "current",
580
+ "syntax" : {
581
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
582
+ },
583
+ "access" : "readonly",
584
+ "description" :
585
+ """The number of input datagrams discarded because
586
+ datagram frame didn't carry enough data.""",
587
+ }, # column
588
+ "ipv6IfStatsInDiscards" : {
589
+ "nodetype" : "column",
590
+ "moduleName" : "IPV6-MIB",
591
+ "oid" : "1.3.6.1.2.1.55.1.6.1.8",
592
+ "status" : "current",
593
+ "syntax" : {
594
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
595
+ },
596
+ "access" : "readonly",
597
+ "description" :
598
+ """The number of input IPv6 datagrams for which no
599
+ problems were encountered to prevent their
600
+ continued processing, but which were discarded
601
+ (e.g., for lack of buffer space). Note that this
602
+ counter does not include any datagrams discarded
603
+ while awaiting re-assembly.""",
604
+ }, # column
605
+ "ipv6IfStatsInDelivers" : {
606
+ "nodetype" : "column",
607
+ "moduleName" : "IPV6-MIB",
608
+ "oid" : "1.3.6.1.2.1.55.1.6.1.9",
609
+ "status" : "current",
610
+ "syntax" : {
611
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
612
+ },
613
+ "access" : "readonly",
614
+ "description" :
615
+ """The total number of datagrams successfully
616
+ delivered to IPv6 user-protocols (including ICMP).
617
+ This counter is incremented at the interface to
618
+ which these datagrams were addressed which might
619
+ not be necessarily the input interface for some of
620
+ the datagrams.""",
621
+ }, # column
622
+ "ipv6IfStatsOutForwDatagrams" : {
623
+ "nodetype" : "column",
624
+ "moduleName" : "IPV6-MIB",
625
+ "oid" : "1.3.6.1.2.1.55.1.6.1.10",
626
+ "status" : "current",
627
+ "syntax" : {
628
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
629
+ },
630
+ "access" : "readonly",
631
+ "description" :
632
+ """The number of output datagrams which this
633
+ entity received and forwarded to their final
634
+ destinations. In entities which do not act
635
+ as IPv6 routers, this counter will include
636
+ only those packets which were Source-Routed
637
+ via this entity, and the Source-Route
638
+ processing was successful. Note that for
639
+ a successfully forwarded datagram the counter
640
+ of the outgoing interface is incremented.""",
641
+ }, # column
642
+ "ipv6IfStatsOutRequests" : {
643
+ "nodetype" : "column",
644
+ "moduleName" : "IPV6-MIB",
645
+ "oid" : "1.3.6.1.2.1.55.1.6.1.11",
646
+ "status" : "current",
647
+ "syntax" : {
648
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
649
+ },
650
+ "access" : "readonly",
651
+ "description" :
652
+ """The total number of IPv6 datagrams which local IPv6
653
+ user-protocols (including ICMP) supplied to IPv6 in
654
+ requests for transmission. Note that this counter
655
+ does not include any datagrams counted in
656
+ ipv6IfStatsOutForwDatagrams.""",
657
+ }, # column
658
+ "ipv6IfStatsOutDiscards" : {
659
+ "nodetype" : "column",
660
+ "moduleName" : "IPV6-MIB",
661
+ "oid" : "1.3.6.1.2.1.55.1.6.1.12",
662
+ "status" : "current",
663
+ "syntax" : {
664
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
665
+ },
666
+ "access" : "readonly",
667
+ "description" :
668
+ """The number of output IPv6 datagrams for which no
669
+ problem was encountered to prevent their
670
+ transmission to their destination, but which were
671
+ discarded (e.g., for lack of buffer space). Note
672
+ that this counter would include datagrams counted
673
+ in ipv6IfStatsOutForwDatagrams if any such packets
674
+ met this (discretionary) discard criterion.""",
675
+ }, # column
676
+ "ipv6IfStatsOutFragOKs" : {
677
+ "nodetype" : "column",
678
+ "moduleName" : "IPV6-MIB",
679
+ "oid" : "1.3.6.1.2.1.55.1.6.1.13",
680
+ "status" : "current",
681
+ "syntax" : {
682
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
683
+ },
684
+ "access" : "readonly",
685
+ "description" :
686
+ """The number of IPv6 datagrams that have been
687
+ successfully fragmented at this output interface.""",
688
+ }, # column
689
+ "ipv6IfStatsOutFragFails" : {
690
+ "nodetype" : "column",
691
+ "moduleName" : "IPV6-MIB",
692
+ "oid" : "1.3.6.1.2.1.55.1.6.1.14",
693
+ "status" : "current",
694
+ "syntax" : {
695
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
696
+ },
697
+ "access" : "readonly",
698
+ "description" :
699
+ """The number of IPv6 datagrams that have been
700
+ discarded because they needed to be fragmented
701
+ at this output interface but could not be.""",
702
+ }, # column
703
+ "ipv6IfStatsOutFragCreates" : {
704
+ "nodetype" : "column",
705
+ "moduleName" : "IPV6-MIB",
706
+ "oid" : "1.3.6.1.2.1.55.1.6.1.15",
707
+ "status" : "current",
708
+ "syntax" : {
709
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
710
+ },
711
+ "access" : "readonly",
712
+ "description" :
713
+ """The number of output datagram fragments that have
714
+ been generated as a result of fragmentation at
715
+ this output interface.""",
716
+ }, # column
717
+ "ipv6IfStatsReasmReqds" : {
718
+ "nodetype" : "column",
719
+ "moduleName" : "IPV6-MIB",
720
+ "oid" : "1.3.6.1.2.1.55.1.6.1.16",
721
+ "status" : "current",
722
+ "syntax" : {
723
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
724
+ },
725
+ "access" : "readonly",
726
+ "description" :
727
+ """The number of IPv6 fragments received which needed
728
+ to be reassembled at this interface. Note that this
729
+ counter is incremented at the interface to which
730
+ these fragments were addressed which might not
731
+ be necessarily the input interface for some of
732
+ the fragments.""",
733
+ }, # column
734
+ "ipv6IfStatsReasmOKs" : {
735
+ "nodetype" : "column",
736
+ "moduleName" : "IPV6-MIB",
737
+ "oid" : "1.3.6.1.2.1.55.1.6.1.17",
738
+ "status" : "current",
739
+ "syntax" : {
740
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
741
+ },
742
+ "access" : "readonly",
743
+ "description" :
744
+ """The number of IPv6 datagrams successfully
745
+ reassembled. Note that this counter is incremented
746
+ at the interface to which these datagrams were
747
+ addressed which might not be necessarily the input
748
+ interface for some of the fragments.""",
749
+ }, # column
750
+ "ipv6IfStatsReasmFails" : {
751
+ "nodetype" : "column",
752
+ "moduleName" : "IPV6-MIB",
753
+ "oid" : "1.3.6.1.2.1.55.1.6.1.18",
754
+ "status" : "current",
755
+ "syntax" : {
756
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
757
+ },
758
+ "access" : "readonly",
759
+ "description" :
760
+ """The number of failures detected by the IPv6 re-
761
+ assembly algorithm (for whatever reason: timed
762
+ out, errors, etc.). Note that this is not
763
+ necessarily a count of discarded IPv6 fragments
764
+ since some algorithms (notably the algorithm in
765
+ RFC 815) can lose track of the number of fragments
766
+ by combining them as they are received.
767
+ This counter is incremented at the interface to which
768
+ these fragments were addressed which might not be
769
+ necessarily the input interface for some of the
770
+ fragments.""",
771
+ }, # column
772
+ "ipv6IfStatsInMcastPkts" : {
773
+ "nodetype" : "column",
774
+ "moduleName" : "IPV6-MIB",
775
+ "oid" : "1.3.6.1.2.1.55.1.6.1.19",
776
+ "status" : "current",
777
+ "syntax" : {
778
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
779
+ },
780
+ "access" : "readonly",
781
+ "description" :
782
+ """The number of multicast packets received
783
+ by the interface""",
784
+ }, # column
785
+ "ipv6IfStatsOutMcastPkts" : {
786
+ "nodetype" : "column",
787
+ "moduleName" : "IPV6-MIB",
788
+ "oid" : "1.3.6.1.2.1.55.1.6.1.20",
789
+ "status" : "current",
790
+ "syntax" : {
791
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
792
+ },
793
+ "access" : "readonly",
794
+ "description" :
795
+ """The number of multicast packets transmitted
796
+ by the interface""",
797
+ }, # column
798
+ "ipv6AddrPrefixTable" : {
799
+ "nodetype" : "table",
800
+ "moduleName" : "IPV6-MIB",
801
+ "oid" : "1.3.6.1.2.1.55.1.7",
802
+ "status" : "current",
803
+ "description" :
804
+ """The list of IPv6 address prefixes of
805
+ IPv6 interfaces.""",
806
+ }, # table
807
+ "ipv6AddrPrefixEntry" : {
808
+ "nodetype" : "row",
809
+ "moduleName" : "IPV6-MIB",
810
+ "oid" : "1.3.6.1.2.1.55.1.7.1",
811
+ "status" : "current",
812
+ "linkage" : [
813
+ "ipv6IfIndex",
814
+ "ipv6AddrPrefix",
815
+ "ipv6AddrPrefixLength",
816
+ ],
817
+ "description" :
818
+ """An interface entry containing objects of
819
+ a particular IPv6 address prefix.""",
820
+ }, # row
821
+ "ipv6AddrPrefix" : {
822
+ "nodetype" : "column",
823
+ "moduleName" : "IPV6-MIB",
824
+ "oid" : "1.3.6.1.2.1.55.1.7.1.1",
825
+ "status" : "current",
826
+ "syntax" : {
827
+ "type" : { "module" :"IPV6-TC", "name" : "Ipv6AddressPrefix"},
828
+ },
829
+ "access" : "noaccess",
830
+ "description" :
831
+ """The prefix associated with the this interface.""",
832
+ }, # column
833
+ "ipv6AddrPrefixLength" : {
834
+ "nodetype" : "column",
835
+ "moduleName" : "IPV6-MIB",
836
+ "oid" : "1.3.6.1.2.1.55.1.7.1.2",
837
+ "status" : "current",
838
+ "syntax" : {
839
+ "type" : {
840
+ "basetype" : "Integer32",
841
+ "ranges" : [
842
+ {
843
+ "min" : "0",
844
+ "max" : "128"
845
+ },
846
+ ],
847
+ "range" : {
848
+ "min" : "0",
849
+ "max" : "128"
850
+ },
851
+ },
852
+ },
853
+ "access" : "noaccess",
854
+ "units" : "bits",
855
+ "description" :
856
+ """The length of the prefix (in bits).""",
857
+ }, # column
858
+ "ipv6AddrPrefixOnLinkFlag" : {
859
+ "nodetype" : "column",
860
+ "moduleName" : "IPV6-MIB",
861
+ "oid" : "1.3.6.1.2.1.55.1.7.1.3",
862
+ "status" : "current",
863
+ "syntax" : {
864
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
865
+ },
866
+ "access" : "readonly",
867
+ "description" :
868
+ """This object has the value 'true(1)', if this
869
+ prefix can be used for on-link determination
870
+ and the value 'false(2)' otherwise.""",
871
+ }, # column
872
+ "ipv6AddrPrefixAutonomousFlag" : {
873
+ "nodetype" : "column",
874
+ "moduleName" : "IPV6-MIB",
875
+ "oid" : "1.3.6.1.2.1.55.1.7.1.4",
876
+ "status" : "current",
877
+ "syntax" : {
878
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
879
+ },
880
+ "access" : "readonly",
881
+ "description" :
882
+ """Autonomous address configuration flag. When
883
+ true(1), indicates that this prefix can be used
884
+ for autonomous address configuration (i.e. can
885
+ be used to form a local interface address).
886
+ If false(2), it is not used to autoconfigure
887
+ a local interface address.""",
888
+ }, # column
889
+ "ipv6AddrPrefixAdvPreferredLifetime" : {
890
+ "nodetype" : "column",
891
+ "moduleName" : "IPV6-MIB",
892
+ "oid" : "1.3.6.1.2.1.55.1.7.1.5",
893
+ "status" : "current",
894
+ "syntax" : {
895
+ "type" : { "module" :"", "name" : "Unsigned32"},
896
+ },
897
+ "access" : "readonly",
898
+ "units" : "seconds",
899
+ "description" :
900
+ """It is the length of time in seconds that this
901
+ prefix will remain preferred, i.e. time until
902
+ deprecation. A value of 4,294,967,295 represents
903
+ infinity.
904
+
905
+ The address generated from a deprecated prefix
906
+ should no longer be used as a source address in
907
+ new communications, but packets received on such
908
+ an interface are processed as expected.""",
909
+ }, # column
910
+ "ipv6AddrPrefixAdvValidLifetime" : {
911
+ "nodetype" : "column",
912
+ "moduleName" : "IPV6-MIB",
913
+ "oid" : "1.3.6.1.2.1.55.1.7.1.6",
914
+ "status" : "current",
915
+ "syntax" : {
916
+ "type" : { "module" :"", "name" : "Unsigned32"},
917
+ },
918
+ "access" : "readonly",
919
+ "units" : "seconds",
920
+ "description" :
921
+ """It is the length of time in seconds that this
922
+ prefix will remain valid, i.e. time until
923
+ invalidation. A value of 4,294,967,295 represents
924
+ infinity.
925
+
926
+ The address generated from an invalidated prefix
927
+ should not appear as the destination or source
928
+ address of a packet.""",
929
+ }, # column
930
+ "ipv6AddrTable" : {
931
+ "nodetype" : "table",
932
+ "moduleName" : "IPV6-MIB",
933
+ "oid" : "1.3.6.1.2.1.55.1.8",
934
+ "status" : "current",
935
+ "description" :
936
+ """The table of addressing information relevant to
937
+ this node's interface addresses.""",
938
+ }, # table
939
+ "ipv6AddrEntry" : {
940
+ "nodetype" : "row",
941
+ "moduleName" : "IPV6-MIB",
942
+ "oid" : "1.3.6.1.2.1.55.1.8.1",
943
+ "status" : "current",
944
+ "linkage" : [
945
+ "ipv6IfIndex",
946
+ "ipv6AddrAddress",
947
+ ],
948
+ "description" :
949
+ """The addressing information for one of this
950
+ node's interface addresses.""",
951
+ }, # row
952
+ "ipv6AddrAddress" : {
953
+ "nodetype" : "column",
954
+ "moduleName" : "IPV6-MIB",
955
+ "oid" : "1.3.6.1.2.1.55.1.8.1.1",
956
+ "status" : "current",
957
+ "syntax" : {
958
+ "type" : { "module" :"IPV6-TC", "name" : "Ipv6Address"},
959
+ },
960
+ "access" : "noaccess",
961
+ "description" :
962
+ """The IPv6 address to which this entry's addressing
963
+ information pertains.""",
964
+ }, # column
965
+ "ipv6AddrPfxLength" : {
966
+ "nodetype" : "column",
967
+ "moduleName" : "IPV6-MIB",
968
+ "oid" : "1.3.6.1.2.1.55.1.8.1.2",
969
+ "status" : "current",
970
+ "syntax" : {
971
+ "type" : {
972
+ "basetype" : "Integer32",
973
+ "ranges" : [
974
+ {
975
+ "min" : "0",
976
+ "max" : "128"
977
+ },
978
+ ],
979
+ "range" : {
980
+ "min" : "0",
981
+ "max" : "128"
982
+ },
983
+ },
984
+ },
985
+ "access" : "readonly",
986
+ "units" : "bits",
987
+ "description" :
988
+ """The length of the prefix (in bits) associated with
989
+ the IPv6 address of this entry.""",
990
+ }, # column
991
+ "ipv6AddrType" : {
992
+ "nodetype" : "column",
993
+ "moduleName" : "IPV6-MIB",
994
+ "oid" : "1.3.6.1.2.1.55.1.8.1.3",
995
+ "status" : "current",
996
+ "syntax" : {
997
+ "type" : {
998
+ "basetype" : "Enumeration",
999
+ "stateless" : {
1000
+ "nodetype" : "namednumber",
1001
+ "number" : "1"
1002
+ },
1003
+ "stateful" : {
1004
+ "nodetype" : "namednumber",
1005
+ "number" : "2"
1006
+ },
1007
+ "unknown" : {
1008
+ "nodetype" : "namednumber",
1009
+ "number" : "3"
1010
+ },
1011
+ },
1012
+ },
1013
+ "access" : "readonly",
1014
+ "description" :
1015
+ """The type of address. Note that 'stateless(1)'
1016
+ refers to an address that was statelessly
1017
+ autoconfigured; 'stateful(2)' refers to a address
1018
+ which was acquired by via a stateful protocol
1019
+ (e.g. DHCPv6, manual configuration).""",
1020
+ }, # column
1021
+ "ipv6AddrAnycastFlag" : {
1022
+ "nodetype" : "column",
1023
+ "moduleName" : "IPV6-MIB",
1024
+ "oid" : "1.3.6.1.2.1.55.1.8.1.4",
1025
+ "status" : "current",
1026
+ "syntax" : {
1027
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1028
+ },
1029
+ "access" : "readonly",
1030
+ "description" :
1031
+ """This object has the value 'true(1)', if this
1032
+ address is an anycast address and the value
1033
+ 'false(2)' otherwise.""",
1034
+ }, # column
1035
+ "ipv6AddrStatus" : {
1036
+ "nodetype" : "column",
1037
+ "moduleName" : "IPV6-MIB",
1038
+ "oid" : "1.3.6.1.2.1.55.1.8.1.5",
1039
+ "status" : "current",
1040
+ "syntax" : {
1041
+ "type" : {
1042
+ "basetype" : "Enumeration",
1043
+ "preferred" : {
1044
+ "nodetype" : "namednumber",
1045
+ "number" : "1"
1046
+ },
1047
+ "deprecated" : {
1048
+ "nodetype" : "namednumber",
1049
+ "number" : "2"
1050
+ },
1051
+ "invalid" : {
1052
+ "nodetype" : "namednumber",
1053
+ "number" : "3"
1054
+ },
1055
+ "inaccessible" : {
1056
+ "nodetype" : "namednumber",
1057
+ "number" : "4"
1058
+ },
1059
+ "unknown" : {
1060
+ "nodetype" : "namednumber",
1061
+ "number" : "5"
1062
+ },
1063
+ },
1064
+ },
1065
+ "access" : "readonly",
1066
+ "description" :
1067
+ """Address status. The preferred(1) state indicates
1068
+ that this is a valid address that can appear as
1069
+ the destination or source address of a packet.
1070
+ The deprecated(2) state indicates that this is
1071
+ a valid but deprecated address that should no longer
1072
+ be used as a source address in new communications,
1073
+ but packets addressed to such an address are
1074
+ processed as expected. The invalid(3) state indicates
1075
+ that this is not valid address which should not
1076
+ appear as the destination or source address of
1077
+ a packet. The inaccessible(4) state indicates that
1078
+ the address is not accessible because the interface
1079
+ to which this address is assigned is not operational.""",
1080
+ }, # column
1081
+ "ipv6RouteNumber" : {
1082
+ "nodetype" : "scalar",
1083
+ "moduleName" : "IPV6-MIB",
1084
+ "oid" : "1.3.6.1.2.1.55.1.9",
1085
+ "status" : "current",
1086
+ "syntax" : {
1087
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1088
+ },
1089
+ "access" : "readonly",
1090
+ "description" :
1091
+ """The number of current ipv6RouteTable entries.
1092
+ This is primarily to avoid having to read
1093
+ the table in order to determine this number.""",
1094
+ }, # scalar
1095
+ "ipv6DiscardedRoutes" : {
1096
+ "nodetype" : "scalar",
1097
+ "moduleName" : "IPV6-MIB",
1098
+ "oid" : "1.3.6.1.2.1.55.1.10",
1099
+ "status" : "current",
1100
+ "syntax" : {
1101
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1102
+ },
1103
+ "access" : "readonly",
1104
+ "description" :
1105
+ """The number of routing entries which were chosen
1106
+ to be discarded even though they are valid. One
1107
+ possible reason for discarding such an entry could
1108
+ be to free-up buffer space for other routing
1109
+ entries.""",
1110
+ }, # scalar
1111
+ "ipv6RouteTable" : {
1112
+ "nodetype" : "table",
1113
+ "moduleName" : "IPV6-MIB",
1114
+ "oid" : "1.3.6.1.2.1.55.1.11",
1115
+ "status" : "current",
1116
+ "description" :
1117
+ """IPv6 Routing table. This table contains
1118
+ an entry for each valid IPv6 unicast route
1119
+ that can be used for packet forwarding
1120
+ determination.""",
1121
+ }, # table
1122
+ "ipv6RouteEntry" : {
1123
+ "nodetype" : "row",
1124
+ "moduleName" : "IPV6-MIB",
1125
+ "oid" : "1.3.6.1.2.1.55.1.11.1",
1126
+ "status" : "current",
1127
+ "linkage" : [
1128
+ "ipv6RouteDest",
1129
+ "ipv6RoutePfxLength",
1130
+ "ipv6RouteIndex",
1131
+ ],
1132
+ "description" :
1133
+ """A routing entry.""",
1134
+ }, # row
1135
+ "ipv6RouteDest" : {
1136
+ "nodetype" : "column",
1137
+ "moduleName" : "IPV6-MIB",
1138
+ "oid" : "1.3.6.1.2.1.55.1.11.1.1",
1139
+ "status" : "current",
1140
+ "syntax" : {
1141
+ "type" : { "module" :"IPV6-TC", "name" : "Ipv6Address"},
1142
+ },
1143
+ "access" : "noaccess",
1144
+ "description" :
1145
+ """The destination IPv6 address of this route.
1146
+ This object may not take a Multicast address
1147
+ value.""",
1148
+ }, # column
1149
+ "ipv6RoutePfxLength" : {
1150
+ "nodetype" : "column",
1151
+ "moduleName" : "IPV6-MIB",
1152
+ "oid" : "1.3.6.1.2.1.55.1.11.1.2",
1153
+ "status" : "current",
1154
+ "syntax" : {
1155
+ "type" : {
1156
+ "basetype" : "Integer32",
1157
+ "ranges" : [
1158
+ {
1159
+ "min" : "0",
1160
+ "max" : "128"
1161
+ },
1162
+ ],
1163
+ "range" : {
1164
+ "min" : "0",
1165
+ "max" : "128"
1166
+ },
1167
+ },
1168
+ },
1169
+ "access" : "noaccess",
1170
+ "units" : "bits",
1171
+ "description" :
1172
+ """Indicates the prefix length of the destination
1173
+ address.""",
1174
+ }, # column
1175
+ "ipv6RouteIndex" : {
1176
+ "nodetype" : "column",
1177
+ "moduleName" : "IPV6-MIB",
1178
+ "oid" : "1.3.6.1.2.1.55.1.11.1.3",
1179
+ "status" : "current",
1180
+ "syntax" : {
1181
+ "type" : { "module" :"", "name" : "Unsigned32"},
1182
+ },
1183
+ "access" : "noaccess",
1184
+ "description" :
1185
+ """The value which uniquely identifies the route
1186
+ among the routes to the same network layer
1187
+ destination. The way this value is chosen is
1188
+ implementation specific but it must be unique for
1189
+ ipv6RouteDest/ipv6RoutePfxLength pair and remain
1190
+ constant for the life of the route.""",
1191
+ }, # column
1192
+ "ipv6RouteIfIndex" : {
1193
+ "nodetype" : "column",
1194
+ "moduleName" : "IPV6-MIB",
1195
+ "oid" : "1.3.6.1.2.1.55.1.11.1.4",
1196
+ "status" : "current",
1197
+ "syntax" : {
1198
+ "type" : { "module" :"IPV6-TC", "name" : "Ipv6IfIndexOrZero"},
1199
+ },
1200
+ "access" : "readonly",
1201
+ "description" :
1202
+ """The index value which uniquely identifies the local
1203
+ interface through which the next hop of this
1204
+ route should be reached. The interface identified
1205
+ by a particular value of this index is the same
1206
+ interface as identified by the same value of
1207
+ ipv6IfIndex. For routes of the discard type this
1208
+ value can be zero.""",
1209
+ }, # column
1210
+ "ipv6RouteNextHop" : {
1211
+ "nodetype" : "column",
1212
+ "moduleName" : "IPV6-MIB",
1213
+ "oid" : "1.3.6.1.2.1.55.1.11.1.5",
1214
+ "status" : "current",
1215
+ "syntax" : {
1216
+ "type" : { "module" :"IPV6-TC", "name" : "Ipv6Address"},
1217
+ },
1218
+ "access" : "readonly",
1219
+ "description" :
1220
+ """On remote routes, the address of the next
1221
+ system en route; otherwise, ::0
1222
+ ('00000000000000000000000000000000'H in ASN.1
1223
+ string representation).""",
1224
+ }, # column
1225
+ "ipv6RouteType" : {
1226
+ "nodetype" : "column",
1227
+ "moduleName" : "IPV6-MIB",
1228
+ "oid" : "1.3.6.1.2.1.55.1.11.1.6",
1229
+ "status" : "current",
1230
+ "syntax" : {
1231
+ "type" : {
1232
+ "basetype" : "Enumeration",
1233
+ "other" : {
1234
+ "nodetype" : "namednumber",
1235
+ "number" : "1"
1236
+ },
1237
+ "discard" : {
1238
+ "nodetype" : "namednumber",
1239
+ "number" : "2"
1240
+ },
1241
+ "local" : {
1242
+ "nodetype" : "namednumber",
1243
+ "number" : "3"
1244
+ },
1245
+ "remote" : {
1246
+ "nodetype" : "namednumber",
1247
+ "number" : "4"
1248
+ },
1249
+ },
1250
+ },
1251
+ "access" : "readonly",
1252
+ "description" :
1253
+ """The type of route. Note that 'local(3)' refers
1254
+ to a route for which the next hop is the final
1255
+ destination; 'remote(4)' refers to a route for
1256
+ which the next hop is not the final
1257
+ destination; 'discard(2)' refers to a route
1258
+ indicating that packets to destinations matching
1259
+ this route are to be discarded (sometimes called
1260
+ black-hole route).""",
1261
+ }, # column
1262
+ "ipv6RouteProtocol" : {
1263
+ "nodetype" : "column",
1264
+ "moduleName" : "IPV6-MIB",
1265
+ "oid" : "1.3.6.1.2.1.55.1.11.1.7",
1266
+ "status" : "current",
1267
+ "syntax" : {
1268
+ "type" : {
1269
+ "basetype" : "Enumeration",
1270
+ "other" : {
1271
+ "nodetype" : "namednumber",
1272
+ "number" : "1"
1273
+ },
1274
+ "local" : {
1275
+ "nodetype" : "namednumber",
1276
+ "number" : "2"
1277
+ },
1278
+ "netmgmt" : {
1279
+ "nodetype" : "namednumber",
1280
+ "number" : "3"
1281
+ },
1282
+ "ndisc" : {
1283
+ "nodetype" : "namednumber",
1284
+ "number" : "4"
1285
+ },
1286
+ "rip" : {
1287
+ "nodetype" : "namednumber",
1288
+ "number" : "5"
1289
+ },
1290
+ "ospf" : {
1291
+ "nodetype" : "namednumber",
1292
+ "number" : "6"
1293
+ },
1294
+ "bgp" : {
1295
+ "nodetype" : "namednumber",
1296
+ "number" : "7"
1297
+ },
1298
+ "idrp" : {
1299
+ "nodetype" : "namednumber",
1300
+ "number" : "8"
1301
+ },
1302
+ "igrp" : {
1303
+ "nodetype" : "namednumber",
1304
+ "number" : "9"
1305
+ },
1306
+ },
1307
+ },
1308
+ "access" : "readonly",
1309
+ "description" :
1310
+ """The routing mechanism via which this route was
1311
+ learned.""",
1312
+ }, # column
1313
+ "ipv6RoutePolicy" : {
1314
+ "nodetype" : "column",
1315
+ "moduleName" : "IPV6-MIB",
1316
+ "oid" : "1.3.6.1.2.1.55.1.11.1.8",
1317
+ "status" : "current",
1318
+ "syntax" : {
1319
+ "type" : { "module" :"", "name" : "Integer32"},
1320
+ },
1321
+ "access" : "readonly",
1322
+ "description" :
1323
+ """The general set of conditions that would cause the
1324
+ selection of one multipath route (set of next hops
1325
+ for a given destination) is referred to as 'policy'.
1326
+ Unless the mechanism indicated by ipv6RouteProtocol
1327
+ specified otherwise, the policy specifier is the
1328
+ 8-bit Traffic Class field of the IPv6 packet header
1329
+ that is zero extended at the left to a 32-bit value.
1330
+
1331
+ Protocols defining 'policy' otherwise must either
1332
+ define a set of values which are valid for
1333
+ this object or must implement an integer-
1334
+ instanced policy table for which this object's
1335
+ value acts as an index.""",
1336
+ }, # column
1337
+ "ipv6RouteAge" : {
1338
+ "nodetype" : "column",
1339
+ "moduleName" : "IPV6-MIB",
1340
+ "oid" : "1.3.6.1.2.1.55.1.11.1.9",
1341
+ "status" : "current",
1342
+ "syntax" : {
1343
+ "type" : { "module" :"", "name" : "Unsigned32"},
1344
+ },
1345
+ "access" : "readonly",
1346
+ "units" : "seconds",
1347
+ "description" :
1348
+ """The number of seconds since this route was last
1349
+ updated or otherwise determined to be correct.
1350
+ Note that no semantics of `too old' can be implied
1351
+ except through knowledge of the routing protocol
1352
+ by which the route was learned.""",
1353
+ }, # column
1354
+ "ipv6RouteNextHopRDI" : {
1355
+ "nodetype" : "column",
1356
+ "moduleName" : "IPV6-MIB",
1357
+ "oid" : "1.3.6.1.2.1.55.1.11.1.10",
1358
+ "status" : "current",
1359
+ "syntax" : {
1360
+ "type" : { "module" :"", "name" : "Unsigned32"},
1361
+ },
1362
+ "access" : "readonly",
1363
+ "description" :
1364
+ """The Routing Domain ID of the Next Hop.
1365
+ The semantics of this object are determined by
1366
+ the routing-protocol specified in the route's
1367
+ ipv6RouteProtocol value. When this object is
1368
+ unknown or not relevant its value should be set
1369
+ to zero.""",
1370
+ }, # column
1371
+ "ipv6RouteMetric" : {
1372
+ "nodetype" : "column",
1373
+ "moduleName" : "IPV6-MIB",
1374
+ "oid" : "1.3.6.1.2.1.55.1.11.1.11",
1375
+ "status" : "current",
1376
+ "syntax" : {
1377
+ "type" : { "module" :"", "name" : "Unsigned32"},
1378
+ },
1379
+ "access" : "readonly",
1380
+ "description" :
1381
+ """The routing metric for this route. The
1382
+ semantics of this metric are determined by the
1383
+ routing protocol specified in the route's
1384
+ ipv6RouteProtocol value. When this is unknown
1385
+ or not relevant to the protocol indicated by
1386
+ ipv6RouteProtocol, the object value should be
1387
+ set to its maximum value (4,294,967,295).""",
1388
+ }, # column
1389
+ "ipv6RouteWeight" : {
1390
+ "nodetype" : "column",
1391
+ "moduleName" : "IPV6-MIB",
1392
+ "oid" : "1.3.6.1.2.1.55.1.11.1.12",
1393
+ "status" : "current",
1394
+ "syntax" : {
1395
+ "type" : { "module" :"", "name" : "Unsigned32"},
1396
+ },
1397
+ "access" : "readonly",
1398
+ "description" :
1399
+ """The system internal weight value for this route.
1400
+ The semantics of this value are determined by
1401
+ the implementation specific rules. Generally,
1402
+ within routes with the same ipv6RoutePolicy value,
1403
+ the lower the weight value the more preferred is
1404
+ the route.""",
1405
+ }, # column
1406
+ "ipv6RouteInfo" : {
1407
+ "nodetype" : "column",
1408
+ "moduleName" : "IPV6-MIB",
1409
+ "oid" : "1.3.6.1.2.1.55.1.11.1.13",
1410
+ "status" : "current",
1411
+ "syntax" : {
1412
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowPointer"},
1413
+ },
1414
+ "access" : "readonly",
1415
+ "description" :
1416
+ """A reference to MIB definitions specific to the
1417
+ particular routing protocol which is responsible
1418
+ for this route, as determined by the value
1419
+ specified in the route's ipv6RouteProto value.
1420
+ If this information is not present, its value
1421
+ should be set to the OBJECT ID { 0 0 },
1422
+ which is a syntactically valid object identifier,
1423
+ and any implementation conforming to ASN.1
1424
+ and the Basic Encoding Rules must be able to
1425
+ generate and recognize this value.""",
1426
+ }, # column
1427
+ "ipv6RouteValid" : {
1428
+ "nodetype" : "column",
1429
+ "moduleName" : "IPV6-MIB",
1430
+ "oid" : "1.3.6.1.2.1.55.1.11.1.14",
1431
+ "status" : "current",
1432
+ "syntax" : {
1433
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1434
+ },
1435
+ "access" : "readwrite",
1436
+ "default" : "true",
1437
+ "description" :
1438
+ """Setting this object to the value 'false(2)' has
1439
+ the effect of invalidating the corresponding entry
1440
+ in the ipv6RouteTable object. That is, it
1441
+ effectively disassociates the destination
1442
+ identified with said entry from the route
1443
+ identified with said entry. It is an
1444
+ implementation-specific matter as to whether the
1445
+ agent removes an invalidated entry from the table.
1446
+ Accordingly, management stations must be prepared
1447
+ to receive tabular information from agents that
1448
+ corresponds to entries not currently in use.
1449
+ Proper interpretation of such entries requires
1450
+ examination of the relevant ipv6RouteValid
1451
+ object.""",
1452
+ }, # column
1453
+ "ipv6NetToMediaTable" : {
1454
+ "nodetype" : "table",
1455
+ "moduleName" : "IPV6-MIB",
1456
+ "oid" : "1.3.6.1.2.1.55.1.12",
1457
+ "status" : "current",
1458
+ "description" :
1459
+ """The IPv6 Address Translation table used for
1460
+ mapping from IPv6 addresses to physical addresses.
1461
+
1462
+ The IPv6 address translation table contain the
1463
+ Ipv6Address to `physical' address equivalencies.
1464
+ Some interfaces do not use translation tables
1465
+ for determining address equivalencies; if all
1466
+ interfaces are of this type, then the Address
1467
+ Translation table is empty, i.e., has zero
1468
+ entries.""",
1469
+ }, # table
1470
+ "ipv6NetToMediaEntry" : {
1471
+ "nodetype" : "row",
1472
+ "moduleName" : "IPV6-MIB",
1473
+ "oid" : "1.3.6.1.2.1.55.1.12.1",
1474
+ "status" : "current",
1475
+ "linkage" : [
1476
+ "ipv6IfIndex",
1477
+ "ipv6NetToMediaNetAddress",
1478
+ ],
1479
+ "description" :
1480
+ """Each entry contains one IPv6 address to `physical'
1481
+ address equivalence.""",
1482
+ }, # row
1483
+ "ipv6NetToMediaNetAddress" : {
1484
+ "nodetype" : "column",
1485
+ "moduleName" : "IPV6-MIB",
1486
+ "oid" : "1.3.6.1.2.1.55.1.12.1.1",
1487
+ "status" : "current",
1488
+ "syntax" : {
1489
+ "type" : { "module" :"IPV6-TC", "name" : "Ipv6Address"},
1490
+ },
1491
+ "access" : "noaccess",
1492
+ "description" :
1493
+ """The IPv6 Address corresponding to
1494
+ the media-dependent `physical' address.""",
1495
+ }, # column
1496
+ "ipv6NetToMediaPhysAddress" : {
1497
+ "nodetype" : "column",
1498
+ "moduleName" : "IPV6-MIB",
1499
+ "oid" : "1.3.6.1.2.1.55.1.12.1.2",
1500
+ "status" : "current",
1501
+ "syntax" : {
1502
+ "type" : { "module" :"SNMPv2-TC", "name" : "PhysAddress"},
1503
+ },
1504
+ "access" : "readonly",
1505
+ "description" :
1506
+ """The media-dependent `physical' address.""",
1507
+ }, # column
1508
+ "ipv6NetToMediaType" : {
1509
+ "nodetype" : "column",
1510
+ "moduleName" : "IPV6-MIB",
1511
+ "oid" : "1.3.6.1.2.1.55.1.12.1.3",
1512
+ "status" : "current",
1513
+ "syntax" : {
1514
+ "type" : {
1515
+ "basetype" : "Enumeration",
1516
+ "other" : {
1517
+ "nodetype" : "namednumber",
1518
+ "number" : "1"
1519
+ },
1520
+ "dynamic" : {
1521
+ "nodetype" : "namednumber",
1522
+ "number" : "2"
1523
+ },
1524
+ "static" : {
1525
+ "nodetype" : "namednumber",
1526
+ "number" : "3"
1527
+ },
1528
+ "local" : {
1529
+ "nodetype" : "namednumber",
1530
+ "number" : "4"
1531
+ },
1532
+ },
1533
+ },
1534
+ "access" : "readonly",
1535
+ "description" :
1536
+ """The type of the mapping. The 'dynamic(2)' type
1537
+ indicates that the IPv6 address to physical
1538
+ addresses mapping has been dynamically
1539
+ resolved using the IPv6 Neighbor Discovery
1540
+ protocol. The static(3)' types indicates that
1541
+ the mapping has been statically configured.
1542
+ The local(4) indicates that the mapping is
1543
+ provided for an entity's own interface address.""",
1544
+ }, # column
1545
+ "ipv6IfNetToMediaState" : {
1546
+ "nodetype" : "column",
1547
+ "moduleName" : "IPV6-MIB",
1548
+ "oid" : "1.3.6.1.2.1.55.1.12.1.4",
1549
+ "status" : "current",
1550
+ "syntax" : {
1551
+ "type" : {
1552
+ "basetype" : "Enumeration",
1553
+ "reachable" : {
1554
+ "nodetype" : "namednumber",
1555
+ "number" : "1"
1556
+ },
1557
+ "stale" : {
1558
+ "nodetype" : "namednumber",
1559
+ "number" : "2"
1560
+ },
1561
+ "delay" : {
1562
+ "nodetype" : "namednumber",
1563
+ "number" : "3"
1564
+ },
1565
+ "probe" : {
1566
+ "nodetype" : "namednumber",
1567
+ "number" : "4"
1568
+ },
1569
+ "invalid" : {
1570
+ "nodetype" : "namednumber",
1571
+ "number" : "5"
1572
+ },
1573
+ "unknown" : {
1574
+ "nodetype" : "namednumber",
1575
+ "number" : "6"
1576
+ },
1577
+ },
1578
+ },
1579
+ "access" : "readonly",
1580
+ "description" :
1581
+ """The Neighbor Unreachability Detection [8] state
1582
+ for the interface when the address mapping in
1583
+ this entry is used.""",
1584
+ }, # column
1585
+ "ipv6IfNetToMediaLastUpdated" : {
1586
+ "nodetype" : "column",
1587
+ "moduleName" : "IPV6-MIB",
1588
+ "oid" : "1.3.6.1.2.1.55.1.12.1.5",
1589
+ "status" : "current",
1590
+ "syntax" : {
1591
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1592
+ },
1593
+ "access" : "readonly",
1594
+ "description" :
1595
+ """The value of sysUpTime at the time this entry
1596
+ was last updated. If this entry was updated prior
1597
+ to the last re-initialization of the local network
1598
+ management subsystem, then this object contains
1599
+ a zero value.""",
1600
+ }, # column
1601
+ "ipv6NetToMediaValid" : {
1602
+ "nodetype" : "column",
1603
+ "moduleName" : "IPV6-MIB",
1604
+ "oid" : "1.3.6.1.2.1.55.1.12.1.6",
1605
+ "status" : "current",
1606
+ "syntax" : {
1607
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1608
+ },
1609
+ "access" : "readwrite",
1610
+ "default" : "true",
1611
+ "description" :
1612
+ """Setting this object to the value 'false(2)' has
1613
+ the effect of invalidating the corresponding entry
1614
+ in the ipv6NetToMediaTable. That is, it effectively
1615
+ disassociates the interface identified with said
1616
+ entry from the mapping identified with said entry.
1617
+ It is an implementation-specific matter as to
1618
+ whether the agent removes an invalidated entry
1619
+ from the table. Accordingly, management stations
1620
+ must be prepared to receive tabular information
1621
+ from agents that corresponds to entries not
1622
+ currently in use. Proper interpretation of such
1623
+ entries requires examination of the relevant
1624
+ ipv6NetToMediaValid object.""",
1625
+ }, # column
1626
+ "ipv6Notifications" : {
1627
+ "nodetype" : "node",
1628
+ "moduleName" : "IPV6-MIB",
1629
+ "oid" : "1.3.6.1.2.1.55.2",
1630
+ }, # node
1631
+ "ipv6NotificationPrefix" : {
1632
+ "nodetype" : "node",
1633
+ "moduleName" : "IPV6-MIB",
1634
+ "oid" : "1.3.6.1.2.1.55.2.0",
1635
+ }, # node
1636
+ "ipv6Conformance" : {
1637
+ "nodetype" : "node",
1638
+ "moduleName" : "IPV6-MIB",
1639
+ "oid" : "1.3.6.1.2.1.55.3",
1640
+ }, # node
1641
+ "ipv6Compliances" : {
1642
+ "nodetype" : "node",
1643
+ "moduleName" : "IPV6-MIB",
1644
+ "oid" : "1.3.6.1.2.1.55.3.1",
1645
+ }, # node
1646
+ "ipv6Groups" : {
1647
+ "nodetype" : "node",
1648
+ "moduleName" : "IPV6-MIB",
1649
+ "oid" : "1.3.6.1.2.1.55.3.2",
1650
+ }, # node
1651
+ }, # nodes
1652
+
1653
+ "notifications" : {
1654
+ "ipv6IfStateChange" : {
1655
+ "nodetype" : "notification",
1656
+ "moduleName" : "IPV6-MIB",
1657
+ "oid" : "1.3.6.1.2.1.55.2.0.1",
1658
+ "status" : "current",
1659
+ "objects" : {
1660
+ "ipv6IfDescr" : {
1661
+ "nodetype" : "object",
1662
+ "module" : "IPV6-MIB"
1663
+ },
1664
+ "ipv6IfOperStatus" : {
1665
+ "nodetype" : "object",
1666
+ "module" : "IPV6-MIB"
1667
+ },
1668
+ },
1669
+ "description" :
1670
+ """An ipv6IfStateChange notification signifies
1671
+ that there has been a change in the state of
1672
+ an ipv6 interface. This notification should
1673
+ be generated when the interface's operational
1674
+ status transitions to or from the up(1) state.""",
1675
+ }, # notification
1676
+ }, # notifications
1677
+
1678
+ "groups" : {
1679
+ "ipv6GeneralGroup" : {
1680
+ "nodetype" : "group",
1681
+ "moduleName" : "IPV6-MIB",
1682
+ "oid" : "1.3.6.1.2.1.55.3.2.1",
1683
+ "status" : "current",
1684
+ "members" : {
1685
+ "ipv6Forwarding" : {
1686
+ "nodetype" : "member",
1687
+ "module" : "IPV6-MIB"
1688
+ },
1689
+ "ipv6DefaultHopLimit" : {
1690
+ "nodetype" : "member",
1691
+ "module" : "IPV6-MIB"
1692
+ },
1693
+ "ipv6Interfaces" : {
1694
+ "nodetype" : "member",
1695
+ "module" : "IPV6-MIB"
1696
+ },
1697
+ "ipv6IfTableLastChange" : {
1698
+ "nodetype" : "member",
1699
+ "module" : "IPV6-MIB"
1700
+ },
1701
+ "ipv6IfDescr" : {
1702
+ "nodetype" : "member",
1703
+ "module" : "IPV6-MIB"
1704
+ },
1705
+ "ipv6IfLowerLayer" : {
1706
+ "nodetype" : "member",
1707
+ "module" : "IPV6-MIB"
1708
+ },
1709
+ "ipv6IfEffectiveMtu" : {
1710
+ "nodetype" : "member",
1711
+ "module" : "IPV6-MIB"
1712
+ },
1713
+ "ipv6IfReasmMaxSize" : {
1714
+ "nodetype" : "member",
1715
+ "module" : "IPV6-MIB"
1716
+ },
1717
+ "ipv6IfIdentifier" : {
1718
+ "nodetype" : "member",
1719
+ "module" : "IPV6-MIB"
1720
+ },
1721
+ "ipv6IfIdentifierLength" : {
1722
+ "nodetype" : "member",
1723
+ "module" : "IPV6-MIB"
1724
+ },
1725
+ "ipv6IfPhysicalAddress" : {
1726
+ "nodetype" : "member",
1727
+ "module" : "IPV6-MIB"
1728
+ },
1729
+ "ipv6IfAdminStatus" : {
1730
+ "nodetype" : "member",
1731
+ "module" : "IPV6-MIB"
1732
+ },
1733
+ "ipv6IfOperStatus" : {
1734
+ "nodetype" : "member",
1735
+ "module" : "IPV6-MIB"
1736
+ },
1737
+ "ipv6IfLastChange" : {
1738
+ "nodetype" : "member",
1739
+ "module" : "IPV6-MIB"
1740
+ },
1741
+ "ipv6IfStatsInReceives" : {
1742
+ "nodetype" : "member",
1743
+ "module" : "IPV6-MIB"
1744
+ },
1745
+ "ipv6IfStatsInHdrErrors" : {
1746
+ "nodetype" : "member",
1747
+ "module" : "IPV6-MIB"
1748
+ },
1749
+ "ipv6IfStatsInTooBigErrors" : {
1750
+ "nodetype" : "member",
1751
+ "module" : "IPV6-MIB"
1752
+ },
1753
+ "ipv6IfStatsInNoRoutes" : {
1754
+ "nodetype" : "member",
1755
+ "module" : "IPV6-MIB"
1756
+ },
1757
+ "ipv6IfStatsInAddrErrors" : {
1758
+ "nodetype" : "member",
1759
+ "module" : "IPV6-MIB"
1760
+ },
1761
+ "ipv6IfStatsInUnknownProtos" : {
1762
+ "nodetype" : "member",
1763
+ "module" : "IPV6-MIB"
1764
+ },
1765
+ "ipv6IfStatsInTruncatedPkts" : {
1766
+ "nodetype" : "member",
1767
+ "module" : "IPV6-MIB"
1768
+ },
1769
+ "ipv6IfStatsInDiscards" : {
1770
+ "nodetype" : "member",
1771
+ "module" : "IPV6-MIB"
1772
+ },
1773
+ "ipv6IfStatsInDelivers" : {
1774
+ "nodetype" : "member",
1775
+ "module" : "IPV6-MIB"
1776
+ },
1777
+ "ipv6IfStatsOutForwDatagrams" : {
1778
+ "nodetype" : "member",
1779
+ "module" : "IPV6-MIB"
1780
+ },
1781
+ "ipv6IfStatsOutRequests" : {
1782
+ "nodetype" : "member",
1783
+ "module" : "IPV6-MIB"
1784
+ },
1785
+ "ipv6IfStatsOutDiscards" : {
1786
+ "nodetype" : "member",
1787
+ "module" : "IPV6-MIB"
1788
+ },
1789
+ "ipv6IfStatsOutFragOKs" : {
1790
+ "nodetype" : "member",
1791
+ "module" : "IPV6-MIB"
1792
+ },
1793
+ "ipv6IfStatsOutFragFails" : {
1794
+ "nodetype" : "member",
1795
+ "module" : "IPV6-MIB"
1796
+ },
1797
+ "ipv6IfStatsOutFragCreates" : {
1798
+ "nodetype" : "member",
1799
+ "module" : "IPV6-MIB"
1800
+ },
1801
+ "ipv6IfStatsReasmReqds" : {
1802
+ "nodetype" : "member",
1803
+ "module" : "IPV6-MIB"
1804
+ },
1805
+ "ipv6IfStatsReasmOKs" : {
1806
+ "nodetype" : "member",
1807
+ "module" : "IPV6-MIB"
1808
+ },
1809
+ "ipv6IfStatsReasmFails" : {
1810
+ "nodetype" : "member",
1811
+ "module" : "IPV6-MIB"
1812
+ },
1813
+ "ipv6IfStatsInMcastPkts" : {
1814
+ "nodetype" : "member",
1815
+ "module" : "IPV6-MIB"
1816
+ },
1817
+ "ipv6IfStatsOutMcastPkts" : {
1818
+ "nodetype" : "member",
1819
+ "module" : "IPV6-MIB"
1820
+ },
1821
+ "ipv6AddrPrefixOnLinkFlag" : {
1822
+ "nodetype" : "member",
1823
+ "module" : "IPV6-MIB"
1824
+ },
1825
+ "ipv6AddrPrefixAutonomousFlag" : {
1826
+ "nodetype" : "member",
1827
+ "module" : "IPV6-MIB"
1828
+ },
1829
+ "ipv6AddrPrefixAdvPreferredLifetime" : {
1830
+ "nodetype" : "member",
1831
+ "module" : "IPV6-MIB"
1832
+ },
1833
+ "ipv6AddrPrefixAdvValidLifetime" : {
1834
+ "nodetype" : "member",
1835
+ "module" : "IPV6-MIB"
1836
+ },
1837
+ "ipv6AddrPfxLength" : {
1838
+ "nodetype" : "member",
1839
+ "module" : "IPV6-MIB"
1840
+ },
1841
+ "ipv6AddrType" : {
1842
+ "nodetype" : "member",
1843
+ "module" : "IPV6-MIB"
1844
+ },
1845
+ "ipv6AddrAnycastFlag" : {
1846
+ "nodetype" : "member",
1847
+ "module" : "IPV6-MIB"
1848
+ },
1849
+ "ipv6AddrStatus" : {
1850
+ "nodetype" : "member",
1851
+ "module" : "IPV6-MIB"
1852
+ },
1853
+ "ipv6RouteNumber" : {
1854
+ "nodetype" : "member",
1855
+ "module" : "IPV6-MIB"
1856
+ },
1857
+ "ipv6DiscardedRoutes" : {
1858
+ "nodetype" : "member",
1859
+ "module" : "IPV6-MIB"
1860
+ },
1861
+ "ipv6RouteIfIndex" : {
1862
+ "nodetype" : "member",
1863
+ "module" : "IPV6-MIB"
1864
+ },
1865
+ "ipv6RouteNextHop" : {
1866
+ "nodetype" : "member",
1867
+ "module" : "IPV6-MIB"
1868
+ },
1869
+ "ipv6RouteType" : {
1870
+ "nodetype" : "member",
1871
+ "module" : "IPV6-MIB"
1872
+ },
1873
+ "ipv6RouteProtocol" : {
1874
+ "nodetype" : "member",
1875
+ "module" : "IPV6-MIB"
1876
+ },
1877
+ "ipv6RoutePolicy" : {
1878
+ "nodetype" : "member",
1879
+ "module" : "IPV6-MIB"
1880
+ },
1881
+ "ipv6RouteAge" : {
1882
+ "nodetype" : "member",
1883
+ "module" : "IPV6-MIB"
1884
+ },
1885
+ "ipv6RouteNextHopRDI" : {
1886
+ "nodetype" : "member",
1887
+ "module" : "IPV6-MIB"
1888
+ },
1889
+ "ipv6RouteMetric" : {
1890
+ "nodetype" : "member",
1891
+ "module" : "IPV6-MIB"
1892
+ },
1893
+ "ipv6RouteWeight" : {
1894
+ "nodetype" : "member",
1895
+ "module" : "IPV6-MIB"
1896
+ },
1897
+ "ipv6RouteInfo" : {
1898
+ "nodetype" : "member",
1899
+ "module" : "IPV6-MIB"
1900
+ },
1901
+ "ipv6RouteValid" : {
1902
+ "nodetype" : "member",
1903
+ "module" : "IPV6-MIB"
1904
+ },
1905
+ "ipv6NetToMediaPhysAddress" : {
1906
+ "nodetype" : "member",
1907
+ "module" : "IPV6-MIB"
1908
+ },
1909
+ "ipv6NetToMediaType" : {
1910
+ "nodetype" : "member",
1911
+ "module" : "IPV6-MIB"
1912
+ },
1913
+ "ipv6IfNetToMediaState" : {
1914
+ "nodetype" : "member",
1915
+ "module" : "IPV6-MIB"
1916
+ },
1917
+ "ipv6IfNetToMediaLastUpdated" : {
1918
+ "nodetype" : "member",
1919
+ "module" : "IPV6-MIB"
1920
+ },
1921
+ "ipv6NetToMediaValid" : {
1922
+ "nodetype" : "member",
1923
+ "module" : "IPV6-MIB"
1924
+ },
1925
+ }, # members
1926
+ "description" :
1927
+ """The IPv6 group of objects providing for basic
1928
+ management of IPv6 entities.""",
1929
+ }, # group
1930
+ "ipv6NotificationGroup" : {
1931
+ "nodetype" : "group",
1932
+ "moduleName" : "IPV6-MIB",
1933
+ "oid" : "1.3.6.1.2.1.55.3.2.2",
1934
+ "status" : "current",
1935
+ "members" : {
1936
+ "ipv6IfStateChange" : {
1937
+ "nodetype" : "member",
1938
+ "module" : "IPV6-MIB"
1939
+ },
1940
+ }, # members
1941
+ "description" :
1942
+ """The notification that an IPv6 entity is required
1943
+ to implement.""",
1944
+ }, # group
1945
+ }, # groups
1946
+
1947
+ "compliances" : {
1948
+ "ipv6Compliance" : {
1949
+ "nodetype" : "compliance",
1950
+ "moduleName" : "IPV6-MIB",
1951
+ "oid" : "1.3.6.1.2.1.55.3.1.1",
1952
+ "status" : "current",
1953
+ "description" :
1954
+ """The compliance statement for SNMPv2 entities which
1955
+ implement ipv6 MIB.""",
1956
+ "requires" : {
1957
+ "ipv6GeneralGroup" : {
1958
+ "nodetype" : "mandatory",
1959
+ "module" : "IPV6-MIB"
1960
+ },
1961
+ "ipv6NotificationGroup" : {
1962
+ "nodetype" : "mandatory",
1963
+ "module" : "IPV6-MIB"
1964
+ },
1965
+ }, # requires
1966
+ "refinements" : {
1967
+ "ipv6Forwarding" : {
1968
+ "module" : "IPV6-MIB",
1969
+ "access" : "readonly",
1970
+ "description" :
1971
+ """An agent is not required to provide write
1972
+ access to this object""",
1973
+ },
1974
+ "ipv6DefaultHopLimit" : {
1975
+ "module" : "IPV6-MIB",
1976
+ "access" : "readonly",
1977
+ "description" :
1978
+ """An agent is not required to provide write
1979
+ access to this object""",
1980
+ },
1981
+ "ipv6IfDescr" : {
1982
+ "module" : "IPV6-MIB",
1983
+ "access" : "readonly",
1984
+ "description" :
1985
+ """An agent is not required to provide write
1986
+ access to this object""",
1987
+ },
1988
+ "ipv6IfIdentifier" : {
1989
+ "module" : "IPV6-MIB",
1990
+ "access" : "readonly",
1991
+ "description" :
1992
+ """An agent is not required to provide write
1993
+ access to this object""",
1994
+ },
1995
+ "ipv6IfIdentifierLength" : {
1996
+ "module" : "IPV6-MIB",
1997
+ "access" : "readonly",
1998
+ "description" :
1999
+ """An agent is not required to provide write
2000
+ access to this object""",
2001
+ },
2002
+ "ipv6IfAdminStatus" : {
2003
+ "module" : "IPV6-MIB",
2004
+ "access" : "readonly",
2005
+ "description" :
2006
+ """An agent is not required to provide write
2007
+ access to this object""",
2008
+ },
2009
+ "ipv6RouteValid" : {
2010
+ "module" : "IPV6-MIB",
2011
+ "access" : "readonly",
2012
+ "description" :
2013
+ """An agent is not required to provide write
2014
+ access to this object""",
2015
+ },
2016
+ "ipv6NetToMediaValid" : {
2017
+ "module" : "IPV6-MIB",
2018
+ "access" : "readonly",
2019
+ "description" :
2020
+ """An agent is not required to provide write
2021
+ access to this object""",
2022
+ },
2023
+ }, # refinements
2024
+
2025
+ }, # compliance
2026
+ }, # compliances
2027
+
2028
+ }