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,2367 @@
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 BFD-STD-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/BFD-STD-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "BFD-STD-MIB",
11
+
12
+ "BFD-STD-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF Bidirectional Forwarding Detection
17
+ Working Group""",
18
+ "contact" :
19
+ """Thomas D. Nadeau
20
+ Brocade
21
+ Email: tnadeau@lucidvision.com
22
+
23
+ Zafar Ali
24
+ Cisco Systems, Inc.
25
+ Email: zali@cisco.com
26
+
27
+ Nobo Akiya
28
+ Cisco Systems, Inc.
29
+ Email: nobo@cisco.com
30
+
31
+ Comments about this document should be emailed
32
+ directly to the BFD Working Group mailing list
33
+ at rtg-bfd@ietf.org""",
34
+ "description" :
35
+ """Bidirectional Forwarding Management Information Base.
36
+
37
+ Copyright (c) 2014 IETF Trust and the persons identified
38
+ as authors of the code. All rights reserved.
39
+
40
+ Redistribution and use in source and binary forms, with
41
+ or without modification, is permitted pursuant to, and
42
+ subject to the license terms contained in, the Simplified
43
+ BSD License set forth in Section 4.c of the IETF Trust's
44
+ Legal Provisions Relating to IETF Documents
45
+ (http://trustee.ietf.org/license-info).""",
46
+ "revisions" : (
47
+ {
48
+ "date" : "2014-08-12 00:00",
49
+ "description" :
50
+ """Initial version. Published as RFC 7331.""",
51
+ },
52
+ ),
53
+ "identity node" : "bfdMIB",
54
+ },
55
+
56
+ "imports" : (
57
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
58
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
59
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
60
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
61
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
62
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
63
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
64
+ {"module" : "SNMPv2-SMI", "name" : "Counter64"},
65
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
66
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
67
+ {"module" : "SNMPv2-TC", "name" : "StorageType"},
68
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
69
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
70
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
71
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
72
+ {"module" : "IF-MIB", "name" : "InterfaceIndexOrZero"},
73
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddress"},
74
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddressType"},
75
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetPortNumber"},
76
+ {"module" : "DIFFSERV-MIB", "name" : "IndexIntegerNextFree"},
77
+ {"module" : "BFD-TC-STD-MIB", "name" : "BfdSessIndexTC"},
78
+ {"module" : "BFD-TC-STD-MIB", "name" : "BfdIntervalTC"},
79
+ {"module" : "BFD-TC-STD-MIB", "name" : "BfdMultiplierTC"},
80
+ {"module" : "BFD-TC-STD-MIB", "name" : "BfdCtrlDestPortNumberTC"},
81
+ {"module" : "BFD-TC-STD-MIB", "name" : "BfdCtrlSourcePortNumberTC"},
82
+ {"module" : "IANA-BFD-TC-STD-MIB", "name" : "IANAbfdDiagTC"},
83
+ {"module" : "IANA-BFD-TC-STD-MIB", "name" : "IANAbfdSessTypeTC"},
84
+ {"module" : "IANA-BFD-TC-STD-MIB", "name" : "IANAbfdSessOperModeTC"},
85
+ {"module" : "IANA-BFD-TC-STD-MIB", "name" : "IANAbfdSessStateTC"},
86
+ {"module" : "IANA-BFD-TC-STD-MIB", "name" : "IANAbfdSessAuthenticationTypeTC"},
87
+ {"module" : "IANA-BFD-TC-STD-MIB", "name" : "IANAbfdSessAuthenticationKeyTC"},
88
+ ),
89
+
90
+ "nodes" : {
91
+ "bfdMIB" : {
92
+ "nodetype" : "node",
93
+ "moduleName" : "BFD-STD-MIB",
94
+ "oid" : "1.3.6.1.2.1.222",
95
+ "status" : "current",
96
+ }, # node
97
+ "bfdNotifications" : {
98
+ "nodetype" : "node",
99
+ "moduleName" : "BFD-STD-MIB",
100
+ "oid" : "1.3.6.1.2.1.222.0",
101
+ }, # node
102
+ "bfdObjects" : {
103
+ "nodetype" : "node",
104
+ "moduleName" : "BFD-STD-MIB",
105
+ "oid" : "1.3.6.1.2.1.222.1",
106
+ }, # node
107
+ "bfdScalarObjects" : {
108
+ "nodetype" : "node",
109
+ "moduleName" : "BFD-STD-MIB",
110
+ "oid" : "1.3.6.1.2.1.222.1.1",
111
+ }, # node
112
+ "bfdAdminStatus" : {
113
+ "nodetype" : "scalar",
114
+ "moduleName" : "BFD-STD-MIB",
115
+ "oid" : "1.3.6.1.2.1.222.1.1.1",
116
+ "status" : "current",
117
+ "syntax" : {
118
+ "type" : {
119
+ "basetype" : "Enumeration",
120
+ "enabled" : {
121
+ "nodetype" : "namednumber",
122
+ "number" : "1"
123
+ },
124
+ "disabled" : {
125
+ "nodetype" : "namednumber",
126
+ "number" : "2"
127
+ },
128
+ "adminDown" : {
129
+ "nodetype" : "namednumber",
130
+ "number" : "3"
131
+ },
132
+ "down" : {
133
+ "nodetype" : "namednumber",
134
+ "number" : "4"
135
+ },
136
+ },
137
+ },
138
+ "access" : "readwrite",
139
+ "description" :
140
+ """The desired global administrative status of the
141
+ BFD system in this device.""",
142
+ }, # scalar
143
+ "bfdOperStatus" : {
144
+ "nodetype" : "scalar",
145
+ "moduleName" : "BFD-STD-MIB",
146
+ "oid" : "1.3.6.1.2.1.222.1.1.2",
147
+ "status" : "current",
148
+ "syntax" : {
149
+ "type" : {
150
+ "basetype" : "Enumeration",
151
+ "up" : {
152
+ "nodetype" : "namednumber",
153
+ "number" : "1"
154
+ },
155
+ "down" : {
156
+ "nodetype" : "namednumber",
157
+ "number" : "2"
158
+ },
159
+ "adminDown" : {
160
+ "nodetype" : "namednumber",
161
+ "number" : "3"
162
+ },
163
+ },
164
+ },
165
+ "access" : "readonly",
166
+ "description" :
167
+ """Indicates the actual operational status of the
168
+ BFD system in this device. When this value is
169
+ down(2), all entries in the bfdSessTable MUST have
170
+ their bfdSessOperStatus as down(2) as well. When
171
+ this value is adminDown(3), all entries in the
172
+ bfdSessTable MUST have their bfdSessOperStatus
173
+ as adminDown(3) as well.""",
174
+ }, # scalar
175
+ "bfdNotificationsEnable" : {
176
+ "nodetype" : "scalar",
177
+ "moduleName" : "BFD-STD-MIB",
178
+ "oid" : "1.3.6.1.2.1.222.1.1.3",
179
+ "status" : "current",
180
+ "syntax" : {
181
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
182
+ },
183
+ "access" : "readwrite",
184
+ "default" : "false",
185
+ "description" :
186
+ """If this object is set to true(1), then it enables
187
+ the emission of bfdSessUp and bfdSessDown
188
+ notifications; otherwise, these notifications are not
189
+ emitted.""",
190
+ "reference" :
191
+ """See also RFC 3413, Simple Network Management Protocol (SNMP)
192
+ Applications, for explanation that
193
+ notifications are under the ultimate control of the
194
+ MIB modules in this document.""",
195
+ }, # scalar
196
+ "bfdSessIndexNext" : {
197
+ "nodetype" : "scalar",
198
+ "moduleName" : "BFD-STD-MIB",
199
+ "oid" : "1.3.6.1.2.1.222.1.1.4",
200
+ "status" : "current",
201
+ "syntax" : {
202
+ "type" : {
203
+ "basetype" : "Unsigned32",
204
+ "parent module" : {
205
+ "name" : "DIFFSERV-MIB",
206
+ "type" : "IndexIntegerNextFree",
207
+ },
208
+ "ranges" : [
209
+ {
210
+ "min" : "0",
211
+ "max" : "4294967295"
212
+ },
213
+ ],
214
+ "range" : {
215
+ "min" : "0",
216
+ "max" : "4294967295"
217
+ },
218
+ },
219
+ },
220
+ "access" : "readonly",
221
+ "description" :
222
+ """This object contains an unused value for
223
+ bfdSessIndex that can be used when creating
224
+ entries in the table. A zero indicates that
225
+ no entries are available, but it MUST NOT be used
226
+ as a valid index. """,
227
+ }, # scalar
228
+ "bfdSessTable" : {
229
+ "nodetype" : "table",
230
+ "moduleName" : "BFD-STD-MIB",
231
+ "oid" : "1.3.6.1.2.1.222.1.2",
232
+ "status" : "current",
233
+ "description" :
234
+ """The BFD Session Table describes the BFD sessions.""",
235
+ "reference" :
236
+ """RFC 5880, Bidirectional Forwarding Detection (BFD).""",
237
+ }, # table
238
+ "bfdSessEntry" : {
239
+ "nodetype" : "row",
240
+ "moduleName" : "BFD-STD-MIB",
241
+ "oid" : "1.3.6.1.2.1.222.1.2.1",
242
+ "create" : "true",
243
+ "status" : "current",
244
+ "linkage" : [
245
+ "bfdSessIndex",
246
+ ],
247
+ "description" :
248
+ """The BFD Session Entry describes the BFD session.""",
249
+ }, # row
250
+ "bfdSessIndex" : {
251
+ "nodetype" : "column",
252
+ "moduleName" : "BFD-STD-MIB",
253
+ "oid" : "1.3.6.1.2.1.222.1.2.1.1",
254
+ "status" : "current",
255
+ "syntax" : {
256
+ "type" : { "module" :"BFD-TC-STD-MIB", "name" : "BfdSessIndexTC"},
257
+ },
258
+ "access" : "noaccess",
259
+ "description" :
260
+ """This object contains an index used to represent a
261
+ unique BFD session on this device. Managers
262
+ should obtain new values for row creation in this
263
+ table by reading bfdSessIndexNext.""",
264
+ }, # column
265
+ "bfdSessVersionNumber" : {
266
+ "nodetype" : "column",
267
+ "moduleName" : "BFD-STD-MIB",
268
+ "oid" : "1.3.6.1.2.1.222.1.2.1.2",
269
+ "status" : "current",
270
+ "syntax" : {
271
+ "type" : {
272
+ "basetype" : "Unsigned32",
273
+ "ranges" : [
274
+ {
275
+ "min" : "0",
276
+ "max" : "7"
277
+ },
278
+ ],
279
+ "range" : {
280
+ "min" : "0",
281
+ "max" : "7"
282
+ },
283
+ },
284
+ },
285
+ "access" : "readwrite",
286
+ "default" : "1",
287
+ "description" :
288
+ """The version number of the BFD protocol that this session
289
+ is running in. Write access is available for this object
290
+ to provide the ability to set the desired version for this
291
+ BFD session.""",
292
+ "reference" :
293
+ """RFC 5880, Bidirectional Forwarding Detection (BFD).""",
294
+ }, # column
295
+ "bfdSessType" : {
296
+ "nodetype" : "column",
297
+ "moduleName" : "BFD-STD-MIB",
298
+ "oid" : "1.3.6.1.2.1.222.1.2.1.3",
299
+ "status" : "current",
300
+ "syntax" : {
301
+ "type" : { "module" :"IANA-BFD-TC-STD-MIB", "name" : "IANAbfdSessTypeTC"},
302
+ },
303
+ "access" : "readwrite",
304
+ "description" :
305
+ """This object specifies the type of this BFD session.""",
306
+ }, # column
307
+ "bfdSessDiscriminator" : {
308
+ "nodetype" : "column",
309
+ "moduleName" : "BFD-STD-MIB",
310
+ "oid" : "1.3.6.1.2.1.222.1.2.1.4",
311
+ "status" : "current",
312
+ "syntax" : {
313
+ "type" : {
314
+ "basetype" : "Unsigned32",
315
+ "ranges" : [
316
+ {
317
+ "min" : "1",
318
+ "max" : "4294967295"
319
+ },
320
+ ],
321
+ "range" : {
322
+ "min" : "1",
323
+ "max" : "4294967295"
324
+ },
325
+ },
326
+ },
327
+ "access" : "readwrite",
328
+ "description" :
329
+ """This object specifies the local discriminator for this BFD
330
+ session, which is used to uniquely identify it.""",
331
+ }, # column
332
+ "bfdSessRemoteDiscr" : {
333
+ "nodetype" : "column",
334
+ "moduleName" : "BFD-STD-MIB",
335
+ "oid" : "1.3.6.1.2.1.222.1.2.1.5",
336
+ "status" : "current",
337
+ "syntax" : {
338
+ "type" : {
339
+ "basetype" : "Unsigned32",
340
+ "ranges" : [
341
+ {
342
+ "min" : "0",
343
+ "max" : "4294967295"
344
+ },
345
+ ],
346
+ "range" : {
347
+ "min" : "0",
348
+ "max" : "4294967295"
349
+ },
350
+ },
351
+ },
352
+ "access" : "readonly",
353
+ "description" :
354
+ """This object specifies the session discriminator chosen
355
+ by the remote system for this BFD session. The value may
356
+ be zero(0) if the remote discriminator is not yet known
357
+ or if the session is in the down or adminDown(1) state.""",
358
+ "reference" :
359
+ """Section 6.8.6 of RFC 5880, Bidirectional
360
+ Forwarding Detection (BFD).""",
361
+ }, # column
362
+ "bfdSessDestinationUdpPort" : {
363
+ "nodetype" : "column",
364
+ "moduleName" : "BFD-STD-MIB",
365
+ "oid" : "1.3.6.1.2.1.222.1.2.1.6",
366
+ "status" : "current",
367
+ "syntax" : {
368
+ "type" : { "module" :"BFD-TC-STD-MIB", "name" : "BfdCtrlDestPortNumberTC"},
369
+ },
370
+ "access" : "readwrite",
371
+ "default" : "0",
372
+ "description" :
373
+ """This object specifies the destination UDP port number
374
+ used for this BFD session's Control packets. The value
375
+ may be zero(0) if the session is in adminDown(1) state.""",
376
+ }, # column
377
+ "bfdSessSourceUdpPort" : {
378
+ "nodetype" : "column",
379
+ "moduleName" : "BFD-STD-MIB",
380
+ "oid" : "1.3.6.1.2.1.222.1.2.1.7",
381
+ "status" : "current",
382
+ "syntax" : {
383
+ "type" : { "module" :"BFD-TC-STD-MIB", "name" : "BfdCtrlSourcePortNumberTC"},
384
+ },
385
+ "access" : "readwrite",
386
+ "default" : "0",
387
+ "description" :
388
+ """This object specifies the source UDP port number used
389
+ for this BFD session's Control packets. The value may be
390
+ zero(0) if the session is in adminDown(1) state. Upon
391
+ creation of a new BFD session via this MIB, the value of
392
+ zero(0) specified would permit the implementation to
393
+ choose its own source port number.""",
394
+ }, # column
395
+ "bfdSessEchoSourceUdpPort" : {
396
+ "nodetype" : "column",
397
+ "moduleName" : "BFD-STD-MIB",
398
+ "oid" : "1.3.6.1.2.1.222.1.2.1.8",
399
+ "status" : "current",
400
+ "syntax" : {
401
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetPortNumber"},
402
+ },
403
+ "access" : "readwrite",
404
+ "default" : "0",
405
+ "description" :
406
+ """This object specifies the source UDP port number used for
407
+ this BFD session's Echo packets. The value may be zero(0)
408
+ if the session is not running in the Echo mode, or the
409
+ session is in adminDown(1) state. Upon creation of a new
410
+ BFD session via this MIB, the value of zero(0) would
411
+ permit the implementation to choose its own source port
412
+ number.""",
413
+ }, # column
414
+ "bfdSessAdminStatus" : {
415
+ "nodetype" : "column",
416
+ "moduleName" : "BFD-STD-MIB",
417
+ "oid" : "1.3.6.1.2.1.222.1.2.1.9",
418
+ "status" : "current",
419
+ "syntax" : {
420
+ "type" : {
421
+ "basetype" : "Enumeration",
422
+ "enabled" : {
423
+ "nodetype" : "namednumber",
424
+ "number" : "1"
425
+ },
426
+ "disabled" : {
427
+ "nodetype" : "namednumber",
428
+ "number" : "2"
429
+ },
430
+ "adminDown" : {
431
+ "nodetype" : "namednumber",
432
+ "number" : "3"
433
+ },
434
+ "down" : {
435
+ "nodetype" : "namednumber",
436
+ "number" : "4"
437
+ },
438
+ },
439
+ },
440
+ "access" : "readwrite",
441
+ "description" :
442
+ """Denotes the desired operational status of the BFD session.
443
+
444
+ A transition to enabled(1) will start the BFD state machine
445
+ for the session. The state machine will have an initial
446
+ state of down(2).
447
+
448
+ A transition to disabled(2) will stop the BFD state machine
449
+ for the session. The state machine may first transition to
450
+ adminDown(1) prior to stopping.
451
+
452
+ A transition to adminDown(3) will cause the BFD state
453
+ machine to transition to adminDown(1) and will cause the
454
+ session to remain in this state.
455
+
456
+ A transition to down(4) will cause the BFD state machine
457
+ to transition to down(2) and will cause the session to
458
+ remain in this state.
459
+
460
+ Care should be used in providing write access to this
461
+ object without adequate authentication.""",
462
+ }, # column
463
+ "bfdSessOperStatus" : {
464
+ "nodetype" : "column",
465
+ "moduleName" : "BFD-STD-MIB",
466
+ "oid" : "1.3.6.1.2.1.222.1.2.1.10",
467
+ "status" : "current",
468
+ "syntax" : {
469
+ "type" : {
470
+ "basetype" : "Enumeration",
471
+ "up" : {
472
+ "nodetype" : "namednumber",
473
+ "number" : "1"
474
+ },
475
+ "down" : {
476
+ "nodetype" : "namednumber",
477
+ "number" : "2"
478
+ },
479
+ "adminDown" : {
480
+ "nodetype" : "namednumber",
481
+ "number" : "3"
482
+ },
483
+ },
484
+ },
485
+ "access" : "readonly",
486
+ "description" :
487
+ """Denotes the actual operational status of the BFD session.
488
+ If the value of bfdOperStatus is down(2), this value MUST
489
+ eventually be down(2) as well. If the value of
490
+ bfdOperStatus is adminDown(3), this value MUST eventually
491
+ be adminDown(3) as well.""",
492
+ }, # column
493
+ "bfdSessState" : {
494
+ "nodetype" : "column",
495
+ "moduleName" : "BFD-STD-MIB",
496
+ "oid" : "1.3.6.1.2.1.222.1.2.1.11",
497
+ "status" : "current",
498
+ "syntax" : {
499
+ "type" : { "module" :"IANA-BFD-TC-STD-MIB", "name" : "IANAbfdSessStateTC"},
500
+ },
501
+ "access" : "readonly",
502
+ "description" :
503
+ """Configured BFD session state.""",
504
+ }, # column
505
+ "bfdSessRemoteHeardFlag" : {
506
+ "nodetype" : "column",
507
+ "moduleName" : "BFD-STD-MIB",
508
+ "oid" : "1.3.6.1.2.1.222.1.2.1.12",
509
+ "status" : "current",
510
+ "syntax" : {
511
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
512
+ },
513
+ "access" : "readonly",
514
+ "description" :
515
+ """This object specifies the status of BFD packet reception from
516
+ the remote system. Specifically, it is set to true(1) if
517
+ the local system is actively receiving BFD packets from the
518
+ remote system and is set to false(2) if the local system
519
+ has not received BFD packets recently (within the detection
520
+ time) or if the local system is attempting to tear down
521
+ the BFD session.""",
522
+ "reference" :
523
+ """RFC 5880, Bidirectional Forwarding Detection (BFD).""",
524
+ }, # column
525
+ "bfdSessDiag" : {
526
+ "nodetype" : "column",
527
+ "moduleName" : "BFD-STD-MIB",
528
+ "oid" : "1.3.6.1.2.1.222.1.2.1.13",
529
+ "status" : "current",
530
+ "syntax" : {
531
+ "type" : { "module" :"IANA-BFD-TC-STD-MIB", "name" : "IANAbfdDiagTC"},
532
+ },
533
+ "access" : "readonly",
534
+ "description" :
535
+ """A diagnostic code specifying the local system's reason
536
+ for the last transition of the session from up(4)
537
+ to some other state.""",
538
+ }, # column
539
+ "bfdSessOperMode" : {
540
+ "nodetype" : "column",
541
+ "moduleName" : "BFD-STD-MIB",
542
+ "oid" : "1.3.6.1.2.1.222.1.2.1.14",
543
+ "status" : "current",
544
+ "syntax" : {
545
+ "type" : { "module" :"IANA-BFD-TC-STD-MIB", "name" : "IANAbfdSessOperModeTC"},
546
+ },
547
+ "access" : "readwrite",
548
+ "description" :
549
+ """This object specifies the operational mode of this
550
+ BFD session.""",
551
+ }, # column
552
+ "bfdSessDemandModeDesiredFlag" : {
553
+ "nodetype" : "column",
554
+ "moduleName" : "BFD-STD-MIB",
555
+ "oid" : "1.3.6.1.2.1.222.1.2.1.15",
556
+ "status" : "current",
557
+ "syntax" : {
558
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
559
+ },
560
+ "access" : "readwrite",
561
+ "default" : "false",
562
+ "description" :
563
+ """This object indicates the local system's
564
+ desire to use Demand mode. Specifically, it is set
565
+ to true(1) if the local system wishes to use
566
+ Demand mode or false(2) if not.""",
567
+ }, # column
568
+ "bfdSessControlPlaneIndepFlag" : {
569
+ "nodetype" : "column",
570
+ "moduleName" : "BFD-STD-MIB",
571
+ "oid" : "1.3.6.1.2.1.222.1.2.1.16",
572
+ "status" : "current",
573
+ "syntax" : {
574
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
575
+ },
576
+ "access" : "readwrite",
577
+ "default" : "false",
578
+ "description" :
579
+ """This object indicates the local system's
580
+ ability to continue to function through a disruption of
581
+ the control plane. Specifically, it is set
582
+ to true(1) if the local system BFD implementation is
583
+ independent of the control plane. Otherwise, the
584
+ value is set to false(2).""",
585
+ }, # column
586
+ "bfdSessMultipointFlag" : {
587
+ "nodetype" : "column",
588
+ "moduleName" : "BFD-STD-MIB",
589
+ "oid" : "1.3.6.1.2.1.222.1.2.1.17",
590
+ "status" : "current",
591
+ "syntax" : {
592
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
593
+ },
594
+ "access" : "readwrite",
595
+ "default" : "false",
596
+ "description" :
597
+ """This object indicates the Multipoint (M) bit for this
598
+ session. It is set to true(1) if the Multipoint (M) bit is
599
+ set to 1. Otherwise, the value is set to false(2).""",
600
+ }, # column
601
+ "bfdSessInterface" : {
602
+ "nodetype" : "column",
603
+ "moduleName" : "BFD-STD-MIB",
604
+ "oid" : "1.3.6.1.2.1.222.1.2.1.18",
605
+ "status" : "current",
606
+ "syntax" : {
607
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndexOrZero"},
608
+ },
609
+ "access" : "readwrite",
610
+ "description" :
611
+ """This object contains an interface index used to indicate
612
+ the interface that this BFD session is running on. This
613
+ value can be zero if there is no interface associated
614
+ with this BFD session.""",
615
+ }, # column
616
+ "bfdSessSrcAddrType" : {
617
+ "nodetype" : "column",
618
+ "moduleName" : "BFD-STD-MIB",
619
+ "oid" : "1.3.6.1.2.1.222.1.2.1.19",
620
+ "status" : "current",
621
+ "syntax" : {
622
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
623
+ },
624
+ "access" : "readwrite",
625
+ "description" :
626
+ """This object specifies the IP address type of the source IP
627
+ address of this BFD session. The value of unknown(0) is
628
+ allowed only when the session is singleHop(1) and the
629
+ source IP address of this BFD session is derived from
630
+ the outgoing interface, or when the BFD session is not
631
+ associated with a specific interface. If any other
632
+ unsupported values are attempted in a set operation, the
633
+
634
+
635
+
636
+ agent MUST return an inconsistentValue error.""",
637
+ }, # column
638
+ "bfdSessSrcAddr" : {
639
+ "nodetype" : "column",
640
+ "moduleName" : "BFD-STD-MIB",
641
+ "oid" : "1.3.6.1.2.1.222.1.2.1.20",
642
+ "status" : "current",
643
+ "syntax" : {
644
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
645
+ },
646
+ "access" : "readwrite",
647
+ "description" :
648
+ """This object specifies the source IP address of this BFD
649
+ session. The format of this object is controlled by the
650
+ bfdSessSrcAddrType object.""",
651
+ }, # column
652
+ "bfdSessDstAddrType" : {
653
+ "nodetype" : "column",
654
+ "moduleName" : "BFD-STD-MIB",
655
+ "oid" : "1.3.6.1.2.1.222.1.2.1.21",
656
+ "status" : "current",
657
+ "syntax" : {
658
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
659
+ },
660
+ "access" : "readwrite",
661
+ "description" :
662
+ """This object specifies the IP address type of the neighboring
663
+ IP address that is being monitored with this BFD session.
664
+ The value of unknown(0) is allowed only when the session is
665
+ singleHop(1) and the outgoing interface is of type
666
+ point to point, or when the BFD session is not associated
667
+ with a specific interface. If any other unsupported values
668
+ are attempted in a set operation, the agent MUST return an
669
+ inconsistentValue error.""",
670
+ }, # column
671
+ "bfdSessDstAddr" : {
672
+ "nodetype" : "column",
673
+ "moduleName" : "BFD-STD-MIB",
674
+ "oid" : "1.3.6.1.2.1.222.1.2.1.22",
675
+ "status" : "current",
676
+ "syntax" : {
677
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
678
+ },
679
+ "access" : "readwrite",
680
+ "description" :
681
+ """This object specifies the neighboring IP address that is
682
+ being monitored with this BFD session. The format of this
683
+ object is controlled by the bfdSessDstAddrType object.""",
684
+ }, # column
685
+ "bfdSessGTSM" : {
686
+ "nodetype" : "column",
687
+ "moduleName" : "BFD-STD-MIB",
688
+ "oid" : "1.3.6.1.2.1.222.1.2.1.23",
689
+ "status" : "current",
690
+ "syntax" : {
691
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
692
+ },
693
+ "access" : "readwrite",
694
+ "default" : "true",
695
+ "description" :
696
+ """Setting the value of this object to false(2) will disable
697
+ GTSM protection of the BFD session. GTSM MUST be enabled
698
+ on a singleHop(1) session if no authentication is in use.""",
699
+ "reference" :
700
+ """RFC 5082, The Generalized TTL Security Mechanism (GTSM).
701
+ Section 5 of RFC 5881, Bidirectional Forwarding Detection
702
+ (BFD) for IPv4 and IPv6 (Single Hop).""",
703
+ }, # column
704
+ "bfdSessGTSMTTL" : {
705
+ "nodetype" : "column",
706
+ "moduleName" : "BFD-STD-MIB",
707
+ "oid" : "1.3.6.1.2.1.222.1.2.1.24",
708
+ "status" : "current",
709
+ "syntax" : {
710
+ "type" : {
711
+ "basetype" : "Unsigned32",
712
+ "ranges" : [
713
+ {
714
+ "min" : "0",
715
+ "max" : "255"
716
+ },
717
+ ],
718
+ "range" : {
719
+ "min" : "0",
720
+ "max" : "255"
721
+ },
722
+ },
723
+ },
724
+ "access" : "readwrite",
725
+ "default" : "255",
726
+ "description" :
727
+ """This object is valid only when bfdSessGTSM protection is
728
+ enabled on the system. This object indicates the minimum
729
+ allowed Time to Live (TTL) for received BFD Control packets.
730
+ For a singleHop(1) session, if GTSM protection is enabled,
731
+ this object SHOULD be set to the maximum TTL value allowed
732
+ for a single hop.
733
+
734
+ By default, GTSM is enabled and the TTL value is 255. For a
735
+ multihop session, updating of the maximum TTL value allowed
736
+ is likely required.""",
737
+ "reference" :
738
+ """RFC 5082, The Generalized TTL Security Mechanism (GTSM).
739
+ Section 5 of RFC 5881, Bidirectional Forwarding Detection
740
+ (BFD) for IPv4 and IPv6 (Single Hop).""",
741
+ }, # column
742
+ "bfdSessDesiredMinTxInterval" : {
743
+ "nodetype" : "column",
744
+ "moduleName" : "BFD-STD-MIB",
745
+ "oid" : "1.3.6.1.2.1.222.1.2.1.25",
746
+ "status" : "current",
747
+ "syntax" : {
748
+ "type" : { "module" :"BFD-TC-STD-MIB", "name" : "BfdIntervalTC"},
749
+ },
750
+ "access" : "readwrite",
751
+ "description" :
752
+ """This object specifies the minimum interval, in
753
+ microseconds, that the local system would like to use
754
+ when transmitting BFD Control packets. The value of
755
+ zero(0) is reserved in this case and should not be
756
+ used.""",
757
+ "reference" :
758
+ """Section 4.1 of RFC 5880, Bidirectional Forwarding
759
+ Detection (BFD).""",
760
+ }, # column
761
+ "bfdSessReqMinRxInterval" : {
762
+ "nodetype" : "column",
763
+ "moduleName" : "BFD-STD-MIB",
764
+ "oid" : "1.3.6.1.2.1.222.1.2.1.26",
765
+ "status" : "current",
766
+ "syntax" : {
767
+ "type" : { "module" :"BFD-TC-STD-MIB", "name" : "BfdIntervalTC"},
768
+ },
769
+ "access" : "readwrite",
770
+ "description" :
771
+ """This object specifies the minimum interval, in
772
+ microseconds, between received BFD Control packets the
773
+ local system is capable of supporting. The value of
774
+ zero(0) can be specified when the transmitting system
775
+ does not want the remote system to send any periodic BFD
776
+ Control packets.""",
777
+ "reference" :
778
+ """Section 4.1 of RFC 5880, Bidirectional Forwarding
779
+ Detection (BFD).""",
780
+ }, # column
781
+ "bfdSessReqMinEchoRxInterval" : {
782
+ "nodetype" : "column",
783
+ "moduleName" : "BFD-STD-MIB",
784
+ "oid" : "1.3.6.1.2.1.222.1.2.1.27",
785
+ "status" : "current",
786
+ "syntax" : {
787
+ "type" : { "module" :"BFD-TC-STD-MIB", "name" : "BfdIntervalTC"},
788
+ },
789
+ "access" : "readwrite",
790
+ "description" :
791
+ """This object specifies the minimum interval, in
792
+ microseconds, between received BFD Echo packets that this
793
+ system is capable of supporting. The value must be zero(0) if
794
+ this is a multihop BFD session.""",
795
+ }, # column
796
+ "bfdSessDetectMult" : {
797
+ "nodetype" : "column",
798
+ "moduleName" : "BFD-STD-MIB",
799
+ "oid" : "1.3.6.1.2.1.222.1.2.1.28",
800
+ "status" : "current",
801
+ "syntax" : {
802
+ "type" : { "module" :"BFD-TC-STD-MIB", "name" : "BfdMultiplierTC"},
803
+ },
804
+ "access" : "readwrite",
805
+ "description" :
806
+ """This object specifies the Detect time multiplier.""",
807
+ }, # column
808
+ "bfdSessNegotiatedInterval" : {
809
+ "nodetype" : "column",
810
+ "moduleName" : "BFD-STD-MIB",
811
+ "oid" : "1.3.6.1.2.1.222.1.2.1.29",
812
+ "status" : "current",
813
+ "syntax" : {
814
+ "type" : { "module" :"BFD-TC-STD-MIB", "name" : "BfdIntervalTC"},
815
+ },
816
+ "access" : "readonly",
817
+ "description" :
818
+ """This object specifies the negotiated interval, in
819
+ microseconds, that the local system is transmitting
820
+ BFD Control packets.""",
821
+ }, # column
822
+ "bfdSessNegotiatedEchoInterval" : {
823
+ "nodetype" : "column",
824
+ "moduleName" : "BFD-STD-MIB",
825
+ "oid" : "1.3.6.1.2.1.222.1.2.1.30",
826
+ "status" : "current",
827
+ "syntax" : {
828
+ "type" : { "module" :"BFD-TC-STD-MIB", "name" : "BfdIntervalTC"},
829
+ },
830
+ "access" : "readonly",
831
+ "description" :
832
+ """This object specifies the negotiated interval, in
833
+ microseconds, that the local system is transmitting
834
+
835
+
836
+
837
+ BFD Echo packets. The value is expected to be zero if
838
+ the sessions are not running in Echo mode.""",
839
+ }, # column
840
+ "bfdSessNegotiatedDetectMult" : {
841
+ "nodetype" : "column",
842
+ "moduleName" : "BFD-STD-MIB",
843
+ "oid" : "1.3.6.1.2.1.222.1.2.1.31",
844
+ "status" : "current",
845
+ "syntax" : {
846
+ "type" : { "module" :"BFD-TC-STD-MIB", "name" : "BfdMultiplierTC"},
847
+ },
848
+ "access" : "readonly",
849
+ "description" :
850
+ """This object specifies the Detect time multiplier.""",
851
+ }, # column
852
+ "bfdSessAuthPresFlag" : {
853
+ "nodetype" : "column",
854
+ "moduleName" : "BFD-STD-MIB",
855
+ "oid" : "1.3.6.1.2.1.222.1.2.1.32",
856
+ "status" : "current",
857
+ "syntax" : {
858
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
859
+ },
860
+ "access" : "readwrite",
861
+ "default" : "false",
862
+ "description" :
863
+ """This object indicates the local system's
864
+ desire to use authentication. Specifically, it is set
865
+ to true(1) if the local system wishes the session
866
+ to be authenticated or false(2) if not.""",
867
+ "reference" :
868
+ """Sections 4.2 - 4.4 of RFC 5880, Bidirectional Forwarding
869
+ Detection (BFD).""",
870
+ }, # column
871
+ "bfdSessAuthenticationType" : {
872
+ "nodetype" : "column",
873
+ "moduleName" : "BFD-STD-MIB",
874
+ "oid" : "1.3.6.1.2.1.222.1.2.1.33",
875
+ "status" : "current",
876
+ "syntax" : {
877
+ "type" : { "module" :"IANA-BFD-TC-STD-MIB", "name" : "IANAbfdSessAuthenticationTypeTC"},
878
+ },
879
+ "access" : "readwrite",
880
+ "default" : "noAuthentication",
881
+ "description" :
882
+ """The authentication type used for this BFD session.
883
+ This field is valid only when the Authentication
884
+ Present bit is set. MAX-ACCESS to this object as well as
885
+ other authentication-related objects are set to
886
+ read-create in order to support management of a single
887
+ key ID at a time; key rotation is not handled. Key update
888
+ in practice must be done by atomic update using a set
889
+ containing all affected objects in the same varBindList
890
+ or otherwise risk the session dropping.""",
891
+ "reference" :
892
+ """Sections 4.2 - 4.4 of RFC 5880, Bidirectional Forwarding
893
+ Detection (BFD).""",
894
+ }, # column
895
+ "bfdSessAuthenticationKeyID" : {
896
+ "nodetype" : "column",
897
+ "moduleName" : "BFD-STD-MIB",
898
+ "oid" : "1.3.6.1.2.1.222.1.2.1.34",
899
+ "status" : "current",
900
+ "syntax" : {
901
+ "type" : {
902
+ "basetype" : "Integer32",
903
+ "ranges" : [
904
+ {
905
+ "min" : "-1",
906
+ "max" : "255"
907
+ },
908
+ ],
909
+ "range" : {
910
+ "min" : "-1",
911
+ "max" : "255"
912
+ },
913
+ },
914
+ },
915
+ "access" : "readwrite",
916
+ "default" : "-1",
917
+ "description" :
918
+ """The authentication key ID in use for this session. This
919
+ object permits multiple keys to be active simultaneously.
920
+ The value -1 indicates that no authentication key ID will
921
+ be present in the optional BFD Authentication Section.""",
922
+ "reference" :
923
+ """Sections 4.2 - 4.4 of RFC 5880, Bidirectional Forwarding
924
+ Detection (BFD).""",
925
+ }, # column
926
+ "bfdSessAuthenticationKey" : {
927
+ "nodetype" : "column",
928
+ "moduleName" : "BFD-STD-MIB",
929
+ "oid" : "1.3.6.1.2.1.222.1.2.1.35",
930
+ "status" : "current",
931
+ "syntax" : {
932
+ "type" : { "module" :"IANA-BFD-TC-STD-MIB", "name" : "IANAbfdSessAuthenticationKeyTC"},
933
+ },
934
+ "access" : "readwrite",
935
+ "description" :
936
+ """The authentication key. When the
937
+ bfdSessAuthenticationType is simplePassword(1), the value
938
+ of this object is the password present in the BFD packets.
939
+
940
+ When the bfdSessAuthenticationType is one of the keyed
941
+ authentication types, this value is used in the
942
+ computation of the key present in the BFD authentication
943
+ packet.""",
944
+ "reference" :
945
+ """Sections 4.2 - 4.4 of RFC 5880, Bidirectional Forwarding
946
+ Detection (BFD).""",
947
+ }, # column
948
+ "bfdSessStorageType" : {
949
+ "nodetype" : "column",
950
+ "moduleName" : "BFD-STD-MIB",
951
+ "oid" : "1.3.6.1.2.1.222.1.2.1.36",
952
+ "status" : "current",
953
+ "syntax" : {
954
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
955
+ },
956
+ "access" : "readwrite",
957
+ "description" :
958
+ """This variable indicates the storage type for this
959
+ object. Conceptual rows having the value
960
+ 'permanent' need not allow write-access to any
961
+ columnar objects in the row.""",
962
+ }, # column
963
+ "bfdSessRowStatus" : {
964
+ "nodetype" : "column",
965
+ "moduleName" : "BFD-STD-MIB",
966
+ "oid" : "1.3.6.1.2.1.222.1.2.1.37",
967
+ "status" : "current",
968
+ "syntax" : {
969
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
970
+ },
971
+ "access" : "readwrite",
972
+ "description" :
973
+ """This variable is used to create, modify, and/or
974
+ delete a row in this table. When a row in this
975
+ table has a row in the active(1) state, no
976
+ objects in this row can be modified except the
977
+ bfdSessRowStatus and bfdSessStorageType.""",
978
+ }, # column
979
+ "bfdSessPerfTable" : {
980
+ "nodetype" : "table",
981
+ "moduleName" : "BFD-STD-MIB",
982
+ "oid" : "1.3.6.1.2.1.222.1.3",
983
+ "status" : "current",
984
+ "description" :
985
+ """This table specifies BFD session performance counters.""",
986
+ }, # table
987
+ "bfdSessPerfEntry" : {
988
+ "nodetype" : "row",
989
+ "moduleName" : "BFD-STD-MIB",
990
+ "oid" : "1.3.6.1.2.1.222.1.3.1",
991
+ "status" : "current",
992
+ "linkage" : [
993
+ { "BFD-STD-MIB" : {
994
+ "indexkind" : "augments",
995
+ "relatedNode" : "bfdSessEntry",
996
+ }},
997
+ ],
998
+ "description" :
999
+ """An entry in this table is created by a BFD-enabled node
1000
+ for every BFD session. bfdSessPerfDiscTime is used to
1001
+ indicate potential discontinuity for all counter objects
1002
+ in this table.""",
1003
+ }, # row
1004
+ "bfdSessPerfCtrlPktIn" : {
1005
+ "nodetype" : "column",
1006
+ "moduleName" : "BFD-STD-MIB",
1007
+ "oid" : "1.3.6.1.2.1.222.1.3.1.1",
1008
+ "status" : "current",
1009
+ "syntax" : {
1010
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1011
+ },
1012
+ "access" : "readonly",
1013
+ "description" :
1014
+ """The total number of BFD control messages received for this
1015
+ BFD session.
1016
+
1017
+ It MUST be equal to the least significant 32 bits of
1018
+ bfdSessPerfCtrlPktInHC if supported, and MUST do so
1019
+ with the rules spelled out in RFC 2863.""",
1020
+ }, # column
1021
+ "bfdSessPerfCtrlPktOut" : {
1022
+ "nodetype" : "column",
1023
+ "moduleName" : "BFD-STD-MIB",
1024
+ "oid" : "1.3.6.1.2.1.222.1.3.1.2",
1025
+ "status" : "current",
1026
+ "syntax" : {
1027
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1028
+ },
1029
+ "access" : "readonly",
1030
+ "description" :
1031
+ """The total number of BFD control messages sent for this BFD
1032
+ session.
1033
+
1034
+ It MUST be equal to the least significant 32 bits of
1035
+ bfdSessPerfCtrlPktOutHC if supported, and MUST do so
1036
+ with the rules spelled out in RFC 2863.""",
1037
+ }, # column
1038
+ "bfdSessPerfCtrlPktDrop" : {
1039
+ "nodetype" : "column",
1040
+ "moduleName" : "BFD-STD-MIB",
1041
+ "oid" : "1.3.6.1.2.1.222.1.3.1.3",
1042
+ "status" : "current",
1043
+ "syntax" : {
1044
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1045
+ },
1046
+ "access" : "readonly",
1047
+ "description" :
1048
+ """The total number of BFD control messages received for this
1049
+ session yet dropped for being invalid.
1050
+
1051
+ It MUST be equal to the least significant 32 bits of
1052
+ bfdSessPerfCtrlPktDropHC if supported, and MUST do so
1053
+ with the rules spelled out in RFC 2863.""",
1054
+ }, # column
1055
+ "bfdSessPerfCtrlPktDropLastTime" : {
1056
+ "nodetype" : "column",
1057
+ "moduleName" : "BFD-STD-MIB",
1058
+ "oid" : "1.3.6.1.2.1.222.1.3.1.4",
1059
+ "status" : "current",
1060
+ "syntax" : {
1061
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1062
+ },
1063
+ "access" : "readonly",
1064
+ "description" :
1065
+ """The value of sysUpTime on the most recent occasion at
1066
+ which received the BFD control message for this session was
1067
+ dropped. If no such up event exists, this object contains
1068
+ a zero value.""",
1069
+ }, # column
1070
+ "bfdSessPerfEchoPktIn" : {
1071
+ "nodetype" : "column",
1072
+ "moduleName" : "BFD-STD-MIB",
1073
+ "oid" : "1.3.6.1.2.1.222.1.3.1.5",
1074
+ "status" : "current",
1075
+ "syntax" : {
1076
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1077
+ },
1078
+ "access" : "readonly",
1079
+ "description" :
1080
+ """The total number of BFD Echo messages received for this
1081
+ BFD session.
1082
+
1083
+ It MUST be equal to the least significant 32 bits of
1084
+ bfdSessPerfEchoPktInHC if supported, and MUST do so
1085
+ with the rules spelled out in RFC 2863.""",
1086
+ }, # column
1087
+ "bfdSessPerfEchoPktOut" : {
1088
+ "nodetype" : "column",
1089
+ "moduleName" : "BFD-STD-MIB",
1090
+ "oid" : "1.3.6.1.2.1.222.1.3.1.6",
1091
+ "status" : "current",
1092
+ "syntax" : {
1093
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1094
+ },
1095
+ "access" : "readonly",
1096
+ "description" :
1097
+ """The total number of BFD Echo messages sent for this BFD
1098
+ session.
1099
+
1100
+ It MUST be equal to the least significant 32 bits of
1101
+ bfdSessPerfEchoPktOutHC if supported, and MUST do so
1102
+ with the rules spelled out in RFC 2863.""",
1103
+ }, # column
1104
+ "bfdSessPerfEchoPktDrop" : {
1105
+ "nodetype" : "column",
1106
+ "moduleName" : "BFD-STD-MIB",
1107
+ "oid" : "1.3.6.1.2.1.222.1.3.1.7",
1108
+ "status" : "current",
1109
+ "syntax" : {
1110
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1111
+ },
1112
+ "access" : "readonly",
1113
+ "description" :
1114
+ """The total number of BFD Echo messages received for this
1115
+ session yet dropped for being invalid.
1116
+
1117
+ It MUST be equal to the least significant 32 bits of
1118
+ bfdSessPerfEchoPktDropHC if supported, and MUST do so
1119
+ with the rules spelled out in RFC 2863.""",
1120
+ }, # column
1121
+ "bfdSessPerfEchoPktDropLastTime" : {
1122
+ "nodetype" : "column",
1123
+ "moduleName" : "BFD-STD-MIB",
1124
+ "oid" : "1.3.6.1.2.1.222.1.3.1.8",
1125
+ "status" : "current",
1126
+ "syntax" : {
1127
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1128
+ },
1129
+ "access" : "readonly",
1130
+ "description" :
1131
+ """The value of sysUpTime on the most recent occasion at
1132
+ which received the BFD Echo message for this session was
1133
+ dropped. If no such up event has been issued, this
1134
+ object contains a zero value.""",
1135
+ }, # column
1136
+ "bfdSessUpTime" : {
1137
+ "nodetype" : "column",
1138
+ "moduleName" : "BFD-STD-MIB",
1139
+ "oid" : "1.3.6.1.2.1.222.1.3.1.9",
1140
+ "status" : "current",
1141
+ "syntax" : {
1142
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1143
+ },
1144
+ "access" : "readonly",
1145
+ "description" :
1146
+ """The value of sysUpTime on the most recent occasion at which
1147
+ the session came up. If no such event has been issued,
1148
+ this object contains a zero value.""",
1149
+ }, # column
1150
+ "bfdSessPerfLastSessDownTime" : {
1151
+ "nodetype" : "column",
1152
+ "moduleName" : "BFD-STD-MIB",
1153
+ "oid" : "1.3.6.1.2.1.222.1.3.1.10",
1154
+ "status" : "current",
1155
+ "syntax" : {
1156
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1157
+ },
1158
+ "access" : "readonly",
1159
+ "description" :
1160
+ """The value of sysUpTime on the most recent occasion at
1161
+ which the last time communication was lost with the
1162
+ neighbor. If no down event has been issued, this object
1163
+ contains a zero value.""",
1164
+ }, # column
1165
+ "bfdSessPerfLastCommLostDiag" : {
1166
+ "nodetype" : "column",
1167
+ "moduleName" : "BFD-STD-MIB",
1168
+ "oid" : "1.3.6.1.2.1.222.1.3.1.11",
1169
+ "status" : "current",
1170
+ "syntax" : {
1171
+ "type" : { "module" :"IANA-BFD-TC-STD-MIB", "name" : "IANAbfdDiagTC"},
1172
+ },
1173
+ "access" : "readonly",
1174
+ "description" :
1175
+ """The BFD diag code for the last time communication was lost
1176
+ with the neighbor. If such an event has not been issued,
1177
+ this object contains a zero value.""",
1178
+ }, # column
1179
+ "bfdSessPerfSessUpCount" : {
1180
+ "nodetype" : "column",
1181
+ "moduleName" : "BFD-STD-MIB",
1182
+ "oid" : "1.3.6.1.2.1.222.1.3.1.12",
1183
+ "status" : "current",
1184
+ "syntax" : {
1185
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1186
+ },
1187
+ "access" : "readonly",
1188
+ "description" :
1189
+ """The number of times this session has gone into the Up
1190
+ state since the system last rebooted.""",
1191
+ }, # column
1192
+ "bfdSessPerfDiscTime" : {
1193
+ "nodetype" : "column",
1194
+ "moduleName" : "BFD-STD-MIB",
1195
+ "oid" : "1.3.6.1.2.1.222.1.3.1.13",
1196
+ "status" : "current",
1197
+ "syntax" : {
1198
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1199
+ },
1200
+ "access" : "readonly",
1201
+ "description" :
1202
+ """The value of sysUpTime on the most recent occasion at
1203
+ which any one or more of the session counters suffered
1204
+ a discontinuity.
1205
+
1206
+ The relevant counters are the specific instances associated
1207
+ with this BFD session of any Counter32 object contained in
1208
+ the BfdSessPerfTable. If no such discontinuities have
1209
+ occurred since the last reinitialization of the local
1210
+ management subsystem, then this object contains a zero
1211
+ value.""",
1212
+ }, # column
1213
+ "bfdSessPerfCtrlPktInHC" : {
1214
+ "nodetype" : "column",
1215
+ "moduleName" : "BFD-STD-MIB",
1216
+ "oid" : "1.3.6.1.2.1.222.1.3.1.14",
1217
+ "status" : "current",
1218
+ "syntax" : {
1219
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1220
+ },
1221
+ "access" : "readonly",
1222
+ "description" :
1223
+ """This value represents the total number of BFD control
1224
+ messages received for this BFD session.
1225
+
1226
+ The least significant 32 bits MUST be equal to
1227
+ bfdSessPerfCtrlPktIn, and MUST do so with
1228
+ the rules spelled out in RFC 2863.""",
1229
+ }, # column
1230
+ "bfdSessPerfCtrlPktOutHC" : {
1231
+ "nodetype" : "column",
1232
+ "moduleName" : "BFD-STD-MIB",
1233
+ "oid" : "1.3.6.1.2.1.222.1.3.1.15",
1234
+ "status" : "current",
1235
+ "syntax" : {
1236
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1237
+ },
1238
+ "access" : "readonly",
1239
+ "description" :
1240
+ """This value represents the total number of BFD control
1241
+ messages transmitted for this BFD session.
1242
+
1243
+ The least significant 32 bits MUST be equal to
1244
+ bfdSessPerfCtrlPktOut, and MUST do so with
1245
+ the rules spelled out in RFC 2863.""",
1246
+ }, # column
1247
+ "bfdSessPerfCtrlPktDropHC" : {
1248
+ "nodetype" : "column",
1249
+ "moduleName" : "BFD-STD-MIB",
1250
+ "oid" : "1.3.6.1.2.1.222.1.3.1.16",
1251
+ "status" : "current",
1252
+ "syntax" : {
1253
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1254
+ },
1255
+ "access" : "readonly",
1256
+ "description" :
1257
+ """This value represents the total number of BFD control
1258
+ messages received for this BFD session yet dropped for
1259
+ being invalid.
1260
+
1261
+ The least significant 32 bits MUST be equal to
1262
+ bfdSessPerfCtrlPktDrop, and MUST do so with
1263
+ the rules spelled out in RFC 2863.""",
1264
+ }, # column
1265
+ "bfdSessPerfEchoPktInHC" : {
1266
+ "nodetype" : "column",
1267
+ "moduleName" : "BFD-STD-MIB",
1268
+ "oid" : "1.3.6.1.2.1.222.1.3.1.17",
1269
+ "status" : "current",
1270
+ "syntax" : {
1271
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1272
+ },
1273
+ "access" : "readonly",
1274
+ "description" :
1275
+ """This value represents the total number of BFD Echo
1276
+ messages received for this BFD session.
1277
+
1278
+ The least significant 32 bits MUST be equal to
1279
+ bfdSessPerfEchoPktIn, and MUST do so with
1280
+ the rules spelled out in RFC 2863.""",
1281
+ }, # column
1282
+ "bfdSessPerfEchoPktOutHC" : {
1283
+ "nodetype" : "column",
1284
+ "moduleName" : "BFD-STD-MIB",
1285
+ "oid" : "1.3.6.1.2.1.222.1.3.1.18",
1286
+ "status" : "current",
1287
+ "syntax" : {
1288
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1289
+ },
1290
+ "access" : "readonly",
1291
+ "description" :
1292
+ """This value represents the total number of BFD Echo
1293
+ messages transmitted for this BFD session.
1294
+
1295
+ The least significant 32 bits MUST be equal to
1296
+ bfdSessPerfEchoPktOut, and MUST do so with
1297
+ the rules spelled out in RFC 2863.""",
1298
+ }, # column
1299
+ "bfdSessPerfEchoPktDropHC" : {
1300
+ "nodetype" : "column",
1301
+ "moduleName" : "BFD-STD-MIB",
1302
+ "oid" : "1.3.6.1.2.1.222.1.3.1.19",
1303
+ "status" : "current",
1304
+ "syntax" : {
1305
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1306
+ },
1307
+ "access" : "readonly",
1308
+ "description" :
1309
+ """This value represents the total number of BFD Echo
1310
+ messages received for this BFD session yet dropped
1311
+ for being invalid.
1312
+
1313
+
1314
+
1315
+ The least significant 32 bits MUST be equal to
1316
+ bfdSessPerfEchoPktDrop, and MUST do so with
1317
+ the rules spelled out in RFC 2863.""",
1318
+ }, # column
1319
+ "bfdSessDiscMapTable" : {
1320
+ "nodetype" : "table",
1321
+ "moduleName" : "BFD-STD-MIB",
1322
+ "oid" : "1.3.6.1.2.1.222.1.4",
1323
+ "status" : "current",
1324
+ "description" :
1325
+ """The BFD Session Discriminator Mapping Table maps a
1326
+ local discriminator value to the associated BFD session's
1327
+ bfdSessIndex found in the bfdSessionTable.""",
1328
+ }, # table
1329
+ "bfdSessDiscMapEntry" : {
1330
+ "nodetype" : "row",
1331
+ "moduleName" : "BFD-STD-MIB",
1332
+ "oid" : "1.3.6.1.2.1.222.1.4.1",
1333
+ "status" : "current",
1334
+ "linkage" : [
1335
+ "bfdSessDiscriminator",
1336
+ ],
1337
+ "description" :
1338
+ """The BFD Session Discriminator Mapping Entry
1339
+ specifies a mapping between a local discriminator
1340
+ and a BFD session.""",
1341
+ }, # row
1342
+ "bfdSessDiscMapIndex" : {
1343
+ "nodetype" : "column",
1344
+ "moduleName" : "BFD-STD-MIB",
1345
+ "oid" : "1.3.6.1.2.1.222.1.4.1.1",
1346
+ "status" : "current",
1347
+ "syntax" : {
1348
+ "type" : { "module" :"BFD-TC-STD-MIB", "name" : "BfdSessIndexTC"},
1349
+ },
1350
+ "access" : "readonly",
1351
+ "description" :
1352
+ """This object specifies a mapping between a
1353
+ local discriminator and a BFD session in
1354
+ the BfdSessTable.""",
1355
+ }, # column
1356
+ "bfdSessIpMapTable" : {
1357
+ "nodetype" : "table",
1358
+ "moduleName" : "BFD-STD-MIB",
1359
+ "oid" : "1.3.6.1.2.1.222.1.5",
1360
+ "status" : "current",
1361
+ "description" :
1362
+ """The BFD Session IP Mapping Table maps given
1363
+ bfdSessInterface, bfdSessSrcAddrType, bfdSessSrcAddr,
1364
+ bfdSessDstAddrType, and bfdSessDstAddr
1365
+ to an associated BFD session found in the
1366
+ bfdSessionTable.""",
1367
+ }, # table
1368
+ "bfdSessIpMapEntry" : {
1369
+ "nodetype" : "row",
1370
+ "moduleName" : "BFD-STD-MIB",
1371
+ "oid" : "1.3.6.1.2.1.222.1.5.1",
1372
+ "status" : "current",
1373
+ "linkage" : [
1374
+ "bfdSessInterface",
1375
+ "bfdSessSrcAddrType",
1376
+ "bfdSessSrcAddr",
1377
+ "bfdSessDstAddrType",
1378
+ "bfdSessDstAddr",
1379
+ ],
1380
+ "description" :
1381
+ """The BFD Session IP Map Entry contains a mapping
1382
+ from the IP information for a session to the session
1383
+ in the bfdSessionTable.""",
1384
+ }, # row
1385
+ "bfdSessIpMapIndex" : {
1386
+ "nodetype" : "column",
1387
+ "moduleName" : "BFD-STD-MIB",
1388
+ "oid" : "1.3.6.1.2.1.222.1.5.1.1",
1389
+ "status" : "current",
1390
+ "syntax" : {
1391
+ "type" : { "module" :"BFD-TC-STD-MIB", "name" : "BfdSessIndexTC"},
1392
+ },
1393
+ "access" : "readonly",
1394
+ "description" :
1395
+ """This object specifies the BfdSessIndexTC referred
1396
+ to by the indexes of this row. In essence, a mapping is
1397
+ provided between these indexes and the BfdSessTable.""",
1398
+ }, # column
1399
+ "bfdConformance" : {
1400
+ "nodetype" : "node",
1401
+ "moduleName" : "BFD-STD-MIB",
1402
+ "oid" : "1.3.6.1.2.1.222.2",
1403
+ }, # node
1404
+ "bfdGroups" : {
1405
+ "nodetype" : "node",
1406
+ "moduleName" : "BFD-STD-MIB",
1407
+ "oid" : "1.3.6.1.2.1.222.2.1",
1408
+ }, # node
1409
+ "bfdCompliances" : {
1410
+ "nodetype" : "node",
1411
+ "moduleName" : "BFD-STD-MIB",
1412
+ "oid" : "1.3.6.1.2.1.222.2.2",
1413
+ }, # node
1414
+ }, # nodes
1415
+
1416
+ "notifications" : {
1417
+ "bfdSessUp" : {
1418
+ "nodetype" : "notification",
1419
+ "moduleName" : "BFD-STD-MIB",
1420
+ "oid" : "1.3.6.1.2.1.222.0.1",
1421
+ "status" : "current",
1422
+ "objects" : {
1423
+ "bfdSessDiag" : {
1424
+ "nodetype" : "object",
1425
+ "module" : "BFD-STD-MIB"
1426
+ },
1427
+ "bfdSessDiag" : {
1428
+ "nodetype" : "object",
1429
+ "module" : "BFD-STD-MIB"
1430
+ },
1431
+ },
1432
+ "description" :
1433
+ """This notification is generated when the
1434
+ bfdSessState object for one or more contiguous
1435
+ entries in bfdSessTable are about to enter the up(4)
1436
+ state from some other state. The included values of
1437
+ bfdSessDiag MUST both be set equal to this
1438
+ new state (i.e., up(4)). The two instances of
1439
+ bfdSessDiag in this notification indicate the range
1440
+ of indexes that are affected. Note that all the indexes
1441
+ of the two ends of the range can be derived from the
1442
+ instance identifiers of these two objects. For the
1443
+ cases where a contiguous range of sessions
1444
+ have transitioned into the up(4) state at roughly
1445
+ the same time, the device SHOULD issue a single
1446
+ notification for each range of contiguous indexes in
1447
+ an effort to minimize the emission of a large number
1448
+ of notifications. If a notification has to be
1449
+ issued for just a single bfdSessEntry, then
1450
+ the instance identifier (and values) of the two
1451
+ bfdSessDiag objects MUST be identical.""",
1452
+ }, # notification
1453
+ "bfdSessDown" : {
1454
+ "nodetype" : "notification",
1455
+ "moduleName" : "BFD-STD-MIB",
1456
+ "oid" : "1.3.6.1.2.1.222.0.2",
1457
+ "status" : "current",
1458
+ "objects" : {
1459
+ "bfdSessDiag" : {
1460
+ "nodetype" : "object",
1461
+ "module" : "BFD-STD-MIB"
1462
+ },
1463
+ "bfdSessDiag" : {
1464
+ "nodetype" : "object",
1465
+ "module" : "BFD-STD-MIB"
1466
+ },
1467
+ },
1468
+ "description" :
1469
+ """This notification is generated when the
1470
+ bfdSessState object for one or more contiguous
1471
+ entries in bfdSessTable are about to enter the down(2)
1472
+ or adminDown(1) states from some other state. The included
1473
+ values of bfdSessDiag MUST both be set equal to this new
1474
+ state (i.e., down(2) or adminDown(1)). The two instances
1475
+ of bfdSessDiag in this notification indicate the range
1476
+ of indexes that are affected. Note that all the indexes
1477
+ of the two ends of the range can be derived from the
1478
+ instance identifiers of these two objects. For
1479
+ cases where a contiguous range of sessions
1480
+ have transitioned into the down(2) or adminDown(1) states
1481
+ at roughly the same time, the device SHOULD issue a single
1482
+ notification for each range of contiguous indexes in
1483
+ an effort to minimize the emission of a large number
1484
+ of notifications. If a notification has to be
1485
+ issued for just a single bfdSessEntry, then
1486
+ the instance identifier (and values) of the two
1487
+ bfdSessDiag objects MUST be identical.""",
1488
+ }, # notification
1489
+ }, # notifications
1490
+
1491
+ "groups" : {
1492
+ "bfdSessionGroup" : {
1493
+ "nodetype" : "group",
1494
+ "moduleName" : "BFD-STD-MIB",
1495
+ "oid" : "1.3.6.1.2.1.222.2.1.1",
1496
+ "status" : "current",
1497
+ "members" : {
1498
+ "bfdAdminStatus" : {
1499
+ "nodetype" : "member",
1500
+ "module" : "BFD-STD-MIB"
1501
+ },
1502
+ "bfdOperStatus" : {
1503
+ "nodetype" : "member",
1504
+ "module" : "BFD-STD-MIB"
1505
+ },
1506
+ "bfdNotificationsEnable" : {
1507
+ "nodetype" : "member",
1508
+ "module" : "BFD-STD-MIB"
1509
+ },
1510
+ "bfdSessVersionNumber" : {
1511
+ "nodetype" : "member",
1512
+ "module" : "BFD-STD-MIB"
1513
+ },
1514
+ "bfdSessType" : {
1515
+ "nodetype" : "member",
1516
+ "module" : "BFD-STD-MIB"
1517
+ },
1518
+ "bfdSessIndexNext" : {
1519
+ "nodetype" : "member",
1520
+ "module" : "BFD-STD-MIB"
1521
+ },
1522
+ "bfdSessDiscriminator" : {
1523
+ "nodetype" : "member",
1524
+ "module" : "BFD-STD-MIB"
1525
+ },
1526
+ "bfdSessDestinationUdpPort" : {
1527
+ "nodetype" : "member",
1528
+ "module" : "BFD-STD-MIB"
1529
+ },
1530
+ "bfdSessSourceUdpPort" : {
1531
+ "nodetype" : "member",
1532
+ "module" : "BFD-STD-MIB"
1533
+ },
1534
+ "bfdSessEchoSourceUdpPort" : {
1535
+ "nodetype" : "member",
1536
+ "module" : "BFD-STD-MIB"
1537
+ },
1538
+ "bfdSessAdminStatus" : {
1539
+ "nodetype" : "member",
1540
+ "module" : "BFD-STD-MIB"
1541
+ },
1542
+ "bfdSessOperStatus" : {
1543
+ "nodetype" : "member",
1544
+ "module" : "BFD-STD-MIB"
1545
+ },
1546
+ "bfdSessOperMode" : {
1547
+ "nodetype" : "member",
1548
+ "module" : "BFD-STD-MIB"
1549
+ },
1550
+ "bfdSessDemandModeDesiredFlag" : {
1551
+ "nodetype" : "member",
1552
+ "module" : "BFD-STD-MIB"
1553
+ },
1554
+ "bfdSessControlPlaneIndepFlag" : {
1555
+ "nodetype" : "member",
1556
+ "module" : "BFD-STD-MIB"
1557
+ },
1558
+ "bfdSessMultipointFlag" : {
1559
+ "nodetype" : "member",
1560
+ "module" : "BFD-STD-MIB"
1561
+ },
1562
+ "bfdSessInterface" : {
1563
+ "nodetype" : "member",
1564
+ "module" : "BFD-STD-MIB"
1565
+ },
1566
+ "bfdSessSrcAddrType" : {
1567
+ "nodetype" : "member",
1568
+ "module" : "BFD-STD-MIB"
1569
+ },
1570
+ "bfdSessSrcAddr" : {
1571
+ "nodetype" : "member",
1572
+ "module" : "BFD-STD-MIB"
1573
+ },
1574
+ "bfdSessDstAddrType" : {
1575
+ "nodetype" : "member",
1576
+ "module" : "BFD-STD-MIB"
1577
+ },
1578
+ "bfdSessDstAddr" : {
1579
+ "nodetype" : "member",
1580
+ "module" : "BFD-STD-MIB"
1581
+ },
1582
+ "bfdSessGTSM" : {
1583
+ "nodetype" : "member",
1584
+ "module" : "BFD-STD-MIB"
1585
+ },
1586
+ "bfdSessGTSMTTL" : {
1587
+ "nodetype" : "member",
1588
+ "module" : "BFD-STD-MIB"
1589
+ },
1590
+ "bfdSessDesiredMinTxInterval" : {
1591
+ "nodetype" : "member",
1592
+ "module" : "BFD-STD-MIB"
1593
+ },
1594
+ "bfdSessReqMinRxInterval" : {
1595
+ "nodetype" : "member",
1596
+ "module" : "BFD-STD-MIB"
1597
+ },
1598
+ "bfdSessReqMinEchoRxInterval" : {
1599
+ "nodetype" : "member",
1600
+ "module" : "BFD-STD-MIB"
1601
+ },
1602
+ "bfdSessDetectMult" : {
1603
+ "nodetype" : "member",
1604
+ "module" : "BFD-STD-MIB"
1605
+ },
1606
+ "bfdSessAuthPresFlag" : {
1607
+ "nodetype" : "member",
1608
+ "module" : "BFD-STD-MIB"
1609
+ },
1610
+ "bfdSessAuthenticationType" : {
1611
+ "nodetype" : "member",
1612
+ "module" : "BFD-STD-MIB"
1613
+ },
1614
+ "bfdSessAuthenticationKeyID" : {
1615
+ "nodetype" : "member",
1616
+ "module" : "BFD-STD-MIB"
1617
+ },
1618
+ "bfdSessAuthenticationKey" : {
1619
+ "nodetype" : "member",
1620
+ "module" : "BFD-STD-MIB"
1621
+ },
1622
+ "bfdSessStorageType" : {
1623
+ "nodetype" : "member",
1624
+ "module" : "BFD-STD-MIB"
1625
+ },
1626
+ "bfdSessRowStatus" : {
1627
+ "nodetype" : "member",
1628
+ "module" : "BFD-STD-MIB"
1629
+ },
1630
+ }, # members
1631
+ "description" :
1632
+ """Collection of objects needed for BFD sessions.""",
1633
+ }, # group
1634
+ "bfdSessionReadOnlyGroup" : {
1635
+ "nodetype" : "group",
1636
+ "moduleName" : "BFD-STD-MIB",
1637
+ "oid" : "1.3.6.1.2.1.222.2.1.2",
1638
+ "status" : "current",
1639
+ "members" : {
1640
+ "bfdSessRemoteDiscr" : {
1641
+ "nodetype" : "member",
1642
+ "module" : "BFD-STD-MIB"
1643
+ },
1644
+ "bfdSessState" : {
1645
+ "nodetype" : "member",
1646
+ "module" : "BFD-STD-MIB"
1647
+ },
1648
+ "bfdSessRemoteHeardFlag" : {
1649
+ "nodetype" : "member",
1650
+ "module" : "BFD-STD-MIB"
1651
+ },
1652
+ "bfdSessDiag" : {
1653
+ "nodetype" : "member",
1654
+ "module" : "BFD-STD-MIB"
1655
+ },
1656
+ "bfdSessNegotiatedInterval" : {
1657
+ "nodetype" : "member",
1658
+ "module" : "BFD-STD-MIB"
1659
+ },
1660
+ "bfdSessNegotiatedEchoInterval" : {
1661
+ "nodetype" : "member",
1662
+ "module" : "BFD-STD-MIB"
1663
+ },
1664
+ "bfdSessNegotiatedDetectMult" : {
1665
+ "nodetype" : "member",
1666
+ "module" : "BFD-STD-MIB"
1667
+ },
1668
+ "bfdSessDiscMapIndex" : {
1669
+ "nodetype" : "member",
1670
+ "module" : "BFD-STD-MIB"
1671
+ },
1672
+ "bfdSessIpMapIndex" : {
1673
+ "nodetype" : "member",
1674
+ "module" : "BFD-STD-MIB"
1675
+ },
1676
+ }, # members
1677
+ "description" :
1678
+ """Collection of read-only objects needed for BFD sessions.""",
1679
+ }, # group
1680
+ "bfdSessionPerfGroup" : {
1681
+ "nodetype" : "group",
1682
+ "moduleName" : "BFD-STD-MIB",
1683
+ "oid" : "1.3.6.1.2.1.222.2.1.3",
1684
+ "status" : "current",
1685
+ "members" : {
1686
+ "bfdSessPerfCtrlPktIn" : {
1687
+ "nodetype" : "member",
1688
+ "module" : "BFD-STD-MIB"
1689
+ },
1690
+ "bfdSessPerfCtrlPktOut" : {
1691
+ "nodetype" : "member",
1692
+ "module" : "BFD-STD-MIB"
1693
+ },
1694
+ "bfdSessPerfCtrlPktDrop" : {
1695
+ "nodetype" : "member",
1696
+ "module" : "BFD-STD-MIB"
1697
+ },
1698
+ "bfdSessPerfCtrlPktDropLastTime" : {
1699
+ "nodetype" : "member",
1700
+ "module" : "BFD-STD-MIB"
1701
+ },
1702
+ "bfdSessPerfEchoPktIn" : {
1703
+ "nodetype" : "member",
1704
+ "module" : "BFD-STD-MIB"
1705
+ },
1706
+ "bfdSessPerfEchoPktOut" : {
1707
+ "nodetype" : "member",
1708
+ "module" : "BFD-STD-MIB"
1709
+ },
1710
+ "bfdSessPerfEchoPktDrop" : {
1711
+ "nodetype" : "member",
1712
+ "module" : "BFD-STD-MIB"
1713
+ },
1714
+ "bfdSessPerfEchoPktDropLastTime" : {
1715
+ "nodetype" : "member",
1716
+ "module" : "BFD-STD-MIB"
1717
+ },
1718
+ "bfdSessUpTime" : {
1719
+ "nodetype" : "member",
1720
+ "module" : "BFD-STD-MIB"
1721
+ },
1722
+ "bfdSessPerfLastSessDownTime" : {
1723
+ "nodetype" : "member",
1724
+ "module" : "BFD-STD-MIB"
1725
+ },
1726
+ "bfdSessPerfLastCommLostDiag" : {
1727
+ "nodetype" : "member",
1728
+ "module" : "BFD-STD-MIB"
1729
+ },
1730
+ "bfdSessPerfSessUpCount" : {
1731
+ "nodetype" : "member",
1732
+ "module" : "BFD-STD-MIB"
1733
+ },
1734
+ "bfdSessPerfDiscTime" : {
1735
+ "nodetype" : "member",
1736
+ "module" : "BFD-STD-MIB"
1737
+ },
1738
+ }, # members
1739
+ "description" :
1740
+ """Collection of objects needed to monitor the
1741
+ performance of BFD sessions.""",
1742
+ }, # group
1743
+ "bfdSessionPerfHCGroup" : {
1744
+ "nodetype" : "group",
1745
+ "moduleName" : "BFD-STD-MIB",
1746
+ "oid" : "1.3.6.1.2.1.222.2.1.4",
1747
+ "status" : "current",
1748
+ "members" : {
1749
+ "bfdSessPerfCtrlPktInHC" : {
1750
+ "nodetype" : "member",
1751
+ "module" : "BFD-STD-MIB"
1752
+ },
1753
+ "bfdSessPerfCtrlPktOutHC" : {
1754
+ "nodetype" : "member",
1755
+ "module" : "BFD-STD-MIB"
1756
+ },
1757
+ "bfdSessPerfCtrlPktDropHC" : {
1758
+ "nodetype" : "member",
1759
+ "module" : "BFD-STD-MIB"
1760
+ },
1761
+ "bfdSessPerfEchoPktInHC" : {
1762
+ "nodetype" : "member",
1763
+ "module" : "BFD-STD-MIB"
1764
+ },
1765
+ "bfdSessPerfEchoPktOutHC" : {
1766
+ "nodetype" : "member",
1767
+ "module" : "BFD-STD-MIB"
1768
+ },
1769
+ "bfdSessPerfEchoPktDropHC" : {
1770
+ "nodetype" : "member",
1771
+ "module" : "BFD-STD-MIB"
1772
+ },
1773
+ }, # members
1774
+ "description" :
1775
+ """Collection of objects needed to monitor the
1776
+ performance of BFD sessions for which the
1777
+ values of bfdSessPerfPktIn and bfdSessPerfPktOut
1778
+ wrap around too quickly.""",
1779
+ }, # group
1780
+ "bfdNotificationGroup" : {
1781
+ "nodetype" : "group",
1782
+ "moduleName" : "BFD-STD-MIB",
1783
+ "oid" : "1.3.6.1.2.1.222.2.1.5",
1784
+ "status" : "current",
1785
+ "members" : {
1786
+ "bfdSessUp" : {
1787
+ "nodetype" : "member",
1788
+ "module" : "BFD-STD-MIB"
1789
+ },
1790
+ "bfdSessDown" : {
1791
+ "nodetype" : "member",
1792
+ "module" : "BFD-STD-MIB"
1793
+ },
1794
+ }, # members
1795
+ "description" :
1796
+ """Set of notifications implemented in this
1797
+ module.""",
1798
+ }, # group
1799
+ }, # groups
1800
+
1801
+ "compliances" : {
1802
+ "bfdModuleFullCompliance" : {
1803
+ "nodetype" : "compliance",
1804
+ "moduleName" : "BFD-STD-MIB",
1805
+ "oid" : "1.3.6.1.2.1.222.2.2.1",
1806
+ "status" : "current",
1807
+ "description" :
1808
+ """Compliance statement for agents that provide full
1809
+ support for the BFD-MIB module. Such devices can
1810
+ then be monitored and also be configured using
1811
+ this MIB module.""",
1812
+ "requires" : {
1813
+ "bfdSessionGroup" : {
1814
+ "nodetype" : "mandatory",
1815
+ "module" : "BFD-STD-MIB"
1816
+ },
1817
+ "bfdSessionReadOnlyGroup" : {
1818
+ "nodetype" : "mandatory",
1819
+ "module" : "BFD-STD-MIB"
1820
+ },
1821
+ "bfdSessionPerfGroup" : {
1822
+ "nodetype" : "mandatory",
1823
+ "module" : "BFD-STD-MIB"
1824
+ },
1825
+ "bfdNotificationGroup" : {
1826
+ "nodetype" : "mandatory",
1827
+ "module" : "BFD-STD-MIB"
1828
+ },
1829
+ "bfdSessionPerfHCGroup" : {
1830
+ "nodetype" : "optional",
1831
+ "module" : "BFD-STD-MIB",
1832
+ "description" :
1833
+ """This group is mandatory for all systems that
1834
+ are able to support the Counter64 date type.""",
1835
+ },
1836
+ }, # requires
1837
+ "refinements" : {
1838
+ "bfdSessSrcAddrType" : {
1839
+ "module" : "BFD-STD-MIB",
1840
+ "syntax" : {
1841
+ "type" : {
1842
+ "basetype" : "Enumeration",
1843
+ "parent module" : {
1844
+ "name" : "INET-ADDRESS-MIB",
1845
+ "type" : "InetAddressType",
1846
+ },
1847
+ "unknown" : {
1848
+ "nodetype" : "namednumber",
1849
+ "number" : "0"
1850
+ },
1851
+ "ipv4" : {
1852
+ "nodetype" : "namednumber",
1853
+ "number" : "1"
1854
+ },
1855
+ "ipv6" : {
1856
+ "nodetype" : "namednumber",
1857
+ "number" : "2"
1858
+ },
1859
+ "ipv6z" : {
1860
+ "nodetype" : "namednumber",
1861
+ "number" : "4"
1862
+ },
1863
+ },
1864
+ }, # syntax
1865
+ "description" :
1866
+ """Only unknown(0), ipv4(1), ipv6(2), and ipv6z(4)
1867
+ support are required. ipv4z(3) is not required,
1868
+ and dns(16) is not allowed.""",
1869
+ },
1870
+ "bfdSessSrcAddr" : {
1871
+ "module" : "BFD-STD-MIB",
1872
+ "syntax" : {
1873
+ "type" : {
1874
+ "basetype" : "OctetString",
1875
+ "parent module" : {
1876
+ "name" : "INET-ADDRESS-MIB",
1877
+ "type" : "InetAddress",
1878
+ },
1879
+ "ranges" : [
1880
+ {
1881
+ "min" : "0",
1882
+ "max" : "0"
1883
+ },
1884
+ {
1885
+ "min" : "4",
1886
+ "max" : "4"
1887
+ },
1888
+ {
1889
+ "min" : "16",
1890
+ "max" : "16"
1891
+ },
1892
+ {
1893
+ "min" : "20",
1894
+ "max" : "20"
1895
+ },
1896
+ ],
1897
+ "range" : {
1898
+ "min" : "0",
1899
+ "max" : "20"
1900
+ },
1901
+ },
1902
+ }, # syntax
1903
+ "description" :
1904
+ """An implementation is only required to support
1905
+ unknown(0), ipv4(1), ipv6(2), and ipv6z(4) sizes.""",
1906
+ },
1907
+ "bfdSessDstAddrType" : {
1908
+ "module" : "BFD-STD-MIB",
1909
+ "syntax" : {
1910
+ "type" : {
1911
+ "basetype" : "Enumeration",
1912
+ "parent module" : {
1913
+ "name" : "INET-ADDRESS-MIB",
1914
+ "type" : "InetAddressType",
1915
+ },
1916
+ "unknown" : {
1917
+ "nodetype" : "namednumber",
1918
+ "number" : "0"
1919
+ },
1920
+ "ipv4" : {
1921
+ "nodetype" : "namednumber",
1922
+ "number" : "1"
1923
+ },
1924
+ "ipv6" : {
1925
+ "nodetype" : "namednumber",
1926
+ "number" : "2"
1927
+ },
1928
+ "ipv6z" : {
1929
+ "nodetype" : "namednumber",
1930
+ "number" : "4"
1931
+ },
1932
+ },
1933
+ }, # syntax
1934
+ "description" :
1935
+ """Only unknown(0), ipv4(1), ipv6(2), and ipv6z(4)
1936
+ support are required. ipv4z(3) is not required,
1937
+ and dns(16) is not allowed.""",
1938
+ },
1939
+ "bfdSessDstAddr" : {
1940
+ "module" : "BFD-STD-MIB",
1941
+ "syntax" : {
1942
+ "type" : {
1943
+ "basetype" : "OctetString",
1944
+ "parent module" : {
1945
+ "name" : "INET-ADDRESS-MIB",
1946
+ "type" : "InetAddress",
1947
+ },
1948
+ "ranges" : [
1949
+ {
1950
+ "min" : "0",
1951
+ "max" : "0"
1952
+ },
1953
+ {
1954
+ "min" : "4",
1955
+ "max" : "4"
1956
+ },
1957
+ {
1958
+ "min" : "16",
1959
+ "max" : "16"
1960
+ },
1961
+ {
1962
+ "min" : "20",
1963
+ "max" : "20"
1964
+ },
1965
+ ],
1966
+ "range" : {
1967
+ "min" : "0",
1968
+ "max" : "20"
1969
+ },
1970
+ },
1971
+ }, # syntax
1972
+ "description" :
1973
+ """An implementation is only required to support
1974
+ unknown(0), ipv4(1), ipv6(2), and ipv6z(4) sizes.""",
1975
+ },
1976
+ "bfdSessRowStatus" : {
1977
+ "module" : "BFD-STD-MIB",
1978
+ "syntax" : {
1979
+ "type" : {
1980
+ "basetype" : "Enumeration",
1981
+ "parent module" : {
1982
+ "name" : "SNMPv2-TC",
1983
+ "type" : "RowStatus",
1984
+ },
1985
+ "active" : {
1986
+ "nodetype" : "namednumber",
1987
+ "number" : "1"
1988
+ },
1989
+ "notInService" : {
1990
+ "nodetype" : "namednumber",
1991
+ "number" : "2"
1992
+ },
1993
+ },
1994
+ }, # syntax
1995
+ "writesyntax" : {
1996
+ "type" : {
1997
+ "basetype" : "Enumeration",
1998
+ "parent module" : {
1999
+ "name" : "SNMPv2-TC",
2000
+ "type" : "RowStatus",
2001
+ },
2002
+ "active" : {
2003
+ "nodetype" : "namednumber",
2004
+ "number" : "1"
2005
+ },
2006
+ "notInService" : {
2007
+ "nodetype" : "namednumber",
2008
+ "number" : "2"
2009
+ },
2010
+ "createAndGo" : {
2011
+ "nodetype" : "namednumber",
2012
+ "number" : "4"
2013
+ },
2014
+ "destroy" : {
2015
+ "nodetype" : "namednumber",
2016
+ "number" : "6"
2017
+ },
2018
+ },
2019
+ }, # writesyntax
2020
+ "description" :
2021
+ """Support for createAndWait and notReady is not
2022
+ required.""",
2023
+ },
2024
+ }, # refinements
2025
+
2026
+ }, # compliance
2027
+ "bfdModuleReadOnlyCompliance" : {
2028
+ "nodetype" : "compliance",
2029
+ "moduleName" : "BFD-STD-MIB",
2030
+ "oid" : "1.3.6.1.2.1.222.2.2.2",
2031
+ "status" : "current",
2032
+ "description" :
2033
+ """Compliance requirement for implementations that only
2034
+ provide read-only support for BFD-MIB. Such devices
2035
+ can then be monitored but cannot be configured using
2036
+ this MIB module.""",
2037
+ "requires" : {
2038
+ "bfdSessionGroup" : {
2039
+ "nodetype" : "mandatory",
2040
+ "module" : "BFD-STD-MIB"
2041
+ },
2042
+ "bfdSessionReadOnlyGroup" : {
2043
+ "nodetype" : "mandatory",
2044
+ "module" : "BFD-STD-MIB"
2045
+ },
2046
+ "bfdSessionPerfGroup" : {
2047
+ "nodetype" : "mandatory",
2048
+ "module" : "BFD-STD-MIB"
2049
+ },
2050
+ "bfdNotificationGroup" : {
2051
+ "nodetype" : "mandatory",
2052
+ "module" : "BFD-STD-MIB"
2053
+ },
2054
+ "bfdSessionPerfHCGroup" : {
2055
+ "nodetype" : "optional",
2056
+ "module" : "BFD-STD-MIB",
2057
+ "description" :
2058
+ """This group is mandatory for all systems that
2059
+ are able to support the Counter64 date type.""",
2060
+ },
2061
+ }, # requires
2062
+ "refinements" : {
2063
+ "bfdSessVersionNumber" : {
2064
+ "module" : "BFD-STD-MIB",
2065
+ "access" : "readonly",
2066
+ "description" :
2067
+ """Write access is not required.""",
2068
+ },
2069
+ "bfdSessType" : {
2070
+ "module" : "BFD-STD-MIB",
2071
+ "access" : "readonly",
2072
+ "description" :
2073
+ """Write access is not required.""",
2074
+ },
2075
+ "bfdSessDiscriminator" : {
2076
+ "module" : "BFD-STD-MIB",
2077
+ "access" : "readonly",
2078
+ "description" :
2079
+ """Write access is not required.""",
2080
+ },
2081
+ "bfdSessDestinationUdpPort" : {
2082
+ "module" : "BFD-STD-MIB",
2083
+ "access" : "readonly",
2084
+ "description" :
2085
+ """Write access is not required.""",
2086
+ },
2087
+ "bfdSessSourceUdpPort" : {
2088
+ "module" : "BFD-STD-MIB",
2089
+ "access" : "readonly",
2090
+ "description" :
2091
+ """Write access is not required.""",
2092
+ },
2093
+ "bfdSessEchoSourceUdpPort" : {
2094
+ "module" : "BFD-STD-MIB",
2095
+ "access" : "readonly",
2096
+ "description" :
2097
+ """Write access is not required.""",
2098
+ },
2099
+ "bfdSessAdminStatus" : {
2100
+ "module" : "BFD-STD-MIB",
2101
+ "access" : "readonly",
2102
+ "description" :
2103
+ """Write access is not required.""",
2104
+ },
2105
+ "bfdSessOperMode" : {
2106
+ "module" : "BFD-STD-MIB",
2107
+ "access" : "readonly",
2108
+ "description" :
2109
+ """Write access is not required.""",
2110
+ },
2111
+ "bfdSessDemandModeDesiredFlag" : {
2112
+ "module" : "BFD-STD-MIB",
2113
+ "access" : "readonly",
2114
+ "description" :
2115
+ """Write access is not required.""",
2116
+ },
2117
+ "bfdSessControlPlaneIndepFlag" : {
2118
+ "module" : "BFD-STD-MIB",
2119
+ "access" : "readonly",
2120
+ "description" :
2121
+ """Write access is not required.""",
2122
+ },
2123
+ "bfdSessMultipointFlag" : {
2124
+ "module" : "BFD-STD-MIB",
2125
+ "access" : "readonly",
2126
+ "description" :
2127
+ """Write access is not required.""",
2128
+ },
2129
+ "bfdSessInterface" : {
2130
+ "module" : "BFD-STD-MIB",
2131
+ "access" : "readonly",
2132
+ "description" :
2133
+ """Write access is not required.""",
2134
+ },
2135
+ "bfdSessSrcAddrType" : {
2136
+ "module" : "BFD-STD-MIB",
2137
+ "syntax" : {
2138
+ "type" : {
2139
+ "basetype" : "Enumeration",
2140
+ "parent module" : {
2141
+ "name" : "INET-ADDRESS-MIB",
2142
+ "type" : "InetAddressType",
2143
+ },
2144
+ "unknown" : {
2145
+ "nodetype" : "namednumber",
2146
+ "number" : "0"
2147
+ },
2148
+ "ipv4" : {
2149
+ "nodetype" : "namednumber",
2150
+ "number" : "1"
2151
+ },
2152
+ "ipv6" : {
2153
+ "nodetype" : "namednumber",
2154
+ "number" : "2"
2155
+ },
2156
+ "ipv6z" : {
2157
+ "nodetype" : "namednumber",
2158
+ "number" : "4"
2159
+ },
2160
+ },
2161
+ }, # syntax
2162
+ "access" : "readonly",
2163
+ "description" :
2164
+ """Only unknown(0), ipv4(1), ipv6(2), and ipv6z(4)
2165
+ support are required. ipv4z(3) is not required,
2166
+ and dns(16) is not allowed.""",
2167
+ },
2168
+ "bfdSessSrcAddr" : {
2169
+ "module" : "BFD-STD-MIB",
2170
+ "syntax" : {
2171
+ "type" : {
2172
+ "basetype" : "OctetString",
2173
+ "parent module" : {
2174
+ "name" : "INET-ADDRESS-MIB",
2175
+ "type" : "InetAddress",
2176
+ },
2177
+ "ranges" : [
2178
+ {
2179
+ "min" : "0",
2180
+ "max" : "0"
2181
+ },
2182
+ {
2183
+ "min" : "4",
2184
+ "max" : "4"
2185
+ },
2186
+ {
2187
+ "min" : "16",
2188
+ "max" : "16"
2189
+ },
2190
+ {
2191
+ "min" : "20",
2192
+ "max" : "20"
2193
+ },
2194
+ ],
2195
+ "range" : {
2196
+ "min" : "0",
2197
+ "max" : "20"
2198
+ },
2199
+ },
2200
+ }, # syntax
2201
+ "access" : "readonly",
2202
+ "description" :
2203
+ """An implementation is only required to support
2204
+ unknown(0), ipv4(1), ipv6(2), and ipv6z(4) sizes.""",
2205
+ },
2206
+ "bfdSessDstAddrType" : {
2207
+ "module" : "BFD-STD-MIB",
2208
+ "syntax" : {
2209
+ "type" : {
2210
+ "basetype" : "Enumeration",
2211
+ "parent module" : {
2212
+ "name" : "INET-ADDRESS-MIB",
2213
+ "type" : "InetAddressType",
2214
+ },
2215
+ "unknown" : {
2216
+ "nodetype" : "namednumber",
2217
+ "number" : "0"
2218
+ },
2219
+ "ipv4" : {
2220
+ "nodetype" : "namednumber",
2221
+ "number" : "1"
2222
+ },
2223
+ "ipv6" : {
2224
+ "nodetype" : "namednumber",
2225
+ "number" : "2"
2226
+ },
2227
+ "ipv6z" : {
2228
+ "nodetype" : "namednumber",
2229
+ "number" : "4"
2230
+ },
2231
+ },
2232
+ }, # syntax
2233
+ "access" : "readonly",
2234
+ "description" :
2235
+ """Only unknown(0), ipv4(1), ipv6(2), and ipv6z(4)
2236
+ support are required. ipv4z(3) is not required,
2237
+ and dns(16) is not allowed.""",
2238
+ },
2239
+ "bfdSessDstAddr" : {
2240
+ "module" : "BFD-STD-MIB",
2241
+ "syntax" : {
2242
+ "type" : {
2243
+ "basetype" : "OctetString",
2244
+ "parent module" : {
2245
+ "name" : "INET-ADDRESS-MIB",
2246
+ "type" : "InetAddress",
2247
+ },
2248
+ "ranges" : [
2249
+ {
2250
+ "min" : "0",
2251
+ "max" : "0"
2252
+ },
2253
+ {
2254
+ "min" : "4",
2255
+ "max" : "4"
2256
+ },
2257
+ {
2258
+ "min" : "16",
2259
+ "max" : "16"
2260
+ },
2261
+ {
2262
+ "min" : "20",
2263
+ "max" : "20"
2264
+ },
2265
+ ],
2266
+ "range" : {
2267
+ "min" : "0",
2268
+ "max" : "20"
2269
+ },
2270
+ },
2271
+ }, # syntax
2272
+ "access" : "readonly",
2273
+ "description" :
2274
+ """An implementation is only required to support
2275
+ unknown(0), ipv4(1), ipv6(2), and ipv6z(4) sizes.""",
2276
+ },
2277
+ "bfdSessGTSM" : {
2278
+ "module" : "BFD-STD-MIB",
2279
+ "access" : "readonly",
2280
+ "description" :
2281
+ """Write access is not required.""",
2282
+ },
2283
+ "bfdSessGTSMTTL" : {
2284
+ "module" : "BFD-STD-MIB",
2285
+ "access" : "readonly",
2286
+ "description" :
2287
+ """Write access is not required.""",
2288
+ },
2289
+ "bfdSessDesiredMinTxInterval" : {
2290
+ "module" : "BFD-STD-MIB",
2291
+ "access" : "readonly",
2292
+ "description" :
2293
+ """Write access is not required.""",
2294
+ },
2295
+ "bfdSessReqMinRxInterval" : {
2296
+ "module" : "BFD-STD-MIB",
2297
+ "access" : "readonly",
2298
+ "description" :
2299
+ """Write access is not required.""",
2300
+ },
2301
+ "bfdSessReqMinEchoRxInterval" : {
2302
+ "module" : "BFD-STD-MIB",
2303
+ "access" : "readonly",
2304
+ "description" :
2305
+ """Write access is not required.""",
2306
+ },
2307
+ "bfdSessDetectMult" : {
2308
+ "module" : "BFD-STD-MIB",
2309
+ "access" : "readonly",
2310
+ "description" :
2311
+ """Write access is not required.""",
2312
+ },
2313
+ "bfdSessAuthPresFlag" : {
2314
+ "module" : "BFD-STD-MIB",
2315
+ "access" : "readonly",
2316
+ "description" :
2317
+ """Write access is not required.""",
2318
+ },
2319
+ "bfdSessAuthenticationType" : {
2320
+ "module" : "BFD-STD-MIB",
2321
+ "access" : "readonly",
2322
+ "description" :
2323
+ """Write access is not required.""",
2324
+ },
2325
+ "bfdSessAuthenticationKeyID" : {
2326
+ "module" : "BFD-STD-MIB",
2327
+ "access" : "readonly",
2328
+ "description" :
2329
+ """Write access is not required.""",
2330
+ },
2331
+ "bfdSessAuthenticationKey" : {
2332
+ "module" : "BFD-STD-MIB",
2333
+ "access" : "readonly",
2334
+ "description" :
2335
+ """Write access is not required.""",
2336
+ },
2337
+ "bfdSessStorageType" : {
2338
+ "module" : "BFD-STD-MIB",
2339
+ "access" : "readonly",
2340
+ "description" :
2341
+ """Write access is not required.""",
2342
+ },
2343
+ "bfdSessRowStatus" : {
2344
+ "module" : "BFD-STD-MIB",
2345
+ "syntax" : {
2346
+ "type" : {
2347
+ "basetype" : "Enumeration",
2348
+ "parent module" : {
2349
+ "name" : "SNMPv2-TC",
2350
+ "type" : "RowStatus",
2351
+ },
2352
+ "active" : {
2353
+ "nodetype" : "namednumber",
2354
+ "number" : "1"
2355
+ },
2356
+ },
2357
+ }, # syntax
2358
+ "access" : "readonly",
2359
+ "description" :
2360
+ """Write access is not required.""",
2361
+ },
2362
+ }, # refinements
2363
+
2364
+ }, # compliance
2365
+ }, # compliances
2366
+
2367
+ }