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,2257 @@
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 BRIDGE-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/BRIDGE-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "BRIDGE-MIB",
11
+
12
+ "BRIDGE-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF Bridge MIB Working Group""",
17
+ "contact" :
18
+ """Email: bridge-mib@ietf.org
19
+
20
+ K.C. Norseth (Editor)
21
+ L-3 Communications
22
+ Tel: +1 801-594-2809
23
+ Email: kenyon.c.norseth@L-3com.com
24
+ Postal: 640 N. 2200 West.
25
+ Salt Lake City, Utah 84116-0850
26
+
27
+
28
+
29
+
30
+ Les Bell (Editor)
31
+ 3Com Europe Limited
32
+ Phone: +44 1442 438025
33
+ Email: elbell@ntlworld.com
34
+ Postal: 3Com Centre, Boundary Way
35
+ Hemel Hempstead
36
+ Herts. HP2 7YU
37
+ UK
38
+
39
+ Send comments to <bridge-mib@ietf.org>""",
40
+ "description" :
41
+ """The Bridge MIB module for managing devices that support
42
+ IEEE 802.1D.
43
+
44
+ Copyright (C) The Internet Society (2005). This version of
45
+ this MIB module is part of RFC 4188; see the RFC itself for
46
+ full legal notices.""",
47
+ "revisions" : (
48
+ {
49
+ "date" : "2005-09-19 00:00",
50
+ "description" :
51
+ """Third revision, published as part of RFC 4188.
52
+
53
+ The MIB module has been converted to SMIv2 format.
54
+ Conformance statements have been added and some
55
+ description and reference clauses have been updated.
56
+
57
+ The object dot1dStpPortPathCost32 was added to
58
+ support IEEE 802.1t and the permissible values of
59
+ dot1dStpPriority and dot1dStpPortPriority have been
60
+ clarified for bridges supporting IEEE 802.1t or
61
+ IEEE 802.1w.
62
+
63
+ The interpretation of dot1dStpTimeSinceTopologyChange
64
+ has been clarified for bridges supporting the Rapid
65
+ Spanning Tree Protocol (RSTP).""",
66
+ },
67
+ {
68
+ "date" : "1993-07-31 00:00",
69
+ "description" :
70
+ """Second revision, published as part of RFC 1493.""",
71
+ },
72
+ {
73
+ "date" : "1991-12-31 00:00",
74
+ "description" :
75
+ """Initial revision, published as part of RFC 1286.""",
76
+ },
77
+ ),
78
+ "identity node" : "dot1dBridge",
79
+ },
80
+
81
+ "imports" : (
82
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
83
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
84
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
85
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
86
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
87
+ {"module" : "SNMPv2-SMI", "name" : "TimeTicks"},
88
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
89
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
90
+ {"module" : "SNMPv2-TC", "name" : "MacAddress"},
91
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
92
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
93
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
94
+ {"module" : "IF-MIB", "name" : "InterfaceIndex"},
95
+ ),
96
+
97
+ "typedefs" : {
98
+ "BridgeId" : {
99
+ "basetype" : "OctetString",
100
+ "status" : "current",
101
+ "ranges" : [
102
+ {
103
+ "min" : "8",
104
+ "max" : "8"
105
+ },
106
+ ],
107
+ "range" : {
108
+ "min" : "8",
109
+ "max" : "8"
110
+ },
111
+ "description" :
112
+ """The Bridge-Identifier, as used in the Spanning Tree
113
+ Protocol, to uniquely identify a bridge. Its first two
114
+ octets (in network byte order) contain a priority value,
115
+ and its last 6 octets contain the MAC address used to
116
+ refer to a bridge in a unique fashion (typically, the
117
+ numerically smallest MAC address of all ports on the
118
+ bridge).""",
119
+ },
120
+ "Timeout" : {
121
+ "basetype" : "Integer32",
122
+ "status" : "current",
123
+ "format" : "d",
124
+ "description" :
125
+ """A Spanning Tree Protocol (STP) timer in units of 1/100
126
+ seconds. Several objects in this MIB module represent
127
+ values of timers used by the Spanning Tree Protocol.
128
+ In this MIB, these timers have values in units of
129
+ hundredths of a second (i.e., 1/100 secs).
130
+
131
+ These timers, when stored in a Spanning Tree Protocol's
132
+ BPDU, are in units of 1/256 seconds. Note, however, that
133
+ 802.1D-1998 specifies a settable granularity of no more
134
+ than one second for these timers. To avoid ambiguity,
135
+ a conversion algorithm is defined below for converting
136
+ between the different units, which ensures a timer's
137
+ value is not distorted by multiple conversions.
138
+
139
+ To convert a Timeout value into a value in units of
140
+ 1/256 seconds, the following algorithm should be used:
141
+
142
+ b = floor( (n * 256) / 100)
143
+
144
+ where:
145
+ floor = quotient [ignore remainder]
146
+ n is the value in 1/100 second units
147
+ b is the value in 1/256 second units
148
+
149
+ To convert the value from 1/256 second units back to
150
+ 1/100 seconds, the following algorithm should be used:
151
+
152
+ n = ceiling( (b * 100) / 256)
153
+
154
+ where:
155
+ ceiling = quotient [if remainder is 0], or
156
+ quotient + 1 [if remainder is nonzero]
157
+ n is the value in 1/100 second units
158
+
159
+
160
+
161
+ b is the value in 1/256 second units
162
+
163
+ Note: it is important that the arithmetic operations are
164
+ done in the order specified (i.e., multiply first,
165
+ divide second).""",
166
+ },
167
+ }, # typedefs
168
+
169
+ "nodes" : {
170
+ "dot1dBridge" : {
171
+ "nodetype" : "node",
172
+ "moduleName" : "BRIDGE-MIB",
173
+ "oid" : "1.3.6.1.2.1.17",
174
+ "status" : "current",
175
+ }, # node
176
+ "dot1dNotifications" : {
177
+ "nodetype" : "node",
178
+ "moduleName" : "BRIDGE-MIB",
179
+ "oid" : "1.3.6.1.2.1.17.0",
180
+ }, # node
181
+ "dot1dBase" : {
182
+ "nodetype" : "node",
183
+ "moduleName" : "BRIDGE-MIB",
184
+ "oid" : "1.3.6.1.2.1.17.1",
185
+ }, # node
186
+ "dot1dBaseBridgeAddress" : {
187
+ "nodetype" : "scalar",
188
+ "moduleName" : "BRIDGE-MIB",
189
+ "oid" : "1.3.6.1.2.1.17.1.1",
190
+ "status" : "current",
191
+ "syntax" : {
192
+ "type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
193
+ },
194
+ "access" : "readonly",
195
+ "description" :
196
+ """The MAC address used by this bridge when it must be
197
+ referred to in a unique fashion. It is recommended
198
+ that this be the numerically smallest MAC address of
199
+ all ports that belong to this bridge. However, it is only
200
+
201
+
202
+
203
+ required to be unique. When concatenated with
204
+ dot1dStpPriority, a unique BridgeIdentifier is formed,
205
+ which is used in the Spanning Tree Protocol.""",
206
+ "reference" :
207
+ """IEEE 802.1D-1998: clauses 14.4.1.1.3 and 7.12.5""",
208
+ }, # scalar
209
+ "dot1dBaseNumPorts" : {
210
+ "nodetype" : "scalar",
211
+ "moduleName" : "BRIDGE-MIB",
212
+ "oid" : "1.3.6.1.2.1.17.1.2",
213
+ "status" : "current",
214
+ "syntax" : {
215
+ "type" : { "module" :"", "name" : "Integer32"},
216
+ },
217
+ "access" : "readonly",
218
+ "units" : "ports",
219
+ "description" :
220
+ """The number of ports controlled by this bridging
221
+ entity.""",
222
+ "reference" :
223
+ """IEEE 802.1D-1998: clause 14.4.1.1.3""",
224
+ }, # scalar
225
+ "dot1dBaseType" : {
226
+ "nodetype" : "scalar",
227
+ "moduleName" : "BRIDGE-MIB",
228
+ "oid" : "1.3.6.1.2.1.17.1.3",
229
+ "status" : "current",
230
+ "syntax" : {
231
+ "type" : {
232
+ "basetype" : "Enumeration",
233
+ "unknown" : {
234
+ "nodetype" : "namednumber",
235
+ "number" : "1"
236
+ },
237
+ "transparent-only" : {
238
+ "nodetype" : "namednumber",
239
+ "number" : "2"
240
+ },
241
+ "sourceroute-only" : {
242
+ "nodetype" : "namednumber",
243
+ "number" : "3"
244
+ },
245
+ "srt" : {
246
+ "nodetype" : "namednumber",
247
+ "number" : "4"
248
+ },
249
+ },
250
+ },
251
+ "access" : "readonly",
252
+ "description" :
253
+ """Indicates what type of bridging this bridge can
254
+ perform. If a bridge is actually performing a
255
+ certain type of bridging, this will be indicated by
256
+ entries in the port table for the given type.""",
257
+ }, # scalar
258
+ "dot1dBasePortTable" : {
259
+ "nodetype" : "table",
260
+ "moduleName" : "BRIDGE-MIB",
261
+ "oid" : "1.3.6.1.2.1.17.1.4",
262
+ "status" : "current",
263
+ "description" :
264
+ """A table that contains generic information about every
265
+ port that is associated with this bridge. Transparent,
266
+ source-route, and srt ports are included.""",
267
+ }, # table
268
+ "dot1dBasePortEntry" : {
269
+ "nodetype" : "row",
270
+ "moduleName" : "BRIDGE-MIB",
271
+ "oid" : "1.3.6.1.2.1.17.1.4.1",
272
+ "status" : "current",
273
+ "linkage" : [
274
+ "dot1dBasePort",
275
+ ],
276
+ "description" :
277
+ """A list of information for each port of the bridge.""",
278
+ "reference" :
279
+ """IEEE 802.1D-1998: clause 14.4.2, 14.6.1""",
280
+ }, # row
281
+ "dot1dBasePort" : {
282
+ "nodetype" : "column",
283
+ "moduleName" : "BRIDGE-MIB",
284
+ "oid" : "1.3.6.1.2.1.17.1.4.1.1",
285
+ "status" : "current",
286
+ "syntax" : {
287
+ "type" : {
288
+ "basetype" : "Integer32",
289
+ "ranges" : [
290
+ {
291
+ "min" : "1",
292
+ "max" : "65535"
293
+ },
294
+ ],
295
+ "range" : {
296
+ "min" : "1",
297
+ "max" : "65535"
298
+ },
299
+ },
300
+ },
301
+ "access" : "readonly",
302
+ "description" :
303
+ """The port number of the port for which this entry
304
+ contains bridge management information.""",
305
+ }, # column
306
+ "dot1dBasePortIfIndex" : {
307
+ "nodetype" : "column",
308
+ "moduleName" : "BRIDGE-MIB",
309
+ "oid" : "1.3.6.1.2.1.17.1.4.1.2",
310
+ "status" : "current",
311
+ "syntax" : {
312
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
313
+ },
314
+ "access" : "readonly",
315
+ "description" :
316
+ """The value of the instance of the ifIndex object,
317
+ defined in IF-MIB, for the interface corresponding
318
+ to this port.""",
319
+ }, # column
320
+ "dot1dBasePortCircuit" : {
321
+ "nodetype" : "column",
322
+ "moduleName" : "BRIDGE-MIB",
323
+ "oid" : "1.3.6.1.2.1.17.1.4.1.3",
324
+ "status" : "current",
325
+ "syntax" : {
326
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
327
+ },
328
+ "access" : "readonly",
329
+ "description" :
330
+ """For a port that (potentially) has the same value of
331
+ dot1dBasePortIfIndex as another port on the same bridge.
332
+ This object contains the name of an object instance
333
+ unique to this port. For example, in the case where
334
+ multiple ports correspond one-to-one with multiple X.25
335
+ virtual circuits, this value might identify an (e.g.,
336
+ the first) object instance associated with the X.25
337
+ virtual circuit corresponding to this port.
338
+
339
+ For a port which has a unique value of
340
+ dot1dBasePortIfIndex, this object can have the value
341
+ { 0 0 }.""",
342
+ }, # column
343
+ "dot1dBasePortDelayExceededDiscards" : {
344
+ "nodetype" : "column",
345
+ "moduleName" : "BRIDGE-MIB",
346
+ "oid" : "1.3.6.1.2.1.17.1.4.1.4",
347
+ "status" : "current",
348
+ "syntax" : {
349
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
350
+ },
351
+ "access" : "readonly",
352
+ "description" :
353
+ """The number of frames discarded by this port due
354
+ to excessive transit delay through the bridge. It
355
+ is incremented by both transparent and source
356
+ route bridges.""",
357
+ "reference" :
358
+ """IEEE 802.1D-1998: clause 14.6.1.1.3""",
359
+ }, # column
360
+ "dot1dBasePortMtuExceededDiscards" : {
361
+ "nodetype" : "column",
362
+ "moduleName" : "BRIDGE-MIB",
363
+ "oid" : "1.3.6.1.2.1.17.1.4.1.5",
364
+ "status" : "current",
365
+ "syntax" : {
366
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
367
+ },
368
+ "access" : "readonly",
369
+ "description" :
370
+ """The number of frames discarded by this port due
371
+ to an excessive size. It is incremented by both
372
+ transparent and source route bridges.""",
373
+ "reference" :
374
+ """IEEE 802.1D-1998: clause 14.6.1.1.3""",
375
+ }, # column
376
+ "dot1dStp" : {
377
+ "nodetype" : "node",
378
+ "moduleName" : "BRIDGE-MIB",
379
+ "oid" : "1.3.6.1.2.1.17.2",
380
+ }, # node
381
+ "dot1dStpProtocolSpecification" : {
382
+ "nodetype" : "scalar",
383
+ "moduleName" : "BRIDGE-MIB",
384
+ "oid" : "1.3.6.1.2.1.17.2.1",
385
+ "status" : "current",
386
+ "syntax" : {
387
+ "type" : {
388
+ "basetype" : "Enumeration",
389
+ "unknown" : {
390
+ "nodetype" : "namednumber",
391
+ "number" : "1"
392
+ },
393
+ "decLb100" : {
394
+ "nodetype" : "namednumber",
395
+ "number" : "2"
396
+ },
397
+ "ieee8021d" : {
398
+ "nodetype" : "namednumber",
399
+ "number" : "3"
400
+ },
401
+ },
402
+ },
403
+ "access" : "readonly",
404
+ "description" :
405
+ """An indication of what version of the Spanning Tree
406
+ Protocol is being run. The value 'decLb100(2)'
407
+ indicates the DEC LANbridge 100 Spanning Tree protocol.
408
+ IEEE 802.1D implementations will return 'ieee8021d(3)'.
409
+ If future versions of the IEEE Spanning Tree Protocol
410
+ that are incompatible with the current version
411
+ are released a new value will be defined.""",
412
+ }, # scalar
413
+ "dot1dStpPriority" : {
414
+ "nodetype" : "scalar",
415
+ "moduleName" : "BRIDGE-MIB",
416
+ "oid" : "1.3.6.1.2.1.17.2.2",
417
+ "status" : "current",
418
+ "syntax" : {
419
+ "type" : {
420
+ "basetype" : "Integer32",
421
+ "ranges" : [
422
+ {
423
+ "min" : "0",
424
+ "max" : "65535"
425
+ },
426
+ ],
427
+ "range" : {
428
+ "min" : "0",
429
+ "max" : "65535"
430
+ },
431
+ },
432
+ },
433
+ "access" : "readwrite",
434
+ "description" :
435
+ """The value of the write-able portion of the Bridge ID
436
+ (i.e., the first two octets of the (8 octet long) Bridge
437
+ ID). The other (last) 6 octets of the Bridge ID are
438
+ given by the value of dot1dBaseBridgeAddress.
439
+ On bridges supporting IEEE 802.1t or IEEE 802.1w,
440
+ permissible values are 0-61440, in steps of 4096.""",
441
+ "reference" :
442
+ """IEEE 802.1D-1998 clause 8.10.2, Table 8-4,
443
+ IEEE 802.1t clause 8.10.2, Table 8-4, clause 14.3.""",
444
+ }, # scalar
445
+ "dot1dStpTimeSinceTopologyChange" : {
446
+ "nodetype" : "scalar",
447
+ "moduleName" : "BRIDGE-MIB",
448
+ "oid" : "1.3.6.1.2.1.17.2.3",
449
+ "status" : "current",
450
+ "syntax" : {
451
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
452
+ },
453
+ "access" : "readonly",
454
+ "units" : "centi-seconds",
455
+ "description" :
456
+ """The time (in hundredths of a second) since the
457
+ last time a topology change was detected by the
458
+ bridge entity.
459
+ For RSTP, this reports the time since the tcWhile
460
+ timer for any port on this Bridge was nonzero.""",
461
+ "reference" :
462
+ """IEEE 802.1D-1998 clause 14.8.1.1.,
463
+ IEEE 802.1w clause 14.8.1.1.""",
464
+ }, # scalar
465
+ "dot1dStpTopChanges" : {
466
+ "nodetype" : "scalar",
467
+ "moduleName" : "BRIDGE-MIB",
468
+ "oid" : "1.3.6.1.2.1.17.2.4",
469
+ "status" : "current",
470
+ "syntax" : {
471
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
472
+ },
473
+ "access" : "readonly",
474
+ "description" :
475
+ """The total number of topology changes detected by
476
+ this bridge since the management entity was last
477
+ reset or initialized.""",
478
+ "reference" :
479
+ """IEEE 802.1D-1998 clause 14.8.1.1.""",
480
+ }, # scalar
481
+ "dot1dStpDesignatedRoot" : {
482
+ "nodetype" : "scalar",
483
+ "moduleName" : "BRIDGE-MIB",
484
+ "oid" : "1.3.6.1.2.1.17.2.5",
485
+ "status" : "current",
486
+ "syntax" : {
487
+ "type" : { "module" :"BRIDGE-MIB", "name" : "BridgeId"},
488
+ },
489
+ "access" : "readonly",
490
+ "description" :
491
+ """The bridge identifier of the root of the spanning
492
+ tree, as determined by the Spanning Tree Protocol,
493
+ as executed by this node. This value is used as
494
+ the Root Identifier parameter in all Configuration
495
+ Bridge PDUs originated by this node.""",
496
+ "reference" :
497
+ """IEEE 802.1D-1998: clause 8.5.3.1""",
498
+ }, # scalar
499
+ "dot1dStpRootCost" : {
500
+ "nodetype" : "scalar",
501
+ "moduleName" : "BRIDGE-MIB",
502
+ "oid" : "1.3.6.1.2.1.17.2.6",
503
+ "status" : "current",
504
+ "syntax" : {
505
+ "type" : { "module" :"", "name" : "Integer32"},
506
+ },
507
+ "access" : "readonly",
508
+ "description" :
509
+ """The cost of the path to the root as seen from
510
+ this bridge.""",
511
+ "reference" :
512
+ """IEEE 802.1D-1998: clause 8.5.3.2""",
513
+ }, # scalar
514
+ "dot1dStpRootPort" : {
515
+ "nodetype" : "scalar",
516
+ "moduleName" : "BRIDGE-MIB",
517
+ "oid" : "1.3.6.1.2.1.17.2.7",
518
+ "status" : "current",
519
+ "syntax" : {
520
+ "type" : { "module" :"", "name" : "Integer32"},
521
+ },
522
+ "access" : "readonly",
523
+ "description" :
524
+ """The port number of the port that offers the lowest
525
+ cost path from this bridge to the root bridge.""",
526
+ "reference" :
527
+ """IEEE 802.1D-1998: clause 8.5.3.3""",
528
+ }, # scalar
529
+ "dot1dStpMaxAge" : {
530
+ "nodetype" : "scalar",
531
+ "moduleName" : "BRIDGE-MIB",
532
+ "oid" : "1.3.6.1.2.1.17.2.8",
533
+ "status" : "current",
534
+ "syntax" : {
535
+ "type" : { "module" :"BRIDGE-MIB", "name" : "Timeout"},
536
+ },
537
+ "access" : "readonly",
538
+ "units" : "centi-seconds",
539
+ "description" :
540
+ """The maximum age of Spanning Tree Protocol information
541
+ learned from the network on any port before it is
542
+ discarded, in units of hundredths of a second. This is
543
+ the actual value that this bridge is currently using.""",
544
+ "reference" :
545
+ """IEEE 802.1D-1998: clause 8.5.3.4""",
546
+ }, # scalar
547
+ "dot1dStpHelloTime" : {
548
+ "nodetype" : "scalar",
549
+ "moduleName" : "BRIDGE-MIB",
550
+ "oid" : "1.3.6.1.2.1.17.2.9",
551
+ "status" : "current",
552
+ "syntax" : {
553
+ "type" : { "module" :"BRIDGE-MIB", "name" : "Timeout"},
554
+ },
555
+ "access" : "readonly",
556
+ "units" : "centi-seconds",
557
+ "description" :
558
+ """The amount of time between the transmission of
559
+ Configuration bridge PDUs by this node on any port when
560
+ it is the root of the spanning tree, or trying to become
561
+ so, in units of hundredths of a second. This is the
562
+ actual value that this bridge is currently using.""",
563
+ "reference" :
564
+ """IEEE 802.1D-1998: clause 8.5.3.5""",
565
+ }, # scalar
566
+ "dot1dStpHoldTime" : {
567
+ "nodetype" : "scalar",
568
+ "moduleName" : "BRIDGE-MIB",
569
+ "oid" : "1.3.6.1.2.1.17.2.10",
570
+ "status" : "current",
571
+ "syntax" : {
572
+ "type" : { "module" :"", "name" : "Integer32"},
573
+ },
574
+ "access" : "readonly",
575
+ "units" : "centi-seconds",
576
+ "description" :
577
+ """This time value determines the interval length
578
+ during which no more than two Configuration bridge
579
+ PDUs shall be transmitted by this node, in units
580
+ of hundredths of a second.""",
581
+ "reference" :
582
+ """IEEE 802.1D-1998: clause 8.5.3.14""",
583
+ }, # scalar
584
+ "dot1dStpForwardDelay" : {
585
+ "nodetype" : "scalar",
586
+ "moduleName" : "BRIDGE-MIB",
587
+ "oid" : "1.3.6.1.2.1.17.2.11",
588
+ "status" : "current",
589
+ "syntax" : {
590
+ "type" : { "module" :"BRIDGE-MIB", "name" : "Timeout"},
591
+ },
592
+ "access" : "readonly",
593
+ "units" : "centi-seconds",
594
+ "description" :
595
+ """This time value, measured in units of hundredths of a
596
+ second, controls how fast a port changes its spanning
597
+ state when moving towards the Forwarding state. The
598
+ value determines how long the port stays in each of the
599
+ Listening and Learning states, which precede the
600
+ Forwarding state. This value is also used when a
601
+ topology change has been detected and is underway, to
602
+ age all dynamic entries in the Forwarding Database.
603
+ [Note that this value is the one that this bridge is
604
+ currently using, in contrast to
605
+ dot1dStpBridgeForwardDelay, which is the value that this
606
+ bridge and all others would start using if/when this
607
+ bridge were to become the root.]""",
608
+ "reference" :
609
+ """IEEE 802.1D-1998: clause 8.5.3.6""",
610
+ }, # scalar
611
+ "dot1dStpBridgeMaxAge" : {
612
+ "nodetype" : "scalar",
613
+ "moduleName" : "BRIDGE-MIB",
614
+ "oid" : "1.3.6.1.2.1.17.2.12",
615
+ "status" : "current",
616
+ "syntax" : {
617
+ "type" : {
618
+ "basetype" : "Integer32",
619
+ "parent module" : {
620
+ "name" : "BRIDGE-MIB",
621
+ "type" : "Timeout",
622
+ },
623
+ "ranges" : [
624
+ {
625
+ "min" : "600",
626
+ "max" : "4000"
627
+ },
628
+ ],
629
+ "range" : {
630
+ "min" : "600",
631
+ "max" : "4000"
632
+ },
633
+ },
634
+ },
635
+ "access" : "readwrite",
636
+ "units" : "centi-seconds",
637
+ "description" :
638
+ """The value that all bridges use for MaxAge when this
639
+ bridge is acting as the root. Note that 802.1D-1998
640
+ specifies that the range for this parameter is related
641
+ to the value of dot1dStpBridgeHelloTime. The
642
+ granularity of this timer is specified by 802.1D-1998 to
643
+ be 1 second. An agent may return a badValue error if a
644
+ set is attempted to a value that is not a whole number
645
+ of seconds.""",
646
+ "reference" :
647
+ """IEEE 802.1D-1998: clause 8.5.3.8""",
648
+ }, # scalar
649
+ "dot1dStpBridgeHelloTime" : {
650
+ "nodetype" : "scalar",
651
+ "moduleName" : "BRIDGE-MIB",
652
+ "oid" : "1.3.6.1.2.1.17.2.13",
653
+ "status" : "current",
654
+ "syntax" : {
655
+ "type" : {
656
+ "basetype" : "Integer32",
657
+ "parent module" : {
658
+ "name" : "BRIDGE-MIB",
659
+ "type" : "Timeout",
660
+ },
661
+ "ranges" : [
662
+ {
663
+ "min" : "100",
664
+ "max" : "1000"
665
+ },
666
+ ],
667
+ "range" : {
668
+ "min" : "100",
669
+ "max" : "1000"
670
+ },
671
+ },
672
+ },
673
+ "access" : "readwrite",
674
+ "units" : "centi-seconds",
675
+ "description" :
676
+ """The value that all bridges use for HelloTime when this
677
+ bridge is acting as the root. The granularity of this
678
+ timer is specified by 802.1D-1998 to be 1 second. An
679
+ agent may return a badValue error if a set is attempted
680
+
681
+
682
+
683
+ to a value that is not a whole number of seconds.""",
684
+ "reference" :
685
+ """IEEE 802.1D-1998: clause 8.5.3.9""",
686
+ }, # scalar
687
+ "dot1dStpBridgeForwardDelay" : {
688
+ "nodetype" : "scalar",
689
+ "moduleName" : "BRIDGE-MIB",
690
+ "oid" : "1.3.6.1.2.1.17.2.14",
691
+ "status" : "current",
692
+ "syntax" : {
693
+ "type" : {
694
+ "basetype" : "Integer32",
695
+ "parent module" : {
696
+ "name" : "BRIDGE-MIB",
697
+ "type" : "Timeout",
698
+ },
699
+ "ranges" : [
700
+ {
701
+ "min" : "400",
702
+ "max" : "3000"
703
+ },
704
+ ],
705
+ "range" : {
706
+ "min" : "400",
707
+ "max" : "3000"
708
+ },
709
+ },
710
+ },
711
+ "access" : "readwrite",
712
+ "units" : "centi-seconds",
713
+ "description" :
714
+ """The value that all bridges use for ForwardDelay when
715
+ this bridge is acting as the root. Note that
716
+ 802.1D-1998 specifies that the range for this parameter
717
+ is related to the value of dot1dStpBridgeMaxAge. The
718
+ granularity of this timer is specified by 802.1D-1998 to
719
+ be 1 second. An agent may return a badValue error if a
720
+ set is attempted to a value that is not a whole number
721
+ of seconds.""",
722
+ "reference" :
723
+ """IEEE 802.1D-1998: clause 8.5.3.10""",
724
+ }, # scalar
725
+ "dot1dStpPortTable" : {
726
+ "nodetype" : "table",
727
+ "moduleName" : "BRIDGE-MIB",
728
+ "oid" : "1.3.6.1.2.1.17.2.15",
729
+ "status" : "current",
730
+ "description" :
731
+ """A table that contains port-specific information
732
+ for the Spanning Tree Protocol.""",
733
+ }, # table
734
+ "dot1dStpPortEntry" : {
735
+ "nodetype" : "row",
736
+ "moduleName" : "BRIDGE-MIB",
737
+ "oid" : "1.3.6.1.2.1.17.2.15.1",
738
+ "status" : "current",
739
+ "linkage" : [
740
+ "dot1dStpPort",
741
+ ],
742
+ "description" :
743
+ """A list of information maintained by every port about
744
+ the Spanning Tree Protocol state for that port.""",
745
+ }, # row
746
+ "dot1dStpPort" : {
747
+ "nodetype" : "column",
748
+ "moduleName" : "BRIDGE-MIB",
749
+ "oid" : "1.3.6.1.2.1.17.2.15.1.1",
750
+ "status" : "current",
751
+ "syntax" : {
752
+ "type" : {
753
+ "basetype" : "Integer32",
754
+ "ranges" : [
755
+ {
756
+ "min" : "1",
757
+ "max" : "65535"
758
+ },
759
+ ],
760
+ "range" : {
761
+ "min" : "1",
762
+ "max" : "65535"
763
+ },
764
+ },
765
+ },
766
+ "access" : "readonly",
767
+ "description" :
768
+ """The port number of the port for which this entry
769
+ contains Spanning Tree Protocol management information.""",
770
+ "reference" :
771
+ """IEEE 802.1D-1998: clause 14.8.2.1.2""",
772
+ }, # column
773
+ "dot1dStpPortPriority" : {
774
+ "nodetype" : "column",
775
+ "moduleName" : "BRIDGE-MIB",
776
+ "oid" : "1.3.6.1.2.1.17.2.15.1.2",
777
+ "status" : "current",
778
+ "syntax" : {
779
+ "type" : {
780
+ "basetype" : "Integer32",
781
+ "ranges" : [
782
+ {
783
+ "min" : "0",
784
+ "max" : "255"
785
+ },
786
+ ],
787
+ "range" : {
788
+ "min" : "0",
789
+ "max" : "255"
790
+ },
791
+ },
792
+ },
793
+ "access" : "readwrite",
794
+ "description" :
795
+ """The value of the priority field that is contained in
796
+ the first (in network byte order) octet of the (2 octet
797
+ long) Port ID. The other octet of the Port ID is given
798
+ by the value of dot1dStpPort.
799
+ On bridges supporting IEEE 802.1t or IEEE 802.1w,
800
+ permissible values are 0-240, in steps of 16.""",
801
+ "reference" :
802
+ """IEEE 802.1D-1998 clause 8.10.2, Table 8-4,
803
+
804
+
805
+
806
+ IEEE 802.1t clause 8.10.2, Table 8-4, clause 14.3.""",
807
+ }, # column
808
+ "dot1dStpPortState" : {
809
+ "nodetype" : "column",
810
+ "moduleName" : "BRIDGE-MIB",
811
+ "oid" : "1.3.6.1.2.1.17.2.15.1.3",
812
+ "status" : "current",
813
+ "syntax" : {
814
+ "type" : {
815
+ "basetype" : "Enumeration",
816
+ "disabled" : {
817
+ "nodetype" : "namednumber",
818
+ "number" : "1"
819
+ },
820
+ "blocking" : {
821
+ "nodetype" : "namednumber",
822
+ "number" : "2"
823
+ },
824
+ "listening" : {
825
+ "nodetype" : "namednumber",
826
+ "number" : "3"
827
+ },
828
+ "learning" : {
829
+ "nodetype" : "namednumber",
830
+ "number" : "4"
831
+ },
832
+ "forwarding" : {
833
+ "nodetype" : "namednumber",
834
+ "number" : "5"
835
+ },
836
+ "broken" : {
837
+ "nodetype" : "namednumber",
838
+ "number" : "6"
839
+ },
840
+ },
841
+ },
842
+ "access" : "readonly",
843
+ "description" :
844
+ """The port's current state, as defined by application of
845
+ the Spanning Tree Protocol. This state controls what
846
+ action a port takes on reception of a frame. If the
847
+ bridge has detected a port that is malfunctioning, it
848
+ will place that port into the broken(6) state. For
849
+ ports that are disabled (see dot1dStpPortEnable), this
850
+ object will have a value of disabled(1).""",
851
+ "reference" :
852
+ """IEEE 802.1D-1998: clause 8.5.5.2""",
853
+ }, # column
854
+ "dot1dStpPortEnable" : {
855
+ "nodetype" : "column",
856
+ "moduleName" : "BRIDGE-MIB",
857
+ "oid" : "1.3.6.1.2.1.17.2.15.1.4",
858
+ "status" : "current",
859
+ "syntax" : {
860
+ "type" : {
861
+ "basetype" : "Enumeration",
862
+ "enabled" : {
863
+ "nodetype" : "namednumber",
864
+ "number" : "1"
865
+ },
866
+ "disabled" : {
867
+ "nodetype" : "namednumber",
868
+ "number" : "2"
869
+ },
870
+ },
871
+ },
872
+ "access" : "readwrite",
873
+ "description" :
874
+ """The enabled/disabled status of the port.""",
875
+ "reference" :
876
+ """IEEE 802.1D-1998: clause 8.5.5.2""",
877
+ }, # column
878
+ "dot1dStpPortPathCost" : {
879
+ "nodetype" : "column",
880
+ "moduleName" : "BRIDGE-MIB",
881
+ "oid" : "1.3.6.1.2.1.17.2.15.1.5",
882
+ "status" : "current",
883
+ "syntax" : {
884
+ "type" : {
885
+ "basetype" : "Integer32",
886
+ "ranges" : [
887
+ {
888
+ "min" : "1",
889
+ "max" : "65535"
890
+ },
891
+ ],
892
+ "range" : {
893
+ "min" : "1",
894
+ "max" : "65535"
895
+ },
896
+ },
897
+ },
898
+ "access" : "readwrite",
899
+ "description" :
900
+ """The contribution of this port to the path cost of
901
+ paths towards the spanning tree root which include
902
+ this port. 802.1D-1998 recommends that the default
903
+ value of this parameter be in inverse proportion to
904
+
905
+
906
+
907
+ the speed of the attached LAN.
908
+
909
+ New implementations should support dot1dStpPortPathCost32.
910
+ If the port path costs exceeds the maximum value of this
911
+ object then this object should report the maximum value,
912
+ namely 65535. Applications should try to read the
913
+ dot1dStpPortPathCost32 object if this object reports
914
+ the maximum value.""",
915
+ "reference" :
916
+ """IEEE 802.1D-1998: clause 8.5.5.3""",
917
+ }, # column
918
+ "dot1dStpPortDesignatedRoot" : {
919
+ "nodetype" : "column",
920
+ "moduleName" : "BRIDGE-MIB",
921
+ "oid" : "1.3.6.1.2.1.17.2.15.1.6",
922
+ "status" : "current",
923
+ "syntax" : {
924
+ "type" : { "module" :"BRIDGE-MIB", "name" : "BridgeId"},
925
+ },
926
+ "access" : "readonly",
927
+ "description" :
928
+ """The unique Bridge Identifier of the Bridge
929
+ recorded as the Root in the Configuration BPDUs
930
+ transmitted by the Designated Bridge for the
931
+ segment to which the port is attached.""",
932
+ "reference" :
933
+ """IEEE 802.1D-1998: clause 8.5.5.4""",
934
+ }, # column
935
+ "dot1dStpPortDesignatedCost" : {
936
+ "nodetype" : "column",
937
+ "moduleName" : "BRIDGE-MIB",
938
+ "oid" : "1.3.6.1.2.1.17.2.15.1.7",
939
+ "status" : "current",
940
+ "syntax" : {
941
+ "type" : { "module" :"", "name" : "Integer32"},
942
+ },
943
+ "access" : "readonly",
944
+ "description" :
945
+ """The path cost of the Designated Port of the segment
946
+ connected to this port. This value is compared to the
947
+ Root Path Cost field in received bridge PDUs.""",
948
+ "reference" :
949
+ """IEEE 802.1D-1998: clause 8.5.5.5""",
950
+ }, # column
951
+ "dot1dStpPortDesignatedBridge" : {
952
+ "nodetype" : "column",
953
+ "moduleName" : "BRIDGE-MIB",
954
+ "oid" : "1.3.6.1.2.1.17.2.15.1.8",
955
+ "status" : "current",
956
+ "syntax" : {
957
+ "type" : { "module" :"BRIDGE-MIB", "name" : "BridgeId"},
958
+ },
959
+ "access" : "readonly",
960
+ "description" :
961
+ """The Bridge Identifier of the bridge that this
962
+ port considers to be the Designated Bridge for
963
+ this port's segment.""",
964
+ "reference" :
965
+ """IEEE 802.1D-1998: clause 8.5.5.6""",
966
+ }, # column
967
+ "dot1dStpPortDesignatedPort" : {
968
+ "nodetype" : "column",
969
+ "moduleName" : "BRIDGE-MIB",
970
+ "oid" : "1.3.6.1.2.1.17.2.15.1.9",
971
+ "status" : "current",
972
+ "syntax" : {
973
+ "type" : {
974
+ "basetype" : "OctetString",
975
+ "ranges" : [
976
+ {
977
+ "min" : "2",
978
+ "max" : "2"
979
+ },
980
+ ],
981
+ "range" : {
982
+ "min" : "2",
983
+ "max" : "2"
984
+ },
985
+ },
986
+ },
987
+ "access" : "readonly",
988
+ "description" :
989
+ """The Port Identifier of the port on the Designated
990
+ Bridge for this port's segment.""",
991
+ "reference" :
992
+ """IEEE 802.1D-1998: clause 8.5.5.7""",
993
+ }, # column
994
+ "dot1dStpPortForwardTransitions" : {
995
+ "nodetype" : "column",
996
+ "moduleName" : "BRIDGE-MIB",
997
+ "oid" : "1.3.6.1.2.1.17.2.15.1.10",
998
+ "status" : "current",
999
+ "syntax" : {
1000
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1001
+ },
1002
+ "access" : "readonly",
1003
+ "description" :
1004
+ """The number of times this port has transitioned
1005
+ from the Learning state to the Forwarding state.""",
1006
+ }, # column
1007
+ "dot1dStpPortPathCost32" : {
1008
+ "nodetype" : "column",
1009
+ "moduleName" : "BRIDGE-MIB",
1010
+ "oid" : "1.3.6.1.2.1.17.2.15.1.11",
1011
+ "status" : "current",
1012
+ "syntax" : {
1013
+ "type" : {
1014
+ "basetype" : "Integer32",
1015
+ "ranges" : [
1016
+ {
1017
+ "min" : "1",
1018
+ "max" : "200000000"
1019
+ },
1020
+ ],
1021
+ "range" : {
1022
+ "min" : "1",
1023
+ "max" : "200000000"
1024
+ },
1025
+ },
1026
+ },
1027
+ "access" : "readwrite",
1028
+ "description" :
1029
+ """The contribution of this port to the path cost of
1030
+ paths towards the spanning tree root which include
1031
+ this port. 802.1D-1998 recommends that the default
1032
+ value of this parameter be in inverse proportion to
1033
+ the speed of the attached LAN.
1034
+
1035
+ This object replaces dot1dStpPortPathCost to support
1036
+ IEEE 802.1t.""",
1037
+ "reference" :
1038
+ """IEEE 802.1t clause 8.10.2, Table 8-5.""",
1039
+ }, # column
1040
+ "dot1dSr" : {
1041
+ "nodetype" : "node",
1042
+ "moduleName" : "BRIDGE-MIB",
1043
+ "oid" : "1.3.6.1.2.1.17.3",
1044
+ }, # node
1045
+ "dot1dTp" : {
1046
+ "nodetype" : "node",
1047
+ "moduleName" : "BRIDGE-MIB",
1048
+ "oid" : "1.3.6.1.2.1.17.4",
1049
+ }, # node
1050
+ "dot1dTpLearnedEntryDiscards" : {
1051
+ "nodetype" : "scalar",
1052
+ "moduleName" : "BRIDGE-MIB",
1053
+ "oid" : "1.3.6.1.2.1.17.4.1",
1054
+ "status" : "current",
1055
+ "syntax" : {
1056
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1057
+ },
1058
+ "access" : "readonly",
1059
+ "description" :
1060
+ """The total number of Forwarding Database entries that
1061
+ have been or would have been learned, but have been
1062
+ discarded due to a lack of storage space in the
1063
+ Forwarding Database. If this counter is increasing, it
1064
+ indicates that the Forwarding Database is regularly
1065
+ becoming full (a condition that has unpleasant
1066
+ performance effects on the subnetwork). If this counter
1067
+ has a significant value but is not presently increasing,
1068
+ it indicates that the problem has been occurring but is
1069
+ not persistent.""",
1070
+ "reference" :
1071
+ """IEEE 802.1D-1998: clause 14.7.1.1.3""",
1072
+ }, # scalar
1073
+ "dot1dTpAgingTime" : {
1074
+ "nodetype" : "scalar",
1075
+ "moduleName" : "BRIDGE-MIB",
1076
+ "oid" : "1.3.6.1.2.1.17.4.2",
1077
+ "status" : "current",
1078
+ "syntax" : {
1079
+ "type" : {
1080
+ "basetype" : "Integer32",
1081
+ "ranges" : [
1082
+ {
1083
+ "min" : "10",
1084
+ "max" : "1000000"
1085
+ },
1086
+ ],
1087
+ "range" : {
1088
+ "min" : "10",
1089
+ "max" : "1000000"
1090
+ },
1091
+ },
1092
+ },
1093
+ "access" : "readwrite",
1094
+ "units" : "seconds",
1095
+ "description" :
1096
+ """The timeout period in seconds for aging out
1097
+ dynamically-learned forwarding information.
1098
+ 802.1D-1998 recommends a default of 300 seconds.""",
1099
+ "reference" :
1100
+ """IEEE 802.1D-1998: clause 14.7.1.1.3""",
1101
+ }, # scalar
1102
+ "dot1dTpFdbTable" : {
1103
+ "nodetype" : "table",
1104
+ "moduleName" : "BRIDGE-MIB",
1105
+ "oid" : "1.3.6.1.2.1.17.4.3",
1106
+ "status" : "current",
1107
+ "description" :
1108
+ """A table that contains information about unicast
1109
+ entries for which the bridge has forwarding and/or
1110
+ filtering information. This information is used
1111
+ by the transparent bridging function in
1112
+ determining how to propagate a received frame.""",
1113
+ }, # table
1114
+ "dot1dTpFdbEntry" : {
1115
+ "nodetype" : "row",
1116
+ "moduleName" : "BRIDGE-MIB",
1117
+ "oid" : "1.3.6.1.2.1.17.4.3.1",
1118
+ "status" : "current",
1119
+ "linkage" : [
1120
+ "dot1dTpFdbAddress",
1121
+ ],
1122
+ "description" :
1123
+ """Information about a specific unicast MAC address
1124
+ for which the bridge has some forwarding and/or
1125
+ filtering information.""",
1126
+ }, # row
1127
+ "dot1dTpFdbAddress" : {
1128
+ "nodetype" : "column",
1129
+ "moduleName" : "BRIDGE-MIB",
1130
+ "oid" : "1.3.6.1.2.1.17.4.3.1.1",
1131
+ "status" : "current",
1132
+ "syntax" : {
1133
+ "type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
1134
+ },
1135
+ "access" : "readonly",
1136
+ "description" :
1137
+ """A unicast MAC address for which the bridge has
1138
+ forwarding and/or filtering information.""",
1139
+ "reference" :
1140
+ """IEEE 802.1D-1998: clause 7.9.1, 7.9.2""",
1141
+ }, # column
1142
+ "dot1dTpFdbPort" : {
1143
+ "nodetype" : "column",
1144
+ "moduleName" : "BRIDGE-MIB",
1145
+ "oid" : "1.3.6.1.2.1.17.4.3.1.2",
1146
+ "status" : "current",
1147
+ "syntax" : {
1148
+ "type" : { "module" :"", "name" : "Integer32"},
1149
+ },
1150
+ "access" : "readonly",
1151
+ "description" :
1152
+ """Either the value '0', or the port number of the port on
1153
+ which a frame having a source address equal to the value
1154
+ of the corresponding instance of dot1dTpFdbAddress has
1155
+ been seen. A value of '0' indicates that the port
1156
+ number has not been learned, but that the bridge does
1157
+ have some forwarding/filtering information about this
1158
+ address (e.g., in the dot1dStaticTable). Implementors
1159
+ are encouraged to assign the port value to this object
1160
+ whenever it is learned, even for addresses for which the
1161
+ corresponding value of dot1dTpFdbStatus is not
1162
+ learned(3).""",
1163
+ }, # column
1164
+ "dot1dTpFdbStatus" : {
1165
+ "nodetype" : "column",
1166
+ "moduleName" : "BRIDGE-MIB",
1167
+ "oid" : "1.3.6.1.2.1.17.4.3.1.3",
1168
+ "status" : "current",
1169
+ "syntax" : {
1170
+ "type" : {
1171
+ "basetype" : "Enumeration",
1172
+ "other" : {
1173
+ "nodetype" : "namednumber",
1174
+ "number" : "1"
1175
+ },
1176
+ "invalid" : {
1177
+ "nodetype" : "namednumber",
1178
+ "number" : "2"
1179
+ },
1180
+ "learned" : {
1181
+ "nodetype" : "namednumber",
1182
+ "number" : "3"
1183
+ },
1184
+ "self" : {
1185
+ "nodetype" : "namednumber",
1186
+ "number" : "4"
1187
+ },
1188
+ "mgmt" : {
1189
+ "nodetype" : "namednumber",
1190
+ "number" : "5"
1191
+ },
1192
+ },
1193
+ },
1194
+ "access" : "readonly",
1195
+ "description" :
1196
+ """The status of this entry. The meanings of the
1197
+ values are:
1198
+ other(1) - none of the following. This would
1199
+ include the case where some other MIB object
1200
+ (not the corresponding instance of
1201
+ dot1dTpFdbPort, nor an entry in the
1202
+ dot1dStaticTable) is being used to determine if
1203
+ and how frames addressed to the value of the
1204
+ corresponding instance of dot1dTpFdbAddress are
1205
+ being forwarded.
1206
+ invalid(2) - this entry is no longer valid (e.g.,
1207
+ it was learned but has since aged out), but has
1208
+ not yet been flushed from the table.
1209
+ learned(3) - the value of the corresponding instance
1210
+ of dot1dTpFdbPort was learned, and is being
1211
+ used.
1212
+ self(4) - the value of the corresponding instance of
1213
+ dot1dTpFdbAddress represents one of the bridge's
1214
+ addresses. The corresponding instance of
1215
+ dot1dTpFdbPort indicates which of the bridge's
1216
+ ports has this address.
1217
+ mgmt(5) - the value of the corresponding instance of
1218
+ dot1dTpFdbAddress is also the value of an
1219
+ existing instance of dot1dStaticAddress.""",
1220
+ }, # column
1221
+ "dot1dTpPortTable" : {
1222
+ "nodetype" : "table",
1223
+ "moduleName" : "BRIDGE-MIB",
1224
+ "oid" : "1.3.6.1.2.1.17.4.4",
1225
+ "status" : "current",
1226
+ "description" :
1227
+ """A table that contains information about every port that
1228
+ is associated with this transparent bridge.""",
1229
+ }, # table
1230
+ "dot1dTpPortEntry" : {
1231
+ "nodetype" : "row",
1232
+ "moduleName" : "BRIDGE-MIB",
1233
+ "oid" : "1.3.6.1.2.1.17.4.4.1",
1234
+ "status" : "current",
1235
+ "linkage" : [
1236
+ "dot1dTpPort",
1237
+ ],
1238
+ "description" :
1239
+ """A list of information for each port of a transparent
1240
+ bridge.""",
1241
+ }, # row
1242
+ "dot1dTpPort" : {
1243
+ "nodetype" : "column",
1244
+ "moduleName" : "BRIDGE-MIB",
1245
+ "oid" : "1.3.6.1.2.1.17.4.4.1.1",
1246
+ "status" : "current",
1247
+ "syntax" : {
1248
+ "type" : {
1249
+ "basetype" : "Integer32",
1250
+ "ranges" : [
1251
+ {
1252
+ "min" : "1",
1253
+ "max" : "65535"
1254
+ },
1255
+ ],
1256
+ "range" : {
1257
+ "min" : "1",
1258
+ "max" : "65535"
1259
+ },
1260
+ },
1261
+ },
1262
+ "access" : "readonly",
1263
+ "description" :
1264
+ """The port number of the port for which this entry
1265
+ contains Transparent bridging management information.""",
1266
+ }, # column
1267
+ "dot1dTpPortMaxInfo" : {
1268
+ "nodetype" : "column",
1269
+ "moduleName" : "BRIDGE-MIB",
1270
+ "oid" : "1.3.6.1.2.1.17.4.4.1.2",
1271
+ "status" : "current",
1272
+ "syntax" : {
1273
+ "type" : { "module" :"", "name" : "Integer32"},
1274
+ },
1275
+ "access" : "readonly",
1276
+ "units" : "bytes",
1277
+ "description" :
1278
+ """The maximum size of the INFO (non-MAC) field that
1279
+
1280
+
1281
+
1282
+ this port will receive or transmit.""",
1283
+ }, # column
1284
+ "dot1dTpPortInFrames" : {
1285
+ "nodetype" : "column",
1286
+ "moduleName" : "BRIDGE-MIB",
1287
+ "oid" : "1.3.6.1.2.1.17.4.4.1.3",
1288
+ "status" : "current",
1289
+ "syntax" : {
1290
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1291
+ },
1292
+ "access" : "readonly",
1293
+ "units" : "frames",
1294
+ "description" :
1295
+ """The number of frames that have been received by this
1296
+ port from its segment. Note that a frame received on the
1297
+ interface corresponding to this port is only counted by
1298
+ this object if and only if it is for a protocol being
1299
+ processed by the local bridging function, including
1300
+ bridge management frames.""",
1301
+ "reference" :
1302
+ """IEEE 802.1D-1998: clause 14.6.1.1.3""",
1303
+ }, # column
1304
+ "dot1dTpPortOutFrames" : {
1305
+ "nodetype" : "column",
1306
+ "moduleName" : "BRIDGE-MIB",
1307
+ "oid" : "1.3.6.1.2.1.17.4.4.1.4",
1308
+ "status" : "current",
1309
+ "syntax" : {
1310
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1311
+ },
1312
+ "access" : "readonly",
1313
+ "units" : "frames",
1314
+ "description" :
1315
+ """The number of frames that have been transmitted by this
1316
+ port to its segment. Note that a frame transmitted on
1317
+ the interface corresponding to this port is only counted
1318
+ by this object if and only if it is for a protocol being
1319
+ processed by the local bridging function, including
1320
+ bridge management frames.""",
1321
+ "reference" :
1322
+ """IEEE 802.1D-1998: clause 14.6.1.1.3""",
1323
+ }, # column
1324
+ "dot1dTpPortInDiscards" : {
1325
+ "nodetype" : "column",
1326
+ "moduleName" : "BRIDGE-MIB",
1327
+ "oid" : "1.3.6.1.2.1.17.4.4.1.5",
1328
+ "status" : "current",
1329
+ "syntax" : {
1330
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1331
+ },
1332
+ "access" : "readonly",
1333
+ "units" : "frames",
1334
+ "description" :
1335
+ """Count of received valid frames that were discarded
1336
+ (i.e., filtered) by the Forwarding Process.""",
1337
+ "reference" :
1338
+ """IEEE 802.1D-1998: clause 14.6.1.1.3""",
1339
+ }, # column
1340
+ "dot1dStatic" : {
1341
+ "nodetype" : "node",
1342
+ "moduleName" : "BRIDGE-MIB",
1343
+ "oid" : "1.3.6.1.2.1.17.5",
1344
+ }, # node
1345
+ "dot1dStaticTable" : {
1346
+ "nodetype" : "table",
1347
+ "moduleName" : "BRIDGE-MIB",
1348
+ "oid" : "1.3.6.1.2.1.17.5.1",
1349
+ "status" : "current",
1350
+ "description" :
1351
+ """A table containing filtering information configured
1352
+ into the bridge by (local or network) management
1353
+ specifying the set of ports to which frames received
1354
+ from specific ports and containing specific destination
1355
+ addresses are allowed to be forwarded. The value of
1356
+ zero in this table, as the port number from which frames
1357
+ with a specific destination address are received, is
1358
+ used to specify all ports for which there is no specific
1359
+ entry in this table for that particular destination
1360
+ address. Entries are valid for unicast and for
1361
+ group/broadcast addresses.""",
1362
+ "reference" :
1363
+ """IEEE 802.1D-1998: clause 14.7.2""",
1364
+ }, # table
1365
+ "dot1dStaticEntry" : {
1366
+ "nodetype" : "row",
1367
+ "moduleName" : "BRIDGE-MIB",
1368
+ "oid" : "1.3.6.1.2.1.17.5.1.1",
1369
+ "create" : "true",
1370
+ "status" : "current",
1371
+ "linkage" : [
1372
+ "dot1dStaticAddress",
1373
+ "dot1dStaticReceivePort",
1374
+ ],
1375
+ "description" :
1376
+ """Filtering information configured into the bridge by
1377
+ (local or network) management specifying the set of
1378
+ ports to which frames received from a specific port and
1379
+ containing a specific destination address are allowed to
1380
+ be forwarded.""",
1381
+ "reference" :
1382
+ """IEEE 802.1D-1998: clause 14.7.2""",
1383
+ }, # row
1384
+ "dot1dStaticAddress" : {
1385
+ "nodetype" : "column",
1386
+ "moduleName" : "BRIDGE-MIB",
1387
+ "oid" : "1.3.6.1.2.1.17.5.1.1.1",
1388
+ "status" : "current",
1389
+ "syntax" : {
1390
+ "type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
1391
+ },
1392
+ "access" : "readwrite",
1393
+ "description" :
1394
+ """The destination MAC address in a frame to which this
1395
+ entry's filtering information applies. This object can
1396
+ take the value of a unicast address, a group address, or
1397
+ the broadcast address.""",
1398
+ "reference" :
1399
+ """IEEE 802.1D-1998: clause 7.9.1, 7.9.2""",
1400
+ }, # column
1401
+ "dot1dStaticReceivePort" : {
1402
+ "nodetype" : "column",
1403
+ "moduleName" : "BRIDGE-MIB",
1404
+ "oid" : "1.3.6.1.2.1.17.5.1.1.2",
1405
+ "status" : "current",
1406
+ "syntax" : {
1407
+ "type" : {
1408
+ "basetype" : "Integer32",
1409
+ "ranges" : [
1410
+ {
1411
+ "min" : "0",
1412
+ "max" : "65535"
1413
+ },
1414
+ ],
1415
+ "range" : {
1416
+ "min" : "0",
1417
+ "max" : "65535"
1418
+ },
1419
+ },
1420
+ },
1421
+ "access" : "readwrite",
1422
+ "description" :
1423
+ """Either the value '0', or the port number of the port
1424
+ from which a frame must be received in order for this
1425
+ entry's filtering information to apply. A value of zero
1426
+ indicates that this entry applies on all ports of the
1427
+ bridge for which there is no other applicable entry.""",
1428
+ }, # column
1429
+ "dot1dStaticAllowedToGoTo" : {
1430
+ "nodetype" : "column",
1431
+ "moduleName" : "BRIDGE-MIB",
1432
+ "oid" : "1.3.6.1.2.1.17.5.1.1.3",
1433
+ "status" : "current",
1434
+ "syntax" : {
1435
+ "type" : {
1436
+ "basetype" : "OctetString",
1437
+ "ranges" : [
1438
+ {
1439
+ "min" : "0",
1440
+ "max" : "512"
1441
+ },
1442
+ ],
1443
+ "range" : {
1444
+ "min" : "0",
1445
+ "max" : "512"
1446
+ },
1447
+ },
1448
+ },
1449
+ "access" : "readwrite",
1450
+ "description" :
1451
+ """The set of ports to which frames received from a
1452
+ specific port and destined for a specific MAC address,
1453
+ are allowed to be forwarded. Each octet within the
1454
+ value of this object specifies a set of eight ports,
1455
+ with the first octet specifying ports 1 through 8, the
1456
+ second octet specifying ports 9 through 16, etc. Within
1457
+ each octet, the most significant bit represents the
1458
+ lowest numbered port, and the least significant bit
1459
+ represents the highest numbered port. Thus, each port
1460
+ of the bridge is represented by a single bit within the
1461
+ value of this object. If that bit has a value of '1',
1462
+ then that port is included in the set of ports; the port
1463
+ is not included if its bit has a value of '0'. (Note
1464
+ that the setting of the bit corresponding to the port
1465
+ from which a frame is received is irrelevant.) The
1466
+ default value of this object is a string of ones of
1467
+ appropriate length.
1468
+
1469
+
1470
+
1471
+
1472
+ The value of this object may exceed the required minimum
1473
+ maximum message size of some SNMP transport (484 bytes,
1474
+ in the case of SNMP over UDP, see RFC 3417, section 3.2).
1475
+ SNMP engines on bridges supporting a large number of
1476
+ ports must support appropriate maximum message sizes.""",
1477
+ }, # column
1478
+ "dot1dStaticStatus" : {
1479
+ "nodetype" : "column",
1480
+ "moduleName" : "BRIDGE-MIB",
1481
+ "oid" : "1.3.6.1.2.1.17.5.1.1.4",
1482
+ "status" : "current",
1483
+ "syntax" : {
1484
+ "type" : {
1485
+ "basetype" : "Enumeration",
1486
+ "other" : {
1487
+ "nodetype" : "namednumber",
1488
+ "number" : "1"
1489
+ },
1490
+ "invalid" : {
1491
+ "nodetype" : "namednumber",
1492
+ "number" : "2"
1493
+ },
1494
+ "permanent" : {
1495
+ "nodetype" : "namednumber",
1496
+ "number" : "3"
1497
+ },
1498
+ "deleteOnReset" : {
1499
+ "nodetype" : "namednumber",
1500
+ "number" : "4"
1501
+ },
1502
+ "deleteOnTimeout" : {
1503
+ "nodetype" : "namednumber",
1504
+ "number" : "5"
1505
+ },
1506
+ },
1507
+ },
1508
+ "access" : "readwrite",
1509
+ "description" :
1510
+ """This object indicates the status of this entry.
1511
+ The default value is permanent(3).
1512
+ other(1) - this entry is currently in use but the
1513
+ conditions under which it will remain so are
1514
+ different from each of the following values.
1515
+ invalid(2) - writing this value to the object
1516
+ removes the corresponding entry.
1517
+ permanent(3) - this entry is currently in use and
1518
+ will remain so after the next reset of the
1519
+ bridge.
1520
+ deleteOnReset(4) - this entry is currently in use
1521
+ and will remain so until the next reset of the
1522
+ bridge.
1523
+ deleteOnTimeout(5) - this entry is currently in use
1524
+ and will remain so until it is aged out.""",
1525
+ }, # column
1526
+ "dot1dConformance" : {
1527
+ "nodetype" : "node",
1528
+ "moduleName" : "BRIDGE-MIB",
1529
+ "oid" : "1.3.6.1.2.1.17.8",
1530
+ }, # node
1531
+ "dot1dGroups" : {
1532
+ "nodetype" : "node",
1533
+ "moduleName" : "BRIDGE-MIB",
1534
+ "oid" : "1.3.6.1.2.1.17.8.1",
1535
+ }, # node
1536
+ "dot1dCompliances" : {
1537
+ "nodetype" : "node",
1538
+ "moduleName" : "BRIDGE-MIB",
1539
+ "oid" : "1.3.6.1.2.1.17.8.2",
1540
+ }, # node
1541
+ }, # nodes
1542
+
1543
+ "notifications" : {
1544
+ "newRoot" : {
1545
+ "nodetype" : "notification",
1546
+ "moduleName" : "BRIDGE-MIB",
1547
+ "oid" : "1.3.6.1.2.1.17.0.1",
1548
+ "status" : "current",
1549
+ "objects" : {
1550
+ },
1551
+ "description" :
1552
+ """The newRoot trap indicates that the sending agent has
1553
+ become the new root of the Spanning Tree; the trap is
1554
+ sent by a bridge soon after its election as the new
1555
+
1556
+
1557
+
1558
+ root, e.g., upon expiration of the Topology Change Timer,
1559
+ immediately subsequent to its election. Implementation
1560
+ of this trap is optional.""",
1561
+ }, # notification
1562
+ "topologyChange" : {
1563
+ "nodetype" : "notification",
1564
+ "moduleName" : "BRIDGE-MIB",
1565
+ "oid" : "1.3.6.1.2.1.17.0.2",
1566
+ "status" : "current",
1567
+ "objects" : {
1568
+ },
1569
+ "description" :
1570
+ """A topologyChange trap is sent by a bridge when any of
1571
+ its configured ports transitions from the Learning state
1572
+ to the Forwarding state, or from the Forwarding state to
1573
+ the Blocking state. The trap is not sent if a newRoot
1574
+ trap is sent for the same transition. Implementation of
1575
+ this trap is optional.""",
1576
+ }, # notification
1577
+ }, # notifications
1578
+
1579
+ "groups" : {
1580
+ "dot1dBaseBridgeGroup" : {
1581
+ "nodetype" : "group",
1582
+ "moduleName" : "BRIDGE-MIB",
1583
+ "oid" : "1.3.6.1.2.1.17.8.1.1",
1584
+ "status" : "current",
1585
+ "members" : {
1586
+ "dot1dBaseBridgeAddress" : {
1587
+ "nodetype" : "member",
1588
+ "module" : "BRIDGE-MIB"
1589
+ },
1590
+ "dot1dBaseNumPorts" : {
1591
+ "nodetype" : "member",
1592
+ "module" : "BRIDGE-MIB"
1593
+ },
1594
+ "dot1dBaseType" : {
1595
+ "nodetype" : "member",
1596
+ "module" : "BRIDGE-MIB"
1597
+ },
1598
+ }, # members
1599
+ "description" :
1600
+ """Bridge level information for this device.""",
1601
+ }, # group
1602
+ "dot1dBasePortGroup" : {
1603
+ "nodetype" : "group",
1604
+ "moduleName" : "BRIDGE-MIB",
1605
+ "oid" : "1.3.6.1.2.1.17.8.1.2",
1606
+ "status" : "current",
1607
+ "members" : {
1608
+ "dot1dBasePort" : {
1609
+ "nodetype" : "member",
1610
+ "module" : "BRIDGE-MIB"
1611
+ },
1612
+ "dot1dBasePortIfIndex" : {
1613
+ "nodetype" : "member",
1614
+ "module" : "BRIDGE-MIB"
1615
+ },
1616
+ "dot1dBasePortCircuit" : {
1617
+ "nodetype" : "member",
1618
+ "module" : "BRIDGE-MIB"
1619
+ },
1620
+ "dot1dBasePortDelayExceededDiscards" : {
1621
+ "nodetype" : "member",
1622
+ "module" : "BRIDGE-MIB"
1623
+ },
1624
+ "dot1dBasePortMtuExceededDiscards" : {
1625
+ "nodetype" : "member",
1626
+ "module" : "BRIDGE-MIB"
1627
+ },
1628
+ }, # members
1629
+ "description" :
1630
+ """Information for each port on this device.""",
1631
+ }, # group
1632
+ "dot1dStpBridgeGroup" : {
1633
+ "nodetype" : "group",
1634
+ "moduleName" : "BRIDGE-MIB",
1635
+ "oid" : "1.3.6.1.2.1.17.8.1.3",
1636
+ "status" : "current",
1637
+ "members" : {
1638
+ "dot1dStpProtocolSpecification" : {
1639
+ "nodetype" : "member",
1640
+ "module" : "BRIDGE-MIB"
1641
+ },
1642
+ "dot1dStpPriority" : {
1643
+ "nodetype" : "member",
1644
+ "module" : "BRIDGE-MIB"
1645
+ },
1646
+ "dot1dStpTimeSinceTopologyChange" : {
1647
+ "nodetype" : "member",
1648
+ "module" : "BRIDGE-MIB"
1649
+ },
1650
+ "dot1dStpTopChanges" : {
1651
+ "nodetype" : "member",
1652
+ "module" : "BRIDGE-MIB"
1653
+ },
1654
+ "dot1dStpDesignatedRoot" : {
1655
+ "nodetype" : "member",
1656
+ "module" : "BRIDGE-MIB"
1657
+ },
1658
+ "dot1dStpRootCost" : {
1659
+ "nodetype" : "member",
1660
+ "module" : "BRIDGE-MIB"
1661
+ },
1662
+ "dot1dStpRootPort" : {
1663
+ "nodetype" : "member",
1664
+ "module" : "BRIDGE-MIB"
1665
+ },
1666
+ "dot1dStpMaxAge" : {
1667
+ "nodetype" : "member",
1668
+ "module" : "BRIDGE-MIB"
1669
+ },
1670
+ "dot1dStpHelloTime" : {
1671
+ "nodetype" : "member",
1672
+ "module" : "BRIDGE-MIB"
1673
+ },
1674
+ "dot1dStpHoldTime" : {
1675
+ "nodetype" : "member",
1676
+ "module" : "BRIDGE-MIB"
1677
+ },
1678
+ "dot1dStpForwardDelay" : {
1679
+ "nodetype" : "member",
1680
+ "module" : "BRIDGE-MIB"
1681
+ },
1682
+ "dot1dStpBridgeMaxAge" : {
1683
+ "nodetype" : "member",
1684
+ "module" : "BRIDGE-MIB"
1685
+ },
1686
+ "dot1dStpBridgeHelloTime" : {
1687
+ "nodetype" : "member",
1688
+ "module" : "BRIDGE-MIB"
1689
+ },
1690
+ "dot1dStpBridgeForwardDelay" : {
1691
+ "nodetype" : "member",
1692
+ "module" : "BRIDGE-MIB"
1693
+ },
1694
+ }, # members
1695
+ "description" :
1696
+ """Bridge level Spanning Tree data for this device.""",
1697
+ }, # group
1698
+ "dot1dStpPortGroup" : {
1699
+ "nodetype" : "group",
1700
+ "moduleName" : "BRIDGE-MIB",
1701
+ "oid" : "1.3.6.1.2.1.17.8.1.4",
1702
+ "status" : "current",
1703
+ "members" : {
1704
+ "dot1dStpPort" : {
1705
+ "nodetype" : "member",
1706
+ "module" : "BRIDGE-MIB"
1707
+ },
1708
+ "dot1dStpPortPriority" : {
1709
+ "nodetype" : "member",
1710
+ "module" : "BRIDGE-MIB"
1711
+ },
1712
+ "dot1dStpPortState" : {
1713
+ "nodetype" : "member",
1714
+ "module" : "BRIDGE-MIB"
1715
+ },
1716
+ "dot1dStpPortEnable" : {
1717
+ "nodetype" : "member",
1718
+ "module" : "BRIDGE-MIB"
1719
+ },
1720
+ "dot1dStpPortPathCost" : {
1721
+ "nodetype" : "member",
1722
+ "module" : "BRIDGE-MIB"
1723
+ },
1724
+ "dot1dStpPortDesignatedRoot" : {
1725
+ "nodetype" : "member",
1726
+ "module" : "BRIDGE-MIB"
1727
+ },
1728
+ "dot1dStpPortDesignatedCost" : {
1729
+ "nodetype" : "member",
1730
+ "module" : "BRIDGE-MIB"
1731
+ },
1732
+ "dot1dStpPortDesignatedBridge" : {
1733
+ "nodetype" : "member",
1734
+ "module" : "BRIDGE-MIB"
1735
+ },
1736
+ "dot1dStpPortDesignatedPort" : {
1737
+ "nodetype" : "member",
1738
+ "module" : "BRIDGE-MIB"
1739
+ },
1740
+ "dot1dStpPortForwardTransitions" : {
1741
+ "nodetype" : "member",
1742
+ "module" : "BRIDGE-MIB"
1743
+ },
1744
+ }, # members
1745
+ "description" :
1746
+ """Spanning Tree data for each port on this device.""",
1747
+ }, # group
1748
+ "dot1dStpPortGroup2" : {
1749
+ "nodetype" : "group",
1750
+ "moduleName" : "BRIDGE-MIB",
1751
+ "oid" : "1.3.6.1.2.1.17.8.1.5",
1752
+ "status" : "current",
1753
+ "members" : {
1754
+ "dot1dStpPort" : {
1755
+ "nodetype" : "member",
1756
+ "module" : "BRIDGE-MIB"
1757
+ },
1758
+ "dot1dStpPortPriority" : {
1759
+ "nodetype" : "member",
1760
+ "module" : "BRIDGE-MIB"
1761
+ },
1762
+ "dot1dStpPortState" : {
1763
+ "nodetype" : "member",
1764
+ "module" : "BRIDGE-MIB"
1765
+ },
1766
+ "dot1dStpPortEnable" : {
1767
+ "nodetype" : "member",
1768
+ "module" : "BRIDGE-MIB"
1769
+ },
1770
+ "dot1dStpPortDesignatedRoot" : {
1771
+ "nodetype" : "member",
1772
+ "module" : "BRIDGE-MIB"
1773
+ },
1774
+ "dot1dStpPortDesignatedCost" : {
1775
+ "nodetype" : "member",
1776
+ "module" : "BRIDGE-MIB"
1777
+ },
1778
+ "dot1dStpPortDesignatedBridge" : {
1779
+ "nodetype" : "member",
1780
+ "module" : "BRIDGE-MIB"
1781
+ },
1782
+ "dot1dStpPortDesignatedPort" : {
1783
+ "nodetype" : "member",
1784
+ "module" : "BRIDGE-MIB"
1785
+ },
1786
+ "dot1dStpPortForwardTransitions" : {
1787
+ "nodetype" : "member",
1788
+ "module" : "BRIDGE-MIB"
1789
+ },
1790
+ "dot1dStpPortPathCost32" : {
1791
+ "nodetype" : "member",
1792
+ "module" : "BRIDGE-MIB"
1793
+ },
1794
+ }, # members
1795
+ "description" :
1796
+ """Spanning Tree data for each port on this device.""",
1797
+ }, # group
1798
+ "dot1dStpPortGroup3" : {
1799
+ "nodetype" : "group",
1800
+ "moduleName" : "BRIDGE-MIB",
1801
+ "oid" : "1.3.6.1.2.1.17.8.1.6",
1802
+ "status" : "current",
1803
+ "members" : {
1804
+ "dot1dStpPortPathCost32" : {
1805
+ "nodetype" : "member",
1806
+ "module" : "BRIDGE-MIB"
1807
+ },
1808
+ }, # members
1809
+ "description" :
1810
+ """Spanning Tree data for devices supporting 32-bit
1811
+ path costs.""",
1812
+ }, # group
1813
+ "dot1dTpBridgeGroup" : {
1814
+ "nodetype" : "group",
1815
+ "moduleName" : "BRIDGE-MIB",
1816
+ "oid" : "1.3.6.1.2.1.17.8.1.7",
1817
+ "status" : "current",
1818
+ "members" : {
1819
+ "dot1dTpLearnedEntryDiscards" : {
1820
+ "nodetype" : "member",
1821
+ "module" : "BRIDGE-MIB"
1822
+ },
1823
+ "dot1dTpAgingTime" : {
1824
+ "nodetype" : "member",
1825
+ "module" : "BRIDGE-MIB"
1826
+ },
1827
+ }, # members
1828
+ "description" :
1829
+ """Bridge level Transparent Bridging data.""",
1830
+ }, # group
1831
+ "dot1dTpFdbGroup" : {
1832
+ "nodetype" : "group",
1833
+ "moduleName" : "BRIDGE-MIB",
1834
+ "oid" : "1.3.6.1.2.1.17.8.1.8",
1835
+ "status" : "current",
1836
+ "members" : {
1837
+ "dot1dTpFdbAddress" : {
1838
+ "nodetype" : "member",
1839
+ "module" : "BRIDGE-MIB"
1840
+ },
1841
+ "dot1dTpFdbPort" : {
1842
+ "nodetype" : "member",
1843
+ "module" : "BRIDGE-MIB"
1844
+ },
1845
+ "dot1dTpFdbStatus" : {
1846
+ "nodetype" : "member",
1847
+ "module" : "BRIDGE-MIB"
1848
+ },
1849
+ }, # members
1850
+ "description" :
1851
+ """Filtering Database information for the Bridge.""",
1852
+ }, # group
1853
+ "dot1dTpGroup" : {
1854
+ "nodetype" : "group",
1855
+ "moduleName" : "BRIDGE-MIB",
1856
+ "oid" : "1.3.6.1.2.1.17.8.1.9",
1857
+ "status" : "current",
1858
+ "members" : {
1859
+ "dot1dTpPort" : {
1860
+ "nodetype" : "member",
1861
+ "module" : "BRIDGE-MIB"
1862
+ },
1863
+ "dot1dTpPortMaxInfo" : {
1864
+ "nodetype" : "member",
1865
+ "module" : "BRIDGE-MIB"
1866
+ },
1867
+ "dot1dTpPortInFrames" : {
1868
+ "nodetype" : "member",
1869
+ "module" : "BRIDGE-MIB"
1870
+ },
1871
+ "dot1dTpPortOutFrames" : {
1872
+ "nodetype" : "member",
1873
+ "module" : "BRIDGE-MIB"
1874
+ },
1875
+ "dot1dTpPortInDiscards" : {
1876
+ "nodetype" : "member",
1877
+ "module" : "BRIDGE-MIB"
1878
+ },
1879
+ }, # members
1880
+ "description" :
1881
+ """Dynamic Filtering Database information for each port of
1882
+ the Bridge.""",
1883
+ }, # group
1884
+ "dot1dStaticGroup" : {
1885
+ "nodetype" : "group",
1886
+ "moduleName" : "BRIDGE-MIB",
1887
+ "oid" : "1.3.6.1.2.1.17.8.1.10",
1888
+ "status" : "current",
1889
+ "members" : {
1890
+ "dot1dStaticAddress" : {
1891
+ "nodetype" : "member",
1892
+ "module" : "BRIDGE-MIB"
1893
+ },
1894
+ "dot1dStaticReceivePort" : {
1895
+ "nodetype" : "member",
1896
+ "module" : "BRIDGE-MIB"
1897
+ },
1898
+ "dot1dStaticAllowedToGoTo" : {
1899
+ "nodetype" : "member",
1900
+ "module" : "BRIDGE-MIB"
1901
+ },
1902
+ "dot1dStaticStatus" : {
1903
+ "nodetype" : "member",
1904
+ "module" : "BRIDGE-MIB"
1905
+ },
1906
+ }, # members
1907
+ "description" :
1908
+ """Static Filtering Database information for each port of
1909
+ the Bridge.""",
1910
+ }, # group
1911
+ "dot1dNotificationGroup" : {
1912
+ "nodetype" : "group",
1913
+ "moduleName" : "BRIDGE-MIB",
1914
+ "oid" : "1.3.6.1.2.1.17.8.1.11",
1915
+ "status" : "current",
1916
+ "members" : {
1917
+ "newRoot" : {
1918
+ "nodetype" : "member",
1919
+ "module" : "BRIDGE-MIB"
1920
+ },
1921
+ "topologyChange" : {
1922
+ "nodetype" : "member",
1923
+ "module" : "BRIDGE-MIB"
1924
+ },
1925
+ }, # members
1926
+ "description" :
1927
+ """Group of objects describing notifications (traps).""",
1928
+ }, # group
1929
+ }, # groups
1930
+
1931
+ "compliances" : {
1932
+ "bridgeCompliance1493" : {
1933
+ "nodetype" : "compliance",
1934
+ "moduleName" : "BRIDGE-MIB",
1935
+ "oid" : "1.3.6.1.2.1.17.8.2.1",
1936
+ "status" : "current",
1937
+ "description" :
1938
+ """The compliance statement for device support of bridging
1939
+ services, as per RFC1493.""",
1940
+ "requires" : {
1941
+ "dot1dBaseBridgeGroup" : {
1942
+ "nodetype" : "mandatory",
1943
+ "module" : "BRIDGE-MIB"
1944
+ },
1945
+ "dot1dBasePortGroup" : {
1946
+ "nodetype" : "mandatory",
1947
+ "module" : "BRIDGE-MIB"
1948
+ },
1949
+ "dot1dStpBridgeGroup" : {
1950
+ "nodetype" : "optional",
1951
+ "module" : "BRIDGE-MIB",
1952
+ "description" :
1953
+ """Implementation of this group is mandatory for bridges
1954
+ that support the Spanning Tree Protocol.""",
1955
+ },
1956
+ "dot1dStpPortGroup" : {
1957
+ "nodetype" : "optional",
1958
+ "module" : "BRIDGE-MIB",
1959
+ "description" :
1960
+ """Implementation of this group is mandatory for bridges
1961
+ that support the Spanning Tree Protocol.""",
1962
+ },
1963
+ "dot1dTpBridgeGroup" : {
1964
+ "nodetype" : "optional",
1965
+ "module" : "BRIDGE-MIB",
1966
+ "description" :
1967
+ """Implementation of this group is mandatory for bridges
1968
+ that support the transparent bridging mode. A
1969
+ transparent or SRT bridge will implement this group.""",
1970
+ },
1971
+ "dot1dTpFdbGroup" : {
1972
+ "nodetype" : "optional",
1973
+ "module" : "BRIDGE-MIB",
1974
+ "description" :
1975
+ """Implementation of this group is mandatory for bridges
1976
+ that support the transparent bridging mode. A
1977
+ transparent or SRT bridge will implement this group.""",
1978
+ },
1979
+ "dot1dTpGroup" : {
1980
+ "nodetype" : "optional",
1981
+ "module" : "BRIDGE-MIB",
1982
+ "description" :
1983
+ """Implementation of this group is mandatory for bridges
1984
+
1985
+
1986
+
1987
+ that support the transparent bridging mode. A
1988
+ transparent or SRT bridge will implement this group.""",
1989
+ },
1990
+ "dot1dStaticGroup" : {
1991
+ "nodetype" : "optional",
1992
+ "module" : "BRIDGE-MIB",
1993
+ "description" :
1994
+ """Implementation of this group is optional.""",
1995
+ },
1996
+ "dot1dNotificationGroup" : {
1997
+ "nodetype" : "optional",
1998
+ "module" : "BRIDGE-MIB",
1999
+ "description" :
2000
+ """Implementation of this group is optional.""",
2001
+ },
2002
+ }, # requires
2003
+ }, # compliance
2004
+ "bridgeCompliance4188" : {
2005
+ "nodetype" : "compliance",
2006
+ "moduleName" : "BRIDGE-MIB",
2007
+ "oid" : "1.3.6.1.2.1.17.8.2.2",
2008
+ "status" : "current",
2009
+ "description" :
2010
+ """The compliance statement for device support of bridging
2011
+ services. This supports 32-bit Path Cost values and the
2012
+ more restricted bridge and port priorities, as per IEEE
2013
+ 802.1t.
2014
+
2015
+ Full support for the 802.1D management objects requires that
2016
+ the SNMPv2-MIB [RFC3418] objects sysDescr, and sysUpTime, as
2017
+ well as the IF-MIB [RFC2863] objects ifIndex, ifType,
2018
+ ifDescr, ifPhysAddress, and ifLastChange are implemented.""",
2019
+ "requires" : {
2020
+ "dot1dBaseBridgeGroup" : {
2021
+ "nodetype" : "mandatory",
2022
+ "module" : "BRIDGE-MIB"
2023
+ },
2024
+ "dot1dBasePortGroup" : {
2025
+ "nodetype" : "mandatory",
2026
+ "module" : "BRIDGE-MIB"
2027
+ },
2028
+ "dot1dStpBridgeGroup" : {
2029
+ "nodetype" : "optional",
2030
+ "module" : "BRIDGE-MIB",
2031
+ "description" :
2032
+ """Implementation of this group is mandatory for
2033
+ bridges that support the Spanning Tree Protocol.""",
2034
+ },
2035
+ "dot1dStpPortGroup2" : {
2036
+ "nodetype" : "optional",
2037
+ "module" : "BRIDGE-MIB",
2038
+ "description" :
2039
+ """Implementation of this group is mandatory for
2040
+ bridges that support the Spanning Tree Protocol.""",
2041
+ },
2042
+ "dot1dStpPortGroup3" : {
2043
+ "nodetype" : "optional",
2044
+ "module" : "BRIDGE-MIB",
2045
+ "description" :
2046
+ """Implementation of this group is mandatory for bridges
2047
+ that support the Spanning Tree Protocol and 32-bit path
2048
+ costs. In particular, this includes devices supporting
2049
+ IEEE 802.1t and IEEE 802.1w.""",
2050
+ },
2051
+ "dot1dTpBridgeGroup" : {
2052
+ "nodetype" : "optional",
2053
+ "module" : "BRIDGE-MIB",
2054
+ "description" :
2055
+ """Implementation of this group is mandatory for
2056
+ bridges that support the transparent bridging
2057
+ mode. A transparent or SRT bridge will implement
2058
+ this group.""",
2059
+ },
2060
+ "dot1dTpFdbGroup" : {
2061
+ "nodetype" : "optional",
2062
+ "module" : "BRIDGE-MIB",
2063
+ "description" :
2064
+ """Implementation of this group is mandatory for
2065
+ bridges that support the transparent bridging
2066
+ mode. A transparent or SRT bridge will implement
2067
+ this group.""",
2068
+ },
2069
+ "dot1dTpGroup" : {
2070
+ "nodetype" : "optional",
2071
+ "module" : "BRIDGE-MIB",
2072
+ "description" :
2073
+ """Implementation of this group is mandatory for
2074
+ bridges that support the transparent bridging
2075
+ mode. A transparent or SRT bridge will implement
2076
+ this group.""",
2077
+ },
2078
+ "dot1dStaticGroup" : {
2079
+ "nodetype" : "optional",
2080
+ "module" : "BRIDGE-MIB",
2081
+ "description" :
2082
+ """Implementation of this group is optional.""",
2083
+ },
2084
+ "dot1dNotificationGroup" : {
2085
+ "nodetype" : "optional",
2086
+ "module" : "BRIDGE-MIB",
2087
+ "description" :
2088
+ """Implementation of this group is optional.""",
2089
+ },
2090
+ }, # requires
2091
+ "refinements" : {
2092
+ "dot1dStpPriority" : {
2093
+ "module" : "BRIDGE-MIB",
2094
+ "syntax" : {
2095
+ "type" : {
2096
+ "basetype" : "Integer32",
2097
+ "ranges" : [
2098
+ {
2099
+ "min" : "0",
2100
+ "max" : "0"
2101
+ },
2102
+ {
2103
+ "min" : "4096",
2104
+ "max" : "4096"
2105
+ },
2106
+ {
2107
+ "min" : "8192",
2108
+ "max" : "8192"
2109
+ },
2110
+ {
2111
+ "min" : "12288",
2112
+ "max" : "12288"
2113
+ },
2114
+ {
2115
+ "min" : "16384",
2116
+ "max" : "16384"
2117
+ },
2118
+ {
2119
+ "min" : "20480",
2120
+ "max" : "20480"
2121
+ },
2122
+ {
2123
+ "min" : "24576",
2124
+ "max" : "24576"
2125
+ },
2126
+ {
2127
+ "min" : "28672",
2128
+ "max" : "28672"
2129
+ },
2130
+ {
2131
+ "min" : "32768",
2132
+ "max" : "32768"
2133
+ },
2134
+ {
2135
+ "min" : "36864",
2136
+ "max" : "36864"
2137
+ },
2138
+ {
2139
+ "min" : "40960",
2140
+ "max" : "40960"
2141
+ },
2142
+ {
2143
+ "min" : "45056",
2144
+ "max" : "45056"
2145
+ },
2146
+ {
2147
+ "min" : "49152",
2148
+ "max" : "49152"
2149
+ },
2150
+ {
2151
+ "min" : "53248",
2152
+ "max" : "53248"
2153
+ },
2154
+ {
2155
+ "min" : "57344",
2156
+ "max" : "57344"
2157
+ },
2158
+ {
2159
+ "min" : "61440",
2160
+ "max" : "61440"
2161
+ },
2162
+ ],
2163
+ "range" : {
2164
+ "min" : "0",
2165
+ "max" : "61440"
2166
+ },
2167
+ },
2168
+ }, # syntax
2169
+ "description" :
2170
+ """The possible values defined by IEEE 802.1t.""",
2171
+ },
2172
+ "dot1dStpPortPriority" : {
2173
+ "module" : "BRIDGE-MIB",
2174
+ "syntax" : {
2175
+ "type" : {
2176
+ "basetype" : "Integer32",
2177
+ "ranges" : [
2178
+ {
2179
+ "min" : "0",
2180
+ "max" : "0"
2181
+ },
2182
+ {
2183
+ "min" : "16",
2184
+ "max" : "16"
2185
+ },
2186
+ {
2187
+ "min" : "32",
2188
+ "max" : "32"
2189
+ },
2190
+ {
2191
+ "min" : "48",
2192
+ "max" : "48"
2193
+ },
2194
+ {
2195
+ "min" : "64",
2196
+ "max" : "64"
2197
+ },
2198
+ {
2199
+ "min" : "80",
2200
+ "max" : "80"
2201
+ },
2202
+ {
2203
+ "min" : "96",
2204
+ "max" : "96"
2205
+ },
2206
+ {
2207
+ "min" : "112",
2208
+ "max" : "112"
2209
+ },
2210
+ {
2211
+ "min" : "128",
2212
+ "max" : "128"
2213
+ },
2214
+ {
2215
+ "min" : "144",
2216
+ "max" : "144"
2217
+ },
2218
+ {
2219
+ "min" : "160",
2220
+ "max" : "160"
2221
+ },
2222
+ {
2223
+ "min" : "176",
2224
+ "max" : "176"
2225
+ },
2226
+ {
2227
+ "min" : "192",
2228
+ "max" : "192"
2229
+ },
2230
+ {
2231
+ "min" : "208",
2232
+ "max" : "208"
2233
+ },
2234
+ {
2235
+ "min" : "224",
2236
+ "max" : "224"
2237
+ },
2238
+ {
2239
+ "min" : "240",
2240
+ "max" : "240"
2241
+ },
2242
+ ],
2243
+ "range" : {
2244
+ "min" : "0",
2245
+ "max" : "240"
2246
+ },
2247
+ },
2248
+ }, # syntax
2249
+ "description" :
2250
+ """The possible values defined by IEEE 802.1t.""",
2251
+ },
2252
+ }, # refinements
2253
+
2254
+ }, # compliance
2255
+ }, # compliances
2256
+
2257
+ }