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,1931 @@
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 BGP4-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/BGP4-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "BGP4-MIB",
11
+
12
+ "BGP4-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF IDR Working Group""",
17
+ "contact" :
18
+ """E-mail: idr@ietf.org
19
+
20
+ Jeffrey Haas, Susan Hares (Editors)
21
+ NextHop Technologies
22
+ 825 Victors Way
23
+ Suite 100
24
+ Ann Arbor, MI 48108-2738
25
+ Tel: +1 734 222-1600
26
+ Fax: +1 734 222-1602
27
+ E-mail: jhaas@nexthop.com
28
+ skh@nexthop.com""",
29
+ "description" :
30
+ """The MIB module for the BGP-4 protocol.
31
+
32
+ Copyright (C) The Internet Society (2006). This
33
+ version of this MIB module is part of RFC 4273;
34
+ see the RFC itself for full legal notices.""",
35
+ "revisions" : (
36
+ {
37
+ "date" : "2006-01-11 00:00",
38
+ "description" :
39
+ """Changes from RFC 1657:
40
+
41
+ 1) Fixed the definitions of the notifications
42
+ to make them equivalent to their initial
43
+ definition in RFC 1269.
44
+ 2) Added compliance and conformance info.
45
+ 3) Updated information for the values of
46
+ bgpPeerNegotiatedVersion, bgp4PathAttrLocalPref,
47
+ bgp4PathAttrCalcLocalPref,
48
+ bgp4PathAttrMultiExitDisc,
49
+ bgp4PathAttrASPathSegement.
50
+ 4) Added additional clarification comments where
51
+ needed.
52
+
53
+
54
+
55
+ 5) Noted where objects do not fully reflect
56
+ the protocol as Known Issues.
57
+ 6) Updated the DESCRIPTION for the
58
+ bgp4PathAttrAtomicAggregate object.
59
+ 7) The following objects have had their DESCRIPTION
60
+ clause modified to remove the text that suggested
61
+ (using 'should' verb) initializing the counter
62
+ to zero on a transition to the established state:
63
+ bgpPeerInUpdates, bgpPeerOutUpdates,
64
+ bgpPeerInTotalMessages, bgpPeerOutTotalMessages
65
+ Those implementations that still do this are
66
+ still compliant with this new wording.
67
+ Applications should not assume counters have
68
+ started at zero.
69
+
70
+ Published as RFC 4273.""",
71
+ },
72
+ {
73
+ "date" : "1994-05-05 00:00",
74
+ "description" :
75
+ """Translated to SMIv2 and published as RFC 1657.""",
76
+ },
77
+ {
78
+ "date" : "1991-10-26 18:39",
79
+ "description" :
80
+ """Initial version, published as RFC 1269.""",
81
+ },
82
+ ),
83
+ "identity node" : "bgp",
84
+ },
85
+
86
+ "imports" : (
87
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
88
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
89
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
90
+ {"module" : "SNMPv2-SMI", "name" : "IpAddress"},
91
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
92
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
93
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
94
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
95
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
96
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
97
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
98
+ ),
99
+
100
+ "nodes" : {
101
+ "bgp" : {
102
+ "nodetype" : "node",
103
+ "moduleName" : "BGP4-MIB",
104
+ "oid" : "1.3.6.1.2.1.15",
105
+ "status" : "current",
106
+ }, # node
107
+ "bgpNotification" : {
108
+ "nodetype" : "node",
109
+ "moduleName" : "BGP4-MIB",
110
+ "oid" : "1.3.6.1.2.1.15.0",
111
+ }, # node
112
+ "bgpVersion" : {
113
+ "nodetype" : "scalar",
114
+ "moduleName" : "BGP4-MIB",
115
+ "oid" : "1.3.6.1.2.1.15.1",
116
+ "status" : "current",
117
+ "syntax" : {
118
+ "type" : {
119
+ "basetype" : "OctetString",
120
+ "ranges" : [
121
+ {
122
+ "min" : "1",
123
+ "max" : "255"
124
+ },
125
+ ],
126
+ "range" : {
127
+ "min" : "1",
128
+ "max" : "255"
129
+ },
130
+ },
131
+ },
132
+ "access" : "readonly",
133
+ "description" :
134
+ """Vector of supported BGP protocol version
135
+ numbers. Each peer negotiates the version
136
+ from this vector. Versions are identified
137
+ via the string of bits contained within this
138
+ object. The first octet contains bits 0 to
139
+ 7, the second octet contains bits 8 to 15,
140
+ and so on, with the most significant bit
141
+ referring to the lowest bit number in the
142
+ octet (e.g., the MSB of the first octet
143
+ refers to bit 0). If a bit, i, is present
144
+ and set, then the version (i+1) of the BGP
145
+ is supported.""",
146
+ "reference" :
147
+ """RFC 4271, Section 4.2.""",
148
+ }, # scalar
149
+ "bgpLocalAs" : {
150
+ "nodetype" : "scalar",
151
+ "moduleName" : "BGP4-MIB",
152
+ "oid" : "1.3.6.1.2.1.15.2",
153
+ "status" : "current",
154
+ "syntax" : {
155
+ "type" : {
156
+ "basetype" : "Integer32",
157
+ "ranges" : [
158
+ {
159
+ "min" : "0",
160
+ "max" : "65535"
161
+ },
162
+ ],
163
+ "range" : {
164
+ "min" : "0",
165
+ "max" : "65535"
166
+ },
167
+ },
168
+ },
169
+ "access" : "readonly",
170
+ "description" :
171
+ """The local autonomous system number.""",
172
+ "reference" :
173
+ """RFC 4271, Section 4.2, 'My Autonomous System'.""",
174
+ }, # scalar
175
+ "bgpPeerTable" : {
176
+ "nodetype" : "table",
177
+ "moduleName" : "BGP4-MIB",
178
+ "oid" : "1.3.6.1.2.1.15.3",
179
+ "status" : "current",
180
+ "description" :
181
+ """BGP peer table. This table contains,
182
+ one entry per BGP peer, information about the
183
+ connections with BGP peers.""",
184
+ }, # table
185
+ "bgpPeerEntry" : {
186
+ "nodetype" : "row",
187
+ "moduleName" : "BGP4-MIB",
188
+ "oid" : "1.3.6.1.2.1.15.3.1",
189
+ "status" : "current",
190
+ "linkage" : [
191
+ "bgpPeerRemoteAddr",
192
+ ],
193
+ "description" :
194
+ """Entry containing information about the
195
+ connection with a BGP peer.""",
196
+ }, # row
197
+ "bgpPeerIdentifier" : {
198
+ "nodetype" : "column",
199
+ "moduleName" : "BGP4-MIB",
200
+ "oid" : "1.3.6.1.2.1.15.3.1.1",
201
+ "status" : "current",
202
+ "syntax" : {
203
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
204
+ },
205
+ "access" : "readonly",
206
+ "description" :
207
+ """The BGP Identifier of this entry's BGP peer.
208
+ This entry MUST be 0.0.0.0 unless the
209
+ bgpPeerState is in the openconfirm or the
210
+ established state.""",
211
+ "reference" :
212
+ """RFC 4271, Section 4.2, 'BGP Identifier'.""",
213
+ }, # column
214
+ "bgpPeerState" : {
215
+ "nodetype" : "column",
216
+ "moduleName" : "BGP4-MIB",
217
+ "oid" : "1.3.6.1.2.1.15.3.1.2",
218
+ "status" : "current",
219
+ "syntax" : {
220
+ "type" : {
221
+ "basetype" : "Enumeration",
222
+ "idle" : {
223
+ "nodetype" : "namednumber",
224
+ "number" : "1"
225
+ },
226
+ "connect" : {
227
+ "nodetype" : "namednumber",
228
+ "number" : "2"
229
+ },
230
+ "active" : {
231
+ "nodetype" : "namednumber",
232
+ "number" : "3"
233
+ },
234
+ "opensent" : {
235
+ "nodetype" : "namednumber",
236
+ "number" : "4"
237
+ },
238
+ "openconfirm" : {
239
+ "nodetype" : "namednumber",
240
+ "number" : "5"
241
+ },
242
+ "established" : {
243
+ "nodetype" : "namednumber",
244
+ "number" : "6"
245
+ },
246
+ },
247
+ },
248
+ "access" : "readonly",
249
+ "description" :
250
+ """The BGP peer connection state.""",
251
+ "reference" :
252
+ """RFC 4271, Section 8.2.2.""",
253
+ }, # column
254
+ "bgpPeerAdminStatus" : {
255
+ "nodetype" : "column",
256
+ "moduleName" : "BGP4-MIB",
257
+ "oid" : "1.3.6.1.2.1.15.3.1.3",
258
+ "status" : "current",
259
+ "syntax" : {
260
+ "type" : {
261
+ "basetype" : "Enumeration",
262
+ "stop" : {
263
+ "nodetype" : "namednumber",
264
+ "number" : "1"
265
+ },
266
+ "start" : {
267
+ "nodetype" : "namednumber",
268
+ "number" : "2"
269
+ },
270
+ },
271
+ },
272
+ "access" : "readwrite",
273
+ "description" :
274
+ """The desired state of the BGP connection.
275
+ A transition from 'stop' to 'start' will cause
276
+ the BGP Manual Start Event to be generated.
277
+ A transition from 'start' to 'stop' will cause
278
+ the BGP Manual Stop Event to be generated.
279
+ This parameter can be used to restart BGP peer
280
+ connections. Care should be used in providing
281
+ write access to this object without adequate
282
+ authentication.""",
283
+ "reference" :
284
+ """RFC 4271, Section 8.1.2.""",
285
+ }, # column
286
+ "bgpPeerNegotiatedVersion" : {
287
+ "nodetype" : "column",
288
+ "moduleName" : "BGP4-MIB",
289
+ "oid" : "1.3.6.1.2.1.15.3.1.4",
290
+ "status" : "current",
291
+ "syntax" : {
292
+ "type" : { "module" :"", "name" : "Integer32"},
293
+ },
294
+ "access" : "readonly",
295
+ "description" :
296
+ """The negotiated version of BGP running between
297
+ the two peers.
298
+
299
+ This entry MUST be zero (0) unless the
300
+ bgpPeerState is in the openconfirm or the
301
+
302
+
303
+
304
+ established state.
305
+
306
+ Note that legal values for this object are
307
+ between 0 and 255.""",
308
+ "reference" :
309
+ """RFC 4271, Section 4.2.
310
+ RFC 4271, Section 7.""",
311
+ }, # column
312
+ "bgpPeerLocalAddr" : {
313
+ "nodetype" : "column",
314
+ "moduleName" : "BGP4-MIB",
315
+ "oid" : "1.3.6.1.2.1.15.3.1.5",
316
+ "status" : "current",
317
+ "syntax" : {
318
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
319
+ },
320
+ "access" : "readonly",
321
+ "description" :
322
+ """The local IP address of this entry's BGP
323
+ connection.""",
324
+ }, # column
325
+ "bgpPeerLocalPort" : {
326
+ "nodetype" : "column",
327
+ "moduleName" : "BGP4-MIB",
328
+ "oid" : "1.3.6.1.2.1.15.3.1.6",
329
+ "status" : "current",
330
+ "syntax" : {
331
+ "type" : {
332
+ "basetype" : "Integer32",
333
+ "ranges" : [
334
+ {
335
+ "min" : "0",
336
+ "max" : "65535"
337
+ },
338
+ ],
339
+ "range" : {
340
+ "min" : "0",
341
+ "max" : "65535"
342
+ },
343
+ },
344
+ },
345
+ "access" : "readonly",
346
+ "description" :
347
+ """The local port for the TCP connection between
348
+ the BGP peers.""",
349
+ }, # column
350
+ "bgpPeerRemoteAddr" : {
351
+ "nodetype" : "column",
352
+ "moduleName" : "BGP4-MIB",
353
+ "oid" : "1.3.6.1.2.1.15.3.1.7",
354
+ "status" : "current",
355
+ "syntax" : {
356
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
357
+ },
358
+ "access" : "readonly",
359
+ "description" :
360
+ """The remote IP address of this entry's BGP
361
+ peer.""",
362
+ }, # column
363
+ "bgpPeerRemotePort" : {
364
+ "nodetype" : "column",
365
+ "moduleName" : "BGP4-MIB",
366
+ "oid" : "1.3.6.1.2.1.15.3.1.8",
367
+ "status" : "current",
368
+ "syntax" : {
369
+ "type" : {
370
+ "basetype" : "Integer32",
371
+ "ranges" : [
372
+ {
373
+ "min" : "0",
374
+ "max" : "65535"
375
+ },
376
+ ],
377
+ "range" : {
378
+ "min" : "0",
379
+ "max" : "65535"
380
+ },
381
+ },
382
+ },
383
+ "access" : "readonly",
384
+ "description" :
385
+ """The remote port for the TCP connection
386
+ between the BGP peers. Note that the
387
+ objects bgpPeerLocalAddr,
388
+ bgpPeerLocalPort, bgpPeerRemoteAddr, and
389
+ bgpPeerRemotePort provide the appropriate
390
+ reference to the standard MIB TCP
391
+ connection table.""",
392
+ }, # column
393
+ "bgpPeerRemoteAs" : {
394
+ "nodetype" : "column",
395
+ "moduleName" : "BGP4-MIB",
396
+ "oid" : "1.3.6.1.2.1.15.3.1.9",
397
+ "status" : "current",
398
+ "syntax" : {
399
+ "type" : {
400
+ "basetype" : "Integer32",
401
+ "ranges" : [
402
+ {
403
+ "min" : "0",
404
+ "max" : "65535"
405
+ },
406
+ ],
407
+ "range" : {
408
+ "min" : "0",
409
+ "max" : "65535"
410
+ },
411
+ },
412
+ },
413
+ "access" : "readonly",
414
+ "description" :
415
+ """The remote autonomous system number received in
416
+ the BGP OPEN message.""",
417
+ "reference" :
418
+ """RFC 4271, Section 4.2.""",
419
+ }, # column
420
+ "bgpPeerInUpdates" : {
421
+ "nodetype" : "column",
422
+ "moduleName" : "BGP4-MIB",
423
+ "oid" : "1.3.6.1.2.1.15.3.1.10",
424
+ "status" : "current",
425
+ "syntax" : {
426
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
427
+ },
428
+ "access" : "readonly",
429
+ "description" :
430
+ """The number of BGP UPDATE messages
431
+ received on this connection.""",
432
+ "reference" :
433
+ """RFC 4271, Section 4.3.""",
434
+ }, # column
435
+ "bgpPeerOutUpdates" : {
436
+ "nodetype" : "column",
437
+ "moduleName" : "BGP4-MIB",
438
+ "oid" : "1.3.6.1.2.1.15.3.1.11",
439
+ "status" : "current",
440
+ "syntax" : {
441
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
442
+ },
443
+ "access" : "readonly",
444
+ "description" :
445
+ """The number of BGP UPDATE messages
446
+ transmitted on this connection.""",
447
+ "reference" :
448
+ """RFC 4271, Section 4.3.""",
449
+ }, # column
450
+ "bgpPeerInTotalMessages" : {
451
+ "nodetype" : "column",
452
+ "moduleName" : "BGP4-MIB",
453
+ "oid" : "1.3.6.1.2.1.15.3.1.12",
454
+ "status" : "current",
455
+ "syntax" : {
456
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
457
+ },
458
+ "access" : "readonly",
459
+ "description" :
460
+ """The total number of messages received
461
+ from the remote peer on this connection.""",
462
+ "reference" :
463
+ """RFC 4271, Section 4.""",
464
+ }, # column
465
+ "bgpPeerOutTotalMessages" : {
466
+ "nodetype" : "column",
467
+ "moduleName" : "BGP4-MIB",
468
+ "oid" : "1.3.6.1.2.1.15.3.1.13",
469
+ "status" : "current",
470
+ "syntax" : {
471
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
472
+ },
473
+ "access" : "readonly",
474
+ "description" :
475
+ """The total number of messages transmitted to
476
+ the remote peer on this connection.""",
477
+ "reference" :
478
+ """RFC 4271, Section 4.""",
479
+ }, # column
480
+ "bgpPeerLastError" : {
481
+ "nodetype" : "column",
482
+ "moduleName" : "BGP4-MIB",
483
+ "oid" : "1.3.6.1.2.1.15.3.1.14",
484
+ "status" : "current",
485
+ "syntax" : {
486
+ "type" : {
487
+ "basetype" : "OctetString",
488
+ "ranges" : [
489
+ {
490
+ "min" : "2",
491
+ "max" : "2"
492
+ },
493
+ ],
494
+ "range" : {
495
+ "min" : "2",
496
+ "max" : "2"
497
+ },
498
+ },
499
+ },
500
+ "access" : "readonly",
501
+ "description" :
502
+ """The last error code and subcode seen by this
503
+ peer on this connection. If no error has
504
+ occurred, this field is zero. Otherwise, the
505
+ first byte of this two byte OCTET STRING
506
+ contains the error code, and the second byte
507
+ contains the subcode.""",
508
+ "reference" :
509
+ """RFC 4271, Section 4.5.""",
510
+ }, # column
511
+ "bgpPeerFsmEstablishedTransitions" : {
512
+ "nodetype" : "column",
513
+ "moduleName" : "BGP4-MIB",
514
+ "oid" : "1.3.6.1.2.1.15.3.1.15",
515
+ "status" : "current",
516
+ "syntax" : {
517
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
518
+ },
519
+ "access" : "readonly",
520
+ "description" :
521
+ """The total number of times the BGP FSM
522
+ transitioned into the established state
523
+ for this peer.""",
524
+ "reference" :
525
+ """RFC 4271, Section 8.""",
526
+ }, # column
527
+ "bgpPeerFsmEstablishedTime" : {
528
+ "nodetype" : "column",
529
+ "moduleName" : "BGP4-MIB",
530
+ "oid" : "1.3.6.1.2.1.15.3.1.16",
531
+ "status" : "current",
532
+ "syntax" : {
533
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
534
+ },
535
+ "access" : "readonly",
536
+ "units" : "seconds",
537
+ "description" :
538
+ """This timer indicates how long (in
539
+ seconds) this peer has been in the
540
+ established state or how long
541
+ since this peer was last in the
542
+ established state. It is set to zero when
543
+ a new peer is configured or when the router is
544
+
545
+
546
+
547
+ booted.""",
548
+ "reference" :
549
+ """RFC 4271, Section 8.""",
550
+ }, # column
551
+ "bgpPeerConnectRetryInterval" : {
552
+ "nodetype" : "column",
553
+ "moduleName" : "BGP4-MIB",
554
+ "oid" : "1.3.6.1.2.1.15.3.1.17",
555
+ "status" : "current",
556
+ "syntax" : {
557
+ "type" : {
558
+ "basetype" : "Integer32",
559
+ "ranges" : [
560
+ {
561
+ "min" : "1",
562
+ "max" : "65535"
563
+ },
564
+ ],
565
+ "range" : {
566
+ "min" : "1",
567
+ "max" : "65535"
568
+ },
569
+ },
570
+ },
571
+ "access" : "readwrite",
572
+ "units" : "seconds",
573
+ "description" :
574
+ """Time interval (in seconds) for the
575
+ ConnectRetry timer. The suggested value
576
+ for this timer is 120 seconds.""",
577
+ "reference" :
578
+ """RFC 4271, Section 8.2.2. This is the value used
579
+ to initialize the 'ConnectRetryTimer'.""",
580
+ }, # column
581
+ "bgpPeerHoldTime" : {
582
+ "nodetype" : "column",
583
+ "moduleName" : "BGP4-MIB",
584
+ "oid" : "1.3.6.1.2.1.15.3.1.18",
585
+ "status" : "current",
586
+ "syntax" : {
587
+ "type" : {
588
+ "basetype" : "Integer32",
589
+ "ranges" : [
590
+ {
591
+ "min" : "0",
592
+ "max" : "0"
593
+ },
594
+ {
595
+ "min" : "3",
596
+ "max" : "65535"
597
+ },
598
+ ],
599
+ "range" : {
600
+ "min" : "0",
601
+ "max" : "65535"
602
+ },
603
+ },
604
+ },
605
+ "access" : "readonly",
606
+ "units" : "seconds",
607
+ "description" :
608
+ """Time interval (in seconds) for the Hold
609
+ Timer established with the peer. The
610
+ value of this object is calculated by this
611
+ BGP speaker, using the smaller of the
612
+ values in bgpPeerHoldTimeConfigured and the
613
+ Hold Time received in the OPEN message.
614
+
615
+ This value must be at least three seconds
616
+ if it is not zero (0).
617
+
618
+ If the Hold Timer has not been established
619
+ with the peer this object MUST have a value
620
+ of zero (0).
621
+
622
+ If the bgpPeerHoldTimeConfigured object has
623
+ a value of (0), then this object MUST have a
624
+ value of (0).""",
625
+ "reference" :
626
+ """RFC 4271, Section 4.2.""",
627
+ }, # column
628
+ "bgpPeerKeepAlive" : {
629
+ "nodetype" : "column",
630
+ "moduleName" : "BGP4-MIB",
631
+ "oid" : "1.3.6.1.2.1.15.3.1.19",
632
+ "status" : "current",
633
+ "syntax" : {
634
+ "type" : {
635
+ "basetype" : "Integer32",
636
+ "ranges" : [
637
+ {
638
+ "min" : "0",
639
+ "max" : "21845"
640
+ },
641
+ ],
642
+ "range" : {
643
+ "min" : "0",
644
+ "max" : "21845"
645
+ },
646
+ },
647
+ },
648
+ "access" : "readonly",
649
+ "units" : "seconds",
650
+ "description" :
651
+ """Time interval (in seconds) for the KeepAlive
652
+ timer established with the peer. The value
653
+ of this object is calculated by this BGP
654
+ speaker such that, when compared with
655
+ bgpPeerHoldTime, it has the same proportion
656
+ that bgpPeerKeepAliveConfigured has,
657
+ compared with bgpPeerHoldTimeConfigured.
658
+
659
+ If the KeepAlive timer has not been established
660
+ with the peer, this object MUST have a value
661
+ of zero (0).
662
+
663
+ If the of bgpPeerKeepAliveConfigured object
664
+ has a value of (0), then this object MUST have
665
+ a value of (0).""",
666
+ "reference" :
667
+ """RFC 4271, Section 4.4.""",
668
+ }, # column
669
+ "bgpPeerHoldTimeConfigured" : {
670
+ "nodetype" : "column",
671
+ "moduleName" : "BGP4-MIB",
672
+ "oid" : "1.3.6.1.2.1.15.3.1.20",
673
+ "status" : "current",
674
+ "syntax" : {
675
+ "type" : {
676
+ "basetype" : "Integer32",
677
+ "ranges" : [
678
+ {
679
+ "min" : "0",
680
+ "max" : "0"
681
+ },
682
+ {
683
+ "min" : "3",
684
+ "max" : "65535"
685
+ },
686
+ ],
687
+ "range" : {
688
+ "min" : "0",
689
+ "max" : "65535"
690
+ },
691
+ },
692
+ },
693
+ "access" : "readwrite",
694
+ "units" : "seconds",
695
+ "description" :
696
+ """Time interval (in seconds) for the Hold Time
697
+ configured for this BGP speaker with this
698
+ peer. This value is placed in an OPEN
699
+ message sent to this peer by this BGP
700
+ speaker, and is compared with the Hold
701
+ Time field in an OPEN message received
702
+ from the peer when determining the Hold
703
+ Time (bgpPeerHoldTime) with the peer.
704
+ This value must not be less than three
705
+ seconds if it is not zero (0). If it is
706
+ zero (0), the Hold Time is NOT to be
707
+ established with the peer. The suggested
708
+ value for this timer is 90 seconds.""",
709
+ "reference" :
710
+ """RFC 4271, Section 4.2.
711
+ RFC 4271, Section 10.""",
712
+ }, # column
713
+ "bgpPeerKeepAliveConfigured" : {
714
+ "nodetype" : "column",
715
+ "moduleName" : "BGP4-MIB",
716
+ "oid" : "1.3.6.1.2.1.15.3.1.21",
717
+ "status" : "current",
718
+ "syntax" : {
719
+ "type" : {
720
+ "basetype" : "Integer32",
721
+ "ranges" : [
722
+ {
723
+ "min" : "0",
724
+ "max" : "21845"
725
+ },
726
+ ],
727
+ "range" : {
728
+ "min" : "0",
729
+ "max" : "21845"
730
+ },
731
+ },
732
+ },
733
+ "access" : "readwrite",
734
+ "units" : "seconds",
735
+ "description" :
736
+ """Time interval (in seconds) for the
737
+ KeepAlive timer configured for this BGP
738
+ speaker with this peer. The value of this
739
+ object will only determine the
740
+ KEEPALIVE messages' frequency relative to
741
+ the value specified in
742
+ bgpPeerHoldTimeConfigured; the actual
743
+ time interval for the KEEPALIVE messages is
744
+ indicated by bgpPeerKeepAlive. A
745
+ reasonable maximum value for this timer
746
+ would be one third of that of
747
+ bgpPeerHoldTimeConfigured.
748
+ If the value of this object is zero (0),
749
+ no periodical KEEPALIVE messages are sent
750
+ to the peer after the BGP connection has
751
+ been established. The suggested value for
752
+ this timer is 30 seconds.""",
753
+ "reference" :
754
+ """RFC 4271, Section 4.4.
755
+ RFC 4271, Section 10.""",
756
+ }, # column
757
+ "bgpPeerMinASOriginationInterval" : {
758
+ "nodetype" : "column",
759
+ "moduleName" : "BGP4-MIB",
760
+ "oid" : "1.3.6.1.2.1.15.3.1.22",
761
+ "status" : "current",
762
+ "syntax" : {
763
+ "type" : {
764
+ "basetype" : "Integer32",
765
+ "ranges" : [
766
+ {
767
+ "min" : "1",
768
+ "max" : "65535"
769
+ },
770
+ ],
771
+ "range" : {
772
+ "min" : "1",
773
+ "max" : "65535"
774
+ },
775
+ },
776
+ },
777
+ "access" : "readwrite",
778
+ "units" : "seconds",
779
+ "description" :
780
+ """Time interval (in seconds) for the
781
+ MinASOriginationInterval timer.
782
+ The suggested value for this timer is 15
783
+ seconds.""",
784
+ "reference" :
785
+ """RFC 4271, Section 9.2.1.2.
786
+ RFC 4271, Section 10.""",
787
+ }, # column
788
+ "bgpPeerMinRouteAdvertisementInterval" : {
789
+ "nodetype" : "column",
790
+ "moduleName" : "BGP4-MIB",
791
+ "oid" : "1.3.6.1.2.1.15.3.1.23",
792
+ "status" : "current",
793
+ "syntax" : {
794
+ "type" : {
795
+ "basetype" : "Integer32",
796
+ "ranges" : [
797
+ {
798
+ "min" : "1",
799
+ "max" : "65535"
800
+ },
801
+ ],
802
+ "range" : {
803
+ "min" : "1",
804
+ "max" : "65535"
805
+ },
806
+ },
807
+ },
808
+ "access" : "readwrite",
809
+ "units" : "seconds",
810
+ "description" :
811
+ """Time interval (in seconds) for the
812
+ MinRouteAdvertisementInterval timer.
813
+ The suggested value for this timer is 30
814
+ seconds for EBGP connections and 5
815
+ seconds for IBGP connections.""",
816
+ "reference" :
817
+ """RFC 4271, Section 9.2.1.1.
818
+ RFC 4271, Section 10.""",
819
+ }, # column
820
+ "bgpPeerInUpdateElapsedTime" : {
821
+ "nodetype" : "column",
822
+ "moduleName" : "BGP4-MIB",
823
+ "oid" : "1.3.6.1.2.1.15.3.1.24",
824
+ "status" : "current",
825
+ "syntax" : {
826
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
827
+ },
828
+ "access" : "readonly",
829
+ "units" : "seconds",
830
+ "description" :
831
+ """Elapsed time (in seconds) since the last BGP
832
+ UPDATE message was received from the peer.
833
+ Each time bgpPeerInUpdates is incremented,
834
+ the value of this object is set to zero (0).""",
835
+ "reference" :
836
+ """RFC 4271, Section 4.3.
837
+ RFC 4271, Section 8.2.2, Established state.""",
838
+ }, # column
839
+ "bgpIdentifier" : {
840
+ "nodetype" : "scalar",
841
+ "moduleName" : "BGP4-MIB",
842
+ "oid" : "1.3.6.1.2.1.15.4",
843
+ "status" : "current",
844
+ "syntax" : {
845
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
846
+ },
847
+ "access" : "readonly",
848
+ "description" :
849
+ """The BGP Identifier of the local system.""",
850
+ "reference" :
851
+ """RFC 4271, Section 4.2.""",
852
+ }, # scalar
853
+ "bgpRcvdPathAttrTable" : {
854
+ "nodetype" : "table",
855
+ "moduleName" : "BGP4-MIB",
856
+ "oid" : "1.3.6.1.2.1.15.5",
857
+ "status" : "obsolete",
858
+ "description" :
859
+ """The BGP Received Path Attribute Table
860
+ contains information about paths to
861
+
862
+
863
+
864
+ destination networks, received from all
865
+ peers running BGP version 3 or less.""",
866
+ }, # table
867
+ "bgpPathAttrEntry" : {
868
+ "nodetype" : "row",
869
+ "moduleName" : "BGP4-MIB",
870
+ "oid" : "1.3.6.1.2.1.15.5.1",
871
+ "status" : "obsolete",
872
+ "linkage" : [
873
+ "bgpPathAttrDestNetwork",
874
+ "bgpPathAttrPeer",
875
+ ],
876
+ "description" :
877
+ """Information about a path to a network.""",
878
+ }, # row
879
+ "bgpPathAttrPeer" : {
880
+ "nodetype" : "column",
881
+ "moduleName" : "BGP4-MIB",
882
+ "oid" : "1.3.6.1.2.1.15.5.1.1",
883
+ "status" : "obsolete",
884
+ "syntax" : {
885
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
886
+ },
887
+ "access" : "readonly",
888
+ "description" :
889
+ """The IP address of the peer where the path
890
+ information was learned.""",
891
+ }, # column
892
+ "bgpPathAttrDestNetwork" : {
893
+ "nodetype" : "column",
894
+ "moduleName" : "BGP4-MIB",
895
+ "oid" : "1.3.6.1.2.1.15.5.1.2",
896
+ "status" : "obsolete",
897
+ "syntax" : {
898
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
899
+ },
900
+ "access" : "readonly",
901
+ "description" :
902
+ """The address of the destination network.""",
903
+ "reference" :
904
+ """RFC 1267, Section 4.3.""",
905
+ }, # column
906
+ "bgpPathAttrOrigin" : {
907
+ "nodetype" : "column",
908
+ "moduleName" : "BGP4-MIB",
909
+ "oid" : "1.3.6.1.2.1.15.5.1.3",
910
+ "status" : "obsolete",
911
+ "syntax" : {
912
+ "type" : {
913
+ "basetype" : "Enumeration",
914
+ "igp" : {
915
+ "nodetype" : "namednumber",
916
+ "number" : "1"
917
+ },
918
+ "egp" : {
919
+ "nodetype" : "namednumber",
920
+ "number" : "2"
921
+ },
922
+ "incomplete" : {
923
+ "nodetype" : "namednumber",
924
+ "number" : "3"
925
+ },
926
+ },
927
+ },
928
+ "access" : "readonly",
929
+ "description" :
930
+ """The ultimate origin of the path information.""",
931
+ "reference" :
932
+ """RFC 1267, Section 4.3.
933
+ RFC 1267, Section 5.""",
934
+ }, # column
935
+ "bgpPathAttrASPath" : {
936
+ "nodetype" : "column",
937
+ "moduleName" : "BGP4-MIB",
938
+ "oid" : "1.3.6.1.2.1.15.5.1.4",
939
+ "status" : "obsolete",
940
+ "syntax" : {
941
+ "type" : {
942
+ "basetype" : "OctetString",
943
+ "ranges" : [
944
+ {
945
+ "min" : "2",
946
+ "max" : "255"
947
+ },
948
+ ],
949
+ "range" : {
950
+ "min" : "2",
951
+ "max" : "255"
952
+ },
953
+ },
954
+ },
955
+ "access" : "readonly",
956
+ "description" :
957
+ """The set of ASes that must be traversed to reach
958
+ the network. This object is probably best
959
+ represented as SEQUENCE OF INTEGER. For SMI
960
+ compatibility, though, it is represented as
961
+ OCTET STRING. Each AS is represented as a pair
962
+ of octets according to the following algorithm:
963
+
964
+ first-byte-of-pair = ASNumber / 256;
965
+ second-byte-of-pair = ASNumber & 255;""",
966
+ "reference" :
967
+ """RFC 1267, Section 4.3.
968
+ RFC 1267, Section 5.""",
969
+ }, # column
970
+ "bgpPathAttrNextHop" : {
971
+ "nodetype" : "column",
972
+ "moduleName" : "BGP4-MIB",
973
+ "oid" : "1.3.6.1.2.1.15.5.1.5",
974
+ "status" : "obsolete",
975
+ "syntax" : {
976
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
977
+ },
978
+ "access" : "readonly",
979
+ "description" :
980
+ """The address of the border router that should
981
+ be used for the destination network.""",
982
+ "reference" :
983
+ """RFC 1267, Section 4.3.
984
+ RFC 1267, Section 5.""",
985
+ }, # column
986
+ "bgpPathAttrInterASMetric" : {
987
+ "nodetype" : "column",
988
+ "moduleName" : "BGP4-MIB",
989
+ "oid" : "1.3.6.1.2.1.15.5.1.6",
990
+ "status" : "obsolete",
991
+ "syntax" : {
992
+ "type" : { "module" :"", "name" : "Integer32"},
993
+ },
994
+ "access" : "readonly",
995
+ "description" :
996
+ """The optional inter-AS metric. If this
997
+ attribute has not been provided for this route,
998
+ the value for this object is 0.""",
999
+ "reference" :
1000
+ """RFC 1267, Section 4.3.
1001
+ RFC 1267, Section 5.""",
1002
+ }, # column
1003
+ "bgp4PathAttrTable" : {
1004
+ "nodetype" : "table",
1005
+ "moduleName" : "BGP4-MIB",
1006
+ "oid" : "1.3.6.1.2.1.15.6",
1007
+ "status" : "current",
1008
+ "description" :
1009
+ """The BGP-4 Received Path Attribute Table
1010
+ contains information about paths to
1011
+ destination networks, received from all
1012
+ BGP4 peers.""",
1013
+ }, # table
1014
+ "bgp4PathAttrEntry" : {
1015
+ "nodetype" : "row",
1016
+ "moduleName" : "BGP4-MIB",
1017
+ "oid" : "1.3.6.1.2.1.15.6.1",
1018
+ "status" : "current",
1019
+ "linkage" : [
1020
+ "bgp4PathAttrIpAddrPrefix",
1021
+ "bgp4PathAttrIpAddrPrefixLen",
1022
+ "bgp4PathAttrPeer",
1023
+ ],
1024
+ "description" :
1025
+ """Information about a path to a network.""",
1026
+ }, # row
1027
+ "bgp4PathAttrPeer" : {
1028
+ "nodetype" : "column",
1029
+ "moduleName" : "BGP4-MIB",
1030
+ "oid" : "1.3.6.1.2.1.15.6.1.1",
1031
+ "status" : "current",
1032
+ "syntax" : {
1033
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
1034
+ },
1035
+ "access" : "readonly",
1036
+ "description" :
1037
+ """The IP address of the peer where the path
1038
+ information was learned.""",
1039
+ }, # column
1040
+ "bgp4PathAttrIpAddrPrefixLen" : {
1041
+ "nodetype" : "column",
1042
+ "moduleName" : "BGP4-MIB",
1043
+ "oid" : "1.3.6.1.2.1.15.6.1.2",
1044
+ "status" : "current",
1045
+ "syntax" : {
1046
+ "type" : {
1047
+ "basetype" : "Integer32",
1048
+ "ranges" : [
1049
+ {
1050
+ "min" : "0",
1051
+ "max" : "32"
1052
+ },
1053
+ ],
1054
+ "range" : {
1055
+ "min" : "0",
1056
+ "max" : "32"
1057
+ },
1058
+ },
1059
+ },
1060
+ "access" : "readonly",
1061
+ "description" :
1062
+ """Length in bits of the IP address prefix in
1063
+ the Network Layer Reachability
1064
+ Information field.""",
1065
+ }, # column
1066
+ "bgp4PathAttrIpAddrPrefix" : {
1067
+ "nodetype" : "column",
1068
+ "moduleName" : "BGP4-MIB",
1069
+ "oid" : "1.3.6.1.2.1.15.6.1.3",
1070
+ "status" : "current",
1071
+ "syntax" : {
1072
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
1073
+ },
1074
+ "access" : "readonly",
1075
+ "description" :
1076
+ """An IP address prefix in the Network Layer
1077
+ Reachability Information field. This object
1078
+
1079
+
1080
+
1081
+ is an IP address containing the prefix with
1082
+ length specified by
1083
+ bgp4PathAttrIpAddrPrefixLen.
1084
+ Any bits beyond the length specified by
1085
+ bgp4PathAttrIpAddrPrefixLen are zeroed.""",
1086
+ "reference" :
1087
+ """RFC 4271, Section 4.3.""",
1088
+ }, # column
1089
+ "bgp4PathAttrOrigin" : {
1090
+ "nodetype" : "column",
1091
+ "moduleName" : "BGP4-MIB",
1092
+ "oid" : "1.3.6.1.2.1.15.6.1.4",
1093
+ "status" : "current",
1094
+ "syntax" : {
1095
+ "type" : {
1096
+ "basetype" : "Enumeration",
1097
+ "igp" : {
1098
+ "nodetype" : "namednumber",
1099
+ "number" : "1"
1100
+ },
1101
+ "egp" : {
1102
+ "nodetype" : "namednumber",
1103
+ "number" : "2"
1104
+ },
1105
+ "incomplete" : {
1106
+ "nodetype" : "namednumber",
1107
+ "number" : "3"
1108
+ },
1109
+ },
1110
+ },
1111
+ "access" : "readonly",
1112
+ "description" :
1113
+ """The ultimate origin of the path
1114
+ information.""",
1115
+ "reference" :
1116
+ """RFC 4271, Section 4.3.
1117
+ RFC 4271, Section 5.1.1.""",
1118
+ }, # column
1119
+ "bgp4PathAttrASPathSegment" : {
1120
+ "nodetype" : "column",
1121
+ "moduleName" : "BGP4-MIB",
1122
+ "oid" : "1.3.6.1.2.1.15.6.1.5",
1123
+ "status" : "current",
1124
+ "syntax" : {
1125
+ "type" : {
1126
+ "basetype" : "OctetString",
1127
+ "ranges" : [
1128
+ {
1129
+ "min" : "2",
1130
+ "max" : "255"
1131
+ },
1132
+ ],
1133
+ "range" : {
1134
+ "min" : "2",
1135
+ "max" : "255"
1136
+ },
1137
+ },
1138
+ },
1139
+ "access" : "readonly",
1140
+ "description" :
1141
+ """The sequence of AS path segments. Each AS
1142
+ path segment is represented by a triple
1143
+ <type, length, value>.
1144
+
1145
+ The type is a 1-octet field that has two
1146
+ possible values:
1147
+ 1 AS_SET: unordered set of ASes that a
1148
+ route in the UPDATE message
1149
+ has traversed
1150
+
1151
+ 2 AS_SEQUENCE: ordered set of ASes that
1152
+ a route in the UPDATE message
1153
+ has traversed.
1154
+
1155
+ The length is a 1-octet field containing the
1156
+
1157
+
1158
+
1159
+ number of ASes in the value field.
1160
+
1161
+ The value field contains one or more AS
1162
+ numbers. Each AS is represented in the octet
1163
+ string as a pair of octets according to the
1164
+ following algorithm:
1165
+
1166
+ first-byte-of-pair = ASNumber / 256;
1167
+ second-byte-of-pair = ASNumber & 255;
1168
+
1169
+ Known Issues:
1170
+ o BGP Confederations will result in
1171
+ a type of either 3 or 4.
1172
+ o An AS Path may be longer than 255 octets.
1173
+ This may result in this object containing
1174
+ a truncated AS Path.""",
1175
+ "reference" :
1176
+ """RFC 4271, Section 4.3.
1177
+ RFC 4271, Section 5.1.2.""",
1178
+ }, # column
1179
+ "bgp4PathAttrNextHop" : {
1180
+ "nodetype" : "column",
1181
+ "moduleName" : "BGP4-MIB",
1182
+ "oid" : "1.3.6.1.2.1.15.6.1.6",
1183
+ "status" : "current",
1184
+ "syntax" : {
1185
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
1186
+ },
1187
+ "access" : "readonly",
1188
+ "description" :
1189
+ """The address of the border router that
1190
+ should be used for the destination
1191
+ network. This address is the NEXT_HOP
1192
+ address received in the UPDATE packet.""",
1193
+ "reference" :
1194
+ """RFC 4271, Section 4.3.
1195
+ RFC 4271, Section 5.1.3.""",
1196
+ }, # column
1197
+ "bgp4PathAttrMultiExitDisc" : {
1198
+ "nodetype" : "column",
1199
+ "moduleName" : "BGP4-MIB",
1200
+ "oid" : "1.3.6.1.2.1.15.6.1.7",
1201
+ "status" : "current",
1202
+ "syntax" : {
1203
+ "type" : {
1204
+ "basetype" : "Integer32",
1205
+ "ranges" : [
1206
+ {
1207
+ "min" : "-1",
1208
+ "max" : "2147483647"
1209
+ },
1210
+ ],
1211
+ "range" : {
1212
+ "min" : "-1",
1213
+ "max" : "2147483647"
1214
+ },
1215
+ },
1216
+ },
1217
+ "access" : "readonly",
1218
+ "description" :
1219
+ """This metric is used to discriminate
1220
+ between multiple exit points to an
1221
+ adjacent autonomous system. A value of -1
1222
+ indicates the absence of this attribute.
1223
+
1224
+ Known Issues:
1225
+ o The BGP-4 specification uses an
1226
+ unsigned 32 bit number. Thus, this
1227
+
1228
+
1229
+
1230
+ object cannot represent the full
1231
+ range of the protocol.""",
1232
+ "reference" :
1233
+ """RFC 4271, Section 4.3.
1234
+ RFC 4271, Section 5.1.4.""",
1235
+ }, # column
1236
+ "bgp4PathAttrLocalPref" : {
1237
+ "nodetype" : "column",
1238
+ "moduleName" : "BGP4-MIB",
1239
+ "oid" : "1.3.6.1.2.1.15.6.1.8",
1240
+ "status" : "current",
1241
+ "syntax" : {
1242
+ "type" : {
1243
+ "basetype" : "Integer32",
1244
+ "ranges" : [
1245
+ {
1246
+ "min" : "-1",
1247
+ "max" : "2147483647"
1248
+ },
1249
+ ],
1250
+ "range" : {
1251
+ "min" : "-1",
1252
+ "max" : "2147483647"
1253
+ },
1254
+ },
1255
+ },
1256
+ "access" : "readonly",
1257
+ "description" :
1258
+ """The originating BGP4 speaker's degree of
1259
+ preference for an advertised route. A
1260
+ value of -1 indicates the absence of this
1261
+ attribute.
1262
+
1263
+ Known Issues:
1264
+ o The BGP-4 specification uses an
1265
+ unsigned 32 bit number and thus this
1266
+ object cannot represent the full
1267
+ range of the protocol.""",
1268
+ "reference" :
1269
+ """RFC 4271, Section 4.3.
1270
+ RFC 4271, Section 5.1.5.""",
1271
+ }, # column
1272
+ "bgp4PathAttrAtomicAggregate" : {
1273
+ "nodetype" : "column",
1274
+ "moduleName" : "BGP4-MIB",
1275
+ "oid" : "1.3.6.1.2.1.15.6.1.9",
1276
+ "status" : "current",
1277
+ "syntax" : {
1278
+ "type" : {
1279
+ "basetype" : "Enumeration",
1280
+ "lessSpecificRouteNotSelected" : {
1281
+ "nodetype" : "namednumber",
1282
+ "number" : "1"
1283
+ },
1284
+ "lessSpecificRouteSelected" : {
1285
+ "nodetype" : "namednumber",
1286
+ "number" : "2"
1287
+ },
1288
+ },
1289
+ },
1290
+ "access" : "readonly",
1291
+ "description" :
1292
+ """If the ATOMIC_AGGREGATE attribute is present
1293
+ in the Path Attributes then this object MUST
1294
+ have a value of 'lessSpecificRouteNotSelected'.
1295
+
1296
+ If the ATOMIC_AGGREGATE attribute is missing
1297
+ in the Path Attributes then this object MUST
1298
+ have a value of 'lessSpecificRouteSelected'.
1299
+
1300
+ Note that ATOMIC_AGGREGATE is now a primarily
1301
+ informational attribute.""",
1302
+ "reference" :
1303
+ """RFC 4271, Sections 5.1.6 and 9.1.4.""",
1304
+ }, # column
1305
+ "bgp4PathAttrAggregatorAS" : {
1306
+ "nodetype" : "column",
1307
+ "moduleName" : "BGP4-MIB",
1308
+ "oid" : "1.3.6.1.2.1.15.6.1.10",
1309
+ "status" : "current",
1310
+ "syntax" : {
1311
+ "type" : {
1312
+ "basetype" : "Integer32",
1313
+ "ranges" : [
1314
+ {
1315
+ "min" : "0",
1316
+ "max" : "65535"
1317
+ },
1318
+ ],
1319
+ "range" : {
1320
+ "min" : "0",
1321
+ "max" : "65535"
1322
+ },
1323
+ },
1324
+ },
1325
+ "access" : "readonly",
1326
+ "description" :
1327
+ """The AS number of the last BGP4 speaker that
1328
+ performed route aggregation. A value of
1329
+ zero (0) indicates the absence of this
1330
+ attribute.
1331
+
1332
+ Note that propagation of AS of zero is illegal
1333
+ in the Internet.""",
1334
+ "reference" :
1335
+ """RFC 4271, Section 5.1.7.
1336
+ RFC 4271, Section 9.2.2.2.""",
1337
+ }, # column
1338
+ "bgp4PathAttrAggregatorAddr" : {
1339
+ "nodetype" : "column",
1340
+ "moduleName" : "BGP4-MIB",
1341
+ "oid" : "1.3.6.1.2.1.15.6.1.11",
1342
+ "status" : "current",
1343
+ "syntax" : {
1344
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
1345
+ },
1346
+ "access" : "readonly",
1347
+ "description" :
1348
+ """The IP address of the last BGP4 speaker
1349
+ that performed route aggregation. A
1350
+ value of 0.0.0.0 indicates the absence
1351
+ of this attribute.""",
1352
+ "reference" :
1353
+ """RFC 4271, Section 5.1.7.
1354
+ RFC 4271, Section 9.2.2.2.""",
1355
+ }, # column
1356
+ "bgp4PathAttrCalcLocalPref" : {
1357
+ "nodetype" : "column",
1358
+ "moduleName" : "BGP4-MIB",
1359
+ "oid" : "1.3.6.1.2.1.15.6.1.12",
1360
+ "status" : "current",
1361
+ "syntax" : {
1362
+ "type" : {
1363
+ "basetype" : "Integer32",
1364
+ "ranges" : [
1365
+ {
1366
+ "min" : "-1",
1367
+ "max" : "2147483647"
1368
+ },
1369
+ ],
1370
+ "range" : {
1371
+ "min" : "-1",
1372
+ "max" : "2147483647"
1373
+ },
1374
+ },
1375
+ },
1376
+ "access" : "readonly",
1377
+ "description" :
1378
+ """The degree of preference calculated by the
1379
+ receiving BGP4 speaker for an advertised
1380
+ route. A value of -1 indicates the
1381
+ absence of this attribute.
1382
+
1383
+ Known Issues:
1384
+ o The BGP-4 specification uses an
1385
+ unsigned 32 bit number and thus this
1386
+ object cannot represent the full
1387
+ range of the protocol.""",
1388
+ "reference" :
1389
+ """RFC 4271, Section 9.1.1.""",
1390
+ }, # column
1391
+ "bgp4PathAttrBest" : {
1392
+ "nodetype" : "column",
1393
+ "moduleName" : "BGP4-MIB",
1394
+ "oid" : "1.3.6.1.2.1.15.6.1.13",
1395
+ "status" : "current",
1396
+ "syntax" : {
1397
+ "type" : {
1398
+ "basetype" : "Enumeration",
1399
+ "false" : {
1400
+ "nodetype" : "namednumber",
1401
+ "number" : "1"
1402
+ },
1403
+ "true" : {
1404
+ "nodetype" : "namednumber",
1405
+ "number" : "2"
1406
+ },
1407
+ },
1408
+ },
1409
+ "access" : "readonly",
1410
+ "description" :
1411
+ """An indication of whether this route
1412
+ was chosen as the best BGP4 route for this
1413
+ destination.""",
1414
+ "reference" :
1415
+ """RFC 4271, Section 9.1.2.""",
1416
+ }, # column
1417
+ "bgp4PathAttrUnknown" : {
1418
+ "nodetype" : "column",
1419
+ "moduleName" : "BGP4-MIB",
1420
+ "oid" : "1.3.6.1.2.1.15.6.1.14",
1421
+ "status" : "current",
1422
+ "syntax" : {
1423
+ "type" : {
1424
+ "basetype" : "OctetString",
1425
+ "ranges" : [
1426
+ {
1427
+ "min" : "0",
1428
+ "max" : "255"
1429
+ },
1430
+ ],
1431
+ "range" : {
1432
+ "min" : "0",
1433
+ "max" : "255"
1434
+ },
1435
+ },
1436
+ },
1437
+ "access" : "readonly",
1438
+ "description" :
1439
+ """One or more path attributes not understood by
1440
+ this BGP4 speaker.
1441
+
1442
+ Path attributes are recorded in the Update Path
1443
+ attribute format of type, length, value.
1444
+
1445
+ Size zero (0) indicates the absence of such
1446
+ attributes.
1447
+
1448
+ Octets beyond the maximum size, if any, are not
1449
+ recorded by this object.
1450
+
1451
+ Known Issues:
1452
+ o Attributes understood by this speaker, but not
1453
+ represented in this MIB, are unavailable to
1454
+ the agent.""",
1455
+ "reference" :
1456
+ """RFC 4271, Section 5.""",
1457
+ }, # column
1458
+ "bgpTraps" : {
1459
+ "nodetype" : "node",
1460
+ "moduleName" : "BGP4-MIB",
1461
+ "oid" : "1.3.6.1.2.1.15.7",
1462
+ }, # node
1463
+ "bgp4MIBConformance" : {
1464
+ "nodetype" : "node",
1465
+ "moduleName" : "BGP4-MIB",
1466
+ "oid" : "1.3.6.1.2.1.15.8",
1467
+ }, # node
1468
+ "bgp4MIBCompliances" : {
1469
+ "nodetype" : "node",
1470
+ "moduleName" : "BGP4-MIB",
1471
+ "oid" : "1.3.6.1.2.1.15.8.1",
1472
+ }, # node
1473
+ "bgp4MIBGroups" : {
1474
+ "nodetype" : "node",
1475
+ "moduleName" : "BGP4-MIB",
1476
+ "oid" : "1.3.6.1.2.1.15.8.2",
1477
+ }, # node
1478
+ }, # nodes
1479
+
1480
+ "notifications" : {
1481
+ "bgpEstablishedNotification" : {
1482
+ "nodetype" : "notification",
1483
+ "moduleName" : "BGP4-MIB",
1484
+ "oid" : "1.3.6.1.2.1.15.0.1",
1485
+ "status" : "current",
1486
+ "objects" : {
1487
+ "bgpPeerRemoteAddr" : {
1488
+ "nodetype" : "object",
1489
+ "module" : "BGP4-MIB"
1490
+ },
1491
+ "bgpPeerLastError" : {
1492
+ "nodetype" : "object",
1493
+ "module" : "BGP4-MIB"
1494
+ },
1495
+ "bgpPeerState" : {
1496
+ "nodetype" : "object",
1497
+ "module" : "BGP4-MIB"
1498
+ },
1499
+ },
1500
+ "description" :
1501
+ """The bgpEstablishedNotification event is generated
1502
+ when the BGP FSM enters the established state.
1503
+
1504
+ This Notification replaces the bgpEstablished
1505
+ Notification.""",
1506
+ }, # notification
1507
+ "bgpBackwardTransNotification" : {
1508
+ "nodetype" : "notification",
1509
+ "moduleName" : "BGP4-MIB",
1510
+ "oid" : "1.3.6.1.2.1.15.0.2",
1511
+ "status" : "current",
1512
+ "objects" : {
1513
+ "bgpPeerRemoteAddr" : {
1514
+ "nodetype" : "object",
1515
+ "module" : "BGP4-MIB"
1516
+ },
1517
+ "bgpPeerLastError" : {
1518
+ "nodetype" : "object",
1519
+ "module" : "BGP4-MIB"
1520
+ },
1521
+ "bgpPeerState" : {
1522
+ "nodetype" : "object",
1523
+ "module" : "BGP4-MIB"
1524
+ },
1525
+ },
1526
+ "description" :
1527
+ """The bgpBackwardTransNotification event is
1528
+ generated when the BGP FSM moves from a higher
1529
+ numbered state to a lower numbered state.
1530
+
1531
+ This Notification replaces the
1532
+ bgpBackwardsTransition Notification.""",
1533
+ }, # notification
1534
+ "bgpEstablished" : {
1535
+ "nodetype" : "notification",
1536
+ "moduleName" : "BGP4-MIB",
1537
+ "oid" : "1.3.6.1.2.1.15.7.1",
1538
+ "status" : "deprecated",
1539
+ "objects" : {
1540
+ "bgpPeerLastError" : {
1541
+ "nodetype" : "object",
1542
+ "module" : "BGP4-MIB"
1543
+ },
1544
+ "bgpPeerState" : {
1545
+ "nodetype" : "object",
1546
+ "module" : "BGP4-MIB"
1547
+ },
1548
+ },
1549
+ "description" :
1550
+ """The bgpEstablished event is generated when
1551
+ the BGP FSM enters the established state.
1552
+
1553
+ This Notification has been replaced by the
1554
+ bgpEstablishedNotification Notification.""",
1555
+ }, # notification
1556
+ "bgpBackwardTransition" : {
1557
+ "nodetype" : "notification",
1558
+ "moduleName" : "BGP4-MIB",
1559
+ "oid" : "1.3.6.1.2.1.15.7.2",
1560
+ "status" : "deprecated",
1561
+ "objects" : {
1562
+ "bgpPeerLastError" : {
1563
+ "nodetype" : "object",
1564
+ "module" : "BGP4-MIB"
1565
+ },
1566
+ "bgpPeerState" : {
1567
+ "nodetype" : "object",
1568
+ "module" : "BGP4-MIB"
1569
+ },
1570
+ },
1571
+ "description" :
1572
+ """The bgpBackwardTransition event is generated
1573
+ when the BGP FSM moves from a higher numbered
1574
+ state to a lower numbered state.
1575
+
1576
+ This Notification has been replaced by the
1577
+ bgpBackwardTransNotification Notification.""",
1578
+ }, # notification
1579
+ }, # notifications
1580
+
1581
+ "groups" : {
1582
+ "bgp4MIBGlobalsGroup" : {
1583
+ "nodetype" : "group",
1584
+ "moduleName" : "BGP4-MIB",
1585
+ "oid" : "1.3.6.1.2.1.15.8.2.1",
1586
+ "status" : "current",
1587
+ "members" : {
1588
+ "bgpVersion" : {
1589
+ "nodetype" : "member",
1590
+ "module" : "BGP4-MIB"
1591
+ },
1592
+ "bgpLocalAs" : {
1593
+ "nodetype" : "member",
1594
+ "module" : "BGP4-MIB"
1595
+ },
1596
+ "bgpIdentifier" : {
1597
+ "nodetype" : "member",
1598
+ "module" : "BGP4-MIB"
1599
+ },
1600
+ }, # members
1601
+ "description" :
1602
+ """A collection of objects providing
1603
+ information on global BGP state.""",
1604
+ }, # group
1605
+ "bgp4MIBPeerGroup" : {
1606
+ "nodetype" : "group",
1607
+ "moduleName" : "BGP4-MIB",
1608
+ "oid" : "1.3.6.1.2.1.15.8.2.2",
1609
+ "status" : "current",
1610
+ "members" : {
1611
+ "bgpPeerIdentifier" : {
1612
+ "nodetype" : "member",
1613
+ "module" : "BGP4-MIB"
1614
+ },
1615
+ "bgpPeerState" : {
1616
+ "nodetype" : "member",
1617
+ "module" : "BGP4-MIB"
1618
+ },
1619
+ "bgpPeerAdminStatus" : {
1620
+ "nodetype" : "member",
1621
+ "module" : "BGP4-MIB"
1622
+ },
1623
+ "bgpPeerNegotiatedVersion" : {
1624
+ "nodetype" : "member",
1625
+ "module" : "BGP4-MIB"
1626
+ },
1627
+ "bgpPeerLocalAddr" : {
1628
+ "nodetype" : "member",
1629
+ "module" : "BGP4-MIB"
1630
+ },
1631
+ "bgpPeerLocalPort" : {
1632
+ "nodetype" : "member",
1633
+ "module" : "BGP4-MIB"
1634
+ },
1635
+ "bgpPeerRemoteAddr" : {
1636
+ "nodetype" : "member",
1637
+ "module" : "BGP4-MIB"
1638
+ },
1639
+ "bgpPeerRemotePort" : {
1640
+ "nodetype" : "member",
1641
+ "module" : "BGP4-MIB"
1642
+ },
1643
+ "bgpPeerRemoteAs" : {
1644
+ "nodetype" : "member",
1645
+ "module" : "BGP4-MIB"
1646
+ },
1647
+ "bgpPeerInUpdates" : {
1648
+ "nodetype" : "member",
1649
+ "module" : "BGP4-MIB"
1650
+ },
1651
+ "bgpPeerOutUpdates" : {
1652
+ "nodetype" : "member",
1653
+ "module" : "BGP4-MIB"
1654
+ },
1655
+ "bgpPeerInTotalMessages" : {
1656
+ "nodetype" : "member",
1657
+ "module" : "BGP4-MIB"
1658
+ },
1659
+ "bgpPeerOutTotalMessages" : {
1660
+ "nodetype" : "member",
1661
+ "module" : "BGP4-MIB"
1662
+ },
1663
+ "bgpPeerLastError" : {
1664
+ "nodetype" : "member",
1665
+ "module" : "BGP4-MIB"
1666
+ },
1667
+ "bgpPeerFsmEstablishedTransitions" : {
1668
+ "nodetype" : "member",
1669
+ "module" : "BGP4-MIB"
1670
+ },
1671
+ "bgpPeerFsmEstablishedTime" : {
1672
+ "nodetype" : "member",
1673
+ "module" : "BGP4-MIB"
1674
+ },
1675
+ "bgpPeerConnectRetryInterval" : {
1676
+ "nodetype" : "member",
1677
+ "module" : "BGP4-MIB"
1678
+ },
1679
+ "bgpPeerHoldTime" : {
1680
+ "nodetype" : "member",
1681
+ "module" : "BGP4-MIB"
1682
+ },
1683
+ "bgpPeerKeepAlive" : {
1684
+ "nodetype" : "member",
1685
+ "module" : "BGP4-MIB"
1686
+ },
1687
+ "bgpPeerHoldTimeConfigured" : {
1688
+ "nodetype" : "member",
1689
+ "module" : "BGP4-MIB"
1690
+ },
1691
+ "bgpPeerKeepAliveConfigured" : {
1692
+ "nodetype" : "member",
1693
+ "module" : "BGP4-MIB"
1694
+ },
1695
+ "bgpPeerMinASOriginationInterval" : {
1696
+ "nodetype" : "member",
1697
+ "module" : "BGP4-MIB"
1698
+ },
1699
+ "bgpPeerMinRouteAdvertisementInterval" : {
1700
+ "nodetype" : "member",
1701
+ "module" : "BGP4-MIB"
1702
+ },
1703
+ "bgpPeerInUpdateElapsedTime" : {
1704
+ "nodetype" : "member",
1705
+ "module" : "BGP4-MIB"
1706
+ },
1707
+ }, # members
1708
+ "description" :
1709
+ """A collection of objects for managing
1710
+ BGP peers.""",
1711
+ }, # group
1712
+ "bgpRcvdPathAttrGroup" : {
1713
+ "nodetype" : "group",
1714
+ "moduleName" : "BGP4-MIB",
1715
+ "oid" : "1.3.6.1.2.1.15.8.2.3",
1716
+ "status" : "obsolete",
1717
+ "members" : {
1718
+ "bgpPathAttrPeer" : {
1719
+ "nodetype" : "member",
1720
+ "module" : "BGP4-MIB"
1721
+ },
1722
+ "bgpPathAttrDestNetwork" : {
1723
+ "nodetype" : "member",
1724
+ "module" : "BGP4-MIB"
1725
+ },
1726
+ "bgpPathAttrOrigin" : {
1727
+ "nodetype" : "member",
1728
+ "module" : "BGP4-MIB"
1729
+ },
1730
+ "bgpPathAttrASPath" : {
1731
+ "nodetype" : "member",
1732
+ "module" : "BGP4-MIB"
1733
+ },
1734
+ "bgpPathAttrNextHop" : {
1735
+ "nodetype" : "member",
1736
+ "module" : "BGP4-MIB"
1737
+ },
1738
+ "bgpPathAttrInterASMetric" : {
1739
+ "nodetype" : "member",
1740
+ "module" : "BGP4-MIB"
1741
+ },
1742
+ }, # members
1743
+ "description" :
1744
+ """A collection of objects for managing BGP-3 and
1745
+ earlier path entries.
1746
+
1747
+ This conformance group, like BGP-3, is obsolete.""",
1748
+ }, # group
1749
+ "bgp4MIBPathAttrGroup" : {
1750
+ "nodetype" : "group",
1751
+ "moduleName" : "BGP4-MIB",
1752
+ "oid" : "1.3.6.1.2.1.15.8.2.4",
1753
+ "status" : "current",
1754
+ "members" : {
1755
+ "bgp4PathAttrPeer" : {
1756
+ "nodetype" : "member",
1757
+ "module" : "BGP4-MIB"
1758
+ },
1759
+ "bgp4PathAttrIpAddrPrefixLen" : {
1760
+ "nodetype" : "member",
1761
+ "module" : "BGP4-MIB"
1762
+ },
1763
+ "bgp4PathAttrIpAddrPrefix" : {
1764
+ "nodetype" : "member",
1765
+ "module" : "BGP4-MIB"
1766
+ },
1767
+ "bgp4PathAttrOrigin" : {
1768
+ "nodetype" : "member",
1769
+ "module" : "BGP4-MIB"
1770
+ },
1771
+ "bgp4PathAttrASPathSegment" : {
1772
+ "nodetype" : "member",
1773
+ "module" : "BGP4-MIB"
1774
+ },
1775
+ "bgp4PathAttrNextHop" : {
1776
+ "nodetype" : "member",
1777
+ "module" : "BGP4-MIB"
1778
+ },
1779
+ "bgp4PathAttrMultiExitDisc" : {
1780
+ "nodetype" : "member",
1781
+ "module" : "BGP4-MIB"
1782
+ },
1783
+ "bgp4PathAttrLocalPref" : {
1784
+ "nodetype" : "member",
1785
+ "module" : "BGP4-MIB"
1786
+ },
1787
+ "bgp4PathAttrAtomicAggregate" : {
1788
+ "nodetype" : "member",
1789
+ "module" : "BGP4-MIB"
1790
+ },
1791
+ "bgp4PathAttrAggregatorAS" : {
1792
+ "nodetype" : "member",
1793
+ "module" : "BGP4-MIB"
1794
+ },
1795
+ "bgp4PathAttrAggregatorAddr" : {
1796
+ "nodetype" : "member",
1797
+ "module" : "BGP4-MIB"
1798
+ },
1799
+ "bgp4PathAttrCalcLocalPref" : {
1800
+ "nodetype" : "member",
1801
+ "module" : "BGP4-MIB"
1802
+ },
1803
+ "bgp4PathAttrBest" : {
1804
+ "nodetype" : "member",
1805
+ "module" : "BGP4-MIB"
1806
+ },
1807
+ "bgp4PathAttrUnknown" : {
1808
+ "nodetype" : "member",
1809
+ "module" : "BGP4-MIB"
1810
+ },
1811
+ }, # members
1812
+ "description" :
1813
+ """A collection of objects for managing
1814
+ BGP path entries.""",
1815
+ }, # group
1816
+ "bgp4MIBTrapGroup" : {
1817
+ "nodetype" : "group",
1818
+ "moduleName" : "BGP4-MIB",
1819
+ "oid" : "1.3.6.1.2.1.15.8.2.5",
1820
+ "status" : "deprecated",
1821
+ "members" : {
1822
+ "bgpEstablished" : {
1823
+ "nodetype" : "member",
1824
+ "module" : "BGP4-MIB"
1825
+ },
1826
+ "bgpBackwardTransition" : {
1827
+ "nodetype" : "member",
1828
+ "module" : "BGP4-MIB"
1829
+ },
1830
+ }, # members
1831
+ "description" :
1832
+ """A collection of notifications for signaling
1833
+ changes in BGP peer relationships.
1834
+
1835
+ Obsoleted by bgp4MIBNotificationGroup""",
1836
+ }, # group
1837
+ "bgp4MIBNotificationGroup" : {
1838
+ "nodetype" : "group",
1839
+ "moduleName" : "BGP4-MIB",
1840
+ "oid" : "1.3.6.1.2.1.15.8.2.6",
1841
+ "status" : "current",
1842
+ "members" : {
1843
+ "bgpEstablishedNotification" : {
1844
+ "nodetype" : "member",
1845
+ "module" : "BGP4-MIB"
1846
+ },
1847
+ "bgpBackwardTransNotification" : {
1848
+ "nodetype" : "member",
1849
+ "module" : "BGP4-MIB"
1850
+ },
1851
+ }, # members
1852
+ "description" :
1853
+ """A collection of notifications for signaling
1854
+ changes in BGP peer relationships.
1855
+
1856
+ Obsoletes bgp4MIBTrapGroup.""",
1857
+ }, # group
1858
+ }, # groups
1859
+
1860
+ "compliances" : {
1861
+ "bgp4MIBCompliance" : {
1862
+ "nodetype" : "compliance",
1863
+ "moduleName" : "BGP4-MIB",
1864
+ "oid" : "1.3.6.1.2.1.15.8.1.1",
1865
+ "status" : "current",
1866
+ "description" :
1867
+ """The compliance statement for entities which
1868
+ implement the BGP4 mib.""",
1869
+ "requires" : {
1870
+ "bgp4MIBGlobalsGroup" : {
1871
+ "nodetype" : "mandatory",
1872
+ "module" : "BGP4-MIB"
1873
+ },
1874
+ "bgp4MIBPeerGroup" : {
1875
+ "nodetype" : "mandatory",
1876
+ "module" : "BGP4-MIB"
1877
+ },
1878
+ "bgp4MIBPathAttrGroup" : {
1879
+ "nodetype" : "mandatory",
1880
+ "module" : "BGP4-MIB"
1881
+ },
1882
+ "bgp4MIBNotificationGroup" : {
1883
+ "nodetype" : "optional",
1884
+ "module" : "BGP4-MIB",
1885
+ "description" :
1886
+ """Implementation of BGP Notifications are
1887
+ completely optional in this MIB.""",
1888
+ },
1889
+ }, # requires
1890
+ }, # compliance
1891
+ "bgp4MIBDeprecatedCompliances" : {
1892
+ "nodetype" : "compliance",
1893
+ "moduleName" : "BGP4-MIB",
1894
+ "oid" : "1.3.6.1.2.1.15.8.1.2",
1895
+ "status" : "deprecated",
1896
+ "description" :
1897
+ """The compliance statement documenting deprecated
1898
+ objects in the BGP4 mib.""",
1899
+ "requires" : {
1900
+ "bgp4MIBTrapGroup" : {
1901
+ "nodetype" : "optional",
1902
+ "module" : "BGP4-MIB",
1903
+ "description" :
1904
+ """Group containing TRAP objects that were
1905
+ improperly converted from SMIv1 in RFC 1657.
1906
+ The proper semantics have been restored
1907
+ with the objects in bgp4MIBNotificationGroup.""",
1908
+ },
1909
+ }, # requires
1910
+ }, # compliance
1911
+ "bgp4MIBObsoleteCompliances" : {
1912
+ "nodetype" : "compliance",
1913
+ "moduleName" : "BGP4-MIB",
1914
+ "oid" : "1.3.6.1.2.1.15.8.1.3",
1915
+ "status" : "obsolete",
1916
+ "description" :
1917
+ """The compliance statement documenting obsolete
1918
+ objects in the BGP4 mib.""",
1919
+ "requires" : {
1920
+ "bgpRcvdPathAttrGroup" : {
1921
+ "nodetype" : "optional",
1922
+ "module" : "BGP4-MIB",
1923
+ "description" :
1924
+ """Group containing objects relevant to BGP-3
1925
+ and earlier objects.""",
1926
+ },
1927
+ }, # requires
1928
+ }, # compliance
1929
+ }, # compliances
1930
+
1931
+ }