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,2981 @@
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 RBRIDGE-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/RBRIDGE-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "RBRIDGE-MIB",
11
+
12
+ "RBRIDGE-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF TRILL Working Group""",
17
+ "contact" :
18
+ """http://datatracker.ietf.org/wg/trill/charter/
19
+ Email: trill@ietf.org
20
+
21
+ Anil Rijhsinghani
22
+ Hewlett-Packard
23
+ Tel: +1 508 323 1251
24
+ Email: anil@charter.net
25
+
26
+ Kate Zebrose
27
+ HW Embedded
28
+ Tel: +1 617 840 9673
29
+ Email: zebrose@alum.mit.edu""",
30
+ "description" :
31
+ """The RBridge MIB module for managing switches that support
32
+ the TRILL protocol.""",
33
+ "revisions" : (
34
+ {
35
+ "date" : "2013-01-07 00:00",
36
+ "description" :
37
+ """Initial version, published as RFC 6850.
38
+
39
+ Copyright (c) 2013 IETF Trust and the persons identified as
40
+ authors of the code. All rights reserved.
41
+
42
+ Redistribution and use in source and binary forms, with or
43
+ without modification, is permitted pursuant to, and subject to
44
+ the license terms contained in, the Simplified BSD License set
45
+ forth in Section 4.c of the IETF Trust's Legal Provisions
46
+ Relating to IETF Documents
47
+ (http://trustee.ietf.org/license-info).""",
48
+ },
49
+ ),
50
+ "identity node" : "rbridgeMIB",
51
+ },
52
+
53
+ "imports" : (
54
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
55
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
56
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
57
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
58
+ {"module" : "SNMPv2-SMI", "name" : "Counter64"},
59
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
60
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
61
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
62
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
63
+ {"module" : "SNMPv2-TC", "name" : "MacAddress"},
64
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
65
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
66
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
67
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
68
+ {"module" : "Q-BRIDGE-MIB", "name" : "VlanId"},
69
+ {"module" : "Q-BRIDGE-MIB", "name" : "PortList"},
70
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddress"},
71
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddressType"},
72
+ {"module" : "BRIDGE-MIB", "name" : "BridgeId"},
73
+ {"module" : "IF-MIB", "name" : "InterfaceIndex"},
74
+ ),
75
+
76
+ "typedefs" : {
77
+ "RbridgeAddress" : {
78
+ "basetype" : "OctetString",
79
+ "status" : "current",
80
+ "ranges" : [
81
+ {
82
+ "min" : "6",
83
+ "max" : "6"
84
+ },
85
+ ],
86
+ "range" : {
87
+ "min" : "6",
88
+ "max" : "6"
89
+ },
90
+ "format" : "1x:",
91
+ "description" :
92
+ """The Media Access Control (MAC) address used by an RBridge
93
+ port. This may match the RBridge IS-IS SystemID.""",
94
+ },
95
+ "RbridgeNickname" : {
96
+ "basetype" : "Unsigned32",
97
+ "status" : "current",
98
+ "ranges" : [
99
+ {
100
+ "min" : "0",
101
+ "max" : "65471"
102
+ },
103
+ ],
104
+ "range" : {
105
+ "min" : "0",
106
+ "max" : "65471"
107
+ },
108
+ "format" : "d",
109
+ "description" :
110
+ """The 16-bit identifier used in TRILL as an
111
+ abbreviation for the RBridge's 48-bit IS-IS System ID.
112
+ The value 0 means a nickname is not specified, the values
113
+ 0xFFC0 through 0xFFFE are reserved for future allocation,
114
+ and the value 0xFFFF is permanently reserved.""",
115
+ "reference" :
116
+ """RFC 6325, Section 3.7""",
117
+ },
118
+ }, # typedefs
119
+
120
+ "nodes" : {
121
+ "rbridgeMIB" : {
122
+ "nodetype" : "node",
123
+ "moduleName" : "RBRIDGE-MIB",
124
+ "oid" : "1.3.6.1.2.1.214",
125
+ "status" : "current",
126
+ }, # node
127
+ "rbridgeNotifications" : {
128
+ "nodetype" : "node",
129
+ "moduleName" : "RBRIDGE-MIB",
130
+ "oid" : "1.3.6.1.2.1.214.0",
131
+ }, # node
132
+ "rbridgeObjects" : {
133
+ "nodetype" : "node",
134
+ "moduleName" : "RBRIDGE-MIB",
135
+ "oid" : "1.3.6.1.2.1.214.1",
136
+ }, # node
137
+ "rbridgeBase" : {
138
+ "nodetype" : "node",
139
+ "moduleName" : "RBRIDGE-MIB",
140
+ "oid" : "1.3.6.1.2.1.214.1.1",
141
+ }, # node
142
+ "rbridgeBaseTrillVersion" : {
143
+ "nodetype" : "scalar",
144
+ "moduleName" : "RBRIDGE-MIB",
145
+ "oid" : "1.3.6.1.2.1.214.1.1.1",
146
+ "status" : "current",
147
+ "syntax" : {
148
+ "type" : { "module" :"", "name" : "Unsigned32"},
149
+ },
150
+ "access" : "readonly",
151
+ "description" :
152
+ """The maximum TRILL version number that this RBridge
153
+ supports.""",
154
+ "reference" :
155
+ """RFC 6325, Section 3.2""",
156
+ }, # scalar
157
+ "rbridgeBaseNumPorts" : {
158
+ "nodetype" : "scalar",
159
+ "moduleName" : "RBRIDGE-MIB",
160
+ "oid" : "1.3.6.1.2.1.214.1.1.2",
161
+ "status" : "current",
162
+ "syntax" : {
163
+ "type" : { "module" :"", "name" : "Unsigned32"},
164
+ },
165
+ "access" : "readonly",
166
+ "units" : "ports",
167
+ "description" :
168
+ """The number of ports controlled by this RBridge.""",
169
+ "reference" :
170
+ """RFC 6325, Section 2.6.1""",
171
+ }, # scalar
172
+ "rbridgeBaseForwardDelay" : {
173
+ "nodetype" : "scalar",
174
+ "moduleName" : "RBRIDGE-MIB",
175
+ "oid" : "1.3.6.1.2.1.214.1.1.3",
176
+ "status" : "current",
177
+ "syntax" : {
178
+ "type" : {
179
+ "basetype" : "Unsigned32",
180
+ "ranges" : [
181
+ {
182
+ "min" : "4",
183
+ "max" : "30"
184
+ },
185
+ ],
186
+ "range" : {
187
+ "min" : "4",
188
+ "max" : "30"
189
+ },
190
+ },
191
+ },
192
+ "access" : "readwrite",
193
+ "units" : "seconds",
194
+ "description" :
195
+ """Modified aging time for address entries after an appointed
196
+ forwarder change.
197
+
198
+ The value of this object MUST be retained across
199
+ re-initializations of the management system.""",
200
+ "reference" :
201
+ """RFC 6325, Section 4.8.3""",
202
+ }, # scalar
203
+ "rbridgeBaseUniMultipathEnable" : {
204
+ "nodetype" : "scalar",
205
+ "moduleName" : "RBRIDGE-MIB",
206
+ "oid" : "1.3.6.1.2.1.214.1.1.4",
207
+ "status" : "current",
208
+ "syntax" : {
209
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
210
+ },
211
+ "access" : "readwrite",
212
+ "description" :
213
+ """The enabled status of unicast TRILL multipathing.
214
+ It is enabled when true.
215
+
216
+ The value of this object MUST be retained across
217
+ re-initializations of the management system.""",
218
+ "reference" :
219
+ """RFC 6325, Appendix C""",
220
+ }, # scalar
221
+ "rbridgeBaseMultiMultipathEnable" : {
222
+ "nodetype" : "scalar",
223
+ "moduleName" : "RBRIDGE-MIB",
224
+ "oid" : "1.3.6.1.2.1.214.1.1.5",
225
+ "status" : "current",
226
+ "syntax" : {
227
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
228
+ },
229
+ "access" : "readwrite",
230
+ "description" :
231
+ """The enabled status of multi-destination TRILL multipathing.
232
+ It is enabled when true.
233
+
234
+ The value of this object MUST be retained across
235
+ re-initializations of the management system.""",
236
+ "reference" :
237
+ """RFC 6325, Appendix C""",
238
+ }, # scalar
239
+ "rbridgeBaseAcceptEncapNonadj" : {
240
+ "nodetype" : "scalar",
241
+ "moduleName" : "RBRIDGE-MIB",
242
+ "oid" : "1.3.6.1.2.1.214.1.1.6",
243
+ "status" : "current",
244
+ "syntax" : {
245
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
246
+ },
247
+ "access" : "readwrite",
248
+ "description" :
249
+ """Accept TRILL-encapsulated frames from a neighbor with which
250
+ this RBridge does not have an IS-IS adjacency, when the value
251
+ of this object is 'true'.
252
+
253
+
254
+
255
+
256
+
257
+ The value of this object MUST be retained across
258
+ re-initializations of the management system.""",
259
+ "reference" :
260
+ """RFC 6325, Section 4.6.2""",
261
+ }, # scalar
262
+ "rbridgeBaseNicknameNumber" : {
263
+ "nodetype" : "scalar",
264
+ "moduleName" : "RBRIDGE-MIB",
265
+ "oid" : "1.3.6.1.2.1.214.1.1.7",
266
+ "status" : "current",
267
+ "syntax" : {
268
+ "type" : {
269
+ "basetype" : "Unsigned32",
270
+ "ranges" : [
271
+ {
272
+ "min" : "1",
273
+ "max" : "256"
274
+ },
275
+ ],
276
+ "range" : {
277
+ "min" : "1",
278
+ "max" : "256"
279
+ },
280
+ },
281
+ },
282
+ "access" : "readwrite",
283
+ "description" :
284
+ """The number of nicknames this RBridge should acquire.
285
+ These can be acquired dynamically or configured
286
+ statically. This value represents the maximum
287
+ number of entries in rbridgeBaseNicknameTable.
288
+
289
+ The value of this object MUST be retained across
290
+ re-initializations of the management system.""",
291
+ "reference" :
292
+ """RFC 6325, Section 3.7.3""",
293
+ }, # scalar
294
+ "rbridgeBaseNicknameTable" : {
295
+ "nodetype" : "table",
296
+ "moduleName" : "RBRIDGE-MIB",
297
+ "oid" : "1.3.6.1.2.1.214.1.1.8",
298
+ "status" : "current",
299
+ "description" :
300
+ """A table that contains information about nicknames
301
+ configured by an operator or learned dynamically
302
+ by this RBridge.""",
303
+ "reference" :
304
+ """RFC 6325, Section 3.7""",
305
+ }, # table
306
+ "rbridgeBaseNicknameEntry" : {
307
+ "nodetype" : "row",
308
+ "moduleName" : "RBRIDGE-MIB",
309
+ "oid" : "1.3.6.1.2.1.214.1.1.8.1",
310
+ "create" : "true",
311
+ "status" : "current",
312
+ "linkage" : [
313
+ "rbridgeBaseNicknameName",
314
+ ],
315
+ "description" :
316
+ """A list of information for each nickname of the RBridge.""",
317
+ "reference" :
318
+ """RFC 6325, Section 3.7""",
319
+ }, # row
320
+ "rbridgeBaseNicknameName" : {
321
+ "nodetype" : "column",
322
+ "moduleName" : "RBRIDGE-MIB",
323
+ "oid" : "1.3.6.1.2.1.214.1.1.8.1.1",
324
+ "status" : "current",
325
+ "syntax" : {
326
+ "type" : { "module" :"RBRIDGE-MIB", "name" : "RbridgeNickname"},
327
+ },
328
+ "access" : "noaccess",
329
+ "description" :
330
+ """Nicknames are 16-bit quantities that act as
331
+ abbreviations for RBridge's 48-bit IS-IS System ID to
332
+ achieve a more compact encoding.""",
333
+ "reference" :
334
+ """RFC 6325, Section 3.7""",
335
+ }, # column
336
+ "rbridgeBaseNicknamePriority" : {
337
+ "nodetype" : "column",
338
+ "moduleName" : "RBRIDGE-MIB",
339
+ "oid" : "1.3.6.1.2.1.214.1.1.8.1.2",
340
+ "status" : "current",
341
+ "syntax" : {
342
+ "type" : {
343
+ "basetype" : "Unsigned32",
344
+ "ranges" : [
345
+ {
346
+ "min" : "0",
347
+ "max" : "255"
348
+ },
349
+ ],
350
+ "range" : {
351
+ "min" : "0",
352
+ "max" : "255"
353
+ },
354
+ },
355
+ },
356
+ "access" : "readwrite",
357
+ "default" : "192",
358
+ "description" :
359
+ """This RBridge's priority to hold this nickname. When
360
+ the nickname is configured, the default value of this
361
+ object is 192. When the nickname is configured, the most
362
+ significant bit (0x80) must be set and the bottom 7 bits
363
+ have the default value of 0x40, so 0x80 + 0x40 == 0xC0,
364
+ which is 192 decimal. Additionally, the bottom 7 bits
365
+ could be configured to a value other than 0x40.
366
+
367
+ The value of this object MUST be retained across
368
+ re-initializations of the management system.""",
369
+ "reference" :
370
+ """RFC 6325, Section 3.7""",
371
+ }, # column
372
+ "rbridgeBaseNicknameDtrPriority" : {
373
+ "nodetype" : "column",
374
+ "moduleName" : "RBRIDGE-MIB",
375
+ "oid" : "1.3.6.1.2.1.214.1.1.8.1.3",
376
+ "status" : "current",
377
+ "syntax" : {
378
+ "type" : {
379
+ "basetype" : "Unsigned32",
380
+ "ranges" : [
381
+ {
382
+ "min" : "1",
383
+ "max" : "65535"
384
+ },
385
+ ],
386
+ "range" : {
387
+ "min" : "1",
388
+ "max" : "65535"
389
+ },
390
+ },
391
+ },
392
+ "access" : "readwrite",
393
+ "default" : "32768",
394
+ "description" :
395
+ """The distribution tree root priority for this nickname.
396
+ The default value of this object is 32768.
397
+
398
+ The value of this object MUST be retained across
399
+ re-initializations of the management system.""",
400
+ "reference" :
401
+ """RFC 6325, Section 4.5""",
402
+ }, # column
403
+ "rbridgeBaseNicknameType" : {
404
+ "nodetype" : "column",
405
+ "moduleName" : "RBRIDGE-MIB",
406
+ "oid" : "1.3.6.1.2.1.214.1.1.8.1.4",
407
+ "status" : "current",
408
+ "syntax" : {
409
+ "type" : {
410
+ "basetype" : "Enumeration",
411
+ "static" : {
412
+ "nodetype" : "namednumber",
413
+ "number" : "1"
414
+ },
415
+ "dynamic" : {
416
+ "nodetype" : "namednumber",
417
+ "number" : "2"
418
+ },
419
+ },
420
+ },
421
+ "access" : "readonly",
422
+ "default" : "static",
423
+ "description" :
424
+ """This object indicates the status of the entry. The
425
+ default value is static(1).
426
+ static(1) - this entry has been configured and
427
+ will remain after the next reset of the RBridge.
428
+ dynamic(2) - this entry has been acquired by the
429
+ RBridge nickname acquisition protocol.""",
430
+ "reference" :
431
+ """RFC 6325, Section 3.7""",
432
+ }, # column
433
+ "rbridgeBaseNicknameRowStatus" : {
434
+ "nodetype" : "column",
435
+ "moduleName" : "RBRIDGE-MIB",
436
+ "oid" : "1.3.6.1.2.1.214.1.1.8.1.5",
437
+ "status" : "current",
438
+ "syntax" : {
439
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
440
+ },
441
+ "access" : "readwrite",
442
+ "description" :
443
+ """This object indicates the status of the entry.""",
444
+ }, # column
445
+ "rbridgeBasePortTable" : {
446
+ "nodetype" : "table",
447
+ "moduleName" : "RBRIDGE-MIB",
448
+ "oid" : "1.3.6.1.2.1.214.1.1.9",
449
+ "status" : "current",
450
+ "description" :
451
+ """A table that contains generic information about every
452
+ port that is associated with this RBridge.""",
453
+ "reference" :
454
+ """RFC 6325, Section 5.3""",
455
+ }, # table
456
+ "rbridgeBasePortEntry" : {
457
+ "nodetype" : "row",
458
+ "moduleName" : "RBRIDGE-MIB",
459
+ "oid" : "1.3.6.1.2.1.214.1.1.9.1",
460
+ "status" : "current",
461
+ "linkage" : [
462
+ "rbridgeBasePort",
463
+ ],
464
+ "description" :
465
+ """A list of information for each port of the bridge.""",
466
+ "reference" :
467
+ """RFC 6325, Section 5.3""",
468
+ }, # row
469
+ "rbridgeBasePort" : {
470
+ "nodetype" : "column",
471
+ "moduleName" : "RBRIDGE-MIB",
472
+ "oid" : "1.3.6.1.2.1.214.1.1.9.1.1",
473
+ "status" : "current",
474
+ "syntax" : {
475
+ "type" : {
476
+ "basetype" : "Unsigned32",
477
+ "ranges" : [
478
+ {
479
+ "min" : "1",
480
+ "max" : "65535"
481
+ },
482
+ ],
483
+ "range" : {
484
+ "min" : "1",
485
+ "max" : "65535"
486
+ },
487
+ },
488
+ },
489
+ "access" : "noaccess",
490
+ "description" :
491
+ """The port number of the port for which this entry
492
+ contains RBridge management information.""",
493
+ "reference" :
494
+ """RFC 6325, Section 5.3""",
495
+ }, # column
496
+ "rbridgeBasePortIfIndex" : {
497
+ "nodetype" : "column",
498
+ "moduleName" : "RBRIDGE-MIB",
499
+ "oid" : "1.3.6.1.2.1.214.1.1.9.1.2",
500
+ "status" : "current",
501
+ "syntax" : {
502
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
503
+ },
504
+ "access" : "readonly",
505
+ "description" :
506
+ """The value of the instance of the ifIndex object,
507
+ defined in the IF-MIB, for the interface corresponding
508
+ to this port. The RBridge port sits on top of
509
+ this interface.""",
510
+ }, # column
511
+ "rbridgeBasePortDisable" : {
512
+ "nodetype" : "column",
513
+ "moduleName" : "RBRIDGE-MIB",
514
+ "oid" : "1.3.6.1.2.1.214.1.1.9.1.3",
515
+ "status" : "current",
516
+ "syntax" : {
517
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
518
+ },
519
+ "access" : "readwrite",
520
+ "default" : "false",
521
+ "description" :
522
+ """Disable port bit. When this bit is set (true), all frames
523
+ received or to be transmitted are discarded, with the
524
+ possible exception of some layer 2 control frames that may
525
+ be generated and transmitted or received and processed
526
+ locally. Default value is 'false'.
527
+
528
+ The value of this object MUST be retained across
529
+ re-initializations of the management system.""",
530
+ "reference" :
531
+ """RFC 6325, Section 4.9.1""",
532
+ }, # column
533
+ "rbridgeBasePortTrunkPort" : {
534
+ "nodetype" : "column",
535
+ "moduleName" : "RBRIDGE-MIB",
536
+ "oid" : "1.3.6.1.2.1.214.1.1.9.1.4",
537
+ "status" : "current",
538
+ "syntax" : {
539
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
540
+ },
541
+ "access" : "readwrite",
542
+ "default" : "false",
543
+ "description" :
544
+ """End-station service disable (trunk port) bit. When this bit
545
+ is set (true), all native frames received on the port and all
546
+ native frames that would have been sent on the port are
547
+ discarded. Default value is 'false'.
548
+
549
+ The value of this object MUST be retained across
550
+ re-initializations of the management system.""",
551
+ "reference" :
552
+ """RFC 6325, Section 4.9.1""",
553
+ }, # column
554
+ "rbridgeBasePortAccessPort" : {
555
+ "nodetype" : "column",
556
+ "moduleName" : "RBRIDGE-MIB",
557
+ "oid" : "1.3.6.1.2.1.214.1.1.9.1.5",
558
+ "status" : "current",
559
+ "syntax" : {
560
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
561
+ },
562
+ "access" : "readwrite",
563
+ "default" : "false",
564
+ "description" :
565
+ """TRILL traffic disable (access port) bit. If this bit is
566
+ set, the goal is to avoid sending any TRILL frames, except
567
+ TRILL-Hello frames, on the port, since it is intended only
568
+ for native end-station traffic. This ensures that the link
569
+ is not on the shortest path for any destination. Default
570
+ value is 'false'.
571
+
572
+ The value of this object MUST be retained across
573
+ re-initializations of the management system.""",
574
+ "reference" :
575
+ """RFC 6325, Section 4.9.1""",
576
+ }, # column
577
+ "rbridgeBasePortP2pHellos" : {
578
+ "nodetype" : "column",
579
+ "moduleName" : "RBRIDGE-MIB",
580
+ "oid" : "1.3.6.1.2.1.214.1.1.9.1.6",
581
+ "status" : "current",
582
+ "syntax" : {
583
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
584
+ },
585
+ "access" : "readwrite",
586
+ "default" : "false",
587
+ "description" :
588
+ """Use point-to-point (P2P) Hellos bit. If this bit is set,
589
+ Hellos sent on this port are IS-IS P2P Hellos, not the
590
+
591
+
592
+
593
+ default TRILL-Hellos. In addition, the IS-IS P2P three-way
594
+ handshake is used on P2P RBridge links. Default value is
595
+ 'false'.
596
+
597
+ The value of this object MUST be retained across
598
+ re-initializations of the management system.""",
599
+ "reference" :
600
+ """RFC 6325, Section 4.9.1""",
601
+ }, # column
602
+ "rbridgeBasePortState" : {
603
+ "nodetype" : "column",
604
+ "moduleName" : "RBRIDGE-MIB",
605
+ "oid" : "1.3.6.1.2.1.214.1.1.9.1.7",
606
+ "status" : "current",
607
+ "syntax" : {
608
+ "type" : {
609
+ "basetype" : "Enumeration",
610
+ "uninhibited" : {
611
+ "nodetype" : "namednumber",
612
+ "number" : "1"
613
+ },
614
+ "portInhibited" : {
615
+ "nodetype" : "namednumber",
616
+ "number" : "2"
617
+ },
618
+ "vlanInhibited" : {
619
+ "nodetype" : "namednumber",
620
+ "number" : "3"
621
+ },
622
+ "disabled" : {
623
+ "nodetype" : "namednumber",
624
+ "number" : "4"
625
+ },
626
+ "broken" : {
627
+ "nodetype" : "namednumber",
628
+ "number" : "5"
629
+ },
630
+ },
631
+ },
632
+ "access" : "readonly",
633
+ "description" :
634
+ """The port's current state. If the entire port is
635
+ inhibited, its state is portInhibited(2). If specific VLANs
636
+ are inhibited, the state is vlanInhibited(3), and
637
+ rbridgeVlanPortTable will tell which VLANs are inhibited.
638
+ For ports that are disabled (see rbridgeBasePortDisable),
639
+ this object will have a value of disabled(4). If the
640
+ RBridge has detected a port that is malfunctioning, it will
641
+ place that port into the broken(5) state.""",
642
+ "reference" :
643
+ """RFC 6325, Section 4.2.4.3""",
644
+ }, # column
645
+ "rbridgeBasePortInhibitionTime" : {
646
+ "nodetype" : "column",
647
+ "moduleName" : "RBRIDGE-MIB",
648
+ "oid" : "1.3.6.1.2.1.214.1.1.9.1.8",
649
+ "status" : "current",
650
+ "syntax" : {
651
+ "type" : { "module" :"", "name" : "Unsigned32"},
652
+ },
653
+ "access" : "readwrite",
654
+ "default" : "30",
655
+ "units" : "seconds",
656
+ "description" :
657
+ """Time in seconds that this RBridge will inhibit forwarding
658
+ on this port after it observes a spanning tree root bridge
659
+ change on a link or receives conflicting VLAN forwarder
660
+ information. The default value is 30.
661
+
662
+ The value of this object MUST be retained across
663
+ re-initializations of the management system.""",
664
+ "reference" :
665
+ """RFC 6325, Section 4.2.4.3""",
666
+ }, # column
667
+ "rbridgeBasePortDisableLearning" : {
668
+ "nodetype" : "column",
669
+ "moduleName" : "RBRIDGE-MIB",
670
+ "oid" : "1.3.6.1.2.1.214.1.1.9.1.9",
671
+ "status" : "current",
672
+ "syntax" : {
673
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
674
+ },
675
+ "access" : "readwrite",
676
+ "default" : "false",
677
+ "description" :
678
+ """Disable learning of MAC addresses seen on this port.
679
+ To disable learning, the value of this object must be
680
+ set to 'true'. The default is 'false'.
681
+
682
+ The value of this object MUST be retained across
683
+ re-initializations of the management system.""",
684
+ "reference" :
685
+ """RFC 6325, Section 4.8""",
686
+ }, # column
687
+ "rbridgeBasePortDesiredDesigVlan" : {
688
+ "nodetype" : "column",
689
+ "moduleName" : "RBRIDGE-MIB",
690
+ "oid" : "1.3.6.1.2.1.214.1.1.9.1.10",
691
+ "status" : "current",
692
+ "syntax" : {
693
+ "type" : { "module" :"Q-BRIDGE-MIB", "name" : "VlanId"},
694
+ },
695
+ "access" : "readwrite",
696
+ "description" :
697
+ """The VLAN that a Designated RBridge (DRB) will specify in
698
+ its TRILL-Hellos as the VLAN to be used by all RBridges on
699
+ the link for TRILL frames. This VLAN must be enabled on
700
+ this port.
701
+
702
+ The value of this object MUST be retained across
703
+ re-initializations of the management system.""",
704
+ "reference" :
705
+ """RFC 6325, Section 4.4.3""",
706
+ }, # column
707
+ "rbridgeBasePortDesigVlan" : {
708
+ "nodetype" : "column",
709
+ "moduleName" : "RBRIDGE-MIB",
710
+ "oid" : "1.3.6.1.2.1.214.1.1.9.1.11",
711
+ "status" : "current",
712
+ "syntax" : {
713
+ "type" : { "module" :"Q-BRIDGE-MIB", "name" : "VlanId"},
714
+ },
715
+ "access" : "readonly",
716
+ "description" :
717
+ """The VLAN being used on this link for TRILL frames.""",
718
+ "reference" :
719
+ """RFC 6325, Section 4.4.3""",
720
+ }, # column
721
+ "rbridgeBasePortStpRoot" : {
722
+ "nodetype" : "column",
723
+ "moduleName" : "RBRIDGE-MIB",
724
+ "oid" : "1.3.6.1.2.1.214.1.1.9.1.12",
725
+ "status" : "current",
726
+ "syntax" : {
727
+ "type" : { "module" :"BRIDGE-MIB", "name" : "BridgeId"},
728
+ },
729
+ "access" : "readonly",
730
+ "description" :
731
+ """The bridge identifier of the root of the spanning tree,
732
+ as learned from a Bridge PDU (BPDU) received on this port.
733
+ For the Multiple Spanning Tree Protocol (MSTP), this is
734
+ the root bridge of the Common and Internal Spanning Tree
735
+ (CIST). If no BPDU has been heard, the value returned
736
+ is a string of zeros.""",
737
+ "reference" :
738
+ """RFC 6325, Section 4.2.4.3""",
739
+ }, # column
740
+ "rbridgeBasePortStpRootChanges" : {
741
+ "nodetype" : "column",
742
+ "moduleName" : "RBRIDGE-MIB",
743
+ "oid" : "1.3.6.1.2.1.214.1.1.9.1.13",
744
+ "status" : "current",
745
+ "syntax" : {
746
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
747
+ },
748
+ "access" : "readonly",
749
+ "units" : "changes",
750
+ "description" :
751
+ """The number of times a change in the root bridge is seen from
752
+ spanning tree BPDUs received on this port, indicating a
753
+ change in bridged LAN topology. Each such change may cause
754
+ the port to be inhibited for a period of time. This counter
755
+ should be synchronized with ifCounterDiscontinuityTime.
756
+
757
+ Discontinuities in the value of this counter can occur
758
+ at re-initialization of the management system.""",
759
+ "reference" :
760
+ """RFC 6325, Section 4.9.3.2""",
761
+ }, # column
762
+ "rbridgeBasePortStpWiringCloset" : {
763
+ "nodetype" : "column",
764
+ "moduleName" : "RBRIDGE-MIB",
765
+ "oid" : "1.3.6.1.2.1.214.1.1.9.1.14",
766
+ "status" : "current",
767
+ "syntax" : {
768
+ "type" : { "module" :"BRIDGE-MIB", "name" : "BridgeId"},
769
+ },
770
+ "access" : "readwrite",
771
+ "description" :
772
+ """The Bridge ID to be used as the spanning tree root in BPDUs
773
+ sent for the Wiring Closet topology solution described in
774
+ [RFC6325]. Note that the same value of this object must be
775
+ set on all RBridge ports participating in this solution.
776
+ The default value is all 0s. A non-zero value configured
777
+ into this object indicates that this solution is in use.
778
+
779
+ The value of this object MUST be retained across
780
+ re-initializations of the management system.""",
781
+ "reference" :
782
+ """RFC 6325, Appendix A.3.3""",
783
+ }, # column
784
+ "rbridgeFdb" : {
785
+ "nodetype" : "node",
786
+ "moduleName" : "RBRIDGE-MIB",
787
+ "oid" : "1.3.6.1.2.1.214.1.2",
788
+ }, # node
789
+ "rbridgeConfidenceNative" : {
790
+ "nodetype" : "scalar",
791
+ "moduleName" : "RBRIDGE-MIB",
792
+ "oid" : "1.3.6.1.2.1.214.1.2.1",
793
+ "status" : "current",
794
+ "syntax" : {
795
+ "type" : {
796
+ "basetype" : "Unsigned32",
797
+ "ranges" : [
798
+ {
799
+ "min" : "0",
800
+ "max" : "255"
801
+ },
802
+ ],
803
+ "range" : {
804
+ "min" : "0",
805
+ "max" : "255"
806
+ },
807
+ },
808
+ },
809
+ "access" : "readwrite",
810
+ "description" :
811
+ """The confidence level associated with MAC addresses
812
+ learned from native frames. This is applicable to
813
+ all RBridge ports.
814
+
815
+ The value of this object MUST be retained across
816
+ re-initializations of the management system.""",
817
+ "reference" :
818
+ """RFC 6325, Section 4.8.1""",
819
+ }, # scalar
820
+ "rbridgeConfidenceDecap" : {
821
+ "nodetype" : "scalar",
822
+ "moduleName" : "RBRIDGE-MIB",
823
+ "oid" : "1.3.6.1.2.1.214.1.2.2",
824
+ "status" : "current",
825
+ "syntax" : {
826
+ "type" : {
827
+ "basetype" : "Unsigned32",
828
+ "ranges" : [
829
+ {
830
+ "min" : "0",
831
+ "max" : "255"
832
+ },
833
+ ],
834
+ "range" : {
835
+ "min" : "0",
836
+ "max" : "255"
837
+ },
838
+ },
839
+ },
840
+ "access" : "readwrite",
841
+ "description" :
842
+ """The confidence level associated with inner MAC addresses
843
+ learned after decapsulation of a TRILL data frame.
844
+ This is applicable to all RBridge ports.
845
+
846
+ The value of this object MUST be retained across
847
+ re-initializations of the management system.""",
848
+ "reference" :
849
+ """RFC 6325, Section 4.8.1""",
850
+ }, # scalar
851
+ "rbridgeConfidenceStatic" : {
852
+ "nodetype" : "scalar",
853
+ "moduleName" : "RBRIDGE-MIB",
854
+ "oid" : "1.3.6.1.2.1.214.1.2.3",
855
+ "status" : "current",
856
+ "syntax" : {
857
+ "type" : {
858
+ "basetype" : "Unsigned32",
859
+ "ranges" : [
860
+ {
861
+ "min" : "0",
862
+ "max" : "255"
863
+ },
864
+ ],
865
+ "range" : {
866
+ "min" : "0",
867
+ "max" : "255"
868
+ },
869
+ },
870
+ },
871
+ "access" : "readwrite",
872
+ "default" : "255",
873
+ "description" :
874
+ """The confidence level associated with MAC addresses that
875
+ are statically configured. The default value is 255.
876
+
877
+ The value of this object MUST be retained across
878
+ re-initializations of the management system.""",
879
+ "reference" :
880
+ """RFC 6325, Section 4.8.2""",
881
+ }, # scalar
882
+ "rbridgeUniFdbTable" : {
883
+ "nodetype" : "table",
884
+ "moduleName" : "RBRIDGE-MIB",
885
+ "oid" : "1.3.6.1.2.1.214.1.2.4",
886
+ "status" : "current",
887
+ "description" :
888
+ """A table that contains information about unicast entries
889
+ for which the device has forwarding and/or filtering
890
+ information. This information is used by the
891
+ transparent bridging function in determining how to
892
+ propagate a received frame.""",
893
+ "reference" :
894
+ """RFC 6325, Section 4.8""",
895
+ }, # table
896
+ "rbridgeUniFdbEntry" : {
897
+ "nodetype" : "row",
898
+ "moduleName" : "RBRIDGE-MIB",
899
+ "oid" : "1.3.6.1.2.1.214.1.2.4.1",
900
+ "status" : "current",
901
+ "linkage" : [
902
+ "rbridgeFdbId",
903
+ "rbridgeUniFdbAddr",
904
+ ],
905
+ "description" :
906
+ """Information about a specific unicast MAC address for
907
+ which the RBridge has some forwarding and/or filtering
908
+ information.""",
909
+ }, # row
910
+ "rbridgeFdbId" : {
911
+ "nodetype" : "column",
912
+ "moduleName" : "RBRIDGE-MIB",
913
+ "oid" : "1.3.6.1.2.1.214.1.2.4.1.1",
914
+ "status" : "current",
915
+ "syntax" : {
916
+ "type" : {
917
+ "basetype" : "Unsigned32",
918
+ "ranges" : [
919
+ {
920
+ "min" : "0",
921
+ "max" : "4294967295"
922
+ },
923
+ ],
924
+ "range" : {
925
+ "min" : "0",
926
+ "max" : "4294967295"
927
+ },
928
+ },
929
+ },
930
+ "access" : "noaccess",
931
+ "description" :
932
+ """The identity of this Filtering Database.""",
933
+ }, # column
934
+ "rbridgeUniFdbAddr" : {
935
+ "nodetype" : "column",
936
+ "moduleName" : "RBRIDGE-MIB",
937
+ "oid" : "1.3.6.1.2.1.214.1.2.4.1.2",
938
+ "status" : "current",
939
+ "syntax" : {
940
+ "type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
941
+ },
942
+ "access" : "noaccess",
943
+ "description" :
944
+ """A unicast MAC address for which the device has
945
+ forwarding information.""",
946
+ }, # column
947
+ "rbridgeUniFdbPort" : {
948
+ "nodetype" : "column",
949
+ "moduleName" : "RBRIDGE-MIB",
950
+ "oid" : "1.3.6.1.2.1.214.1.2.4.1.3",
951
+ "status" : "current",
952
+ "syntax" : {
953
+ "type" : {
954
+ "basetype" : "Unsigned32",
955
+ "ranges" : [
956
+ {
957
+ "min" : "0",
958
+ "max" : "65535"
959
+ },
960
+ ],
961
+ "range" : {
962
+ "min" : "0",
963
+ "max" : "65535"
964
+ },
965
+ },
966
+ },
967
+ "access" : "readonly",
968
+ "description" :
969
+ """Either the value '0', or the RBridge port number of the
970
+ port on which a frame having a source address equal to the
971
+ value of the corresponding instance of rbridgeUniFdbAddr
972
+ has been seen. A value of '0' indicates that the port
973
+ number has not been learned but that the device does have
974
+ some information about this MAC address.
975
+
976
+ Implementors are encouraged to assign the port value to
977
+ this object whenever it is available, even for addresses
978
+ for which the corresponding value of rbridgeUniFdbStatus is
979
+ not learned(3).""",
980
+ }, # column
981
+ "rbridgeUniFdbNickname" : {
982
+ "nodetype" : "column",
983
+ "moduleName" : "RBRIDGE-MIB",
984
+ "oid" : "1.3.6.1.2.1.214.1.2.4.1.4",
985
+ "status" : "current",
986
+ "syntax" : {
987
+ "type" : { "module" :"RBRIDGE-MIB", "name" : "RbridgeNickname"},
988
+ },
989
+ "access" : "readonly",
990
+ "description" :
991
+ """The RBridge nickname that is placed in the egress
992
+ nickname field of a TRILL frame sent to this
993
+ rbridgeFdbAddress in this rbridgeFdbId.""",
994
+ "reference" :
995
+ """RFC 6325, Section 4.8.1""",
996
+ }, # column
997
+ "rbridgeUniFdbConfidence" : {
998
+ "nodetype" : "column",
999
+ "moduleName" : "RBRIDGE-MIB",
1000
+ "oid" : "1.3.6.1.2.1.214.1.2.4.1.5",
1001
+ "status" : "current",
1002
+ "syntax" : {
1003
+ "type" : {
1004
+ "basetype" : "Unsigned32",
1005
+ "ranges" : [
1006
+ {
1007
+ "min" : "0",
1008
+ "max" : "255"
1009
+ },
1010
+ ],
1011
+ "range" : {
1012
+ "min" : "0",
1013
+ "max" : "255"
1014
+ },
1015
+ },
1016
+ },
1017
+ "access" : "readonly",
1018
+ "description" :
1019
+ """The confidence level associated with this entry.""",
1020
+ "reference" :
1021
+ """RFC 6325, Section 4.8.1""",
1022
+ }, # column
1023
+ "rbridgeUniFdbStatus" : {
1024
+ "nodetype" : "column",
1025
+ "moduleName" : "RBRIDGE-MIB",
1026
+ "oid" : "1.3.6.1.2.1.214.1.2.4.1.6",
1027
+ "status" : "current",
1028
+ "syntax" : {
1029
+ "type" : {
1030
+ "basetype" : "Enumeration",
1031
+ "other" : {
1032
+ "nodetype" : "namednumber",
1033
+ "number" : "1"
1034
+ },
1035
+ "invalid" : {
1036
+ "nodetype" : "namednumber",
1037
+ "number" : "2"
1038
+ },
1039
+ "learned" : {
1040
+ "nodetype" : "namednumber",
1041
+ "number" : "3"
1042
+ },
1043
+ "self" : {
1044
+ "nodetype" : "namednumber",
1045
+ "number" : "4"
1046
+ },
1047
+ "mgmt" : {
1048
+ "nodetype" : "namednumber",
1049
+ "number" : "5"
1050
+ },
1051
+ "esadi" : {
1052
+ "nodetype" : "namednumber",
1053
+ "number" : "6"
1054
+ },
1055
+ },
1056
+ },
1057
+ "access" : "readonly",
1058
+ "description" :
1059
+ """The status of this entry. The meanings of the values
1060
+ are:
1061
+ other(1) - none of the following.
1062
+ invalid(2) - this entry is no longer valid (e.g., it
1063
+ was learned but has since aged out) but has not
1064
+ yet been flushed from the table.
1065
+ learned(3) - the information in this entry was learned
1066
+ and is being used.
1067
+ self(4) - the value of the corresponding instance of
1068
+ rbridgeFdbAddress represents one of the device's
1069
+ addresses. The corresponding instance of
1070
+ rbridgeFdbPort indicates which of the device's
1071
+ ports has this address.
1072
+
1073
+
1074
+
1075
+
1076
+
1077
+
1078
+
1079
+ mgmt(5) - the value of the corresponding instance of
1080
+ rbridgeFdbAddress was configured by management.
1081
+ esadi(6) - the value of the corresponding instance of
1082
+ rbridgeFdbAddress was learned from ESADI.""",
1083
+ }, # column
1084
+ "rbridgeUniFibTable" : {
1085
+ "nodetype" : "table",
1086
+ "moduleName" : "RBRIDGE-MIB",
1087
+ "oid" : "1.3.6.1.2.1.214.1.2.5",
1088
+ "status" : "current",
1089
+ "description" :
1090
+ """A table that contains information about nicknames known by
1091
+ the RBridge. If Equal-Cost Multipath (ECMP) is implemented,
1092
+ there are as many entries for a nickname as there are ECMP
1093
+ paths available for it.""",
1094
+ }, # table
1095
+ "rbridgeUniFibEntry" : {
1096
+ "nodetype" : "row",
1097
+ "moduleName" : "RBRIDGE-MIB",
1098
+ "oid" : "1.3.6.1.2.1.214.1.2.5.1",
1099
+ "status" : "current",
1100
+ "linkage" : [
1101
+ "rbridgeUniFibNickname",
1102
+ "rbridgeUniFibPort",
1103
+ "rbridgeUniFibNextHop",
1104
+ ],
1105
+ "description" :
1106
+ """A list of information about nicknames known by the RBridge.
1107
+ If ECMP is implemented, there are as many entries as there
1108
+ are ECMP paths available for a given nickname.""",
1109
+ }, # row
1110
+ "rbridgeUniFibNickname" : {
1111
+ "nodetype" : "column",
1112
+ "moduleName" : "RBRIDGE-MIB",
1113
+ "oid" : "1.3.6.1.2.1.214.1.2.5.1.1",
1114
+ "status" : "current",
1115
+ "syntax" : {
1116
+ "type" : { "module" :"RBRIDGE-MIB", "name" : "RbridgeNickname"},
1117
+ },
1118
+ "access" : "noaccess",
1119
+ "description" :
1120
+ """An RBridge nickname for which this RBridge has
1121
+ forwarding information.""",
1122
+ }, # column
1123
+ "rbridgeUniFibPort" : {
1124
+ "nodetype" : "column",
1125
+ "moduleName" : "RBRIDGE-MIB",
1126
+ "oid" : "1.3.6.1.2.1.214.1.2.5.1.2",
1127
+ "status" : "current",
1128
+ "syntax" : {
1129
+ "type" : {
1130
+ "basetype" : "Unsigned32",
1131
+ "ranges" : [
1132
+ {
1133
+ "min" : "0",
1134
+ "max" : "65535"
1135
+ },
1136
+ ],
1137
+ "range" : {
1138
+ "min" : "0",
1139
+ "max" : "65535"
1140
+ },
1141
+ },
1142
+ },
1143
+ "access" : "noaccess",
1144
+ "description" :
1145
+ """The RBridge port number of the port attached to the
1146
+ next-hop RBridge for the path towards the RBridge whose
1147
+ nickname is specified in this entry.""",
1148
+ }, # column
1149
+ "rbridgeUniFibNextHop" : {
1150
+ "nodetype" : "column",
1151
+ "moduleName" : "RBRIDGE-MIB",
1152
+ "oid" : "1.3.6.1.2.1.214.1.2.5.1.3",
1153
+ "status" : "current",
1154
+ "syntax" : {
1155
+ "type" : { "module" :"RBRIDGE-MIB", "name" : "RbridgeNickname"},
1156
+ },
1157
+ "access" : "noaccess",
1158
+ "description" :
1159
+ """The nickname of the next-hop RBridge for the path
1160
+ towards the RBridge whose nickname is specified in this
1161
+ entry.""",
1162
+ }, # column
1163
+ "rbridgeUniFibHopCount" : {
1164
+ "nodetype" : "column",
1165
+ "moduleName" : "RBRIDGE-MIB",
1166
+ "oid" : "1.3.6.1.2.1.214.1.2.5.1.4",
1167
+ "status" : "current",
1168
+ "syntax" : {
1169
+ "type" : { "module" :"", "name" : "Unsigned32"},
1170
+ },
1171
+ "access" : "readonly",
1172
+ "description" :
1173
+ """The hop count from this ingress RBridge to the egress
1174
+ RBridge whose nickname is specified in
1175
+ rbridgeUniFibNickname.""",
1176
+ }, # column
1177
+ "rbridgeMultiFibTable" : {
1178
+ "nodetype" : "table",
1179
+ "moduleName" : "RBRIDGE-MIB",
1180
+ "oid" : "1.3.6.1.2.1.214.1.2.6",
1181
+ "status" : "current",
1182
+ "description" :
1183
+ """A table that contains information about egress nicknames
1184
+ used for multi-destination frame forwarding by this
1185
+ RBridge.""",
1186
+ }, # table
1187
+ "rbridgeMultiFibEntry" : {
1188
+ "nodetype" : "row",
1189
+ "moduleName" : "RBRIDGE-MIB",
1190
+ "oid" : "1.3.6.1.2.1.214.1.2.6.1",
1191
+ "status" : "current",
1192
+ "linkage" : [
1193
+ "rbridgeMultiFibNickname",
1194
+ ],
1195
+ "description" :
1196
+ """A list of information about egress nicknames used for
1197
+ multi-destination frame forwarding by this RBridge.""",
1198
+ }, # row
1199
+ "rbridgeMultiFibNickname" : {
1200
+ "nodetype" : "column",
1201
+ "moduleName" : "RBRIDGE-MIB",
1202
+ "oid" : "1.3.6.1.2.1.214.1.2.6.1.1",
1203
+ "status" : "current",
1204
+ "syntax" : {
1205
+ "type" : { "module" :"RBRIDGE-MIB", "name" : "RbridgeNickname"},
1206
+ },
1207
+ "access" : "noaccess",
1208
+ "description" :
1209
+ """The nickname of the multicast distribution tree.""",
1210
+ }, # column
1211
+ "rbridgeMultiFibPorts" : {
1212
+ "nodetype" : "column",
1213
+ "moduleName" : "RBRIDGE-MIB",
1214
+ "oid" : "1.3.6.1.2.1.214.1.2.6.1.2",
1215
+ "status" : "current",
1216
+ "syntax" : {
1217
+ "type" : { "module" :"Q-BRIDGE-MIB", "name" : "PortList"},
1218
+ },
1219
+ "access" : "readonly",
1220
+ "description" :
1221
+ """The list of ports to which a frame destined to this
1222
+ multicast distribution tree is flooded. This may be pruned
1223
+ further based on other forwarding information.""",
1224
+ }, # column
1225
+ "rbridgeVlan" : {
1226
+ "nodetype" : "node",
1227
+ "moduleName" : "RBRIDGE-MIB",
1228
+ "oid" : "1.3.6.1.2.1.214.1.3",
1229
+ }, # node
1230
+ "rbridgeVlanTable" : {
1231
+ "nodetype" : "table",
1232
+ "moduleName" : "RBRIDGE-MIB",
1233
+ "oid" : "1.3.6.1.2.1.214.1.3.1",
1234
+ "status" : "current",
1235
+ "description" :
1236
+ """A table that contains information about VLANs on the
1237
+ RBridge.""",
1238
+ }, # table
1239
+ "rbridgeVlanEntry" : {
1240
+ "nodetype" : "row",
1241
+ "moduleName" : "RBRIDGE-MIB",
1242
+ "oid" : "1.3.6.1.2.1.214.1.3.1.1",
1243
+ "status" : "current",
1244
+ "linkage" : [
1245
+ "rbridgeVlanIndex",
1246
+ ],
1247
+ "description" :
1248
+ """A list of information about VLANs on the RBridge.""",
1249
+ }, # row
1250
+ "rbridgeVlanIndex" : {
1251
+ "nodetype" : "column",
1252
+ "moduleName" : "RBRIDGE-MIB",
1253
+ "oid" : "1.3.6.1.2.1.214.1.3.1.1.1",
1254
+ "status" : "current",
1255
+ "syntax" : {
1256
+ "type" : {
1257
+ "basetype" : "Unsigned32",
1258
+ "ranges" : [
1259
+ {
1260
+ "min" : "1",
1261
+ "max" : "4094"
1262
+ },
1263
+ {
1264
+ "min" : "4096",
1265
+ "max" : "4294967295"
1266
+ },
1267
+ ],
1268
+ "range" : {
1269
+ "min" : "1",
1270
+ "max" : "4294967295"
1271
+ },
1272
+ },
1273
+ },
1274
+ "access" : "noaccess",
1275
+ "description" :
1276
+ """The VLAN-ID referring to this VLAN.""",
1277
+ }, # column
1278
+ "rbridgeVlanForwarderLosts" : {
1279
+ "nodetype" : "column",
1280
+ "moduleName" : "RBRIDGE-MIB",
1281
+ "oid" : "1.3.6.1.2.1.214.1.3.1.1.2",
1282
+ "status" : "current",
1283
+ "syntax" : {
1284
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1285
+ },
1286
+ "access" : "readonly",
1287
+ "units" : "times",
1288
+ "description" :
1289
+ """The number of times this RBridge has lost appointed
1290
+ forwarder status for this VLAN on any of its ports.
1291
+
1292
+ Discontinuities in the value of this counter can occur
1293
+ at re-initialization of the management system.""",
1294
+ "reference" :
1295
+ """RFC 6325, Section 4.8.3""",
1296
+ }, # column
1297
+ "rbridgeVlanDisableLearning" : {
1298
+ "nodetype" : "column",
1299
+ "moduleName" : "RBRIDGE-MIB",
1300
+ "oid" : "1.3.6.1.2.1.214.1.3.1.1.3",
1301
+ "status" : "current",
1302
+ "syntax" : {
1303
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1304
+ },
1305
+ "access" : "readwrite",
1306
+ "default" : "false",
1307
+ "description" :
1308
+ """Disable learning of MAC addresses seen in this VLAN.
1309
+ One application of this may be to restrict learning to
1310
+ ESADI. To disable learning, the value of this object
1311
+ should be set to 'true'. The default is 'false'.
1312
+
1313
+ The value of this object MUST be retained across
1314
+ re-initializations of the management system.""",
1315
+ "reference" :
1316
+ """RFC 6325, Section 4.8""",
1317
+ }, # column
1318
+ "rbridgeVlanSnooping" : {
1319
+ "nodetype" : "column",
1320
+ "moduleName" : "RBRIDGE-MIB",
1321
+ "oid" : "1.3.6.1.2.1.214.1.3.1.1.4",
1322
+ "status" : "current",
1323
+ "syntax" : {
1324
+ "type" : {
1325
+ "basetype" : "Enumeration",
1326
+ "notSupported" : {
1327
+ "nodetype" : "namednumber",
1328
+ "number" : "1"
1329
+ },
1330
+ "ipv4" : {
1331
+ "nodetype" : "namednumber",
1332
+ "number" : "2"
1333
+ },
1334
+ "ipv6" : {
1335
+ "nodetype" : "namednumber",
1336
+ "number" : "3"
1337
+ },
1338
+ "ipv4v6" : {
1339
+ "nodetype" : "namednumber",
1340
+ "number" : "4"
1341
+ },
1342
+ },
1343
+ },
1344
+ "access" : "readonly",
1345
+ "description" :
1346
+ """IP Multicast Snooping on this VLAN. For RBridges
1347
+ performing both IPv4 and IPv6 IP Multicast Snooping, the
1348
+ value returned is ipv4v6(4).""",
1349
+ "reference" :
1350
+ """RFC 6325, Section 4.7""",
1351
+ }, # column
1352
+ "rbridgeVlanPortTable" : {
1353
+ "nodetype" : "table",
1354
+ "moduleName" : "RBRIDGE-MIB",
1355
+ "oid" : "1.3.6.1.2.1.214.1.3.2",
1356
+ "status" : "current",
1357
+ "description" :
1358
+ """A table that contains information about VLANs on an RBridge
1359
+ port.""",
1360
+ }, # table
1361
+ "rbridgeVlanPortEntry" : {
1362
+ "nodetype" : "row",
1363
+ "moduleName" : "RBRIDGE-MIB",
1364
+ "oid" : "1.3.6.1.2.1.214.1.3.2.1",
1365
+ "status" : "current",
1366
+ "linkage" : [
1367
+ "rbridgeBasePort",
1368
+ "rbridgeVlanIndex",
1369
+ ],
1370
+ "description" :
1371
+ """A list of information about VLANs on the RBridge port.""",
1372
+ }, # row
1373
+ "rbridgeVlanPortInhibited" : {
1374
+ "nodetype" : "column",
1375
+ "moduleName" : "RBRIDGE-MIB",
1376
+ "oid" : "1.3.6.1.2.1.214.1.3.2.1.1",
1377
+ "status" : "current",
1378
+ "syntax" : {
1379
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1380
+ },
1381
+ "access" : "readonly",
1382
+ "description" :
1383
+ """This VLAN has been inhibited by the RBridge due to
1384
+ conflicting forwarder information received from another
1385
+ RBridge, when the value of this object is 'true'.""",
1386
+ "reference" :
1387
+ """RFC 6325, Section 4.2.4.3""",
1388
+ }, # column
1389
+ "rbridgeVlanPortForwarder" : {
1390
+ "nodetype" : "column",
1391
+ "moduleName" : "RBRIDGE-MIB",
1392
+ "oid" : "1.3.6.1.2.1.214.1.3.2.1.2",
1393
+ "status" : "current",
1394
+ "syntax" : {
1395
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1396
+ },
1397
+ "access" : "readonly",
1398
+ "description" :
1399
+ """This RBridge is an appointed forwarder for this VLAN
1400
+ on this port, when the value of this object is 'true'.""",
1401
+ "reference" :
1402
+ """RFC 6325, Section 4.2.4.3""",
1403
+ }, # column
1404
+ "rbridgeVlanPortAnnouncing" : {
1405
+ "nodetype" : "column",
1406
+ "moduleName" : "RBRIDGE-MIB",
1407
+ "oid" : "1.3.6.1.2.1.214.1.3.2.1.3",
1408
+ "status" : "current",
1409
+ "syntax" : {
1410
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1411
+ },
1412
+ "access" : "readwrite",
1413
+ "default" : "true",
1414
+ "description" :
1415
+ """TRILL-Hellos tagged with this VLAN can be sent by this
1416
+ RBridge on this port, when the value of this object
1417
+ is 'true'.
1418
+
1419
+ The value of this object MUST be retained across
1420
+ re-initializations of the management system.""",
1421
+ "reference" :
1422
+ """RFC 6325, Section 4.4.3""",
1423
+ }, # column
1424
+ "rbridgeVlanPortDetectedVlanMapping" : {
1425
+ "nodetype" : "column",
1426
+ "moduleName" : "RBRIDGE-MIB",
1427
+ "oid" : "1.3.6.1.2.1.214.1.3.2.1.4",
1428
+ "status" : "current",
1429
+ "syntax" : {
1430
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1431
+ },
1432
+ "access" : "readonly",
1433
+ "description" :
1434
+ """VLAN mapping has been detected on the link attached
1435
+ to this port, when the value of this object is 'true'.""",
1436
+ "reference" :
1437
+ """RFC 6325, Section 4.4.5""",
1438
+ }, # column
1439
+ "rbridgeEsadi" : {
1440
+ "nodetype" : "node",
1441
+ "moduleName" : "RBRIDGE-MIB",
1442
+ "oid" : "1.3.6.1.2.1.214.1.4",
1443
+ }, # node
1444
+ "rbridgeEsadiTable" : {
1445
+ "nodetype" : "table",
1446
+ "moduleName" : "RBRIDGE-MIB",
1447
+ "oid" : "1.3.6.1.2.1.214.1.4.1",
1448
+ "status" : "current",
1449
+ "description" :
1450
+ """A table that contains information about ESADI instances on
1451
+ VLANs, if available.""",
1452
+ "reference" :
1453
+ """RFC 6325, Section 4.2.5""",
1454
+ }, # table
1455
+ "rbridgeEsadiEntry" : {
1456
+ "nodetype" : "row",
1457
+ "moduleName" : "RBRIDGE-MIB",
1458
+ "oid" : "1.3.6.1.2.1.214.1.4.1.1",
1459
+ "create" : "true",
1460
+ "status" : "current",
1461
+ "linkage" : [
1462
+ "rbridgeVlanIndex",
1463
+ ],
1464
+ "description" :
1465
+ """Information about an ESADI instance on a VLAN.""",
1466
+ }, # row
1467
+ "rbridgeEsadiEnable" : {
1468
+ "nodetype" : "column",
1469
+ "moduleName" : "RBRIDGE-MIB",
1470
+ "oid" : "1.3.6.1.2.1.214.1.4.1.1.1",
1471
+ "status" : "current",
1472
+ "syntax" : {
1473
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1474
+ },
1475
+ "access" : "readwrite",
1476
+ "default" : "true",
1477
+ "description" :
1478
+ """If the RBridge is participating in an ESADI instance for
1479
+ this VLAN, the value of this object is 'true'. To disable
1480
+ participation, set it to 'false'.
1481
+
1482
+ The value of this object MUST be retained across
1483
+ re-initializations of the management system.""",
1484
+ "reference" :
1485
+ """RFC 6325, Section 4.2.5""",
1486
+ }, # column
1487
+ "rbridgeEsadiConfidence" : {
1488
+ "nodetype" : "column",
1489
+ "moduleName" : "RBRIDGE-MIB",
1490
+ "oid" : "1.3.6.1.2.1.214.1.4.1.1.2",
1491
+ "status" : "current",
1492
+ "syntax" : {
1493
+ "type" : {
1494
+ "basetype" : "Unsigned32",
1495
+ "ranges" : [
1496
+ {
1497
+ "min" : "0",
1498
+ "max" : "255"
1499
+ },
1500
+ ],
1501
+ "range" : {
1502
+ "min" : "0",
1503
+ "max" : "255"
1504
+ },
1505
+ },
1506
+ },
1507
+ "access" : "readwrite",
1508
+ "default" : "16",
1509
+ "description" :
1510
+ """Confidence level of address entries sent by this
1511
+ ESADI instance. The default is 16.
1512
+
1513
+
1514
+
1515
+ The value of this object MUST be retained across
1516
+ re-initializations of the management system.""",
1517
+ "reference" :
1518
+ """RFC 6325, Section 4.2.5""",
1519
+ }, # column
1520
+ "rbridgeEsadiDrbPriority" : {
1521
+ "nodetype" : "column",
1522
+ "moduleName" : "RBRIDGE-MIB",
1523
+ "oid" : "1.3.6.1.2.1.214.1.4.1.1.3",
1524
+ "status" : "current",
1525
+ "syntax" : {
1526
+ "type" : {
1527
+ "basetype" : "Unsigned32",
1528
+ "ranges" : [
1529
+ {
1530
+ "min" : "0",
1531
+ "max" : "127"
1532
+ },
1533
+ ],
1534
+ "range" : {
1535
+ "min" : "0",
1536
+ "max" : "127"
1537
+ },
1538
+ },
1539
+ },
1540
+ "access" : "readwrite",
1541
+ "description" :
1542
+ """The priority of this RBridge for being selected as the
1543
+ DRB for this ESADI instance.
1544
+
1545
+ The value of this object MUST be retained across
1546
+ re-initializations of the management system.""",
1547
+ "reference" :
1548
+ """RFC 6325, Section 4.2.5""",
1549
+ }, # column
1550
+ "rbridgeEsadiDrb" : {
1551
+ "nodetype" : "column",
1552
+ "moduleName" : "RBRIDGE-MIB",
1553
+ "oid" : "1.3.6.1.2.1.214.1.4.1.1.4",
1554
+ "status" : "current",
1555
+ "syntax" : {
1556
+ "type" : { "module" :"RBRIDGE-MIB", "name" : "RbridgeAddress"},
1557
+ },
1558
+ "access" : "readonly",
1559
+ "description" :
1560
+ """The DRB on this ESADI instance's virtual link.""",
1561
+ "reference" :
1562
+ """RFC 6325, Section 4.2.5""",
1563
+ }, # column
1564
+ "rbridgeEsadiDrbHoldingTime" : {
1565
+ "nodetype" : "column",
1566
+ "moduleName" : "RBRIDGE-MIB",
1567
+ "oid" : "1.3.6.1.2.1.214.1.4.1.1.5",
1568
+ "status" : "current",
1569
+ "syntax" : {
1570
+ "type" : {
1571
+ "basetype" : "Unsigned32",
1572
+ "ranges" : [
1573
+ {
1574
+ "min" : "0",
1575
+ "max" : "127"
1576
+ },
1577
+ ],
1578
+ "range" : {
1579
+ "min" : "0",
1580
+ "max" : "127"
1581
+ },
1582
+ },
1583
+ },
1584
+ "access" : "readwrite",
1585
+ "description" :
1586
+ """The holding time for this ESADI instance.
1587
+
1588
+ The value of this object MUST be retained across
1589
+ re-initializations of the management system.""",
1590
+ "reference" :
1591
+ """RFC 6325, Section 4.2.5""",
1592
+ }, # column
1593
+ "rbridgeEsadiRowStatus" : {
1594
+ "nodetype" : "column",
1595
+ "moduleName" : "RBRIDGE-MIB",
1596
+ "oid" : "1.3.6.1.2.1.214.1.4.1.1.6",
1597
+ "status" : "current",
1598
+ "syntax" : {
1599
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1600
+ },
1601
+ "access" : "readwrite",
1602
+ "description" :
1603
+ """This object indicates the status of the entry.""",
1604
+ }, # column
1605
+ "rbridgeCounter" : {
1606
+ "nodetype" : "node",
1607
+ "moduleName" : "RBRIDGE-MIB",
1608
+ "oid" : "1.3.6.1.2.1.214.1.5",
1609
+ }, # node
1610
+ "rbridgePortCounterTable" : {
1611
+ "nodetype" : "table",
1612
+ "moduleName" : "RBRIDGE-MIB",
1613
+ "oid" : "1.3.6.1.2.1.214.1.5.1",
1614
+ "status" : "current",
1615
+ "description" :
1616
+ """A table that contains per-port counters for this RBridge.""",
1617
+ }, # table
1618
+ "rbridgePortCounterEntry" : {
1619
+ "nodetype" : "row",
1620
+ "moduleName" : "RBRIDGE-MIB",
1621
+ "oid" : "1.3.6.1.2.1.214.1.5.1.1",
1622
+ "status" : "current",
1623
+ "linkage" : [
1624
+ "rbridgeBasePort",
1625
+ ],
1626
+ "description" :
1627
+ """Counters for a port on this RBridge.""",
1628
+ }, # row
1629
+ "rbridgePortRpfCheckFails" : {
1630
+ "nodetype" : "column",
1631
+ "moduleName" : "RBRIDGE-MIB",
1632
+ "oid" : "1.3.6.1.2.1.214.1.5.1.1.1",
1633
+ "status" : "current",
1634
+ "syntax" : {
1635
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1636
+ },
1637
+ "access" : "readonly",
1638
+ "units" : "frames",
1639
+ "description" :
1640
+ """The number of times a multi-destination frame was
1641
+ dropped on this port because the Reverse Path Forwarding
1642
+ (RPF) check failed.
1643
+
1644
+ Discontinuities in the value of this counter can occur
1645
+ at re-initialization of the management system, and at
1646
+
1647
+
1648
+
1649
+ other times as indicated by the value of the
1650
+ ifCounterDiscontinuityTime object of the associated
1651
+ interface.""",
1652
+ "reference" :
1653
+ """RFC 6325, Section 4.5.2""",
1654
+ }, # column
1655
+ "rbridgePortHopCountExceeds" : {
1656
+ "nodetype" : "column",
1657
+ "moduleName" : "RBRIDGE-MIB",
1658
+ "oid" : "1.3.6.1.2.1.214.1.5.1.1.2",
1659
+ "status" : "current",
1660
+ "syntax" : {
1661
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1662
+ },
1663
+ "access" : "readonly",
1664
+ "units" : "frames",
1665
+ "description" :
1666
+ """The number of times a frame was dropped on this port
1667
+ because its hop count was zero.
1668
+
1669
+ Discontinuities in the value of this counter can occur
1670
+ at re-initialization of the management system, and at
1671
+ other times as indicated by the value of the
1672
+ ifCounterDiscontinuityTime object of the associated
1673
+ interface.""",
1674
+ "reference" :
1675
+ """RFC 6325, Section 3.6""",
1676
+ }, # column
1677
+ "rbridgePortOptionDrops" : {
1678
+ "nodetype" : "column",
1679
+ "moduleName" : "RBRIDGE-MIB",
1680
+ "oid" : "1.3.6.1.2.1.214.1.5.1.1.3",
1681
+ "status" : "current",
1682
+ "syntax" : {
1683
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1684
+ },
1685
+ "access" : "readonly",
1686
+ "units" : "frames",
1687
+ "description" :
1688
+ """The number of times a frame was dropped on this port
1689
+ because it contained unsupported options.
1690
+
1691
+ Discontinuities in the value of this counter can occur
1692
+ at re-initialization of the management system, and at
1693
+ other times as indicated by the value of the
1694
+ ifCounterDiscontinuityTime object of the associated
1695
+ interface.""",
1696
+ "reference" :
1697
+ """RFC 6325, Section 3.5""",
1698
+ }, # column
1699
+ "rbridgePortTrillInFrames" : {
1700
+ "nodetype" : "column",
1701
+ "moduleName" : "RBRIDGE-MIB",
1702
+ "oid" : "1.3.6.1.2.1.214.1.5.1.1.4",
1703
+ "status" : "current",
1704
+ "syntax" : {
1705
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1706
+ },
1707
+ "access" : "readonly",
1708
+ "units" : "frames",
1709
+ "description" :
1710
+ """The number of TRILL-encapsulated frames that have been
1711
+ received by this port from its attached link, including
1712
+ management frames.
1713
+
1714
+ Discontinuities in the value of this counter can occur
1715
+ at re-initialization of the management system, and at
1716
+ other times as indicated by the value of the
1717
+ ifCounterDiscontinuityTime object of the associated
1718
+ interface.""",
1719
+ "reference" :
1720
+ """RFC 6325, Section 2.3""",
1721
+ }, # column
1722
+ "rbridgePortTrillOutFrames" : {
1723
+ "nodetype" : "column",
1724
+ "moduleName" : "RBRIDGE-MIB",
1725
+ "oid" : "1.3.6.1.2.1.214.1.5.1.1.5",
1726
+ "status" : "current",
1727
+ "syntax" : {
1728
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1729
+ },
1730
+ "access" : "readonly",
1731
+ "units" : "frames",
1732
+ "description" :
1733
+ """The number of TRILL-encapsulated frames that have been
1734
+ transmitted by this port to its attached link, including
1735
+ management frames.
1736
+
1737
+ Discontinuities in the value of this counter can occur
1738
+ at re-initialization of the management system, and at
1739
+ other times as indicated by the value of the
1740
+ ifCounterDiscontinuityTime object of the associated
1741
+ interface.""",
1742
+ "reference" :
1743
+ """RFC 6325, Section 2.3""",
1744
+ }, # column
1745
+ "rbridgeSnooping" : {
1746
+ "nodetype" : "node",
1747
+ "moduleName" : "RBRIDGE-MIB",
1748
+ "oid" : "1.3.6.1.2.1.214.1.6",
1749
+ }, # node
1750
+ "rbridgeSnoopingPortTable" : {
1751
+ "nodetype" : "table",
1752
+ "moduleName" : "RBRIDGE-MIB",
1753
+ "oid" : "1.3.6.1.2.1.214.1.6.1",
1754
+ "status" : "current",
1755
+ "description" :
1756
+ """For RBridges implementing IP Multicast Snooping,
1757
+ information about ports on which the presence of IPv4
1758
+ or IPv6 multicast routers has been detected.""",
1759
+ "reference" :
1760
+ """RFC 6325, Section 4.7""",
1761
+ }, # table
1762
+ "rbridgeSnoopingPortEntry" : {
1763
+ "nodetype" : "row",
1764
+ "moduleName" : "RBRIDGE-MIB",
1765
+ "oid" : "1.3.6.1.2.1.214.1.6.1.1",
1766
+ "status" : "current",
1767
+ "linkage" : [
1768
+ "rbridgeBasePort",
1769
+ "rbridgeVlanIndex",
1770
+ ],
1771
+ "description" :
1772
+ """Information about ports on which the presence of IPv4
1773
+ or IPv6 multicast routers has been detected for a
1774
+ VLAN.""",
1775
+ }, # row
1776
+ "rbridgeSnoopingPortAddrType" : {
1777
+ "nodetype" : "column",
1778
+ "moduleName" : "RBRIDGE-MIB",
1779
+ "oid" : "1.3.6.1.2.1.214.1.6.1.1.1",
1780
+ "status" : "current",
1781
+ "syntax" : {
1782
+ "type" : {
1783
+ "basetype" : "Enumeration",
1784
+ "ipv4" : {
1785
+ "nodetype" : "namednumber",
1786
+ "number" : "1"
1787
+ },
1788
+ "ipv6" : {
1789
+ "nodetype" : "namednumber",
1790
+ "number" : "2"
1791
+ },
1792
+ "ipv4v6" : {
1793
+ "nodetype" : "namednumber",
1794
+ "number" : "3"
1795
+ },
1796
+ },
1797
+ },
1798
+ "access" : "readonly",
1799
+ "description" :
1800
+ """The IP address type of an IP multicast router detected
1801
+
1802
+
1803
+
1804
+ on this port and VLAN. If only IPv4 router(s)
1805
+ are detected, the value returned is 'ipv4'. If only
1806
+ IPv6 routers are detected, the value returned is
1807
+ 'ipv6'. If both IPv4 and IPv6 routers are detected on
1808
+ this port and VLAN, the value returned is 'ipv4v6'.""",
1809
+ "reference" :
1810
+ """RFC 6325, Section 4.7""",
1811
+ }, # column
1812
+ "rbridgeSnoopingAddrTable" : {
1813
+ "nodetype" : "table",
1814
+ "moduleName" : "RBRIDGE-MIB",
1815
+ "oid" : "1.3.6.1.2.1.214.1.6.2",
1816
+ "status" : "current",
1817
+ "description" :
1818
+ """For RBridges implementing IP Multicast Snooping,
1819
+ information about IP multicast addresses being
1820
+ snooped.""",
1821
+ "reference" :
1822
+ """RFC 6325, Section 4.8""",
1823
+ }, # table
1824
+ "rbridgeSnoopingAddrEntry" : {
1825
+ "nodetype" : "row",
1826
+ "moduleName" : "RBRIDGE-MIB",
1827
+ "oid" : "1.3.6.1.2.1.214.1.6.2.1",
1828
+ "status" : "current",
1829
+ "linkage" : [
1830
+ "rbridgeVlanIndex",
1831
+ "rbridgeSnoopingAddrType",
1832
+ "rbridgeSnoopingAddr",
1833
+ ],
1834
+ "description" :
1835
+ """Information about IP multicast addresses being
1836
+ snooped.""",
1837
+ }, # row
1838
+ "rbridgeSnoopingAddrType" : {
1839
+ "nodetype" : "column",
1840
+ "moduleName" : "RBRIDGE-MIB",
1841
+ "oid" : "1.3.6.1.2.1.214.1.6.2.1.1",
1842
+ "status" : "current",
1843
+ "syntax" : {
1844
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
1845
+ },
1846
+ "access" : "noaccess",
1847
+ "description" :
1848
+ """The IP multicast address type for which a listener has been
1849
+ detected by this RBridge. This MIB requires support for only
1850
+ IPv4 and IPv6 address types.""",
1851
+ "reference" :
1852
+ """RFC 6325, Section 4.7""",
1853
+ }, # column
1854
+ "rbridgeSnoopingAddr" : {
1855
+ "nodetype" : "column",
1856
+ "moduleName" : "RBRIDGE-MIB",
1857
+ "oid" : "1.3.6.1.2.1.214.1.6.2.1.2",
1858
+ "status" : "current",
1859
+ "syntax" : {
1860
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
1861
+ },
1862
+ "access" : "noaccess",
1863
+ "description" :
1864
+ """The IP multicast address for which a listener has been
1865
+ detected by this RBridge. The address type of this object
1866
+ is specified in rbridgeSnoopingAddrType. This MIB requires
1867
+ support for only global IPv4 and IPv6 addresses, so the
1868
+ length of the object can be either 4 or 16 bytes. Hence,
1869
+ the index will not exceed the OID size limit.""",
1870
+ "reference" :
1871
+ """RFC 6325, Section 4.7""",
1872
+ }, # column
1873
+ "rbridgeSnoopingAddrPorts" : {
1874
+ "nodetype" : "column",
1875
+ "moduleName" : "RBRIDGE-MIB",
1876
+ "oid" : "1.3.6.1.2.1.214.1.6.2.1.3",
1877
+ "status" : "current",
1878
+ "syntax" : {
1879
+ "type" : { "module" :"Q-BRIDGE-MIB", "name" : "PortList"},
1880
+ },
1881
+ "access" : "readonly",
1882
+ "description" :
1883
+ """The set of ports on which a listener has been detected
1884
+ for this IP multicast address.""",
1885
+ "reference" :
1886
+ """RFC 6325, Section 4.7""",
1887
+ }, # column
1888
+ "rbridgeDtree" : {
1889
+ "nodetype" : "node",
1890
+ "moduleName" : "RBRIDGE-MIB",
1891
+ "oid" : "1.3.6.1.2.1.214.1.7",
1892
+ }, # node
1893
+ "rbridgeDtreePriority" : {
1894
+ "nodetype" : "scalar",
1895
+ "moduleName" : "RBRIDGE-MIB",
1896
+ "oid" : "1.3.6.1.2.1.214.1.7.1",
1897
+ "status" : "current",
1898
+ "syntax" : {
1899
+ "type" : {
1900
+ "basetype" : "Unsigned32",
1901
+ "ranges" : [
1902
+ {
1903
+ "min" : "1",
1904
+ "max" : "65535"
1905
+ },
1906
+ ],
1907
+ "range" : {
1908
+ "min" : "1",
1909
+ "max" : "65535"
1910
+ },
1911
+ },
1912
+ },
1913
+ "access" : "readwrite",
1914
+ "description" :
1915
+ """The distribution tree root priority for this RBridge.
1916
+
1917
+
1918
+
1919
+ The default value of this object is 32768.
1920
+
1921
+ The value of this object MUST be retained across
1922
+ re-initializations of the management system.""",
1923
+ "reference" :
1924
+ """RFC 6325, Section 4.5""",
1925
+ }, # scalar
1926
+ "rbridgeDtreeActiveTrees" : {
1927
+ "nodetype" : "scalar",
1928
+ "moduleName" : "RBRIDGE-MIB",
1929
+ "oid" : "1.3.6.1.2.1.214.1.7.2",
1930
+ "status" : "current",
1931
+ "syntax" : {
1932
+ "type" : { "module" :"", "name" : "Unsigned32"},
1933
+ },
1934
+ "access" : "readonly",
1935
+ "description" :
1936
+ """The total number of trees being computed by all RBridges
1937
+ in the campus.""",
1938
+ "reference" :
1939
+ """RFC 6325, Section 4.5""",
1940
+ }, # scalar
1941
+ "rbridgeDtreeMaxTrees" : {
1942
+ "nodetype" : "scalar",
1943
+ "moduleName" : "RBRIDGE-MIB",
1944
+ "oid" : "1.3.6.1.2.1.214.1.7.3",
1945
+ "status" : "current",
1946
+ "syntax" : {
1947
+ "type" : { "module" :"", "name" : "Unsigned32"},
1948
+ },
1949
+ "access" : "readonly",
1950
+ "description" :
1951
+ """The maximum number of trees this RBridge can compute.""",
1952
+ "reference" :
1953
+ """RFC 6325, Section 4.5""",
1954
+ }, # scalar
1955
+ "rbridgeDtreeDesiredUseTrees" : {
1956
+ "nodetype" : "scalar",
1957
+ "moduleName" : "RBRIDGE-MIB",
1958
+ "oid" : "1.3.6.1.2.1.214.1.7.4",
1959
+ "status" : "current",
1960
+ "syntax" : {
1961
+ "type" : { "module" :"", "name" : "Unsigned32"},
1962
+ },
1963
+ "access" : "readonly",
1964
+ "description" :
1965
+ """The maximum number of trees this RBridge would like to
1966
+ use for transmission of ingress multi-destination frames.""",
1967
+ "reference" :
1968
+ """RFC 6325, Section 4.5""",
1969
+ }, # scalar
1970
+ "rbridgeDtreeTable" : {
1971
+ "nodetype" : "table",
1972
+ "moduleName" : "RBRIDGE-MIB",
1973
+ "oid" : "1.3.6.1.2.1.214.1.7.5",
1974
+ "status" : "current",
1975
+ "description" :
1976
+ """Information about distribution trees being computed
1977
+ by this RBridge.""",
1978
+ "reference" :
1979
+ """RFC 6325, Section 4.5""",
1980
+ }, # table
1981
+ "rbridgeDtreeEntry" : {
1982
+ "nodetype" : "row",
1983
+ "moduleName" : "RBRIDGE-MIB",
1984
+ "oid" : "1.3.6.1.2.1.214.1.7.5.1",
1985
+ "status" : "current",
1986
+ "linkage" : [
1987
+ "rbridgeDtreeNumber",
1988
+ ],
1989
+ "description" :
1990
+ """List of information about distribution trees being computed
1991
+ by this RBridge.""",
1992
+ }, # row
1993
+ "rbridgeDtreeNumber" : {
1994
+ "nodetype" : "column",
1995
+ "moduleName" : "RBRIDGE-MIB",
1996
+ "oid" : "1.3.6.1.2.1.214.1.7.5.1.1",
1997
+ "status" : "current",
1998
+ "syntax" : {
1999
+ "type" : {
2000
+ "basetype" : "Unsigned32",
2001
+ "ranges" : [
2002
+ {
2003
+ "min" : "0",
2004
+ "max" : "65535"
2005
+ },
2006
+ ],
2007
+ "range" : {
2008
+ "min" : "0",
2009
+ "max" : "65535"
2010
+ },
2011
+ },
2012
+ },
2013
+ "access" : "noaccess",
2014
+ "description" :
2015
+ """The tree number of a distribution tree being computed by
2016
+ this RBridge.""",
2017
+ "reference" :
2018
+ """RFC 6325, Section 4.5""",
2019
+ }, # column
2020
+ "rbridgeDtreeNickname" : {
2021
+ "nodetype" : "column",
2022
+ "moduleName" : "RBRIDGE-MIB",
2023
+ "oid" : "1.3.6.1.2.1.214.1.7.5.1.2",
2024
+ "status" : "current",
2025
+ "syntax" : {
2026
+ "type" : { "module" :"RBRIDGE-MIB", "name" : "RbridgeNickname"},
2027
+ },
2028
+ "access" : "readonly",
2029
+ "description" :
2030
+ """The nickname of the distribution tree.""",
2031
+ "reference" :
2032
+ """RFC 6325, Section 4.5""",
2033
+ }, # column
2034
+ "rbridgeDtreeIngress" : {
2035
+ "nodetype" : "column",
2036
+ "moduleName" : "RBRIDGE-MIB",
2037
+ "oid" : "1.3.6.1.2.1.214.1.7.5.1.3",
2038
+ "status" : "current",
2039
+ "syntax" : {
2040
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2041
+ },
2042
+ "access" : "readonly",
2043
+ "description" :
2044
+ """Indicates whether this RBridge might choose this
2045
+ distribution tree to ingress a multi-destination frame.""",
2046
+ "reference" :
2047
+ """RFC 6325, Section 4.5""",
2048
+ }, # column
2049
+ "rbridgeTrill" : {
2050
+ "nodetype" : "node",
2051
+ "moduleName" : "RBRIDGE-MIB",
2052
+ "oid" : "1.3.6.1.2.1.214.1.8",
2053
+ }, # node
2054
+ "rbridgeTrillMinMtuDesired" : {
2055
+ "nodetype" : "scalar",
2056
+ "moduleName" : "RBRIDGE-MIB",
2057
+ "oid" : "1.3.6.1.2.1.214.1.8.1",
2058
+ "status" : "current",
2059
+ "syntax" : {
2060
+ "type" : { "module" :"", "name" : "Unsigned32"},
2061
+ },
2062
+ "access" : "readwrite",
2063
+ "description" :
2064
+ """The desired minimum acceptable inter-RBridge link MTU for
2065
+ the campus, that is, originatingLSPBufferSize.
2066
+
2067
+ The value of this object MUST be retained across
2068
+ re-initializations of the management system.""",
2069
+ "reference" :
2070
+ """RFC 6325, Section 4.3""",
2071
+ }, # scalar
2072
+ "rbridgeTrillSz" : {
2073
+ "nodetype" : "scalar",
2074
+ "moduleName" : "RBRIDGE-MIB",
2075
+ "oid" : "1.3.6.1.2.1.214.1.8.2",
2076
+ "status" : "current",
2077
+ "syntax" : {
2078
+ "type" : { "module" :"", "name" : "Unsigned32"},
2079
+ },
2080
+ "access" : "readonly",
2081
+ "description" :
2082
+ """The minimum acceptable inter-RBridge link size for the
2083
+ campus for the proper operation of TRILL IS-IS.""",
2084
+ "reference" :
2085
+ """RFC 6325, Section 4.3""",
2086
+ }, # scalar
2087
+ "rbridgeTrillMaxMtuProbes" : {
2088
+ "nodetype" : "scalar",
2089
+ "moduleName" : "RBRIDGE-MIB",
2090
+ "oid" : "1.3.6.1.2.1.214.1.8.3",
2091
+ "status" : "current",
2092
+ "syntax" : {
2093
+ "type" : {
2094
+ "basetype" : "Unsigned32",
2095
+ "ranges" : [
2096
+ {
2097
+ "min" : "1",
2098
+ "max" : "255"
2099
+ },
2100
+ ],
2101
+ "range" : {
2102
+ "min" : "1",
2103
+ "max" : "255"
2104
+ },
2105
+ },
2106
+ },
2107
+ "access" : "readwrite",
2108
+ "description" :
2109
+ """The number of failed MTU-probes before the RBridge
2110
+ concludes that a particular MTU is not supported by
2111
+ a neighbor.
2112
+
2113
+
2114
+
2115
+
2116
+
2117
+ The value of this object MUST be retained across
2118
+ re-initializations of the management system.""",
2119
+ "reference" :
2120
+ """RFC 6325, Section 4.3""",
2121
+ }, # scalar
2122
+ "rbridgeTrillNbrTable" : {
2123
+ "nodetype" : "table",
2124
+ "moduleName" : "RBRIDGE-MIB",
2125
+ "oid" : "1.3.6.1.2.1.214.1.8.4",
2126
+ "status" : "current",
2127
+ "description" :
2128
+ """Information about this RBridge's TRILL neighbors.""",
2129
+ "reference" :
2130
+ """RFC 6325, Section 4.4.2.1""",
2131
+ }, # table
2132
+ "rbridgeTrillNbrEntry" : {
2133
+ "nodetype" : "row",
2134
+ "moduleName" : "RBRIDGE-MIB",
2135
+ "oid" : "1.3.6.1.2.1.214.1.8.4.1",
2136
+ "status" : "current",
2137
+ "linkage" : [
2138
+ "rbridgeTrillNbrMacAddr",
2139
+ ],
2140
+ "description" :
2141
+ """List of information about this RBridge's TRILL neighbors.""",
2142
+ }, # row
2143
+ "rbridgeTrillNbrMacAddr" : {
2144
+ "nodetype" : "column",
2145
+ "moduleName" : "RBRIDGE-MIB",
2146
+ "oid" : "1.3.6.1.2.1.214.1.8.4.1.1",
2147
+ "status" : "current",
2148
+ "syntax" : {
2149
+ "type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
2150
+ },
2151
+ "access" : "noaccess",
2152
+ "description" :
2153
+ """The MAC address of a neighbor of this RBridge.""",
2154
+ "reference" :
2155
+ """RFC 6325, Section 4.4.2.1""",
2156
+ }, # column
2157
+ "rbridgeTrillNbrMtu" : {
2158
+ "nodetype" : "column",
2159
+ "moduleName" : "RBRIDGE-MIB",
2160
+ "oid" : "1.3.6.1.2.1.214.1.8.4.1.2",
2161
+ "status" : "current",
2162
+ "syntax" : {
2163
+ "type" : { "module" :"", "name" : "Unsigned32"},
2164
+ },
2165
+ "access" : "readonly",
2166
+ "description" :
2167
+ """MTU size for this neighbor for IS-IS communication
2168
+ purposes.""",
2169
+ "reference" :
2170
+ """RFC 6325, Section 4.3.2""",
2171
+ }, # column
2172
+ "rbridgeTrillNbrFailedMtuTest" : {
2173
+ "nodetype" : "column",
2174
+ "moduleName" : "RBRIDGE-MIB",
2175
+ "oid" : "1.3.6.1.2.1.214.1.8.4.1.3",
2176
+ "status" : "current",
2177
+ "syntax" : {
2178
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2179
+ },
2180
+ "access" : "readonly",
2181
+ "description" :
2182
+ """If true, indicates that the neighbor's tested MTU is less
2183
+ than the minimum acceptable inter-bridge link MTU for the
2184
+ campus (1470).""",
2185
+ "reference" :
2186
+ """RFC 6325, Section 4.3.1""",
2187
+ }, # column
2188
+ "rbridgeConformance" : {
2189
+ "nodetype" : "node",
2190
+ "moduleName" : "RBRIDGE-MIB",
2191
+ "oid" : "1.3.6.1.2.1.214.2",
2192
+ }, # node
2193
+ "rbridgeCompliances" : {
2194
+ "nodetype" : "node",
2195
+ "moduleName" : "RBRIDGE-MIB",
2196
+ "oid" : "1.3.6.1.2.1.214.2.1",
2197
+ }, # node
2198
+ "rbridgeGroup" : {
2199
+ "nodetype" : "node",
2200
+ "moduleName" : "RBRIDGE-MIB",
2201
+ "oid" : "1.3.6.1.2.1.214.2.2",
2202
+ }, # node
2203
+ }, # nodes
2204
+
2205
+ "notifications" : {
2206
+ "rbridgeBaseNewDrb" : {
2207
+ "nodetype" : "notification",
2208
+ "moduleName" : "RBRIDGE-MIB",
2209
+ "oid" : "1.3.6.1.2.1.214.0.1",
2210
+ "status" : "current",
2211
+ "objects" : {
2212
+ },
2213
+ "description" :
2214
+ """The rbridgeBaseNewDrb notification indicates that the
2215
+ sending agent has become the new Designated RBridge; the
2216
+ notification is sent by an RBridge soon after its election
2217
+ as the new DRB root, e.g., upon expiration of the Topology
2218
+ Change Timer, immediately subsequent to its election.""",
2219
+ }, # notification
2220
+ "rbridgeBaseTopologyChange" : {
2221
+ "nodetype" : "notification",
2222
+ "moduleName" : "RBRIDGE-MIB",
2223
+ "oid" : "1.3.6.1.2.1.214.0.2",
2224
+ "status" : "current",
2225
+ "objects" : {
2226
+ },
2227
+ "description" :
2228
+ """The rbridgeBaseTopologyChange notification is sent by an
2229
+ RBridge when any of its configured ports transition to/from
2230
+ the VLAN-x designated forwarder. The notification is not
2231
+ sent if an rbridgeBaseNewDrb notification is sent for the
2232
+ same transition.""",
2233
+ }, # notification
2234
+ }, # notifications
2235
+
2236
+ "groups" : {
2237
+ "rbridgeBaseGroup" : {
2238
+ "nodetype" : "group",
2239
+ "moduleName" : "RBRIDGE-MIB",
2240
+ "oid" : "1.3.6.1.2.1.214.2.2.1",
2241
+ "status" : "current",
2242
+ "members" : {
2243
+ "rbridgeBaseTrillVersion" : {
2244
+ "nodetype" : "member",
2245
+ "module" : "RBRIDGE-MIB"
2246
+ },
2247
+ "rbridgeBaseNumPorts" : {
2248
+ "nodetype" : "member",
2249
+ "module" : "RBRIDGE-MIB"
2250
+ },
2251
+ "rbridgeBaseForwardDelay" : {
2252
+ "nodetype" : "member",
2253
+ "module" : "RBRIDGE-MIB"
2254
+ },
2255
+ "rbridgeBaseUniMultipathEnable" : {
2256
+ "nodetype" : "member",
2257
+ "module" : "RBRIDGE-MIB"
2258
+ },
2259
+ "rbridgeBaseMultiMultipathEnable" : {
2260
+ "nodetype" : "member",
2261
+ "module" : "RBRIDGE-MIB"
2262
+ },
2263
+ "rbridgeBaseAcceptEncapNonadj" : {
2264
+ "nodetype" : "member",
2265
+ "module" : "RBRIDGE-MIB"
2266
+ },
2267
+ "rbridgeBaseNicknameNumber" : {
2268
+ "nodetype" : "member",
2269
+ "module" : "RBRIDGE-MIB"
2270
+ },
2271
+ }, # members
2272
+ "description" :
2273
+ """A collection of objects providing basic control
2274
+ and status information for the RBridge.""",
2275
+ }, # group
2276
+ "rbridgeBaseNicknameGroup" : {
2277
+ "nodetype" : "group",
2278
+ "moduleName" : "RBRIDGE-MIB",
2279
+ "oid" : "1.3.6.1.2.1.214.2.2.2",
2280
+ "status" : "current",
2281
+ "members" : {
2282
+ "rbridgeBaseNicknamePriority" : {
2283
+ "nodetype" : "member",
2284
+ "module" : "RBRIDGE-MIB"
2285
+ },
2286
+ "rbridgeBaseNicknameDtrPriority" : {
2287
+ "nodetype" : "member",
2288
+ "module" : "RBRIDGE-MIB"
2289
+ },
2290
+ "rbridgeBaseNicknameType" : {
2291
+ "nodetype" : "member",
2292
+ "module" : "RBRIDGE-MIB"
2293
+ },
2294
+ "rbridgeBaseNicknameRowStatus" : {
2295
+ "nodetype" : "member",
2296
+ "module" : "RBRIDGE-MIB"
2297
+ },
2298
+ }, # members
2299
+ "description" :
2300
+ """A collection of objects providing basic control
2301
+ and status information for RBridge nicknames.""",
2302
+ }, # group
2303
+ "rbridgeBasePortGroup" : {
2304
+ "nodetype" : "group",
2305
+ "moduleName" : "RBRIDGE-MIB",
2306
+ "oid" : "1.3.6.1.2.1.214.2.2.3",
2307
+ "status" : "current",
2308
+ "members" : {
2309
+ "rbridgeBasePortIfIndex" : {
2310
+ "nodetype" : "member",
2311
+ "module" : "RBRIDGE-MIB"
2312
+ },
2313
+ "rbridgeBasePortDisable" : {
2314
+ "nodetype" : "member",
2315
+ "module" : "RBRIDGE-MIB"
2316
+ },
2317
+ "rbridgeBasePortTrunkPort" : {
2318
+ "nodetype" : "member",
2319
+ "module" : "RBRIDGE-MIB"
2320
+ },
2321
+ "rbridgeBasePortAccessPort" : {
2322
+ "nodetype" : "member",
2323
+ "module" : "RBRIDGE-MIB"
2324
+ },
2325
+ "rbridgeBasePortP2pHellos" : {
2326
+ "nodetype" : "member",
2327
+ "module" : "RBRIDGE-MIB"
2328
+ },
2329
+ "rbridgeBasePortState" : {
2330
+ "nodetype" : "member",
2331
+ "module" : "RBRIDGE-MIB"
2332
+ },
2333
+ "rbridgeBasePortDesiredDesigVlan" : {
2334
+ "nodetype" : "member",
2335
+ "module" : "RBRIDGE-MIB"
2336
+ },
2337
+ "rbridgeBasePortDesigVlan" : {
2338
+ "nodetype" : "member",
2339
+ "module" : "RBRIDGE-MIB"
2340
+ },
2341
+ "rbridgeBasePortInhibitionTime" : {
2342
+ "nodetype" : "member",
2343
+ "module" : "RBRIDGE-MIB"
2344
+ },
2345
+ "rbridgeBasePortDisableLearning" : {
2346
+ "nodetype" : "member",
2347
+ "module" : "RBRIDGE-MIB"
2348
+ },
2349
+ "rbridgeBasePortStpRoot" : {
2350
+ "nodetype" : "member",
2351
+ "module" : "RBRIDGE-MIB"
2352
+ },
2353
+ "rbridgeBasePortStpRootChanges" : {
2354
+ "nodetype" : "member",
2355
+ "module" : "RBRIDGE-MIB"
2356
+ },
2357
+ "rbridgeBasePortStpWiringCloset" : {
2358
+ "nodetype" : "member",
2359
+ "module" : "RBRIDGE-MIB"
2360
+ },
2361
+ }, # members
2362
+ "description" :
2363
+ """A collection of objects providing basic control
2364
+ and status information for RBridge ports.""",
2365
+ }, # group
2366
+ "rbridgeFdbGroup" : {
2367
+ "nodetype" : "group",
2368
+ "moduleName" : "RBRIDGE-MIB",
2369
+ "oid" : "1.3.6.1.2.1.214.2.2.4",
2370
+ "status" : "current",
2371
+ "members" : {
2372
+ "rbridgeConfidenceNative" : {
2373
+ "nodetype" : "member",
2374
+ "module" : "RBRIDGE-MIB"
2375
+ },
2376
+ "rbridgeConfidenceDecap" : {
2377
+ "nodetype" : "member",
2378
+ "module" : "RBRIDGE-MIB"
2379
+ },
2380
+ "rbridgeConfidenceStatic" : {
2381
+ "nodetype" : "member",
2382
+ "module" : "RBRIDGE-MIB"
2383
+ },
2384
+ "rbridgeUniFdbPort" : {
2385
+ "nodetype" : "member",
2386
+ "module" : "RBRIDGE-MIB"
2387
+ },
2388
+ "rbridgeUniFdbNickname" : {
2389
+ "nodetype" : "member",
2390
+ "module" : "RBRIDGE-MIB"
2391
+ },
2392
+ "rbridgeUniFdbConfidence" : {
2393
+ "nodetype" : "member",
2394
+ "module" : "RBRIDGE-MIB"
2395
+ },
2396
+ "rbridgeUniFdbStatus" : {
2397
+ "nodetype" : "member",
2398
+ "module" : "RBRIDGE-MIB"
2399
+ },
2400
+ }, # members
2401
+ "description" :
2402
+ """A collection of objects providing information
2403
+ about the Unicast Address Database.""",
2404
+ }, # group
2405
+ "rbridgeFibGroup" : {
2406
+ "nodetype" : "group",
2407
+ "moduleName" : "RBRIDGE-MIB",
2408
+ "oid" : "1.3.6.1.2.1.214.2.2.5",
2409
+ "status" : "current",
2410
+ "members" : {
2411
+ "rbridgeUniFibHopCount" : {
2412
+ "nodetype" : "member",
2413
+ "module" : "RBRIDGE-MIB"
2414
+ },
2415
+ "rbridgeMultiFibPorts" : {
2416
+ "nodetype" : "member",
2417
+ "module" : "RBRIDGE-MIB"
2418
+ },
2419
+ }, # members
2420
+ "description" :
2421
+ """A collection of objects providing information
2422
+ about the Unicast and Multicast FIBs.""",
2423
+ }, # group
2424
+ "rbridgeVlanGroup" : {
2425
+ "nodetype" : "group",
2426
+ "moduleName" : "RBRIDGE-MIB",
2427
+ "oid" : "1.3.6.1.2.1.214.2.2.6",
2428
+ "status" : "current",
2429
+ "members" : {
2430
+ "rbridgeVlanForwarderLosts" : {
2431
+ "nodetype" : "member",
2432
+ "module" : "RBRIDGE-MIB"
2433
+ },
2434
+ "rbridgeVlanDisableLearning" : {
2435
+ "nodetype" : "member",
2436
+ "module" : "RBRIDGE-MIB"
2437
+ },
2438
+ "rbridgeVlanSnooping" : {
2439
+ "nodetype" : "member",
2440
+ "module" : "RBRIDGE-MIB"
2441
+ },
2442
+ "rbridgeVlanPortInhibited" : {
2443
+ "nodetype" : "member",
2444
+ "module" : "RBRIDGE-MIB"
2445
+ },
2446
+ "rbridgeVlanPortForwarder" : {
2447
+ "nodetype" : "member",
2448
+ "module" : "RBRIDGE-MIB"
2449
+ },
2450
+ "rbridgeVlanPortAnnouncing" : {
2451
+ "nodetype" : "member",
2452
+ "module" : "RBRIDGE-MIB"
2453
+ },
2454
+ "rbridgeVlanPortDetectedVlanMapping" : {
2455
+ "nodetype" : "member",
2456
+ "module" : "RBRIDGE-MIB"
2457
+ },
2458
+ }, # members
2459
+ "description" :
2460
+ """A collection of objects providing information
2461
+ about VLANs on the RBridge.""",
2462
+ }, # group
2463
+ "rbridgePortCounterGroup" : {
2464
+ "nodetype" : "group",
2465
+ "moduleName" : "RBRIDGE-MIB",
2466
+ "oid" : "1.3.6.1.2.1.214.2.2.7",
2467
+ "status" : "current",
2468
+ "members" : {
2469
+ "rbridgePortRpfCheckFails" : {
2470
+ "nodetype" : "member",
2471
+ "module" : "RBRIDGE-MIB"
2472
+ },
2473
+ "rbridgePortHopCountExceeds" : {
2474
+ "nodetype" : "member",
2475
+ "module" : "RBRIDGE-MIB"
2476
+ },
2477
+ "rbridgePortOptionDrops" : {
2478
+ "nodetype" : "member",
2479
+ "module" : "RBRIDGE-MIB"
2480
+ },
2481
+ "rbridgePortTrillInFrames" : {
2482
+ "nodetype" : "member",
2483
+ "module" : "RBRIDGE-MIB"
2484
+ },
2485
+ "rbridgePortTrillOutFrames" : {
2486
+ "nodetype" : "member",
2487
+ "module" : "RBRIDGE-MIB"
2488
+ },
2489
+ }, # members
2490
+ "description" :
2491
+ """A collection of objects providing per-port
2492
+ counters for the RBridge.""",
2493
+ }, # group
2494
+ "rbridgeEsadiGroup" : {
2495
+ "nodetype" : "group",
2496
+ "moduleName" : "RBRIDGE-MIB",
2497
+ "oid" : "1.3.6.1.2.1.214.2.2.8",
2498
+ "status" : "current",
2499
+ "members" : {
2500
+ "rbridgeEsadiEnable" : {
2501
+ "nodetype" : "member",
2502
+ "module" : "RBRIDGE-MIB"
2503
+ },
2504
+ "rbridgeEsadiConfidence" : {
2505
+ "nodetype" : "member",
2506
+ "module" : "RBRIDGE-MIB"
2507
+ },
2508
+ "rbridgeEsadiDrbPriority" : {
2509
+ "nodetype" : "member",
2510
+ "module" : "RBRIDGE-MIB"
2511
+ },
2512
+ "rbridgeEsadiDrb" : {
2513
+ "nodetype" : "member",
2514
+ "module" : "RBRIDGE-MIB"
2515
+ },
2516
+ "rbridgeEsadiDrbHoldingTime" : {
2517
+ "nodetype" : "member",
2518
+ "module" : "RBRIDGE-MIB"
2519
+ },
2520
+ "rbridgeEsadiRowStatus" : {
2521
+ "nodetype" : "member",
2522
+ "module" : "RBRIDGE-MIB"
2523
+ },
2524
+ }, # members
2525
+ "description" :
2526
+ """A collection of objects providing information
2527
+ about ESADI instances on the RBridge.""",
2528
+ }, # group
2529
+ "rbridgeSnoopingGroup" : {
2530
+ "nodetype" : "group",
2531
+ "moduleName" : "RBRIDGE-MIB",
2532
+ "oid" : "1.3.6.1.2.1.214.2.2.9",
2533
+ "status" : "current",
2534
+ "members" : {
2535
+ "rbridgeSnoopingPortAddrType" : {
2536
+ "nodetype" : "member",
2537
+ "module" : "RBRIDGE-MIB"
2538
+ },
2539
+ "rbridgeSnoopingAddrPorts" : {
2540
+ "nodetype" : "member",
2541
+ "module" : "RBRIDGE-MIB"
2542
+ },
2543
+ }, # members
2544
+ "description" :
2545
+ """A collection of objects providing information about
2546
+ IP Multicast Snooping. This MIB requires support for
2547
+ only global IPv4 and IPv6 address types in
2548
+
2549
+
2550
+
2551
+ rbridgeSnoopingPortAddrType and rbridgeSnoopingAddrType,
2552
+ so the length of rbridgeSnoopingAddr can be either 4 or
2553
+ 16 bytes.""",
2554
+ }, # group
2555
+ "rbridgeDtreeGroup" : {
2556
+ "nodetype" : "group",
2557
+ "moduleName" : "RBRIDGE-MIB",
2558
+ "oid" : "1.3.6.1.2.1.214.2.2.10",
2559
+ "status" : "current",
2560
+ "members" : {
2561
+ "rbridgeDtreePriority" : {
2562
+ "nodetype" : "member",
2563
+ "module" : "RBRIDGE-MIB"
2564
+ },
2565
+ "rbridgeDtreeActiveTrees" : {
2566
+ "nodetype" : "member",
2567
+ "module" : "RBRIDGE-MIB"
2568
+ },
2569
+ "rbridgeDtreeMaxTrees" : {
2570
+ "nodetype" : "member",
2571
+ "module" : "RBRIDGE-MIB"
2572
+ },
2573
+ "rbridgeDtreeDesiredUseTrees" : {
2574
+ "nodetype" : "member",
2575
+ "module" : "RBRIDGE-MIB"
2576
+ },
2577
+ "rbridgeDtreeNickname" : {
2578
+ "nodetype" : "member",
2579
+ "module" : "RBRIDGE-MIB"
2580
+ },
2581
+ "rbridgeDtreeIngress" : {
2582
+ "nodetype" : "member",
2583
+ "module" : "RBRIDGE-MIB"
2584
+ },
2585
+ }, # members
2586
+ "description" :
2587
+ """A collection of objects providing information
2588
+ about distribution trees.""",
2589
+ }, # group
2590
+ "rbridgeTrillGroup" : {
2591
+ "nodetype" : "group",
2592
+ "moduleName" : "RBRIDGE-MIB",
2593
+ "oid" : "1.3.6.1.2.1.214.2.2.11",
2594
+ "status" : "current",
2595
+ "members" : {
2596
+ "rbridgeTrillMinMtuDesired" : {
2597
+ "nodetype" : "member",
2598
+ "module" : "RBRIDGE-MIB"
2599
+ },
2600
+ "rbridgeTrillSz" : {
2601
+ "nodetype" : "member",
2602
+ "module" : "RBRIDGE-MIB"
2603
+ },
2604
+ "rbridgeTrillMaxMtuProbes" : {
2605
+ "nodetype" : "member",
2606
+ "module" : "RBRIDGE-MIB"
2607
+ },
2608
+ "rbridgeTrillNbrMtu" : {
2609
+ "nodetype" : "member",
2610
+ "module" : "RBRIDGE-MIB"
2611
+ },
2612
+ "rbridgeTrillNbrFailedMtuTest" : {
2613
+ "nodetype" : "member",
2614
+ "module" : "RBRIDGE-MIB"
2615
+ },
2616
+ }, # members
2617
+ "description" :
2618
+ """A collection of objects providing information
2619
+ about TRILL neighbors.""",
2620
+ }, # group
2621
+ "rbridgeNotificationGroup" : {
2622
+ "nodetype" : "group",
2623
+ "moduleName" : "RBRIDGE-MIB",
2624
+ "oid" : "1.3.6.1.2.1.214.2.2.12",
2625
+ "status" : "current",
2626
+ "members" : {
2627
+ "rbridgeBaseNewDrb" : {
2628
+ "nodetype" : "member",
2629
+ "module" : "RBRIDGE-MIB"
2630
+ },
2631
+ "rbridgeBaseTopologyChange" : {
2632
+ "nodetype" : "member",
2633
+ "module" : "RBRIDGE-MIB"
2634
+ },
2635
+ }, # members
2636
+ "description" :
2637
+ """A collection of objects describing notifications (traps).""",
2638
+ }, # group
2639
+ }, # groups
2640
+
2641
+ "compliances" : {
2642
+ "rbridgeCompliance" : {
2643
+ "nodetype" : "compliance",
2644
+ "moduleName" : "RBRIDGE-MIB",
2645
+ "oid" : "1.3.6.1.2.1.214.2.1.1",
2646
+ "status" : "current",
2647
+ "description" :
2648
+ """The compliance statement for support of RBridge
2649
+ services.""",
2650
+ "requires" : {
2651
+ "rbridgeBaseGroup" : {
2652
+ "nodetype" : "mandatory",
2653
+ "module" : "RBRIDGE-MIB"
2654
+ },
2655
+ "rbridgeBaseNicknameGroup" : {
2656
+ "nodetype" : "mandatory",
2657
+ "module" : "RBRIDGE-MIB"
2658
+ },
2659
+ "rbridgeBasePortGroup" : {
2660
+ "nodetype" : "mandatory",
2661
+ "module" : "RBRIDGE-MIB"
2662
+ },
2663
+ "rbridgeFdbGroup" : {
2664
+ "nodetype" : "mandatory",
2665
+ "module" : "RBRIDGE-MIB"
2666
+ },
2667
+ "rbridgeFibGroup" : {
2668
+ "nodetype" : "mandatory",
2669
+ "module" : "RBRIDGE-MIB"
2670
+ },
2671
+ "rbridgeVlanGroup" : {
2672
+ "nodetype" : "mandatory",
2673
+ "module" : "RBRIDGE-MIB"
2674
+ },
2675
+ "rbridgeDtreeGroup" : {
2676
+ "nodetype" : "mandatory",
2677
+ "module" : "RBRIDGE-MIB"
2678
+ },
2679
+ "rbridgeTrillGroup" : {
2680
+ "nodetype" : "mandatory",
2681
+ "module" : "RBRIDGE-MIB"
2682
+ },
2683
+ "rbridgeNotificationGroup" : {
2684
+ "nodetype" : "mandatory",
2685
+ "module" : "RBRIDGE-MIB"
2686
+ },
2687
+ "rbridgePortCounterGroup" : {
2688
+ "nodetype" : "optional",
2689
+ "module" : "RBRIDGE-MIB",
2690
+ "description" :
2691
+ """Implementation of this group is optional.""",
2692
+ },
2693
+ "rbridgeEsadiGroup" : {
2694
+ "nodetype" : "optional",
2695
+ "module" : "RBRIDGE-MIB",
2696
+ "description" :
2697
+ """Implementation of this group is optional.""",
2698
+ },
2699
+ "rbridgeSnoopingGroup" : {
2700
+ "nodetype" : "optional",
2701
+ "module" : "RBRIDGE-MIB",
2702
+ "description" :
2703
+ """Implementation of this group is optional.""",
2704
+ },
2705
+ }, # requires
2706
+ }, # compliance
2707
+ "rbridgeReadOnlyCompliance" : {
2708
+ "nodetype" : "compliance",
2709
+ "moduleName" : "RBRIDGE-MIB",
2710
+ "oid" : "1.3.6.1.2.1.214.2.1.2",
2711
+ "status" : "current",
2712
+ "description" :
2713
+ """When this MIB is implemented in read-only mode, then
2714
+ the implementation can claim read-only compliance.
2715
+ In that case, RBridge objects can be monitored but
2716
+ cannot be configured with this implementation.""",
2717
+ "requires" : {
2718
+ "rbridgeBaseGroup" : {
2719
+ "nodetype" : "mandatory",
2720
+ "module" : "RBRIDGE-MIB"
2721
+ },
2722
+ "rbridgeBaseNicknameGroup" : {
2723
+ "nodetype" : "mandatory",
2724
+ "module" : "RBRIDGE-MIB"
2725
+ },
2726
+ "rbridgeBasePortGroup" : {
2727
+ "nodetype" : "mandatory",
2728
+ "module" : "RBRIDGE-MIB"
2729
+ },
2730
+ "rbridgeFdbGroup" : {
2731
+ "nodetype" : "mandatory",
2732
+ "module" : "RBRIDGE-MIB"
2733
+ },
2734
+ "rbridgeFibGroup" : {
2735
+ "nodetype" : "mandatory",
2736
+ "module" : "RBRIDGE-MIB"
2737
+ },
2738
+ "rbridgeVlanGroup" : {
2739
+ "nodetype" : "mandatory",
2740
+ "module" : "RBRIDGE-MIB"
2741
+ },
2742
+ "rbridgeDtreeGroup" : {
2743
+ "nodetype" : "mandatory",
2744
+ "module" : "RBRIDGE-MIB"
2745
+ },
2746
+ "rbridgeTrillGroup" : {
2747
+ "nodetype" : "mandatory",
2748
+ "module" : "RBRIDGE-MIB"
2749
+ },
2750
+ "rbridgeNotificationGroup" : {
2751
+ "nodetype" : "mandatory",
2752
+ "module" : "RBRIDGE-MIB"
2753
+ },
2754
+ "rbridgePortCounterGroup" : {
2755
+ "nodetype" : "optional",
2756
+ "module" : "RBRIDGE-MIB",
2757
+ "description" :
2758
+ """Implementation of this group is optional.""",
2759
+ },
2760
+ "rbridgeEsadiGroup" : {
2761
+ "nodetype" : "optional",
2762
+ "module" : "RBRIDGE-MIB",
2763
+ "description" :
2764
+ """Implementation of this group is optional.""",
2765
+ },
2766
+ "rbridgeSnoopingGroup" : {
2767
+ "nodetype" : "optional",
2768
+ "module" : "RBRIDGE-MIB",
2769
+ "description" :
2770
+ """Implementation of this group is optional.""",
2771
+ },
2772
+ }, # requires
2773
+ "refinements" : {
2774
+ "rbridgeBaseForwardDelay" : {
2775
+ "module" : "RBRIDGE-MIB",
2776
+ "access" : "readonly",
2777
+ "description" :
2778
+ """Write access is not required.""",
2779
+ },
2780
+ "rbridgeBaseUniMultipathEnable" : {
2781
+ "module" : "RBRIDGE-MIB",
2782
+ "access" : "readonly",
2783
+ "description" :
2784
+ """Write access is not required.""",
2785
+ },
2786
+ "rbridgeBaseMultiMultipathEnable" : {
2787
+ "module" : "RBRIDGE-MIB",
2788
+ "access" : "readonly",
2789
+ "description" :
2790
+ """Write access is not required.""",
2791
+ },
2792
+ "rbridgeBaseAcceptEncapNonadj" : {
2793
+ "module" : "RBRIDGE-MIB",
2794
+ "access" : "readonly",
2795
+ "description" :
2796
+ """Write access is not required.""",
2797
+ },
2798
+ "rbridgeBaseNicknameNumber" : {
2799
+ "module" : "RBRIDGE-MIB",
2800
+ "access" : "readonly",
2801
+ "description" :
2802
+ """Write access is not required.""",
2803
+ },
2804
+ "rbridgeBaseNicknamePriority" : {
2805
+ "module" : "RBRIDGE-MIB",
2806
+ "access" : "readonly",
2807
+ "description" :
2808
+ """Write access is not required.""",
2809
+ },
2810
+ "rbridgeBaseNicknameDtrPriority" : {
2811
+ "module" : "RBRIDGE-MIB",
2812
+ "access" : "readonly",
2813
+ "description" :
2814
+ """Write access is not required.""",
2815
+ },
2816
+ "rbridgeBaseNicknameRowStatus" : {
2817
+ "module" : "RBRIDGE-MIB",
2818
+ "syntax" : {
2819
+ "type" : {
2820
+ "basetype" : "Enumeration",
2821
+ "parent module" : {
2822
+ "name" : "SNMPv2-TC",
2823
+ "type" : "RowStatus",
2824
+ },
2825
+ "active" : {
2826
+ "nodetype" : "namednumber",
2827
+ "number" : "1"
2828
+ },
2829
+ },
2830
+ }, # syntax
2831
+ "access" : "readonly",
2832
+ "description" :
2833
+ """Write access is not required, and 'active' is the only
2834
+ status that needs to be supported.""",
2835
+ },
2836
+ "rbridgeBasePortDisable" : {
2837
+ "module" : "RBRIDGE-MIB",
2838
+ "access" : "readonly",
2839
+ "description" :
2840
+ """Write access is not required.""",
2841
+ },
2842
+ "rbridgeBasePortTrunkPort" : {
2843
+ "module" : "RBRIDGE-MIB",
2844
+ "access" : "readonly",
2845
+ "description" :
2846
+ """Write access is not required.""",
2847
+ },
2848
+ "rbridgeBasePortAccessPort" : {
2849
+ "module" : "RBRIDGE-MIB",
2850
+ "access" : "readonly",
2851
+ "description" :
2852
+ """Write access is not required.""",
2853
+ },
2854
+ "rbridgeBasePortP2pHellos" : {
2855
+ "module" : "RBRIDGE-MIB",
2856
+ "access" : "readonly",
2857
+ "description" :
2858
+ """Write access is not required.""",
2859
+ },
2860
+ "rbridgeBasePortInhibitionTime" : {
2861
+ "module" : "RBRIDGE-MIB",
2862
+ "access" : "readonly",
2863
+ "description" :
2864
+ """Write access is not required.""",
2865
+ },
2866
+ "rbridgeBasePortDisableLearning" : {
2867
+ "module" : "RBRIDGE-MIB",
2868
+ "access" : "readonly",
2869
+ "description" :
2870
+ """Write access is not required.""",
2871
+ },
2872
+ "rbridgeBasePortDesiredDesigVlan" : {
2873
+ "module" : "RBRIDGE-MIB",
2874
+ "access" : "readonly",
2875
+ "description" :
2876
+ """Write access is not required.""",
2877
+ },
2878
+ "rbridgeBasePortStpWiringCloset" : {
2879
+ "module" : "RBRIDGE-MIB",
2880
+ "access" : "readonly",
2881
+ "description" :
2882
+ """Write access is not required.""",
2883
+ },
2884
+ "rbridgeConfidenceNative" : {
2885
+ "module" : "RBRIDGE-MIB",
2886
+ "access" : "readonly",
2887
+ "description" :
2888
+ """Write access is not required.""",
2889
+ },
2890
+ "rbridgeConfidenceDecap" : {
2891
+ "module" : "RBRIDGE-MIB",
2892
+ "access" : "readonly",
2893
+ "description" :
2894
+ """Write access is not required.""",
2895
+ },
2896
+ "rbridgeConfidenceStatic" : {
2897
+ "module" : "RBRIDGE-MIB",
2898
+ "access" : "readonly",
2899
+ "description" :
2900
+ """Write access is not required.""",
2901
+ },
2902
+ "rbridgeVlanDisableLearning" : {
2903
+ "module" : "RBRIDGE-MIB",
2904
+ "access" : "readonly",
2905
+ "description" :
2906
+ """Write access is not required.""",
2907
+ },
2908
+ "rbridgeVlanPortAnnouncing" : {
2909
+ "module" : "RBRIDGE-MIB",
2910
+ "access" : "readonly",
2911
+ "description" :
2912
+ """Write access is not required.""",
2913
+ },
2914
+ "rbridgeEsadiEnable" : {
2915
+ "module" : "RBRIDGE-MIB",
2916
+ "access" : "readonly",
2917
+ "description" :
2918
+ """Write access is not required.""",
2919
+ },
2920
+ "rbridgeEsadiConfidence" : {
2921
+ "module" : "RBRIDGE-MIB",
2922
+ "access" : "readonly",
2923
+ "description" :
2924
+ """Write access is not required.""",
2925
+ },
2926
+ "rbridgeEsadiDrbPriority" : {
2927
+ "module" : "RBRIDGE-MIB",
2928
+ "access" : "readonly",
2929
+ "description" :
2930
+ """Write access is not required.""",
2931
+ },
2932
+ "rbridgeEsadiDrbHoldingTime" : {
2933
+ "module" : "RBRIDGE-MIB",
2934
+ "access" : "readonly",
2935
+ "description" :
2936
+ """Write access is not required.""",
2937
+ },
2938
+ "rbridgeEsadiRowStatus" : {
2939
+ "module" : "RBRIDGE-MIB",
2940
+ "syntax" : {
2941
+ "type" : {
2942
+ "basetype" : "Enumeration",
2943
+ "parent module" : {
2944
+ "name" : "SNMPv2-TC",
2945
+ "type" : "RowStatus",
2946
+ },
2947
+ "active" : {
2948
+ "nodetype" : "namednumber",
2949
+ "number" : "1"
2950
+ },
2951
+ },
2952
+ }, # syntax
2953
+ "access" : "readonly",
2954
+ "description" :
2955
+ """Write access is not required, and 'active' is the only
2956
+ status that needs to be supported.""",
2957
+ },
2958
+ "rbridgeDtreePriority" : {
2959
+ "module" : "RBRIDGE-MIB",
2960
+ "access" : "readonly",
2961
+ "description" :
2962
+ """Write access is not required.""",
2963
+ },
2964
+ "rbridgeTrillMinMtuDesired" : {
2965
+ "module" : "RBRIDGE-MIB",
2966
+ "access" : "readonly",
2967
+ "description" :
2968
+ """Write access is not required.""",
2969
+ },
2970
+ "rbridgeTrillMaxMtuProbes" : {
2971
+ "module" : "RBRIDGE-MIB",
2972
+ "access" : "readonly",
2973
+ "description" :
2974
+ """Write access is not required.""",
2975
+ },
2976
+ }, # refinements
2977
+
2978
+ }, # compliance
2979
+ }, # compliances
2980
+
2981
+ }