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,1363 @@
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 RPKI-ROUTER-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/RPKI-ROUTER-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "RPKI-ROUTER-MIB",
11
+
12
+ "RPKI-ROUTER-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF Secure Inter-Domain Routing (SIDR)
17
+ Working Group""",
18
+ "contact" :
19
+ """Working Group Email: sidr@ietf.org
20
+
21
+ Randy Bush
22
+ Internet Initiative Japan
23
+ 5147 Crystal Springs
24
+ Bainbridge Island, WA 98110
25
+ USA
26
+ Email: randy@psg.com
27
+
28
+ Bert Wijnen
29
+ RIPE NCC
30
+ Schagen 33
31
+ 3461 GL Linschoten
32
+ Netherlands
33
+ Email: bertietf@bwijnen.net
34
+
35
+ Keyur Patel
36
+ Cisco Systems
37
+ 170 W. Tasman Drive
38
+ San Jose, CA 95134
39
+ USA
40
+
41
+
42
+
43
+ Email: keyupate@cisco.com
44
+
45
+ Michael Baer
46
+ SPARTA
47
+ P.O. Box 72682
48
+ Davis, CA 95617
49
+ USA
50
+ Email: baerm@tislabs.com""",
51
+ "description" :
52
+ """This MIB module contains management objects to
53
+ support monitoring of the Resource Public Key
54
+ Infrastructure (RPKI) protocol on routers.
55
+
56
+ Copyright (c) 2013 IETF Trust and the persons
57
+ identified as authors of the code. All rights
58
+ reserved.
59
+
60
+ Redistribution and use in source and binary
61
+ forms, with or without modification, is
62
+ permitted pursuant to, and subject to the
63
+ license terms contained in, the Simplified BSD
64
+ License set forth in Section 4.c of the IETF
65
+ Trust's Legal Provisions Relating to IETF
66
+ Documents
67
+ (http://trustee.ietf.org/license-info).
68
+
69
+ This version of this MIB module is part of
70
+ RFC 6945; see the RFC itself for full legal
71
+ notices.""",
72
+ "revisions" : (
73
+ {
74
+ "date" : "2013-05-01 00:00",
75
+ "description" :
76
+ """Initial version, published as RFC 6945.""",
77
+ },
78
+ ),
79
+ "identity node" : "rpkiRtrMIB",
80
+ },
81
+
82
+ "imports" : (
83
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
84
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
85
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
86
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
87
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
88
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
89
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
90
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
91
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddressType"},
92
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddress"},
93
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetPortNumber"},
94
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddressPrefixLength"},
95
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAutonomousSystemNumber"},
96
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
97
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
98
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
99
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
100
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
101
+ {"module" : "SYSAPPL-MIB", "name" : "LongUtf8String"},
102
+ ),
103
+
104
+ "typedefs" : {
105
+ "RpkiRtrConnectionType" : {
106
+ "basetype" : "Enumeration",
107
+ "status" : "current",
108
+ "ssh" : {
109
+ "nodetype" : "namednumber",
110
+ "number" : "1"
111
+ },
112
+ "tls" : {
113
+ "nodetype" : "namednumber",
114
+ "number" : "2"
115
+ },
116
+ "tcpMD5" : {
117
+ "nodetype" : "namednumber",
118
+ "number" : "3"
119
+ },
120
+ "tcpAO" : {
121
+ "nodetype" : "namednumber",
122
+ "number" : "4"
123
+ },
124
+ "tcp" : {
125
+ "nodetype" : "namednumber",
126
+ "number" : "5"
127
+ },
128
+ "ipsec" : {
129
+ "nodetype" : "namednumber",
130
+ "number" : "6"
131
+ },
132
+ "other" : {
133
+ "nodetype" : "namednumber",
134
+ "number" : "7"
135
+ },
136
+ "description" :
137
+ """The connection type used between a router (as a
138
+ client) and a cache server.
139
+
140
+
141
+
142
+
143
+ The following types have been defined in RFC 6810:
144
+ ssh(1) - Section 7.1; see also RFC 4252.
145
+ tls(2) - Section 7.2; see also RFC 5246.
146
+ tcpMD5(3) - Section 7.3; see also RFC 2385.
147
+ tcpAO(4) - Section 7.4; see also RFC 5925.
148
+ tcp(5) - Section 7.
149
+ ipsec(6) - Section 7; see also RFC 4301.
150
+ other(7) - none of the above.""",
151
+ "reference" :
152
+ """The RPKI-Router Protocol, RFC 6810, Section 7""",
153
+ },
154
+ }, # typedefs
155
+
156
+ "nodes" : {
157
+ "rpkiRtrMIB" : {
158
+ "nodetype" : "node",
159
+ "moduleName" : "RPKI-ROUTER-MIB",
160
+ "oid" : "1.3.6.1.2.1.218",
161
+ "status" : "current",
162
+ }, # node
163
+ "rpkiRtrNotifications" : {
164
+ "nodetype" : "node",
165
+ "moduleName" : "RPKI-ROUTER-MIB",
166
+ "oid" : "1.3.6.1.2.1.218.0",
167
+ }, # node
168
+ "rpkiRtrObjects" : {
169
+ "nodetype" : "node",
170
+ "moduleName" : "RPKI-ROUTER-MIB",
171
+ "oid" : "1.3.6.1.2.1.218.1",
172
+ }, # node
173
+ "rpkiRtrDiscontinuityTimer" : {
174
+ "nodetype" : "scalar",
175
+ "moduleName" : "RPKI-ROUTER-MIB",
176
+ "oid" : "1.3.6.1.2.1.218.1.1",
177
+ "status" : "current",
178
+ "syntax" : {
179
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
180
+ },
181
+ "access" : "readonly",
182
+ "description" :
183
+ """This timer represents the timestamp (value
184
+ of sysUpTime) at which time any of the
185
+ Counter32 objects in this MIB module
186
+ encountered a discontinuity.
187
+
188
+ For objects that use rpkiRtrDiscontinuityTimer to
189
+ indicate discontinuity, only values received since
190
+ the time indicated by rpkiRtrDiscontinuityTimer are
191
+ comparable to each other. A manager should take the
192
+ possibility of rollover into account when
193
+ calculating difference values.
194
+
195
+ In principle, that should only happen if the
196
+ SNMP agent or the instrumentation for this
197
+ MIB module starts or restarts.""",
198
+ }, # scalar
199
+ "rpkiRtrCacheServerTable" : {
200
+ "nodetype" : "table",
201
+ "moduleName" : "RPKI-ROUTER-MIB",
202
+ "oid" : "1.3.6.1.2.1.218.1.2",
203
+ "status" : "current",
204
+ "description" :
205
+ """This table lists the RPKI cache servers
206
+ known to this router/system.""",
207
+ }, # table
208
+ "rpkiRtrCacheServerTableEntry" : {
209
+ "nodetype" : "row",
210
+ "moduleName" : "RPKI-ROUTER-MIB",
211
+ "oid" : "1.3.6.1.2.1.218.1.2.1",
212
+ "status" : "current",
213
+ "linkage" : [
214
+ "rpkiRtrCacheServerRemoteAddressType",
215
+ "rpkiRtrCacheServerRemoteAddress",
216
+ "rpkiRtrCacheServerRemotePort",
217
+ ],
218
+ "description" :
219
+ """An entry in the rpkiRtrCacheServerTable.
220
+ It holds management attributes associated
221
+ with one connection to a RPKI cache server.
222
+
223
+ Implementers should be aware that if the
224
+ rpkiRtrCacheServerRemoteAddress object exceeds 114
225
+ octets, the index values will exceed the 128
226
+ sub-identifier limit and cannot be accessed using
227
+ SNMPv1, SNMPv2c, or SNMPv3.""",
228
+ }, # row
229
+ "rpkiRtrCacheServerRemoteAddressType" : {
230
+ "nodetype" : "column",
231
+ "moduleName" : "RPKI-ROUTER-MIB",
232
+ "oid" : "1.3.6.1.2.1.218.1.2.1.1",
233
+ "status" : "current",
234
+ "syntax" : {
235
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
236
+ },
237
+ "access" : "noaccess",
238
+ "description" :
239
+ """The network address type of the connection
240
+ to this RPKI cache server.
241
+
242
+ Note: Only IPv4, IPv6, and DNS support are required
243
+ for read-only compliance with RFC 6945.""",
244
+ }, # column
245
+ "rpkiRtrCacheServerRemoteAddress" : {
246
+ "nodetype" : "column",
247
+ "moduleName" : "RPKI-ROUTER-MIB",
248
+ "oid" : "1.3.6.1.2.1.218.1.2.1.2",
249
+ "status" : "current",
250
+ "syntax" : {
251
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
252
+ },
253
+ "access" : "noaccess",
254
+ "description" :
255
+ """The remote network address for this connection
256
+ to this RPKI cache server.
257
+
258
+ The format of the address is defined by the
259
+ value of the corresponding instance of
260
+ rpkiRtrCacheServerRemoteAddressType.
261
+
262
+ This object matches the address type used within
263
+ the local router configuration. If the address is
264
+ of type dns (fqdn), then the router will resolve it
265
+ at the time it connects to the cache server.""",
266
+ }, # column
267
+ "rpkiRtrCacheServerRemotePort" : {
268
+ "nodetype" : "column",
269
+ "moduleName" : "RPKI-ROUTER-MIB",
270
+ "oid" : "1.3.6.1.2.1.218.1.2.1.3",
271
+ "status" : "current",
272
+ "syntax" : {
273
+ "type" : {
274
+ "basetype" : "Unsigned32",
275
+ "parent module" : {
276
+ "name" : "INET-ADDRESS-MIB",
277
+ "type" : "InetPortNumber",
278
+ },
279
+ "ranges" : [
280
+ {
281
+ "min" : "1",
282
+ "max" : "65535"
283
+ },
284
+ ],
285
+ "range" : {
286
+ "min" : "1",
287
+ "max" : "65535"
288
+ },
289
+ },
290
+ },
291
+ "access" : "noaccess",
292
+ "description" :
293
+ """The remote port number for this connection
294
+ to this RPKI cache server.""",
295
+ }, # column
296
+ "rpkiRtrCacheServerLocalAddressType" : {
297
+ "nodetype" : "column",
298
+ "moduleName" : "RPKI-ROUTER-MIB",
299
+ "oid" : "1.3.6.1.2.1.218.1.2.1.4",
300
+ "status" : "current",
301
+ "syntax" : {
302
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
303
+ },
304
+ "access" : "readonly",
305
+ "description" :
306
+ """The network address type of the connection
307
+ to this RPKI cache server.
308
+
309
+
310
+
311
+ Note: Only IPv4, IPv6, and DNS support are required
312
+ for read-only compliance with RFC 6945.""",
313
+ }, # column
314
+ "rpkiRtrCacheServerLocalAddress" : {
315
+ "nodetype" : "column",
316
+ "moduleName" : "RPKI-ROUTER-MIB",
317
+ "oid" : "1.3.6.1.2.1.218.1.2.1.5",
318
+ "status" : "current",
319
+ "syntax" : {
320
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
321
+ },
322
+ "access" : "readonly",
323
+ "description" :
324
+ """The local network address for this connection
325
+ to this RPKI cache server.
326
+
327
+ The format of the address is defined by the
328
+ value of the corresponding instance of
329
+ rpkiRtrCacheServerLocalAddressType.
330
+
331
+ This object matches the address type used within
332
+ the local router configuration. If the address is
333
+ of type dns (fqdn), then the router will resolve it
334
+ at the time it connects to the cache server.""",
335
+ }, # column
336
+ "rpkiRtrCacheServerLocalPort" : {
337
+ "nodetype" : "column",
338
+ "moduleName" : "RPKI-ROUTER-MIB",
339
+ "oid" : "1.3.6.1.2.1.218.1.2.1.6",
340
+ "status" : "current",
341
+ "syntax" : {
342
+ "type" : {
343
+ "basetype" : "Unsigned32",
344
+ "parent module" : {
345
+ "name" : "INET-ADDRESS-MIB",
346
+ "type" : "InetPortNumber",
347
+ },
348
+ "ranges" : [
349
+ {
350
+ "min" : "1",
351
+ "max" : "65535"
352
+ },
353
+ ],
354
+ "range" : {
355
+ "min" : "1",
356
+ "max" : "65535"
357
+ },
358
+ },
359
+ },
360
+ "access" : "readonly",
361
+ "description" :
362
+ """The local port number for this connection
363
+ to this RPKI cache server.""",
364
+ }, # column
365
+ "rpkiRtrCacheServerPreference" : {
366
+ "nodetype" : "column",
367
+ "moduleName" : "RPKI-ROUTER-MIB",
368
+ "oid" : "1.3.6.1.2.1.218.1.2.1.7",
369
+ "status" : "current",
370
+ "syntax" : {
371
+ "type" : { "module" :"", "name" : "Unsigned32"},
372
+ },
373
+ "access" : "readonly",
374
+ "default" : "4294967295",
375
+ "description" :
376
+ """The routers' preference for this RPKI cache server.
377
+
378
+ A lower value means more preferred. If two entries
379
+ have the same preference, then the order is
380
+ arbitrary.
381
+
382
+ In two cases, the maximum value for an Unsigned32
383
+ object should be returned for this object:
384
+ - If no order is specified in the RPKI-Router
385
+ configuration.
386
+ - If a preference value is configured that is
387
+ larger than the max value for an Unsigned32
388
+ object.""",
389
+ "reference" :
390
+ """The RPKI-Router Protocol, RFC 6810, Section 8.""",
391
+ }, # column
392
+ "rpkiRtrCacheServerConnectionType" : {
393
+ "nodetype" : "column",
394
+ "moduleName" : "RPKI-ROUTER-MIB",
395
+ "oid" : "1.3.6.1.2.1.218.1.2.1.8",
396
+ "status" : "current",
397
+ "syntax" : {
398
+ "type" : { "module" :"RPKI-ROUTER-MIB", "name" : "RpkiRtrConnectionType"},
399
+ },
400
+ "access" : "readonly",
401
+ "description" :
402
+ """The connection type or transport security suite
403
+ in use for this RPKI cache server.""",
404
+ }, # column
405
+ "rpkiRtrCacheServerConnectionStatus" : {
406
+ "nodetype" : "column",
407
+ "moduleName" : "RPKI-ROUTER-MIB",
408
+ "oid" : "1.3.6.1.2.1.218.1.2.1.9",
409
+ "status" : "current",
410
+ "syntax" : {
411
+ "type" : {
412
+ "basetype" : "Enumeration",
413
+ "up" : {
414
+ "nodetype" : "namednumber",
415
+ "number" : "1"
416
+ },
417
+ "down" : {
418
+ "nodetype" : "namednumber",
419
+ "number" : "2"
420
+ },
421
+ },
422
+ },
423
+ "access" : "readonly",
424
+ "description" :
425
+ """The connection status for this entry
426
+ (connection to this RPKI cache server).""",
427
+ }, # column
428
+ "rpkiRtrCacheServerDescription" : {
429
+ "nodetype" : "column",
430
+ "moduleName" : "RPKI-ROUTER-MIB",
431
+ "oid" : "1.3.6.1.2.1.218.1.2.1.10",
432
+ "status" : "current",
433
+ "syntax" : {
434
+ "type" : { "module" :"SYSAPPL-MIB", "name" : "LongUtf8String"},
435
+ },
436
+ "access" : "readonly",
437
+ "description" :
438
+ """Free form description/information for this
439
+ connection to this RPKI cache server.""",
440
+ }, # column
441
+ "rpkiRtrCacheServerMsgsReceived" : {
442
+ "nodetype" : "column",
443
+ "moduleName" : "RPKI-ROUTER-MIB",
444
+ "oid" : "1.3.6.1.2.1.218.1.2.1.11",
445
+ "status" : "current",
446
+ "syntax" : {
447
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
448
+ },
449
+ "access" : "readonly",
450
+ "description" :
451
+ """Number of messages received from this
452
+ RPKI cache server via this connection.
453
+
454
+ Discontinuities are indicated by the value
455
+ of rpkiRtrDiscontinuityTimer.""",
456
+ }, # column
457
+ "rpkiRtrCacheServerMsgsSent" : {
458
+ "nodetype" : "column",
459
+ "moduleName" : "RPKI-ROUTER-MIB",
460
+ "oid" : "1.3.6.1.2.1.218.1.2.1.12",
461
+ "status" : "current",
462
+ "syntax" : {
463
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
464
+ },
465
+ "access" : "readonly",
466
+ "description" :
467
+ """Number of messages sent to this
468
+ RPKI cache server via this connection.
469
+
470
+ Discontinuities are indicated by the value
471
+ of rpkiRtrDiscontinuityTimer.""",
472
+ }, # column
473
+ "rpkiRtrCacheServerV4ActiveRecords" : {
474
+ "nodetype" : "column",
475
+ "moduleName" : "RPKI-ROUTER-MIB",
476
+ "oid" : "1.3.6.1.2.1.218.1.2.1.13",
477
+ "status" : "current",
478
+ "syntax" : {
479
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
480
+ },
481
+ "access" : "readonly",
482
+ "description" :
483
+ """Number of active IPv4 records received from
484
+ this RPKI cache server via this connection.""",
485
+ }, # column
486
+ "rpkiRtrCacheServerV4Announcements" : {
487
+ "nodetype" : "column",
488
+ "moduleName" : "RPKI-ROUTER-MIB",
489
+ "oid" : "1.3.6.1.2.1.218.1.2.1.14",
490
+ "status" : "current",
491
+ "syntax" : {
492
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
493
+ },
494
+ "access" : "readonly",
495
+ "description" :
496
+ """The number of IPv4 records announced by the
497
+ RPKI cache server via this connection.
498
+
499
+ Discontinuities are indicated by the value
500
+ of rpkiRtrDiscontinuityTimer.""",
501
+ }, # column
502
+ "rpkiRtrCacheServerV4Withdrawals" : {
503
+ "nodetype" : "column",
504
+ "moduleName" : "RPKI-ROUTER-MIB",
505
+ "oid" : "1.3.6.1.2.1.218.1.2.1.15",
506
+ "status" : "current",
507
+ "syntax" : {
508
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
509
+ },
510
+ "access" : "readonly",
511
+ "description" :
512
+ """The number of IPv4 records withdrawn by the
513
+ RPKI cache server via this connection.
514
+
515
+ Discontinuities are indicated by the value
516
+ of rpkiRtrDiscontinuityTimer.""",
517
+ }, # column
518
+ "rpkiRtrCacheServerV6ActiveRecords" : {
519
+ "nodetype" : "column",
520
+ "moduleName" : "RPKI-ROUTER-MIB",
521
+ "oid" : "1.3.6.1.2.1.218.1.2.1.16",
522
+ "status" : "current",
523
+ "syntax" : {
524
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
525
+ },
526
+ "access" : "readonly",
527
+ "description" :
528
+ """Number of active IPv6 records received from
529
+ this RPKI cache server via this connection.""",
530
+ }, # column
531
+ "rpkiRtrCacheServerV6Announcements" : {
532
+ "nodetype" : "column",
533
+ "moduleName" : "RPKI-ROUTER-MIB",
534
+ "oid" : "1.3.6.1.2.1.218.1.2.1.17",
535
+ "status" : "current",
536
+ "syntax" : {
537
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
538
+ },
539
+ "access" : "readonly",
540
+ "description" :
541
+ """The number of IPv6 records announced by the
542
+ RPKI cache server via this connection.
543
+
544
+ Discontinuities are indicated by the value
545
+ of rpkiRtrDiscontinuityTimer.""",
546
+ }, # column
547
+ "rpkiRtrCacheServerV6Withdrawals" : {
548
+ "nodetype" : "column",
549
+ "moduleName" : "RPKI-ROUTER-MIB",
550
+ "oid" : "1.3.6.1.2.1.218.1.2.1.18",
551
+ "status" : "current",
552
+ "syntax" : {
553
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
554
+ },
555
+ "access" : "readonly",
556
+ "description" :
557
+ """The number of IPv6 records withdrawn by the
558
+ RPKI cache server via this connection.
559
+
560
+ Discontinuities are indicated by the value
561
+ of rpkiRtrDiscontinuityTimer.""",
562
+ }, # column
563
+ "rpkiRtrCacheServerLatestSerial" : {
564
+ "nodetype" : "column",
565
+ "moduleName" : "RPKI-ROUTER-MIB",
566
+ "oid" : "1.3.6.1.2.1.218.1.2.1.19",
567
+ "status" : "current",
568
+ "syntax" : {
569
+ "type" : { "module" :"", "name" : "Unsigned32"},
570
+ },
571
+ "access" : "readonly",
572
+ "description" :
573
+ """The latest serial number of data received from
574
+ this RPKI server on this connection.
575
+
576
+ Note: this value wraps back to zero when it
577
+ reaches its maximum value.""",
578
+ "reference" :
579
+ """RFC 1982 and RFC 6810, Section 2""",
580
+ }, # column
581
+ "rpkiRtrCacheServerSessionID" : {
582
+ "nodetype" : "column",
583
+ "moduleName" : "RPKI-ROUTER-MIB",
584
+ "oid" : "1.3.6.1.2.1.218.1.2.1.20",
585
+ "status" : "current",
586
+ "syntax" : {
587
+ "type" : {
588
+ "basetype" : "Unsigned32",
589
+ "ranges" : [
590
+ {
591
+ "min" : "0",
592
+ "max" : "65535"
593
+ },
594
+ ],
595
+ "range" : {
596
+ "min" : "0",
597
+ "max" : "65535"
598
+ },
599
+ },
600
+ },
601
+ "access" : "readonly",
602
+ "description" :
603
+ """The Session ID associated with the RPKI cache
604
+ server at the other end of this connection.""",
605
+ "reference" :
606
+ """RFC 6810, Section 2""",
607
+ }, # column
608
+ "rpkiRtrCacheServerRefreshTimer" : {
609
+ "nodetype" : "column",
610
+ "moduleName" : "RPKI-ROUTER-MIB",
611
+ "oid" : "1.3.6.1.2.1.218.1.2.1.21",
612
+ "status" : "current",
613
+ "syntax" : {
614
+ "type" : {
615
+ "basetype" : "Unsigned32",
616
+ "ranges" : [
617
+ {
618
+ "min" : "60",
619
+ "max" : "7200"
620
+ },
621
+ ],
622
+ "range" : {
623
+ "min" : "60",
624
+ "max" : "7200"
625
+ },
626
+ },
627
+ },
628
+ "access" : "readonly",
629
+ "units" : "seconds",
630
+ "description" :
631
+ """The number of seconds configured for the refresh
632
+ timer for this connection to this RPKI cache
633
+ server.""",
634
+ "reference" :
635
+ """RFC 6810, Sections 6.1 and 8""",
636
+ }, # column
637
+ "rpkiRtrCacheServerTimeToRefresh" : {
638
+ "nodetype" : "column",
639
+ "moduleName" : "RPKI-ROUTER-MIB",
640
+ "oid" : "1.3.6.1.2.1.218.1.2.1.22",
641
+ "status" : "current",
642
+ "syntax" : {
643
+ "type" : { "module" :"", "name" : "Integer32"},
644
+ },
645
+ "access" : "readonly",
646
+ "units" : "seconds",
647
+ "description" :
648
+ """The number of seconds remaining before a new
649
+ refresh is performed via a Serial Query to
650
+ this cache server over this connection.
651
+
652
+ A negative value means that the refresh time has
653
+ passed this many seconds and the refresh has not
654
+ yet been completed. It will stop decrementing at
655
+ the maximum negative value.
656
+
657
+ Upon a completed refresh (i.e., a successful
658
+ and complete response to a Serial Query) the
659
+ value of this attribute will be reinitialized
660
+ with the value of the corresponding
661
+ rpkiRtrCacheServerRefreshTimer attribute.""",
662
+ "reference" :
663
+ """RFC 6810, Section 8""",
664
+ }, # column
665
+ "rpkiRtrCacheServerId" : {
666
+ "nodetype" : "column",
667
+ "moduleName" : "RPKI-ROUTER-MIB",
668
+ "oid" : "1.3.6.1.2.1.218.1.2.1.23",
669
+ "status" : "current",
670
+ "syntax" : {
671
+ "type" : {
672
+ "basetype" : "Unsigned32",
673
+ "ranges" : [
674
+ {
675
+ "min" : "1",
676
+ "max" : "4294967295"
677
+ },
678
+ ],
679
+ "range" : {
680
+ "min" : "1",
681
+ "max" : "4294967295"
682
+ },
683
+ },
684
+ },
685
+ "access" : "readonly",
686
+ "description" :
687
+ """The unique ID for this connection.
688
+
689
+ An implementation must make sure this ID is unique
690
+ within this table. It is this ID that can be used
691
+ to find entries in the rpkiRtrPrefixOriginTable
692
+ that were created by announcements received on
693
+ this connection from this cache server.""",
694
+ "reference" :
695
+ """RFC 6810, Section 4""",
696
+ }, # column
697
+ "rpkiRtrCacheServerErrorsTable" : {
698
+ "nodetype" : "table",
699
+ "moduleName" : "RPKI-ROUTER-MIB",
700
+ "oid" : "1.3.6.1.2.1.218.1.3",
701
+ "status" : "current",
702
+ "description" :
703
+ """This table provides statistics on errors per
704
+ RPKI peer connection. These can be used for
705
+ debugging.""",
706
+ }, # table
707
+ "rpkiRtrCacheServerErrorsTableEntry" : {
708
+ "nodetype" : "row",
709
+ "moduleName" : "RPKI-ROUTER-MIB",
710
+ "oid" : "1.3.6.1.2.1.218.1.3.1",
711
+ "status" : "current",
712
+ "linkage" : [
713
+ { "RPKI-ROUTER-MIB" : {
714
+ "indexkind" : "augments",
715
+ "relatedNode" : "rpkiRtrCacheServerTableEntry",
716
+ }},
717
+ ],
718
+ "description" :
719
+ """An entry in the rpkiCacheServerErrorTable. It
720
+ holds management objects associated with errors
721
+ codes that were received on the specified
722
+ connection to a specific cache server.""",
723
+ "reference" :
724
+ """RFC 6810, Section 10""",
725
+ }, # row
726
+ "rpkiRtrCacheServerErrorsCorruptData" : {
727
+ "nodetype" : "column",
728
+ "moduleName" : "RPKI-ROUTER-MIB",
729
+ "oid" : "1.3.6.1.2.1.218.1.3.1.1",
730
+ "status" : "current",
731
+ "syntax" : {
732
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
733
+ },
734
+ "access" : "readonly",
735
+ "description" :
736
+ """The number of 'Corrupt Data' errors received
737
+ from the RPKI cache server at the other end
738
+ of this connection.
739
+
740
+ Discontinuities are indicated by the value
741
+ of rpkiRtrDiscontinuityTimer.""",
742
+ }, # column
743
+ "rpkiRtrCacheServerErrorsInternalError" : {
744
+ "nodetype" : "column",
745
+ "moduleName" : "RPKI-ROUTER-MIB",
746
+ "oid" : "1.3.6.1.2.1.218.1.3.1.2",
747
+ "status" : "current",
748
+ "syntax" : {
749
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
750
+ },
751
+ "access" : "readonly",
752
+ "description" :
753
+ """The number of 'Internal Error' errors received
754
+ from the RPKI cache server at the other end
755
+ of this connection.
756
+
757
+ Discontinuities are indicated by the value
758
+ of rpkiRtrDiscontinuityTimer.""",
759
+ }, # column
760
+ "rpkiRtrCacheServerErrorsNoData" : {
761
+ "nodetype" : "column",
762
+ "moduleName" : "RPKI-ROUTER-MIB",
763
+ "oid" : "1.3.6.1.2.1.218.1.3.1.3",
764
+ "status" : "current",
765
+ "syntax" : {
766
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
767
+ },
768
+ "access" : "readonly",
769
+ "description" :
770
+ """The number of 'No Data Available' errors received
771
+
772
+
773
+
774
+ from the RPKI cache server at the other end
775
+ of this connection.
776
+
777
+ Discontinuities are indicated by the value
778
+ of rpkiRtrDiscontinuityTimer.""",
779
+ }, # column
780
+ "rpkiRtrCacheServerErrorsInvalidRequest" : {
781
+ "nodetype" : "column",
782
+ "moduleName" : "RPKI-ROUTER-MIB",
783
+ "oid" : "1.3.6.1.2.1.218.1.3.1.4",
784
+ "status" : "current",
785
+ "syntax" : {
786
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
787
+ },
788
+ "access" : "readonly",
789
+ "description" :
790
+ """The number of 'Invalid Request' errors received
791
+ from the RPKI cache server at the other end
792
+ of this connection.
793
+
794
+ Discontinuities are indicated by the value
795
+ of rpkiRtrDiscontinuityTimer.""",
796
+ }, # column
797
+ "rpkiRtrCacheServerErrorsUnsupportedVersion" : {
798
+ "nodetype" : "column",
799
+ "moduleName" : "RPKI-ROUTER-MIB",
800
+ "oid" : "1.3.6.1.2.1.218.1.3.1.5",
801
+ "status" : "current",
802
+ "syntax" : {
803
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
804
+ },
805
+ "access" : "readonly",
806
+ "description" :
807
+ """The number of 'Unsupported Protocol Version'
808
+ errors received from the RPKI cache server at
809
+ the other end of this connection.
810
+
811
+ Discontinuities are indicated by the value
812
+ of rpkiRtrDiscontinuityTimer.""",
813
+ }, # column
814
+ "rpkiRtrCacheServerErrorsUnsupportedPdu" : {
815
+ "nodetype" : "column",
816
+ "moduleName" : "RPKI-ROUTER-MIB",
817
+ "oid" : "1.3.6.1.2.1.218.1.3.1.6",
818
+ "status" : "current",
819
+ "syntax" : {
820
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
821
+ },
822
+ "access" : "readonly",
823
+ "description" :
824
+ """The number of 'Unsupported PDU Type' errors
825
+ received from the RPKI cache server at the
826
+ other end of this connection.
827
+
828
+ Discontinuities are indicated by the value
829
+ of rpkiRtrDiscontinuityTimer.""",
830
+ }, # column
831
+ "rpkiRtrCacheServerErrorsWithdrawalUnknown" : {
832
+ "nodetype" : "column",
833
+ "moduleName" : "RPKI-ROUTER-MIB",
834
+ "oid" : "1.3.6.1.2.1.218.1.3.1.7",
835
+ "status" : "current",
836
+ "syntax" : {
837
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
838
+ },
839
+ "access" : "readonly",
840
+ "description" :
841
+ """The number of 'Withdrawal of Unknown Record'
842
+
843
+
844
+
845
+ errors received from the RPKI cache server at
846
+ the other end of this connection.
847
+
848
+ Discontinuities are indicated by the value
849
+ of rpkiRtrDiscontinuityTimer.""",
850
+ }, # column
851
+ "rpkiRtrCacheServerErrorsDuplicateAnnounce" : {
852
+ "nodetype" : "column",
853
+ "moduleName" : "RPKI-ROUTER-MIB",
854
+ "oid" : "1.3.6.1.2.1.218.1.3.1.8",
855
+ "status" : "current",
856
+ "syntax" : {
857
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
858
+ },
859
+ "access" : "readonly",
860
+ "description" :
861
+ """The number of 'Duplicate Announcement Received'
862
+ errors received from the RPKI cache server at
863
+ the other end of this connection.
864
+
865
+ Discontinuities are indicated by the value
866
+ of rpkiRtrDiscontinuityTimer.""",
867
+ }, # column
868
+ "rpkiRtrPrefixOriginTable" : {
869
+ "nodetype" : "table",
870
+ "moduleName" : "RPKI-ROUTER-MIB",
871
+ "oid" : "1.3.6.1.2.1.218.1.4",
872
+ "status" : "current",
873
+ "description" :
874
+ """This table lists the prefixes that were
875
+ announced by RPKI cache servers to this system.
876
+ That is the prefixes and their Origin Autonomous
877
+ System Number (ASN) as received by announcements
878
+ via the RPKI-Router Protocol.""",
879
+ }, # table
880
+ "rpkiRtrPrefixOriginTableEntry" : {
881
+ "nodetype" : "row",
882
+ "moduleName" : "RPKI-ROUTER-MIB",
883
+ "oid" : "1.3.6.1.2.1.218.1.4.1",
884
+ "status" : "current",
885
+ "linkage" : [
886
+ "rpkiRtrPrefixOriginAddressType",
887
+ "rpkiRtrPrefixOriginAddress",
888
+ "rpkiRtrPrefixOriginMinLength",
889
+ "rpkiRtrPrefixOriginMaxLength",
890
+ "rpkiRtrPrefixOriginASN",
891
+ "rpkiRtrPrefixOriginCacheServerId",
892
+ ],
893
+ "description" :
894
+ """An entry in the rpkiRtrPrefixOriginTable. This
895
+ represents one announced prefix. If a cache server
896
+ is removed from the local configuration, any table
897
+ rows associated with that server (indicated by
898
+ rpkiRtrPrefixOriginCacheServerId) are also removed
899
+ from this table.
900
+
901
+ Implementers should be aware that if the
902
+ rpkiRtrPrefixOriginAddress object exceeds 111
903
+ octets, the index values will exceed the 128
904
+
905
+
906
+
907
+ sub-identifier limit and cannot be accessed using
908
+ SNMPv1, SNMPv2c, or SNMPv3.""",
909
+ }, # row
910
+ "rpkiRtrPrefixOriginAddressType" : {
911
+ "nodetype" : "column",
912
+ "moduleName" : "RPKI-ROUTER-MIB",
913
+ "oid" : "1.3.6.1.2.1.218.1.4.1.1",
914
+ "status" : "current",
915
+ "syntax" : {
916
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
917
+ },
918
+ "access" : "noaccess",
919
+ "description" :
920
+ """The network address type for this prefix.
921
+
922
+ Note: Only IPv4 and IPv6 support are required
923
+ for read-only compliance with RFC 6945.""",
924
+ }, # column
925
+ "rpkiRtrPrefixOriginAddress" : {
926
+ "nodetype" : "column",
927
+ "moduleName" : "RPKI-ROUTER-MIB",
928
+ "oid" : "1.3.6.1.2.1.218.1.4.1.2",
929
+ "status" : "current",
930
+ "syntax" : {
931
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
932
+ },
933
+ "access" : "noaccess",
934
+ "description" :
935
+ """The network address for this prefix.
936
+
937
+ The format of the address is defined by the
938
+ value of the corresponding instance of
939
+ rpkiRtrPrefixOriginAddressType.""",
940
+ }, # column
941
+ "rpkiRtrPrefixOriginMinLength" : {
942
+ "nodetype" : "column",
943
+ "moduleName" : "RPKI-ROUTER-MIB",
944
+ "oid" : "1.3.6.1.2.1.218.1.4.1.3",
945
+ "status" : "current",
946
+ "syntax" : {
947
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressPrefixLength"},
948
+ },
949
+ "access" : "noaccess",
950
+ "description" :
951
+ """The minimum prefix length allowed for this prefix.""",
952
+ }, # column
953
+ "rpkiRtrPrefixOriginMaxLength" : {
954
+ "nodetype" : "column",
955
+ "moduleName" : "RPKI-ROUTER-MIB",
956
+ "oid" : "1.3.6.1.2.1.218.1.4.1.4",
957
+ "status" : "current",
958
+ "syntax" : {
959
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressPrefixLength"},
960
+ },
961
+ "access" : "noaccess",
962
+ "description" :
963
+ """The maximum prefix length allowed for this prefix.
964
+
965
+ Note, this value must be greater or equal to the
966
+ value of rpkiRtrPrefixOriginMinLength.""",
967
+ }, # column
968
+ "rpkiRtrPrefixOriginASN" : {
969
+ "nodetype" : "column",
970
+ "moduleName" : "RPKI-ROUTER-MIB",
971
+ "oid" : "1.3.6.1.2.1.218.1.4.1.5",
972
+ "status" : "current",
973
+ "syntax" : {
974
+ "type" : {
975
+ "basetype" : "Unsigned32",
976
+ "parent module" : {
977
+ "name" : "INET-ADDRESS-MIB",
978
+ "type" : "InetAutonomousSystemNumber",
979
+ },
980
+ "ranges" : [
981
+ {
982
+ "min" : "0",
983
+ "max" : "4294967295"
984
+ },
985
+ ],
986
+ "range" : {
987
+ "min" : "0",
988
+ "max" : "4294967295"
989
+ },
990
+ },
991
+ },
992
+ "access" : "noaccess",
993
+ "description" :
994
+ """The ASN that is authorized to announce the
995
+ prefix or sub-prefixes covered by this entry.""",
996
+ }, # column
997
+ "rpkiRtrPrefixOriginCacheServerId" : {
998
+ "nodetype" : "column",
999
+ "moduleName" : "RPKI-ROUTER-MIB",
1000
+ "oid" : "1.3.6.1.2.1.218.1.4.1.6",
1001
+ "status" : "current",
1002
+ "syntax" : {
1003
+ "type" : {
1004
+ "basetype" : "Unsigned32",
1005
+ "ranges" : [
1006
+ {
1007
+ "min" : "1",
1008
+ "max" : "4294967295"
1009
+ },
1010
+ ],
1011
+ "range" : {
1012
+ "min" : "1",
1013
+ "max" : "4294967295"
1014
+ },
1015
+ },
1016
+ },
1017
+ "access" : "readonly",
1018
+ "description" :
1019
+ """The unique ID of the connection to the cache
1020
+ server from which this announcement was received.
1021
+ That connection is identified/found by a matching
1022
+ value in attribute rpkiRtrCacheServerId.""",
1023
+ }, # column
1024
+ "rpkiRtrConformance" : {
1025
+ "nodetype" : "node",
1026
+ "moduleName" : "RPKI-ROUTER-MIB",
1027
+ "oid" : "1.3.6.1.2.1.218.2",
1028
+ }, # node
1029
+ "rpkiRtrCompliances" : {
1030
+ "nodetype" : "node",
1031
+ "moduleName" : "RPKI-ROUTER-MIB",
1032
+ "oid" : "1.3.6.1.2.1.218.2.1",
1033
+ }, # node
1034
+ "rpkiRtrGroups" : {
1035
+ "nodetype" : "node",
1036
+ "moduleName" : "RPKI-ROUTER-MIB",
1037
+ "oid" : "1.3.6.1.2.1.218.2.2",
1038
+ }, # node
1039
+ }, # nodes
1040
+
1041
+ "notifications" : {
1042
+ "rpkiRtrCacheServerConnectionStateChange" : {
1043
+ "nodetype" : "notification",
1044
+ "moduleName" : "RPKI-ROUTER-MIB",
1045
+ "oid" : "1.3.6.1.2.1.218.0.1",
1046
+ "status" : "current",
1047
+ "objects" : {
1048
+ "rpkiRtrCacheServerConnectionStatus" : {
1049
+ "nodetype" : "object",
1050
+ "module" : "RPKI-ROUTER-MIB"
1051
+ },
1052
+ "rpkiRtrCacheServerLatestSerial" : {
1053
+ "nodetype" : "object",
1054
+ "module" : "RPKI-ROUTER-MIB"
1055
+ },
1056
+ "rpkiRtrCacheServerSessionID" : {
1057
+ "nodetype" : "object",
1058
+ "module" : "RPKI-ROUTER-MIB"
1059
+ },
1060
+ },
1061
+ "description" :
1062
+ """This notification signals a change in the status
1063
+ of an rpkiRtrCacheServerConnection.
1064
+
1065
+ The management agent MUST throttle the generation of
1066
+ consecutive rpkiRtrCacheServerConnectionStateChange
1067
+ notifications such that there is at least a 5 second
1068
+ gap between them.
1069
+
1070
+ If more than one notification has occurred locally
1071
+ during that time, the most recent notification is
1072
+
1073
+
1074
+
1075
+ sent at the end of the 5 second gap and the others
1076
+ are discarded.""",
1077
+ }, # notification
1078
+ "rpkiRtrCacheServerConnectionToGoStale" : {
1079
+ "nodetype" : "notification",
1080
+ "moduleName" : "RPKI-ROUTER-MIB",
1081
+ "oid" : "1.3.6.1.2.1.218.0.2",
1082
+ "status" : "current",
1083
+ "objects" : {
1084
+ "rpkiRtrCacheServerV4ActiveRecords" : {
1085
+ "nodetype" : "object",
1086
+ "module" : "RPKI-ROUTER-MIB"
1087
+ },
1088
+ "rpkiRtrCacheServerV6ActiveRecords" : {
1089
+ "nodetype" : "object",
1090
+ "module" : "RPKI-ROUTER-MIB"
1091
+ },
1092
+ "rpkiRtrCacheServerLatestSerial" : {
1093
+ "nodetype" : "object",
1094
+ "module" : "RPKI-ROUTER-MIB"
1095
+ },
1096
+ "rpkiRtrCacheServerSessionID" : {
1097
+ "nodetype" : "object",
1098
+ "module" : "RPKI-ROUTER-MIB"
1099
+ },
1100
+ "rpkiRtrCacheServerRefreshTimer" : {
1101
+ "nodetype" : "object",
1102
+ "module" : "RPKI-ROUTER-MIB"
1103
+ },
1104
+ "rpkiRtrCacheServerTimeToRefresh" : {
1105
+ "nodetype" : "object",
1106
+ "module" : "RPKI-ROUTER-MIB"
1107
+ },
1108
+ },
1109
+ "description" :
1110
+ """This notification signals that an RPKI cache
1111
+ server connection is about to go stale.
1112
+ It is suggested that this notification is
1113
+ generated when the value of the
1114
+ rpkiRtrCacheServerTimeToRefresh attribute
1115
+ goes below 60 seconds.
1116
+
1117
+ The SNMP agent MUST throttle the generation of
1118
+ consecutive rpkiRtrCacheServerConnectionToGoStale
1119
+ notifications such that there is at least a
1120
+ 5 second gap between them.""",
1121
+ }, # notification
1122
+ }, # notifications
1123
+
1124
+ "groups" : {
1125
+ "rpkiRtrCacheServerGroup" : {
1126
+ "nodetype" : "group",
1127
+ "moduleName" : "RPKI-ROUTER-MIB",
1128
+ "oid" : "1.3.6.1.2.1.218.2.2.1",
1129
+ "status" : "current",
1130
+ "members" : {
1131
+ "rpkiRtrDiscontinuityTimer" : {
1132
+ "nodetype" : "member",
1133
+ "module" : "RPKI-ROUTER-MIB"
1134
+ },
1135
+ "rpkiRtrCacheServerLocalAddressType" : {
1136
+ "nodetype" : "member",
1137
+ "module" : "RPKI-ROUTER-MIB"
1138
+ },
1139
+ "rpkiRtrCacheServerLocalAddress" : {
1140
+ "nodetype" : "member",
1141
+ "module" : "RPKI-ROUTER-MIB"
1142
+ },
1143
+ "rpkiRtrCacheServerLocalPort" : {
1144
+ "nodetype" : "member",
1145
+ "module" : "RPKI-ROUTER-MIB"
1146
+ },
1147
+ "rpkiRtrCacheServerPreference" : {
1148
+ "nodetype" : "member",
1149
+ "module" : "RPKI-ROUTER-MIB"
1150
+ },
1151
+ "rpkiRtrCacheServerConnectionType" : {
1152
+ "nodetype" : "member",
1153
+ "module" : "RPKI-ROUTER-MIB"
1154
+ },
1155
+ "rpkiRtrCacheServerConnectionStatus" : {
1156
+ "nodetype" : "member",
1157
+ "module" : "RPKI-ROUTER-MIB"
1158
+ },
1159
+ "rpkiRtrCacheServerDescription" : {
1160
+ "nodetype" : "member",
1161
+ "module" : "RPKI-ROUTER-MIB"
1162
+ },
1163
+ "rpkiRtrCacheServerMsgsReceived" : {
1164
+ "nodetype" : "member",
1165
+ "module" : "RPKI-ROUTER-MIB"
1166
+ },
1167
+ "rpkiRtrCacheServerMsgsSent" : {
1168
+ "nodetype" : "member",
1169
+ "module" : "RPKI-ROUTER-MIB"
1170
+ },
1171
+ "rpkiRtrCacheServerV4ActiveRecords" : {
1172
+ "nodetype" : "member",
1173
+ "module" : "RPKI-ROUTER-MIB"
1174
+ },
1175
+ "rpkiRtrCacheServerV4Announcements" : {
1176
+ "nodetype" : "member",
1177
+ "module" : "RPKI-ROUTER-MIB"
1178
+ },
1179
+ "rpkiRtrCacheServerV4Withdrawals" : {
1180
+ "nodetype" : "member",
1181
+ "module" : "RPKI-ROUTER-MIB"
1182
+ },
1183
+ "rpkiRtrCacheServerV6ActiveRecords" : {
1184
+ "nodetype" : "member",
1185
+ "module" : "RPKI-ROUTER-MIB"
1186
+ },
1187
+ "rpkiRtrCacheServerV6Announcements" : {
1188
+ "nodetype" : "member",
1189
+ "module" : "RPKI-ROUTER-MIB"
1190
+ },
1191
+ "rpkiRtrCacheServerV6Withdrawals" : {
1192
+ "nodetype" : "member",
1193
+ "module" : "RPKI-ROUTER-MIB"
1194
+ },
1195
+ "rpkiRtrCacheServerLatestSerial" : {
1196
+ "nodetype" : "member",
1197
+ "module" : "RPKI-ROUTER-MIB"
1198
+ },
1199
+ "rpkiRtrCacheServerSessionID" : {
1200
+ "nodetype" : "member",
1201
+ "module" : "RPKI-ROUTER-MIB"
1202
+ },
1203
+ "rpkiRtrCacheServerRefreshTimer" : {
1204
+ "nodetype" : "member",
1205
+ "module" : "RPKI-ROUTER-MIB"
1206
+ },
1207
+ "rpkiRtrCacheServerTimeToRefresh" : {
1208
+ "nodetype" : "member",
1209
+ "module" : "RPKI-ROUTER-MIB"
1210
+ },
1211
+ "rpkiRtrCacheServerId" : {
1212
+ "nodetype" : "member",
1213
+ "module" : "RPKI-ROUTER-MIB"
1214
+ },
1215
+ }, # members
1216
+ "description" :
1217
+ """The collection of objects to monitor the RPKI peer
1218
+ connections.""",
1219
+ }, # group
1220
+ "rpkiRtrCacheServerErrorsGroup" : {
1221
+ "nodetype" : "group",
1222
+ "moduleName" : "RPKI-ROUTER-MIB",
1223
+ "oid" : "1.3.6.1.2.1.218.2.2.2",
1224
+ "status" : "current",
1225
+ "members" : {
1226
+ "rpkiRtrCacheServerErrorsCorruptData" : {
1227
+ "nodetype" : "member",
1228
+ "module" : "RPKI-ROUTER-MIB"
1229
+ },
1230
+ "rpkiRtrCacheServerErrorsInternalError" : {
1231
+ "nodetype" : "member",
1232
+ "module" : "RPKI-ROUTER-MIB"
1233
+ },
1234
+ "rpkiRtrCacheServerErrorsNoData" : {
1235
+ "nodetype" : "member",
1236
+ "module" : "RPKI-ROUTER-MIB"
1237
+ },
1238
+ "rpkiRtrCacheServerErrorsInvalidRequest" : {
1239
+ "nodetype" : "member",
1240
+ "module" : "RPKI-ROUTER-MIB"
1241
+ },
1242
+ "rpkiRtrCacheServerErrorsUnsupportedVersion" : {
1243
+ "nodetype" : "member",
1244
+ "module" : "RPKI-ROUTER-MIB"
1245
+ },
1246
+ "rpkiRtrCacheServerErrorsUnsupportedPdu" : {
1247
+ "nodetype" : "member",
1248
+ "module" : "RPKI-ROUTER-MIB"
1249
+ },
1250
+ "rpkiRtrCacheServerErrorsWithdrawalUnknown" : {
1251
+ "nodetype" : "member",
1252
+ "module" : "RPKI-ROUTER-MIB"
1253
+ },
1254
+ "rpkiRtrCacheServerErrorsDuplicateAnnounce" : {
1255
+ "nodetype" : "member",
1256
+ "module" : "RPKI-ROUTER-MIB"
1257
+ },
1258
+ }, # members
1259
+ "description" :
1260
+ """The collection of objects that may help in
1261
+ debugging the communication between RPKI
1262
+ clients and cache servers.""",
1263
+ }, # group
1264
+ "rpkiRtrPrefixOriginGroup" : {
1265
+ "nodetype" : "group",
1266
+ "moduleName" : "RPKI-ROUTER-MIB",
1267
+ "oid" : "1.3.6.1.2.1.218.2.2.3",
1268
+ "status" : "current",
1269
+ "members" : {
1270
+ "rpkiRtrPrefixOriginCacheServerId" : {
1271
+ "nodetype" : "member",
1272
+ "module" : "RPKI-ROUTER-MIB"
1273
+ },
1274
+ }, # members
1275
+ "description" :
1276
+ """The collection of objects that represent
1277
+ the prefix(es) and their validated Origin
1278
+ ASes.""",
1279
+ }, # group
1280
+ "rpkiRtrNotificationsGroup" : {
1281
+ "nodetype" : "group",
1282
+ "moduleName" : "RPKI-ROUTER-MIB",
1283
+ "oid" : "1.3.6.1.2.1.218.2.2.4",
1284
+ "status" : "current",
1285
+ "members" : {
1286
+ "rpkiRtrCacheServerConnectionStateChange" : {
1287
+ "nodetype" : "member",
1288
+ "module" : "RPKI-ROUTER-MIB"
1289
+ },
1290
+ "rpkiRtrCacheServerConnectionToGoStale" : {
1291
+ "nodetype" : "member",
1292
+ "module" : "RPKI-ROUTER-MIB"
1293
+ },
1294
+ }, # members
1295
+ "description" :
1296
+ """The set of notifications to alert an NMS of change
1297
+ in connections to RPKI cache servers.""",
1298
+ }, # group
1299
+ }, # groups
1300
+
1301
+ "compliances" : {
1302
+ "rpkiRtrRFC6945ReadOnlyCompliance" : {
1303
+ "nodetype" : "compliance",
1304
+ "moduleName" : "RPKI-ROUTER-MIB",
1305
+ "oid" : "1.3.6.1.2.1.218.2.1.1",
1306
+ "status" : "current",
1307
+ "description" :
1308
+ """The compliance statement for the rpkiRtrMIB module. There
1309
+ are only read-only objects in this MIB module, so the
1310
+ 'ReadOnly' in the name of this compliance statement is there
1311
+ only for clarity and truth in advertising.
1312
+
1313
+ There are a number of INDEX objects that cannot be
1314
+ represented in the form of OBJECT clauses in SMIv2, but for
1315
+ which there are compliance requirements. Those requirements
1316
+ and similar requirements for related objects are expressed
1317
+
1318
+
1319
+
1320
+ below, in pseudo-OBJECT clause form, in this description:
1321
+
1322
+ -- OBJECT rpkiRtrCacheServerRemoteAddressType
1323
+ -- SYNTAX InetAddressType { ipv4(1), ipv6(2), dns(16) }
1324
+ -- DESCRIPTION
1325
+ -- The MIB requires support for the IPv4, IPv6, and DNS
1326
+ -- InetAddressTypes for this object.
1327
+
1328
+ -- OBJECT rpkiRtrCacheServerLocalAddressType
1329
+ -- SYNTAX InetAddressType { ipv4(1), ipv6(2), dns(16) }
1330
+ -- DESCRIPTION
1331
+ -- The MIB requires support for the IPv4, IPv6, and DNS
1332
+ -- InetAddressTypes for this object.
1333
+
1334
+ -- OBJECT rpkiRtrPrefixOriginAddressType
1335
+ -- SYNTAX InetAddressType { ipv4(1), ipv6(2) }
1336
+ -- DESCRIPTION
1337
+ -- The MIB requires support for the IPv4, and IPv6
1338
+ -- InetAddressTypes for this object.""",
1339
+ "requires" : {
1340
+ "rpkiRtrCacheServerGroup" : {
1341
+ "nodetype" : "mandatory",
1342
+ "module" : "RPKI-ROUTER-MIB"
1343
+ },
1344
+ "rpkiRtrPrefixOriginGroup" : {
1345
+ "nodetype" : "mandatory",
1346
+ "module" : "RPKI-ROUTER-MIB"
1347
+ },
1348
+ "rpkiRtrNotificationsGroup" : {
1349
+ "nodetype" : "mandatory",
1350
+ "module" : "RPKI-ROUTER-MIB"
1351
+ },
1352
+ "rpkiRtrCacheServerErrorsGroup" : {
1353
+ "nodetype" : "optional",
1354
+ "module" : "RPKI-ROUTER-MIB",
1355
+ "description" :
1356
+ """Implementation of this group is optional and
1357
+ would be useful for debugging.""",
1358
+ },
1359
+ }, # requires
1360
+ }, # compliance
1361
+ }, # compliances
1362
+
1363
+ }