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,3115 @@
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 Q-BRIDGE-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/Q-BRIDGE-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "Q-BRIDGE-MIB",
11
+
12
+ "Q-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
+ ietfmibs@ops.ietf.org
20
+
21
+ David Levi
22
+ Postal: Nortel Networks
23
+ 4655 Great America Parkway
24
+ Santa Clara, CA 95054
25
+ USA
26
+ Phone: +1 865 686 0432
27
+ Email: dlevi@nortel.com
28
+
29
+ David Harrington
30
+ Postal: Effective Software
31
+ 50 Harding Rd.
32
+ Portsmouth, NH 03801
33
+ USA
34
+ Phone: +1 603 436 8634
35
+ Email: ietfdbh@comcast.net
36
+
37
+
38
+
39
+ Les Bell
40
+ Postal: Hemel Hempstead, Herts. HP2 7YU
41
+ UK
42
+ Email: elbell@ntlworld.com
43
+
44
+ Andrew Smith
45
+ Postal: Beijing Harbour Networks
46
+ Jiuling Building
47
+ 21 North Xisanhuan Ave.
48
+ Beijing, 100089
49
+ PRC
50
+ Fax: +1 415 345 1827
51
+ Email: ah_smith@acm.org
52
+
53
+ Paul Langille
54
+ Postal: Newbridge Networks
55
+ 5 Corporate Drive
56
+ Andover, MA 01810
57
+ USA
58
+ Phone: +1 978 691 4665
59
+ Email: langille@newbridge.com
60
+
61
+ Anil Rijhsinghani
62
+ Postal: Accton Technology Corporation
63
+ 5 Mount Royal Ave
64
+ Marlboro, MA 01752
65
+ USA
66
+ Phone:
67
+ Email: anil@accton.com
68
+
69
+ Keith McCloghrie
70
+ Postal: Cisco Systems, Inc.
71
+ 170 West Tasman Drive
72
+ San Jose, CA 95134-1706
73
+ USA
74
+ Phone: +1 408 526 5260
75
+ Email: kzm@cisco.com""",
76
+ "description" :
77
+ """The VLAN Bridge MIB module for managing Virtual Bridged
78
+ Local Area Networks, as defined by IEEE 802.1Q-2003,
79
+ including Restricted Vlan Registration defined by
80
+ IEEE 802.1u-2001 and Vlan Classification defined by
81
+ IEEE 802.1v-2001.
82
+
83
+ Copyright (C) The Internet Society (2006). This version of
84
+ this MIB module is part of RFC 4363; See the RFC itself for
85
+ full legal notices.""",
86
+ "revisions" : (
87
+ {
88
+ "date" : "2006-01-09 00:00",
89
+ "description" :
90
+ """Added Vlan TEXTUAL-CONVENTIONs,
91
+ dot1qPortRestrictedVlanRegistration, dot1vProtocol subtree,
92
+ qBridgeClassificationDeviceGroup, qBridgePortGroup2,
93
+ qBridgeClassificationPortGroup, and qBridgeCompliance2.
94
+ Clarified dot1qForwardAllStaticPorts,
95
+ qPortAcceptableFrameTypes, and qBridgeCompliance.
96
+ Deprecated qBridgePortGroup and qBridgeCompliance.""",
97
+ },
98
+ {
99
+ "date" : "1999-08-25 00:00",
100
+ "description" :
101
+ """The VLAN Bridge MIB module for managing Virtual Bridged
102
+ Local Area Networks, as defined by IEEE 802.1Q-1998.
103
+
104
+ Initial version, published as RFC 2674.""",
105
+ },
106
+ ),
107
+ "identity node" : "qBridgeMIB",
108
+ },
109
+
110
+ "imports" : (
111
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
112
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
113
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
114
+ {"module" : "SNMPv2-SMI", "name" : "Counter64"},
115
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
116
+ {"module" : "SNMPv2-SMI", "name" : "TimeTicks"},
117
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
118
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
119
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
120
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
121
+ {"module" : "SNMPv2-TC", "name" : "MacAddress"},
122
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
123
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
124
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
125
+ {"module" : "BRIDGE-MIB", "name" : "dot1dBridge"},
126
+ {"module" : "BRIDGE-MIB", "name" : "dot1dBasePortEntry"},
127
+ {"module" : "BRIDGE-MIB", "name" : "dot1dBasePort"},
128
+ {"module" : "P-BRIDGE-MIB", "name" : "EnabledStatus"},
129
+ {"module" : "RMON2-MIB", "name" : "TimeFilter"},
130
+ ),
131
+
132
+ "typedefs" : {
133
+ "PortList" : {
134
+ "basetype" : "OctetString",
135
+ "status" : "current",
136
+ "description" :
137
+ """Each octet within this value specifies a set of eight
138
+ ports, with the first octet specifying ports 1 through
139
+ 8, the second octet specifying ports 9 through 16, etc.
140
+ Within each octet, the most significant bit represents
141
+ the lowest numbered port, and the least significant bit
142
+ represents the highest numbered port. Thus, each port
143
+ of the bridge is represented by a single bit within the
144
+ value of this object. If that bit has a value of '1',
145
+ then that port is included in the set of ports; the port
146
+ is not included if its bit has a value of '0'.""",
147
+ },
148
+ "VlanIndex" : {
149
+ "basetype" : "Unsigned32",
150
+ "status" : "current",
151
+ "format" : "d",
152
+ "description" :
153
+ """A value used to index per-VLAN tables: values of 0 and
154
+ 4095 are not permitted. If the value is between 1 and
155
+ 4094 inclusive, it represents an IEEE 802.1Q VLAN-ID with
156
+ global scope within a given bridged domain (see VlanId
157
+ textual convention). If the value is greater than 4095,
158
+
159
+
160
+
161
+ then it represents a VLAN with scope local to the
162
+ particular agent, i.e., one without a global VLAN-ID
163
+ assigned to it. Such VLANs are outside the scope of
164
+ IEEE 802.1Q, but it is convenient to be able to manage them
165
+ in the same way using this MIB.""",
166
+ },
167
+ "VlanId" : {
168
+ "basetype" : "Integer32",
169
+ "status" : "current",
170
+ "ranges" : [
171
+ {
172
+ "min" : "1",
173
+ "max" : "4094"
174
+ },
175
+ ],
176
+ "range" : {
177
+ "min" : "1",
178
+ "max" : "4094"
179
+ },
180
+ "format" : "d",
181
+ "description" :
182
+ """The VLAN-ID that uniquely identifies a VLAN. This
183
+ is the 12-bit VLAN-ID used in the VLAN Tag header.
184
+ The range is defined by the REFERENCEd specification.""",
185
+ "reference" :
186
+ """IEEE Std 802.1Q 2003 Edition, Virtual Bridged
187
+ Local Area Networks.""",
188
+ },
189
+ "VlanIdOrAny" : {
190
+ "basetype" : "Integer32",
191
+ "status" : "current",
192
+ "ranges" : [
193
+ {
194
+ "min" : "1",
195
+ "max" : "4095"
196
+ },
197
+ ],
198
+ "range" : {
199
+ "min" : "1",
200
+ "max" : "4095"
201
+ },
202
+ "format" : "d",
203
+ "description" :
204
+ """The VLAN-ID that uniquely identifies a specific VLAN,
205
+ or any VLAN. The special value of 4095 is used to
206
+ indicate a wildcard, i.e., any VLAN. This can be used
207
+ in any situation where an object or table entry must
208
+ refer either to a specific VLAN or to any VLAN.
209
+
210
+ Note that a MIB object that is defined using this
211
+ TEXTUAL-CONVENTION should clarify the meaning of
212
+ 'any VLAN' (i.e., the special value 4095).""",
213
+ },
214
+ "VlanIdOrNone" : {
215
+ "basetype" : "Integer32",
216
+ "status" : "current",
217
+ "ranges" : [
218
+ {
219
+ "min" : "0",
220
+ "max" : "4094"
221
+ },
222
+ ],
223
+ "range" : {
224
+ "min" : "0",
225
+ "max" : "4094"
226
+ },
227
+ "format" : "d",
228
+ "description" :
229
+ """The VLAN-ID that uniquely identifies a specific VLAN,
230
+ or no VLAN. The special value of zero is used to
231
+ indicate that no VLAN-ID is present or used. This can
232
+ be used in any situation where an object or a table entry
233
+ must refer either to a specific VLAN, or to no VLAN.
234
+
235
+ Note that a MIB object that is defined using this
236
+ TEXTUAL-CONVENTION should clarify the meaning of
237
+ 'no VLAN' (i.e., the special value 0).""",
238
+ },
239
+ "VlanIdOrAnyOrNone" : {
240
+ "basetype" : "Integer32",
241
+ "status" : "current",
242
+ "ranges" : [
243
+ {
244
+ "min" : "0",
245
+ "max" : "4095"
246
+ },
247
+ ],
248
+ "range" : {
249
+ "min" : "0",
250
+ "max" : "4095"
251
+ },
252
+ "format" : "d",
253
+ "description" :
254
+ """The VLAN-ID that uniquely identifies a specific VLAN,
255
+ any VLAN, or no VLAN. The special values 0 and 4095
256
+ have the same meaning as described in the VlanIdOrAny
257
+ and VlanIdOrNone TEXTUAL-CONVENTIONs.
258
+
259
+ Note that a MIB object that is defined using this
260
+ TEXTUAL-CONVENTION should clarify the meaning of
261
+ 'any VLAN' and 'no VLAN' (i.e., the special values
262
+ 0 and 4095).""",
263
+ },
264
+ }, # typedefs
265
+
266
+ "nodes" : {
267
+ "qBridgeMIB" : {
268
+ "nodetype" : "node",
269
+ "moduleName" : "Q-BRIDGE-MIB",
270
+ "oid" : "1.3.6.1.2.1.17.7",
271
+ "status" : "current",
272
+ }, # node
273
+ "qBridgeMIBObjects" : {
274
+ "nodetype" : "node",
275
+ "moduleName" : "Q-BRIDGE-MIB",
276
+ "oid" : "1.3.6.1.2.1.17.7.1",
277
+ }, # node
278
+ "dot1qBase" : {
279
+ "nodetype" : "node",
280
+ "moduleName" : "Q-BRIDGE-MIB",
281
+ "oid" : "1.3.6.1.2.1.17.7.1.1",
282
+ }, # node
283
+ "dot1qVlanVersionNumber" : {
284
+ "nodetype" : "scalar",
285
+ "moduleName" : "Q-BRIDGE-MIB",
286
+ "oid" : "1.3.6.1.2.1.17.7.1.1.1",
287
+ "status" : "current",
288
+ "syntax" : {
289
+ "type" : {
290
+ "basetype" : "Enumeration",
291
+ "version1" : {
292
+ "nodetype" : "namednumber",
293
+ "number" : "1"
294
+ },
295
+ },
296
+ },
297
+ "access" : "readonly",
298
+ "description" :
299
+ """The version number of IEEE 802.1Q that this device
300
+ supports.""",
301
+ "reference" :
302
+ """IEEE 802.1Q/D11 Section 12.10.1.1""",
303
+ }, # scalar
304
+ "dot1qMaxVlanId" : {
305
+ "nodetype" : "scalar",
306
+ "moduleName" : "Q-BRIDGE-MIB",
307
+ "oid" : "1.3.6.1.2.1.17.7.1.1.2",
308
+ "status" : "current",
309
+ "syntax" : {
310
+ "type" : { "module" :"Q-BRIDGE-MIB", "name" : "VlanId"},
311
+ },
312
+ "access" : "readonly",
313
+ "description" :
314
+ """The maximum IEEE 802.1Q VLAN-ID that this device
315
+
316
+
317
+
318
+ supports.""",
319
+ "reference" :
320
+ """IEEE 802.1Q/D11 Section 9.3.2.3""",
321
+ }, # scalar
322
+ "dot1qMaxSupportedVlans" : {
323
+ "nodetype" : "scalar",
324
+ "moduleName" : "Q-BRIDGE-MIB",
325
+ "oid" : "1.3.6.1.2.1.17.7.1.1.3",
326
+ "status" : "current",
327
+ "syntax" : {
328
+ "type" : { "module" :"", "name" : "Unsigned32"},
329
+ },
330
+ "access" : "readonly",
331
+ "description" :
332
+ """The maximum number of IEEE 802.1Q VLANs that this
333
+ device supports.""",
334
+ "reference" :
335
+ """IEEE 802.1Q/D11 Section 12.10.1.1""",
336
+ }, # scalar
337
+ "dot1qNumVlans" : {
338
+ "nodetype" : "scalar",
339
+ "moduleName" : "Q-BRIDGE-MIB",
340
+ "oid" : "1.3.6.1.2.1.17.7.1.1.4",
341
+ "status" : "current",
342
+ "syntax" : {
343
+ "type" : { "module" :"", "name" : "Unsigned32"},
344
+ },
345
+ "access" : "readonly",
346
+ "description" :
347
+ """The current number of IEEE 802.1Q VLANs that are
348
+ configured in this device.""",
349
+ "reference" :
350
+ """IEEE 802.1Q/D11 Section 12.7.1.1""",
351
+ }, # scalar
352
+ "dot1qGvrpStatus" : {
353
+ "nodetype" : "scalar",
354
+ "moduleName" : "Q-BRIDGE-MIB",
355
+ "oid" : "1.3.6.1.2.1.17.7.1.1.5",
356
+ "status" : "current",
357
+ "syntax" : {
358
+ "type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
359
+ },
360
+ "access" : "readwrite",
361
+ "default" : "enabled",
362
+ "description" :
363
+ """The administrative status requested by management for
364
+ GVRP. The value enabled(1) indicates that GVRP should
365
+ be enabled on this device, on all ports for which it has
366
+ not been specifically disabled. When disabled(2), GVRP
367
+ is disabled on all ports, and all GVRP packets will be
368
+ forwarded transparently. This object affects all GVRP
369
+ Applicant and Registrar state machines. A transition
370
+ from disabled(2) to enabled(1) will cause a reset of all
371
+ GVRP state machines on all ports.
372
+
373
+ The value of this object MUST be retained across
374
+ reinitializations of the management system.""",
375
+ }, # scalar
376
+ "dot1qTp" : {
377
+ "nodetype" : "node",
378
+ "moduleName" : "Q-BRIDGE-MIB",
379
+ "oid" : "1.3.6.1.2.1.17.7.1.2",
380
+ }, # node
381
+ "dot1qFdbTable" : {
382
+ "nodetype" : "table",
383
+ "moduleName" : "Q-BRIDGE-MIB",
384
+ "oid" : "1.3.6.1.2.1.17.7.1.2.1",
385
+ "status" : "current",
386
+ "description" :
387
+ """A table that contains configuration and control
388
+ information for each Filtering Database currently
389
+ operating on this device. Entries in this table appear
390
+ automatically when VLANs are assigned FDB IDs in the
391
+ dot1qVlanCurrentTable.""",
392
+ }, # table
393
+ "dot1qFdbEntry" : {
394
+ "nodetype" : "row",
395
+ "moduleName" : "Q-BRIDGE-MIB",
396
+ "oid" : "1.3.6.1.2.1.17.7.1.2.1.1",
397
+ "status" : "current",
398
+ "linkage" : [
399
+ "dot1qFdbId",
400
+ ],
401
+ "description" :
402
+ """Information about a specific Filtering Database.""",
403
+ }, # row
404
+ "dot1qFdbId" : {
405
+ "nodetype" : "column",
406
+ "moduleName" : "Q-BRIDGE-MIB",
407
+ "oid" : "1.3.6.1.2.1.17.7.1.2.1.1.1",
408
+ "status" : "current",
409
+ "syntax" : {
410
+ "type" : { "module" :"", "name" : "Unsigned32"},
411
+ },
412
+ "access" : "noaccess",
413
+ "description" :
414
+ """The identity of this Filtering Database.""",
415
+ }, # column
416
+ "dot1qFdbDynamicCount" : {
417
+ "nodetype" : "column",
418
+ "moduleName" : "Q-BRIDGE-MIB",
419
+ "oid" : "1.3.6.1.2.1.17.7.1.2.1.1.2",
420
+ "status" : "current",
421
+ "syntax" : {
422
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
423
+ },
424
+ "access" : "readonly",
425
+ "description" :
426
+ """The current number of dynamic entries in this
427
+ Filtering Database.""",
428
+ "reference" :
429
+ """IEEE 802.1Q/D11 Section 12.7.1.1.3""",
430
+ }, # column
431
+ "dot1qTpFdbTable" : {
432
+ "nodetype" : "table",
433
+ "moduleName" : "Q-BRIDGE-MIB",
434
+ "oid" : "1.3.6.1.2.1.17.7.1.2.2",
435
+ "status" : "current",
436
+ "description" :
437
+ """A table that contains information about unicast entries
438
+ for which the device has forwarding and/or filtering
439
+ information. This information is used by the
440
+ transparent bridging function in determining how to
441
+ propagate a received frame.""",
442
+ "reference" :
443
+ """IEEE 802.1Q/D11 Section 12.7.7""",
444
+ }, # table
445
+ "dot1qTpFdbEntry" : {
446
+ "nodetype" : "row",
447
+ "moduleName" : "Q-BRIDGE-MIB",
448
+ "oid" : "1.3.6.1.2.1.17.7.1.2.2.1",
449
+ "status" : "current",
450
+ "linkage" : [
451
+ "dot1qFdbId",
452
+ "dot1qTpFdbAddress",
453
+ ],
454
+ "description" :
455
+ """Information about a specific unicast MAC address for
456
+ which the device has some forwarding and/or filtering
457
+ information.""",
458
+ }, # row
459
+ "dot1qTpFdbAddress" : {
460
+ "nodetype" : "column",
461
+ "moduleName" : "Q-BRIDGE-MIB",
462
+ "oid" : "1.3.6.1.2.1.17.7.1.2.2.1.1",
463
+ "status" : "current",
464
+ "syntax" : {
465
+ "type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
466
+ },
467
+ "access" : "noaccess",
468
+ "description" :
469
+ """A unicast MAC address for which the device has
470
+ forwarding and/or filtering information.""",
471
+ }, # column
472
+ "dot1qTpFdbPort" : {
473
+ "nodetype" : "column",
474
+ "moduleName" : "Q-BRIDGE-MIB",
475
+ "oid" : "1.3.6.1.2.1.17.7.1.2.2.1.2",
476
+ "status" : "current",
477
+ "syntax" : {
478
+ "type" : {
479
+ "basetype" : "Integer32",
480
+ "ranges" : [
481
+ {
482
+ "min" : "0",
483
+ "max" : "65535"
484
+ },
485
+ ],
486
+ "range" : {
487
+ "min" : "0",
488
+ "max" : "65535"
489
+ },
490
+ },
491
+ },
492
+ "access" : "readonly",
493
+ "description" :
494
+ """Either the value '0', or the port number of the port on
495
+ which a frame having a source address equal to the value
496
+ of the corresponding instance of dot1qTpFdbAddress has
497
+ been seen. A value of '0' indicates that the port
498
+ number has not been learned but that the device does
499
+ have some forwarding/filtering information about this
500
+ address (e.g., in the dot1qStaticUnicastTable).
501
+ Implementors are encouraged to assign the port value to
502
+ this object whenever it is learned, even for addresses
503
+ for which the corresponding value of dot1qTpFdbStatus is
504
+ not learned(3).""",
505
+ }, # column
506
+ "dot1qTpFdbStatus" : {
507
+ "nodetype" : "column",
508
+ "moduleName" : "Q-BRIDGE-MIB",
509
+ "oid" : "1.3.6.1.2.1.17.7.1.2.2.1.3",
510
+ "status" : "current",
511
+ "syntax" : {
512
+ "type" : {
513
+ "basetype" : "Enumeration",
514
+ "other" : {
515
+ "nodetype" : "namednumber",
516
+ "number" : "1"
517
+ },
518
+ "invalid" : {
519
+ "nodetype" : "namednumber",
520
+ "number" : "2"
521
+ },
522
+ "learned" : {
523
+ "nodetype" : "namednumber",
524
+ "number" : "3"
525
+ },
526
+ "self" : {
527
+ "nodetype" : "namednumber",
528
+ "number" : "4"
529
+ },
530
+ "mgmt" : {
531
+ "nodetype" : "namednumber",
532
+ "number" : "5"
533
+ },
534
+ },
535
+ },
536
+ "access" : "readonly",
537
+ "description" :
538
+ """The status of this entry. The meanings of the values
539
+ are:
540
+ other(1) - none of the following. This may include
541
+ the case where some other MIB object (not the
542
+ corresponding instance of dot1qTpFdbPort, nor an
543
+ entry in the dot1qStaticUnicastTable) is being
544
+ used to determine if and how frames addressed to
545
+ the value of the corresponding instance of
546
+ dot1qTpFdbAddress are being forwarded.
547
+ invalid(2) - this entry is no longer valid (e.g., it
548
+
549
+
550
+
551
+ was learned but has since aged out), but has not
552
+ yet been flushed from the table.
553
+ learned(3) - the value of the corresponding instance
554
+ of dot1qTpFdbPort was learned and is being used.
555
+ self(4) - the value of the corresponding instance of
556
+ dot1qTpFdbAddress represents one of the device's
557
+ addresses. The corresponding instance of
558
+ dot1qTpFdbPort indicates which of the device's
559
+ ports has this address.
560
+ mgmt(5) - the value of the corresponding instance of
561
+ dot1qTpFdbAddress is also the value of an
562
+ existing instance of dot1qStaticAddress.""",
563
+ }, # column
564
+ "dot1qTpGroupTable" : {
565
+ "nodetype" : "table",
566
+ "moduleName" : "Q-BRIDGE-MIB",
567
+ "oid" : "1.3.6.1.2.1.17.7.1.2.3",
568
+ "status" : "current",
569
+ "description" :
570
+ """A table containing filtering information for VLANs
571
+ configured into the bridge by (local or network)
572
+ management, or learned dynamically, specifying the set of
573
+ ports to which frames received on a VLAN for this FDB
574
+ and containing a specific Group destination address are
575
+ allowed to be forwarded.""",
576
+ }, # table
577
+ "dot1qTpGroupEntry" : {
578
+ "nodetype" : "row",
579
+ "moduleName" : "Q-BRIDGE-MIB",
580
+ "oid" : "1.3.6.1.2.1.17.7.1.2.3.1",
581
+ "status" : "current",
582
+ "linkage" : [
583
+ "dot1qVlanIndex",
584
+ "dot1qTpGroupAddress",
585
+ ],
586
+ "description" :
587
+ """Filtering information configured into the bridge by
588
+ management, or learned dynamically, specifying the set of
589
+ ports to which frames received on a VLAN and containing
590
+ a specific Group destination address are allowed to be
591
+ forwarded. The subset of these ports learned dynamically
592
+ is also provided.""",
593
+ }, # row
594
+ "dot1qTpGroupAddress" : {
595
+ "nodetype" : "column",
596
+ "moduleName" : "Q-BRIDGE-MIB",
597
+ "oid" : "1.3.6.1.2.1.17.7.1.2.3.1.1",
598
+ "status" : "current",
599
+ "syntax" : {
600
+ "type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
601
+ },
602
+ "access" : "noaccess",
603
+ "description" :
604
+ """The destination Group MAC address in a frame to which
605
+ this entry's filtering information applies.""",
606
+ }, # column
607
+ "dot1qTpGroupEgressPorts" : {
608
+ "nodetype" : "column",
609
+ "moduleName" : "Q-BRIDGE-MIB",
610
+ "oid" : "1.3.6.1.2.1.17.7.1.2.3.1.2",
611
+ "status" : "current",
612
+ "syntax" : {
613
+ "type" : { "module" :"Q-BRIDGE-MIB", "name" : "PortList"},
614
+ },
615
+ "access" : "readonly",
616
+ "description" :
617
+ """The complete set of ports, in this VLAN, to which
618
+ frames destined for this Group MAC address are currently
619
+ being explicitly forwarded. This does not include ports
620
+ for which this address is only implicitly forwarded, in
621
+ the dot1qForwardAllPorts list.""",
622
+ }, # column
623
+ "dot1qTpGroupLearnt" : {
624
+ "nodetype" : "column",
625
+ "moduleName" : "Q-BRIDGE-MIB",
626
+ "oid" : "1.3.6.1.2.1.17.7.1.2.3.1.3",
627
+ "status" : "current",
628
+ "syntax" : {
629
+ "type" : { "module" :"Q-BRIDGE-MIB", "name" : "PortList"},
630
+ },
631
+ "access" : "readonly",
632
+ "description" :
633
+ """The subset of ports in dot1qTpGroupEgressPorts that
634
+ were learned by GMRP or some other dynamic mechanism, in
635
+ this Filtering database.""",
636
+ }, # column
637
+ "dot1qForwardAllTable" : {
638
+ "nodetype" : "table",
639
+ "moduleName" : "Q-BRIDGE-MIB",
640
+ "oid" : "1.3.6.1.2.1.17.7.1.2.4",
641
+ "status" : "current",
642
+ "description" :
643
+ """A table containing forwarding information for each
644
+
645
+
646
+
647
+ VLAN, specifying the set of ports to which forwarding of
648
+ all multicasts applies, configured statically by
649
+ management or dynamically by GMRP. An entry appears in
650
+ this table for all VLANs that are currently
651
+ instantiated.""",
652
+ "reference" :
653
+ """IEEE 802.1Q/D11 Section 12.7.2, 12.7.7""",
654
+ }, # table
655
+ "dot1qForwardAllEntry" : {
656
+ "nodetype" : "row",
657
+ "moduleName" : "Q-BRIDGE-MIB",
658
+ "oid" : "1.3.6.1.2.1.17.7.1.2.4.1",
659
+ "status" : "current",
660
+ "linkage" : [
661
+ "dot1qVlanIndex",
662
+ ],
663
+ "description" :
664
+ """Forwarding information for a VLAN, specifying the set
665
+ of ports to which all multicasts should be forwarded,
666
+ configured statically by management or dynamically by
667
+ GMRP.""",
668
+ }, # row
669
+ "dot1qForwardAllPorts" : {
670
+ "nodetype" : "column",
671
+ "moduleName" : "Q-BRIDGE-MIB",
672
+ "oid" : "1.3.6.1.2.1.17.7.1.2.4.1.1",
673
+ "status" : "current",
674
+ "syntax" : {
675
+ "type" : { "module" :"Q-BRIDGE-MIB", "name" : "PortList"},
676
+ },
677
+ "access" : "readonly",
678
+ "description" :
679
+ """The complete set of ports in this VLAN to which all
680
+ multicast group-addressed frames are to be forwarded.
681
+ This includes ports for which this need has been
682
+ determined dynamically by GMRP, or configured statically
683
+ by management.""",
684
+ }, # column
685
+ "dot1qForwardAllStaticPorts" : {
686
+ "nodetype" : "column",
687
+ "moduleName" : "Q-BRIDGE-MIB",
688
+ "oid" : "1.3.6.1.2.1.17.7.1.2.4.1.2",
689
+ "status" : "current",
690
+ "syntax" : {
691
+ "type" : { "module" :"Q-BRIDGE-MIB", "name" : "PortList"},
692
+ },
693
+ "access" : "readwrite",
694
+ "description" :
695
+ """The set of ports configured by management in this VLAN
696
+ to which all multicast group-addressed frames are to be
697
+ forwarded. Ports entered in this list will also appear
698
+ in the complete set shown by dot1qForwardAllPorts. This
699
+ value will be restored after the device is reset. This
700
+ only applies to ports that are members of the VLAN,
701
+ defined by dot1qVlanCurrentEgressPorts. A port may not
702
+ be added in this set if it is already a member of the
703
+ set of ports in dot1qForwardAllForbiddenPorts. The
704
+ default value is a string of ones of appropriate length,
705
+ to indicate the standard behaviour of using basic
706
+ filtering services, i.e., forward all multicasts to all
707
+ ports.
708
+
709
+ The value of this object MUST be retained across
710
+ reinitializations of the management system.""",
711
+ }, # column
712
+ "dot1qForwardAllForbiddenPorts" : {
713
+ "nodetype" : "column",
714
+ "moduleName" : "Q-BRIDGE-MIB",
715
+ "oid" : "1.3.6.1.2.1.17.7.1.2.4.1.3",
716
+ "status" : "current",
717
+ "syntax" : {
718
+ "type" : { "module" :"Q-BRIDGE-MIB", "name" : "PortList"},
719
+ },
720
+ "access" : "readwrite",
721
+ "description" :
722
+ """The set of ports configured by management in this VLAN
723
+ for which the Service Requirement attribute Forward All
724
+ Multicast Groups may not be dynamically registered by
725
+ GMRP. This value will be restored after the device is
726
+ reset. A port may not be added in this set if it is
727
+ already a member of the set of ports in
728
+ dot1qForwardAllStaticPorts. The default value is a
729
+ string of zeros of appropriate length.
730
+
731
+ The value of this object MUST be retained across
732
+ reinitializations of the management system.""",
733
+ }, # column
734
+ "dot1qForwardUnregisteredTable" : {
735
+ "nodetype" : "table",
736
+ "moduleName" : "Q-BRIDGE-MIB",
737
+ "oid" : "1.3.6.1.2.1.17.7.1.2.5",
738
+ "status" : "current",
739
+ "description" :
740
+ """A table containing forwarding information for each
741
+ VLAN, specifying the set of ports to which forwarding of
742
+ multicast group-addressed frames for which no
743
+ more specific forwarding information applies. This is
744
+ configured statically by management and determined
745
+ dynamically by GMRP. An entry appears in this table for
746
+ all VLANs that are currently instantiated.""",
747
+ "reference" :
748
+ """IEEE 802.1Q/D11 Section 12.7.2, 12.7.7""",
749
+ }, # table
750
+ "dot1qForwardUnregisteredEntry" : {
751
+ "nodetype" : "row",
752
+ "moduleName" : "Q-BRIDGE-MIB",
753
+ "oid" : "1.3.6.1.2.1.17.7.1.2.5.1",
754
+ "status" : "current",
755
+ "linkage" : [
756
+ "dot1qVlanIndex",
757
+ ],
758
+ "description" :
759
+ """Forwarding information for a VLAN, specifying the set
760
+ of ports to which all multicasts for which there is no
761
+ more specific forwarding information shall be forwarded.
762
+ This is configured statically by management or
763
+ dynamically by GMRP.""",
764
+ }, # row
765
+ "dot1qForwardUnregisteredPorts" : {
766
+ "nodetype" : "column",
767
+ "moduleName" : "Q-BRIDGE-MIB",
768
+ "oid" : "1.3.6.1.2.1.17.7.1.2.5.1.1",
769
+ "status" : "current",
770
+ "syntax" : {
771
+ "type" : { "module" :"Q-BRIDGE-MIB", "name" : "PortList"},
772
+ },
773
+ "access" : "readonly",
774
+ "description" :
775
+ """The complete set of ports in this VLAN to which
776
+ multicast group-addressed frames for which there is no
777
+ more specific forwarding information will be forwarded.
778
+ This includes ports for which this need has been
779
+ determined dynamically by GMRP, or configured statically
780
+ by management.""",
781
+ }, # column
782
+ "dot1qForwardUnregisteredStaticPorts" : {
783
+ "nodetype" : "column",
784
+ "moduleName" : "Q-BRIDGE-MIB",
785
+ "oid" : "1.3.6.1.2.1.17.7.1.2.5.1.2",
786
+ "status" : "current",
787
+ "syntax" : {
788
+ "type" : { "module" :"Q-BRIDGE-MIB", "name" : "PortList"},
789
+ },
790
+ "access" : "readwrite",
791
+ "description" :
792
+ """The set of ports configured by management, in this
793
+ VLAN, to which multicast group-addressed frames for
794
+ which there is no more specific forwarding information
795
+
796
+
797
+
798
+ are to be forwarded. Ports entered in this list will
799
+ also appear in the complete set shown by
800
+ dot1qForwardUnregisteredPorts. This value will be
801
+ restored after the device is reset. A port may not be
802
+ added in this set if it is already a member of the set
803
+ of ports in dot1qForwardUnregisteredForbiddenPorts. The
804
+ default value is a string of zeros of appropriate
805
+ length, although this has no effect with the default
806
+ value of dot1qForwardAllStaticPorts.
807
+
808
+ The value of this object MUST be retained across
809
+ reinitializations of the management system.""",
810
+ }, # column
811
+ "dot1qForwardUnregisteredForbiddenPorts" : {
812
+ "nodetype" : "column",
813
+ "moduleName" : "Q-BRIDGE-MIB",
814
+ "oid" : "1.3.6.1.2.1.17.7.1.2.5.1.3",
815
+ "status" : "current",
816
+ "syntax" : {
817
+ "type" : { "module" :"Q-BRIDGE-MIB", "name" : "PortList"},
818
+ },
819
+ "access" : "readwrite",
820
+ "description" :
821
+ """The set of ports configured by management in this VLAN
822
+ for which the Service Requirement attribute Forward
823
+ Unregistered Multicast Groups may not be dynamically
824
+ registered by GMRP. This value will be restored after
825
+ the device is reset. A port may not be added in this
826
+ set if it is already a member of the set of ports in
827
+ dot1qForwardUnregisteredStaticPorts. The default value
828
+ is a string of zeros of appropriate length.
829
+
830
+ The value of this object MUST be retained across
831
+ reinitializations of the management system.""",
832
+ }, # column
833
+ "dot1qStatic" : {
834
+ "nodetype" : "node",
835
+ "moduleName" : "Q-BRIDGE-MIB",
836
+ "oid" : "1.3.6.1.2.1.17.7.1.3",
837
+ }, # node
838
+ "dot1qStaticUnicastTable" : {
839
+ "nodetype" : "table",
840
+ "moduleName" : "Q-BRIDGE-MIB",
841
+ "oid" : "1.3.6.1.2.1.17.7.1.3.1",
842
+ "status" : "current",
843
+ "description" :
844
+ """A table containing filtering information for Unicast
845
+ MAC addresses for each Filtering Database, configured
846
+ into the device by (local or network) management
847
+ specifying the set of ports to which frames received
848
+ from specific ports and containing specific unicast
849
+ destination addresses are allowed to be forwarded. A
850
+ value of zero in this table (as the port number from
851
+
852
+
853
+
854
+ which frames with a specific destination address are
855
+ received) is used to specify all ports for which there
856
+ is no specific entry in this table for that particular
857
+ destination address. Entries are valid for unicast
858
+ addresses only.""",
859
+ "reference" :
860
+ """IEEE 802.1Q/D11 Section 12.7.7,
861
+ ISO/IEC 15802-3 Section 7.9.1""",
862
+ }, # table
863
+ "dot1qStaticUnicastEntry" : {
864
+ "nodetype" : "row",
865
+ "moduleName" : "Q-BRIDGE-MIB",
866
+ "oid" : "1.3.6.1.2.1.17.7.1.3.1.1",
867
+ "status" : "current",
868
+ "linkage" : [
869
+ "dot1qFdbId",
870
+ "dot1qStaticUnicastAddress",
871
+ "dot1qStaticUnicastReceivePort",
872
+ ],
873
+ "description" :
874
+ """Filtering information configured into the device by
875
+ (local or network) management specifying the set of
876
+ ports to which frames received from a specific port and
877
+ containing a specific unicast destination address are
878
+ allowed to be forwarded.""",
879
+ }, # row
880
+ "dot1qStaticUnicastAddress" : {
881
+ "nodetype" : "column",
882
+ "moduleName" : "Q-BRIDGE-MIB",
883
+ "oid" : "1.3.6.1.2.1.17.7.1.3.1.1.1",
884
+ "status" : "current",
885
+ "syntax" : {
886
+ "type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
887
+ },
888
+ "access" : "noaccess",
889
+ "description" :
890
+ """The destination MAC address in a frame to which this
891
+ entry's filtering information applies. This object must
892
+ take the value of a unicast address.""",
893
+ }, # column
894
+ "dot1qStaticUnicastReceivePort" : {
895
+ "nodetype" : "column",
896
+ "moduleName" : "Q-BRIDGE-MIB",
897
+ "oid" : "1.3.6.1.2.1.17.7.1.3.1.1.2",
898
+ "status" : "current",
899
+ "syntax" : {
900
+ "type" : {
901
+ "basetype" : "Integer32",
902
+ "ranges" : [
903
+ {
904
+ "min" : "0",
905
+ "max" : "65535"
906
+ },
907
+ ],
908
+ "range" : {
909
+ "min" : "0",
910
+ "max" : "65535"
911
+ },
912
+ },
913
+ },
914
+ "access" : "noaccess",
915
+ "description" :
916
+ """Either the value '0' or the port number of the port
917
+ from which a frame must be received in order for this
918
+ entry's filtering information to apply. A value of zero
919
+ indicates that this entry applies on all ports of the
920
+ device for which there is no other applicable entry.""",
921
+ }, # column
922
+ "dot1qStaticUnicastAllowedToGoTo" : {
923
+ "nodetype" : "column",
924
+ "moduleName" : "Q-BRIDGE-MIB",
925
+ "oid" : "1.3.6.1.2.1.17.7.1.3.1.1.3",
926
+ "status" : "current",
927
+ "syntax" : {
928
+ "type" : { "module" :"Q-BRIDGE-MIB", "name" : "PortList"},
929
+ },
930
+ "access" : "readwrite",
931
+ "description" :
932
+ """The set of ports for which a frame with a specific
933
+ unicast address will be flooded in the event that it
934
+ has not been learned. It also specifies the set of
935
+ ports on which a specific unicast address may be dynamically
936
+ learned. The dot1qTpFdbTable will have an equivalent
937
+ entry with a dot1qTpFdbPort value of '0' until this
938
+ address has been learned, at which point it will be updated
939
+ with the port the address has been seen on. This only
940
+ applies to ports that are members of the VLAN, defined
941
+ by dot1qVlanCurrentEgressPorts. The default value of
942
+ this object is a string of ones of appropriate length.
943
+
944
+ The value of this object MUST be retained across
945
+ reinitializations of the management system.""",
946
+ "reference" :
947
+ """IEEE 802.1Q/D11 Table 8-5, ISO/IEC 15802-3 Table 7-5""",
948
+ }, # column
949
+ "dot1qStaticUnicastStatus" : {
950
+ "nodetype" : "column",
951
+ "moduleName" : "Q-BRIDGE-MIB",
952
+ "oid" : "1.3.6.1.2.1.17.7.1.3.1.1.4",
953
+ "status" : "current",
954
+ "syntax" : {
955
+ "type" : {
956
+ "basetype" : "Enumeration",
957
+ "other" : {
958
+ "nodetype" : "namednumber",
959
+ "number" : "1"
960
+ },
961
+ "invalid" : {
962
+ "nodetype" : "namednumber",
963
+ "number" : "2"
964
+ },
965
+ "permanent" : {
966
+ "nodetype" : "namednumber",
967
+ "number" : "3"
968
+ },
969
+ "deleteOnReset" : {
970
+ "nodetype" : "namednumber",
971
+ "number" : "4"
972
+ },
973
+ "deleteOnTimeout" : {
974
+ "nodetype" : "namednumber",
975
+ "number" : "5"
976
+ },
977
+ },
978
+ },
979
+ "access" : "readwrite",
980
+ "default" : "permanent",
981
+ "description" :
982
+ """This object indicates the status of this entry.
983
+ other(1) - this entry is currently in use, but
984
+
985
+
986
+
987
+ the conditions under which it will remain
988
+ so differ from the following values.
989
+ invalid(2) - writing this value to the object
990
+ removes the corresponding entry.
991
+ permanent(3) - this entry is currently in use
992
+ and will remain so after the next reset of
993
+ the bridge.
994
+ deleteOnReset(4) - this entry is currently in
995
+ use and will remain so until the next
996
+ reset of the bridge.
997
+ deleteOnTimeout(5) - this entry is currently in
998
+ use and will remain so until it is aged out.
999
+
1000
+ The value of this object MUST be retained across
1001
+ reinitializations of the management system.""",
1002
+ }, # column
1003
+ "dot1qStaticMulticastTable" : {
1004
+ "nodetype" : "table",
1005
+ "moduleName" : "Q-BRIDGE-MIB",
1006
+ "oid" : "1.3.6.1.2.1.17.7.1.3.2",
1007
+ "status" : "current",
1008
+ "description" :
1009
+ """A table containing filtering information for Multicast
1010
+ and Broadcast MAC addresses for each VLAN, configured
1011
+ into the device by (local or network) management
1012
+ specifying the set of ports to which frames received
1013
+ from specific ports and containing specific Multicast
1014
+ and Broadcast destination addresses are allowed to be
1015
+ forwarded. A value of zero in this table (as the port
1016
+ number from which frames with a specific destination
1017
+ address are received) is used to specify all ports for
1018
+ which there is no specific entry in this table for that
1019
+ particular destination address. Entries are valid for
1020
+ Multicast and Broadcast addresses only.""",
1021
+ "reference" :
1022
+ """IEEE 802.1Q/D11 Section 12.7.7,
1023
+ ISO/IEC 15802-3 Section 7.9.1""",
1024
+ }, # table
1025
+ "dot1qStaticMulticastEntry" : {
1026
+ "nodetype" : "row",
1027
+ "moduleName" : "Q-BRIDGE-MIB",
1028
+ "oid" : "1.3.6.1.2.1.17.7.1.3.2.1",
1029
+ "status" : "current",
1030
+ "linkage" : [
1031
+ "dot1qVlanIndex",
1032
+ "dot1qStaticMulticastAddress",
1033
+ "dot1qStaticMulticastReceivePort",
1034
+ ],
1035
+ "description" :
1036
+ """Filtering information configured into the device by
1037
+ (local or network) management specifying the set of
1038
+ ports to which frames received from this specific port
1039
+
1040
+
1041
+
1042
+ for this VLAN and containing this Multicast or Broadcast
1043
+ destination address are allowed to be forwarded.""",
1044
+ }, # row
1045
+ "dot1qStaticMulticastAddress" : {
1046
+ "nodetype" : "column",
1047
+ "moduleName" : "Q-BRIDGE-MIB",
1048
+ "oid" : "1.3.6.1.2.1.17.7.1.3.2.1.1",
1049
+ "status" : "current",
1050
+ "syntax" : {
1051
+ "type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
1052
+ },
1053
+ "access" : "noaccess",
1054
+ "description" :
1055
+ """The destination MAC address in a frame to which this
1056
+ entry's filtering information applies. This object must
1057
+ take the value of a Multicast or Broadcast address.""",
1058
+ }, # column
1059
+ "dot1qStaticMulticastReceivePort" : {
1060
+ "nodetype" : "column",
1061
+ "moduleName" : "Q-BRIDGE-MIB",
1062
+ "oid" : "1.3.6.1.2.1.17.7.1.3.2.1.2",
1063
+ "status" : "current",
1064
+ "syntax" : {
1065
+ "type" : {
1066
+ "basetype" : "Integer32",
1067
+ "ranges" : [
1068
+ {
1069
+ "min" : "0",
1070
+ "max" : "65535"
1071
+ },
1072
+ ],
1073
+ "range" : {
1074
+ "min" : "0",
1075
+ "max" : "65535"
1076
+ },
1077
+ },
1078
+ },
1079
+ "access" : "noaccess",
1080
+ "description" :
1081
+ """Either the value '0' or the port number of the port
1082
+ from which a frame must be received in order for this
1083
+ entry's filtering information to apply. A value of zero
1084
+ indicates that this entry applies on all ports of the
1085
+ device for which there is no other applicable entry.""",
1086
+ }, # column
1087
+ "dot1qStaticMulticastStaticEgressPorts" : {
1088
+ "nodetype" : "column",
1089
+ "moduleName" : "Q-BRIDGE-MIB",
1090
+ "oid" : "1.3.6.1.2.1.17.7.1.3.2.1.3",
1091
+ "status" : "current",
1092
+ "syntax" : {
1093
+ "type" : { "module" :"Q-BRIDGE-MIB", "name" : "PortList"},
1094
+ },
1095
+ "access" : "readwrite",
1096
+ "description" :
1097
+ """The set of ports to which frames received from a
1098
+ specific port and destined for a specific Multicast or
1099
+ Broadcast MAC address must be forwarded, regardless of
1100
+ any dynamic information, e.g., from GMRP. A port may not
1101
+ be added in this set if it is already a member of the
1102
+ set of ports in dot1qStaticMulticastForbiddenEgressPorts.
1103
+ The default value of this object is a string of ones of
1104
+ appropriate length.
1105
+
1106
+ The value of this object MUST be retained across
1107
+ reinitializations of the management system.""",
1108
+ }, # column
1109
+ "dot1qStaticMulticastForbiddenEgressPorts" : {
1110
+ "nodetype" : "column",
1111
+ "moduleName" : "Q-BRIDGE-MIB",
1112
+ "oid" : "1.3.6.1.2.1.17.7.1.3.2.1.4",
1113
+ "status" : "current",
1114
+ "syntax" : {
1115
+ "type" : { "module" :"Q-BRIDGE-MIB", "name" : "PortList"},
1116
+ },
1117
+ "access" : "readwrite",
1118
+ "description" :
1119
+ """The set of ports to which frames received from a
1120
+ specific port and destined for a specific Multicast or
1121
+ Broadcast MAC address must not be forwarded, regardless
1122
+ of any dynamic information, e.g., from GMRP. A port may
1123
+ not be added in this set if it is already a member of the
1124
+ set of ports in dot1qStaticMulticastStaticEgressPorts.
1125
+ The default value of this object is a string of zeros of
1126
+ appropriate length.
1127
+
1128
+ The value of this object MUST be retained across
1129
+ reinitializations of the management system.""",
1130
+ }, # column
1131
+ "dot1qStaticMulticastStatus" : {
1132
+ "nodetype" : "column",
1133
+ "moduleName" : "Q-BRIDGE-MIB",
1134
+ "oid" : "1.3.6.1.2.1.17.7.1.3.2.1.5",
1135
+ "status" : "current",
1136
+ "syntax" : {
1137
+ "type" : {
1138
+ "basetype" : "Enumeration",
1139
+ "other" : {
1140
+ "nodetype" : "namednumber",
1141
+ "number" : "1"
1142
+ },
1143
+ "invalid" : {
1144
+ "nodetype" : "namednumber",
1145
+ "number" : "2"
1146
+ },
1147
+ "permanent" : {
1148
+ "nodetype" : "namednumber",
1149
+ "number" : "3"
1150
+ },
1151
+ "deleteOnReset" : {
1152
+ "nodetype" : "namednumber",
1153
+ "number" : "4"
1154
+ },
1155
+ "deleteOnTimeout" : {
1156
+ "nodetype" : "namednumber",
1157
+ "number" : "5"
1158
+ },
1159
+ },
1160
+ },
1161
+ "access" : "readwrite",
1162
+ "default" : "permanent",
1163
+ "description" :
1164
+ """This object indicates the status of this entry.
1165
+ other(1) - this entry is currently in use, but
1166
+ the conditions under which it will remain
1167
+ so differ from the following values.
1168
+
1169
+
1170
+
1171
+ invalid(2) - writing this value to the object
1172
+ removes the corresponding entry.
1173
+ permanent(3) - this entry is currently in use
1174
+ and will remain so after the next reset of
1175
+ the bridge.
1176
+ deleteOnReset(4) - this entry is currently in
1177
+ use and will remain so until the next
1178
+ reset of the bridge.
1179
+ deleteOnTimeout(5) - this entry is currently in
1180
+ use and will remain so until it is aged out.
1181
+
1182
+ The value of this object MUST be retained across
1183
+ reinitializations of the management system.""",
1184
+ }, # column
1185
+ "dot1qVlan" : {
1186
+ "nodetype" : "node",
1187
+ "moduleName" : "Q-BRIDGE-MIB",
1188
+ "oid" : "1.3.6.1.2.1.17.7.1.4",
1189
+ }, # node
1190
+ "dot1qVlanNumDeletes" : {
1191
+ "nodetype" : "scalar",
1192
+ "moduleName" : "Q-BRIDGE-MIB",
1193
+ "oid" : "1.3.6.1.2.1.17.7.1.4.1",
1194
+ "status" : "current",
1195
+ "syntax" : {
1196
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1197
+ },
1198
+ "access" : "readonly",
1199
+ "description" :
1200
+ """The number of times a VLAN entry has been deleted from
1201
+ the dot1qVlanCurrentTable (for any reason). If an entry
1202
+ is deleted, then inserted, and then deleted, this
1203
+ counter will be incremented by 2.""",
1204
+ }, # scalar
1205
+ "dot1qVlanCurrentTable" : {
1206
+ "nodetype" : "table",
1207
+ "moduleName" : "Q-BRIDGE-MIB",
1208
+ "oid" : "1.3.6.1.2.1.17.7.1.4.2",
1209
+ "status" : "current",
1210
+ "description" :
1211
+ """A table containing current configuration information
1212
+ for each VLAN currently configured into the device by
1213
+ (local or network) management, or dynamically created
1214
+ as a result of GVRP requests received.""",
1215
+ }, # table
1216
+ "dot1qVlanCurrentEntry" : {
1217
+ "nodetype" : "row",
1218
+ "moduleName" : "Q-BRIDGE-MIB",
1219
+ "oid" : "1.3.6.1.2.1.17.7.1.4.2.1",
1220
+ "status" : "current",
1221
+ "linkage" : [
1222
+ "dot1qVlanTimeMark",
1223
+ "dot1qVlanIndex",
1224
+ ],
1225
+ "description" :
1226
+ """Information for a VLAN configured into the device by
1227
+
1228
+
1229
+
1230
+ (local or network) management, or dynamically created
1231
+ as a result of GVRP requests received.""",
1232
+ }, # row
1233
+ "dot1qVlanTimeMark" : {
1234
+ "nodetype" : "column",
1235
+ "moduleName" : "Q-BRIDGE-MIB",
1236
+ "oid" : "1.3.6.1.2.1.17.7.1.4.2.1.1",
1237
+ "status" : "current",
1238
+ "syntax" : {
1239
+ "type" : { "module" :"RMON2-MIB", "name" : "TimeFilter"},
1240
+ },
1241
+ "access" : "noaccess",
1242
+ "description" :
1243
+ """A TimeFilter for this entry. See the TimeFilter
1244
+ textual convention to see how this works.""",
1245
+ }, # column
1246
+ "dot1qVlanIndex" : {
1247
+ "nodetype" : "column",
1248
+ "moduleName" : "Q-BRIDGE-MIB",
1249
+ "oid" : "1.3.6.1.2.1.17.7.1.4.2.1.2",
1250
+ "status" : "current",
1251
+ "syntax" : {
1252
+ "type" : { "module" :"Q-BRIDGE-MIB", "name" : "VlanIndex"},
1253
+ },
1254
+ "access" : "noaccess",
1255
+ "description" :
1256
+ """The VLAN-ID or other identifier referring to this VLAN.""",
1257
+ }, # column
1258
+ "dot1qVlanFdbId" : {
1259
+ "nodetype" : "column",
1260
+ "moduleName" : "Q-BRIDGE-MIB",
1261
+ "oid" : "1.3.6.1.2.1.17.7.1.4.2.1.3",
1262
+ "status" : "current",
1263
+ "syntax" : {
1264
+ "type" : { "module" :"", "name" : "Unsigned32"},
1265
+ },
1266
+ "access" : "readonly",
1267
+ "description" :
1268
+ """The Filtering Database used by this VLAN. This is one
1269
+ of the dot1qFdbId values in the dot1qFdbTable. This
1270
+ value is allocated automatically by the device whenever
1271
+
1272
+
1273
+
1274
+ the VLAN is created: either dynamically by GVRP, or by
1275
+ management, in dot1qVlanStaticTable. Allocation of this
1276
+ value follows the learning constraints defined for this
1277
+ VLAN in dot1qLearningConstraintsTable.""",
1278
+ }, # column
1279
+ "dot1qVlanCurrentEgressPorts" : {
1280
+ "nodetype" : "column",
1281
+ "moduleName" : "Q-BRIDGE-MIB",
1282
+ "oid" : "1.3.6.1.2.1.17.7.1.4.2.1.4",
1283
+ "status" : "current",
1284
+ "syntax" : {
1285
+ "type" : { "module" :"Q-BRIDGE-MIB", "name" : "PortList"},
1286
+ },
1287
+ "access" : "readonly",
1288
+ "description" :
1289
+ """The set of ports that are transmitting traffic for
1290
+ this VLAN as either tagged or untagged frames.""",
1291
+ "reference" :
1292
+ """IEEE 802.1Q/D11 Section 12.10.2.1""",
1293
+ }, # column
1294
+ "dot1qVlanCurrentUntaggedPorts" : {
1295
+ "nodetype" : "column",
1296
+ "moduleName" : "Q-BRIDGE-MIB",
1297
+ "oid" : "1.3.6.1.2.1.17.7.1.4.2.1.5",
1298
+ "status" : "current",
1299
+ "syntax" : {
1300
+ "type" : { "module" :"Q-BRIDGE-MIB", "name" : "PortList"},
1301
+ },
1302
+ "access" : "readonly",
1303
+ "description" :
1304
+ """The set of ports that are transmitting traffic for
1305
+ this VLAN as untagged frames.""",
1306
+ "reference" :
1307
+ """IEEE 802.1Q/D11 Section 12.10.2.1""",
1308
+ }, # column
1309
+ "dot1qVlanStatus" : {
1310
+ "nodetype" : "column",
1311
+ "moduleName" : "Q-BRIDGE-MIB",
1312
+ "oid" : "1.3.6.1.2.1.17.7.1.4.2.1.6",
1313
+ "status" : "current",
1314
+ "syntax" : {
1315
+ "type" : {
1316
+ "basetype" : "Enumeration",
1317
+ "other" : {
1318
+ "nodetype" : "namednumber",
1319
+ "number" : "1"
1320
+ },
1321
+ "permanent" : {
1322
+ "nodetype" : "namednumber",
1323
+ "number" : "2"
1324
+ },
1325
+ "dynamicGvrp" : {
1326
+ "nodetype" : "namednumber",
1327
+ "number" : "3"
1328
+ },
1329
+ },
1330
+ },
1331
+ "access" : "readonly",
1332
+ "description" :
1333
+ """This object indicates the status of this entry.
1334
+ other(1) - this entry is currently in use, but the
1335
+ conditions under which it will remain so differ
1336
+ from the following values.
1337
+ permanent(2) - this entry, corresponding to an entry
1338
+ in dot1qVlanStaticTable, is currently in use and
1339
+ will remain so after the next reset of the
1340
+ device. The port lists for this entry include
1341
+ ports from the equivalent dot1qVlanStaticTable
1342
+ entry and ports learned dynamically.
1343
+ dynamicGvrp(3) - this entry is currently in use
1344
+
1345
+
1346
+
1347
+ and will remain so until removed by GVRP. There
1348
+ is no static entry for this VLAN, and it will be
1349
+ removed when the last port leaves the VLAN.""",
1350
+ }, # column
1351
+ "dot1qVlanCreationTime" : {
1352
+ "nodetype" : "column",
1353
+ "moduleName" : "Q-BRIDGE-MIB",
1354
+ "oid" : "1.3.6.1.2.1.17.7.1.4.2.1.7",
1355
+ "status" : "current",
1356
+ "syntax" : {
1357
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
1358
+ },
1359
+ "access" : "readonly",
1360
+ "description" :
1361
+ """The value of sysUpTime when this VLAN was created.""",
1362
+ }, # column
1363
+ "dot1qVlanStaticTable" : {
1364
+ "nodetype" : "table",
1365
+ "moduleName" : "Q-BRIDGE-MIB",
1366
+ "oid" : "1.3.6.1.2.1.17.7.1.4.3",
1367
+ "status" : "current",
1368
+ "description" :
1369
+ """A table containing static configuration information for
1370
+ each VLAN configured into the device by (local or
1371
+ network) management. All entries are permanent and will
1372
+ be restored after the device is reset.""",
1373
+ }, # table
1374
+ "dot1qVlanStaticEntry" : {
1375
+ "nodetype" : "row",
1376
+ "moduleName" : "Q-BRIDGE-MIB",
1377
+ "oid" : "1.3.6.1.2.1.17.7.1.4.3.1",
1378
+ "create" : "true",
1379
+ "status" : "current",
1380
+ "linkage" : [
1381
+ "dot1qVlanIndex",
1382
+ ],
1383
+ "description" :
1384
+ """Static information for a VLAN configured into the
1385
+ device by (local or network) management.""",
1386
+ }, # row
1387
+ "dot1qVlanStaticName" : {
1388
+ "nodetype" : "column",
1389
+ "moduleName" : "Q-BRIDGE-MIB",
1390
+ "oid" : "1.3.6.1.2.1.17.7.1.4.3.1.1",
1391
+ "status" : "current",
1392
+ "syntax" : {
1393
+ "type" : {
1394
+ "basetype" : "OctetString",
1395
+ "parent module" : {
1396
+ "name" : "SNMP-FRAMEWORK-MIB",
1397
+ "type" : "SnmpAdminString",
1398
+ },
1399
+ "ranges" : [
1400
+ {
1401
+ "min" : "0",
1402
+ "max" : "32"
1403
+ },
1404
+ ],
1405
+ "range" : {
1406
+ "min" : "0",
1407
+ "max" : "32"
1408
+ },
1409
+ },
1410
+ },
1411
+ "access" : "readwrite",
1412
+ "description" :
1413
+ """An administratively assigned string, which may be used
1414
+ to identify the VLAN.""",
1415
+ "reference" :
1416
+ """IEEE 802.1Q/D11 Section 12.10.2.1""",
1417
+ }, # column
1418
+ "dot1qVlanStaticEgressPorts" : {
1419
+ "nodetype" : "column",
1420
+ "moduleName" : "Q-BRIDGE-MIB",
1421
+ "oid" : "1.3.6.1.2.1.17.7.1.4.3.1.2",
1422
+ "status" : "current",
1423
+ "syntax" : {
1424
+ "type" : { "module" :"Q-BRIDGE-MIB", "name" : "PortList"},
1425
+ },
1426
+ "access" : "readwrite",
1427
+ "description" :
1428
+ """The set of ports that are permanently assigned to the
1429
+ egress list for this VLAN by management. Changes to a
1430
+ bit in this object affect the per-port, per-VLAN
1431
+ Registrar control for Registration Fixed for the
1432
+ relevant GVRP state machine on each port. A port may
1433
+ not be added in this set if it is already a member of
1434
+ the set of ports in dot1qVlanForbiddenEgressPorts. The
1435
+ default value of this object is a string of zeros of
1436
+ appropriate length, indicating not fixed.""",
1437
+ "reference" :
1438
+ """IEEE 802.1Q/D11 Section 12.7.7.3, 11.2.3.2.3""",
1439
+ }, # column
1440
+ "dot1qVlanForbiddenEgressPorts" : {
1441
+ "nodetype" : "column",
1442
+ "moduleName" : "Q-BRIDGE-MIB",
1443
+ "oid" : "1.3.6.1.2.1.17.7.1.4.3.1.3",
1444
+ "status" : "current",
1445
+ "syntax" : {
1446
+ "type" : { "module" :"Q-BRIDGE-MIB", "name" : "PortList"},
1447
+ },
1448
+ "access" : "readwrite",
1449
+ "description" :
1450
+ """The set of ports that are prohibited by management
1451
+ from being included in the egress list for this VLAN.
1452
+ Changes to this object that cause a port to be included
1453
+ or excluded affect the per-port, per-VLAN Registrar
1454
+ control for Registration Forbidden for the relevant GVRP
1455
+ state machine on each port. A port may not be added in
1456
+ this set if it is already a member of the set of ports
1457
+ in dot1qVlanStaticEgressPorts. The default value of
1458
+ this object is a string of zeros of appropriate length,
1459
+ excluding all ports from the forbidden set.""",
1460
+ "reference" :
1461
+ """IEEE 802.1Q/D11 Section 12.7.7.3, 11.2.3.2.3""",
1462
+ }, # column
1463
+ "dot1qVlanStaticUntaggedPorts" : {
1464
+ "nodetype" : "column",
1465
+ "moduleName" : "Q-BRIDGE-MIB",
1466
+ "oid" : "1.3.6.1.2.1.17.7.1.4.3.1.4",
1467
+ "status" : "current",
1468
+ "syntax" : {
1469
+ "type" : { "module" :"Q-BRIDGE-MIB", "name" : "PortList"},
1470
+ },
1471
+ "access" : "readwrite",
1472
+ "description" :
1473
+ """The set of ports that should transmit egress packets
1474
+ for this VLAN as untagged. The default value of this
1475
+ object for the default VLAN (dot1qVlanIndex = 1) is a string
1476
+ of appropriate length including all ports. There is no
1477
+ specified default for other VLANs. If a device agent cannot
1478
+ support the set of ports being set, then it will reject the
1479
+ set operation with an error. For example, a
1480
+ manager might attempt to set more than one VLAN to be untagged
1481
+ on egress where the device does not support this IEEE 802.1Q
1482
+ option.""",
1483
+ "reference" :
1484
+ """IEEE 802.1Q/D11 Section 12.10.2.1""",
1485
+ }, # column
1486
+ "dot1qVlanStaticRowStatus" : {
1487
+ "nodetype" : "column",
1488
+ "moduleName" : "Q-BRIDGE-MIB",
1489
+ "oid" : "1.3.6.1.2.1.17.7.1.4.3.1.5",
1490
+ "status" : "current",
1491
+ "syntax" : {
1492
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1493
+ },
1494
+ "access" : "readwrite",
1495
+ "description" :
1496
+ """This object indicates the status of this entry.""",
1497
+ }, # column
1498
+ "dot1qNextFreeLocalVlanIndex" : {
1499
+ "nodetype" : "scalar",
1500
+ "moduleName" : "Q-BRIDGE-MIB",
1501
+ "oid" : "1.3.6.1.2.1.17.7.1.4.4",
1502
+ "status" : "current",
1503
+ "syntax" : {
1504
+ "type" : {
1505
+ "basetype" : "Integer32",
1506
+ "ranges" : [
1507
+ {
1508
+ "min" : "0",
1509
+ "max" : "0"
1510
+ },
1511
+ {
1512
+ "min" : "4096",
1513
+ "max" : "2147483647"
1514
+ },
1515
+ ],
1516
+ "range" : {
1517
+ "min" : "0",
1518
+ "max" : "2147483647"
1519
+ },
1520
+ },
1521
+ },
1522
+ "access" : "readonly",
1523
+ "description" :
1524
+ """The next available value for dot1qVlanIndex of a local
1525
+ VLAN entry in dot1qVlanStaticTable. This will report
1526
+ values >=4096 if a new Local VLAN may be created or else
1527
+ the value 0 if this is not possible.
1528
+
1529
+ A row creation operation in this table for an entry with a local
1530
+ VlanIndex value may fail if the current value of this object
1531
+ is not used as the index. Even if the value read is used,
1532
+ there is no guarantee that it will still be the valid index
1533
+ when the create operation is attempted; another manager may
1534
+ have already got in during the intervening time interval.
1535
+ In this case, dot1qNextFreeLocalVlanIndex should be re-read
1536
+
1537
+
1538
+
1539
+ and the creation re-tried with the new value.
1540
+
1541
+ This value will automatically change when the current value is
1542
+ used to create a new row.""",
1543
+ }, # scalar
1544
+ "dot1qPortVlanTable" : {
1545
+ "nodetype" : "table",
1546
+ "moduleName" : "Q-BRIDGE-MIB",
1547
+ "oid" : "1.3.6.1.2.1.17.7.1.4.5",
1548
+ "status" : "current",
1549
+ "description" :
1550
+ """A table containing per-port control and status
1551
+ information for VLAN configuration in the device.""",
1552
+ }, # table
1553
+ "dot1qPortVlanEntry" : {
1554
+ "nodetype" : "row",
1555
+ "moduleName" : "Q-BRIDGE-MIB",
1556
+ "oid" : "1.3.6.1.2.1.17.7.1.4.5.1",
1557
+ "status" : "current",
1558
+ "linkage" : [
1559
+ { "BRIDGE-MIB" : {
1560
+ "indexkind" : "augments",
1561
+ "relatedNode" : "dot1dBasePortEntry",
1562
+ }},
1563
+ ],
1564
+ "description" :
1565
+ """Information controlling VLAN configuration for a port
1566
+ on the device. This is indexed by dot1dBasePort.""",
1567
+ }, # row
1568
+ "dot1qPvid" : {
1569
+ "nodetype" : "column",
1570
+ "moduleName" : "Q-BRIDGE-MIB",
1571
+ "oid" : "1.3.6.1.2.1.17.7.1.4.5.1.1",
1572
+ "status" : "current",
1573
+ "syntax" : {
1574
+ "type" : { "module" :"Q-BRIDGE-MIB", "name" : "VlanIndex"},
1575
+ },
1576
+ "access" : "readwrite",
1577
+ "default" : "1",
1578
+ "description" :
1579
+ """The PVID, the VLAN-ID assigned to untagged frames or
1580
+ Priority-Tagged frames received on this port.
1581
+
1582
+ The value of this object MUST be retained across
1583
+ reinitializations of the management system.""",
1584
+ "reference" :
1585
+ """IEEE 802.1Q/D11 Section 12.10.1.1""",
1586
+ }, # column
1587
+ "dot1qPortAcceptableFrameTypes" : {
1588
+ "nodetype" : "column",
1589
+ "moduleName" : "Q-BRIDGE-MIB",
1590
+ "oid" : "1.3.6.1.2.1.17.7.1.4.5.1.2",
1591
+ "status" : "current",
1592
+ "syntax" : {
1593
+ "type" : {
1594
+ "basetype" : "Enumeration",
1595
+ "admitAll" : {
1596
+ "nodetype" : "namednumber",
1597
+ "number" : "1"
1598
+ },
1599
+ "admitOnlyVlanTagged" : {
1600
+ "nodetype" : "namednumber",
1601
+ "number" : "2"
1602
+ },
1603
+ },
1604
+ },
1605
+ "access" : "readwrite",
1606
+ "default" : "admitAll",
1607
+ "description" :
1608
+ """When this is admitOnlyVlanTagged(2), the device will
1609
+ discard untagged frames or Priority-Tagged frames
1610
+ received on this port. When admitAll(1), untagged
1611
+ frames or Priority-Tagged frames received on this port
1612
+ will be accepted and assigned to a VID based on the
1613
+ PVID and VID Set for this port.
1614
+
1615
+ This control does not affect VLAN-independent Bridge
1616
+ Protocol Data Unit (BPDU) frames, such as GVRP and
1617
+ Spanning Tree Protocol (STP). It does affect VLAN-
1618
+ dependent BPDU frames, such as GMRP.
1619
+
1620
+ The value of this object MUST be retained across
1621
+ reinitializations of the management system.""",
1622
+ "reference" :
1623
+ """IEEE 802.1Q/D11 Section 12.10.1.3""",
1624
+ }, # column
1625
+ "dot1qPortIngressFiltering" : {
1626
+ "nodetype" : "column",
1627
+ "moduleName" : "Q-BRIDGE-MIB",
1628
+ "oid" : "1.3.6.1.2.1.17.7.1.4.5.1.3",
1629
+ "status" : "current",
1630
+ "syntax" : {
1631
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1632
+ },
1633
+ "access" : "readwrite",
1634
+ "default" : "false",
1635
+ "description" :
1636
+ """When this is true(1), the device will discard incoming
1637
+ frames for VLANs that do not include this Port in its
1638
+
1639
+
1640
+
1641
+ Member set. When false(2), the port will accept all
1642
+ incoming frames.
1643
+
1644
+ This control does not affect VLAN-independent BPDU
1645
+ frames, such as GVRP and STP. It does affect VLAN-
1646
+ dependent BPDU frames, such as GMRP.
1647
+
1648
+ The value of this object MUST be retained across
1649
+ reinitializations of the management system.""",
1650
+ "reference" :
1651
+ """IEEE 802.1Q/D11 Section 12.10.1.4""",
1652
+ }, # column
1653
+ "dot1qPortGvrpStatus" : {
1654
+ "nodetype" : "column",
1655
+ "moduleName" : "Q-BRIDGE-MIB",
1656
+ "oid" : "1.3.6.1.2.1.17.7.1.4.5.1.4",
1657
+ "status" : "current",
1658
+ "syntax" : {
1659
+ "type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
1660
+ },
1661
+ "access" : "readwrite",
1662
+ "default" : "enabled",
1663
+ "description" :
1664
+ """The state of GVRP operation on this port. The value
1665
+ enabled(1) indicates that GVRP is enabled on this port,
1666
+ as long as dot1qGvrpStatus is also enabled for this
1667
+ device. When disabled(2) but dot1qGvrpStatus is still
1668
+ enabled for the device, GVRP is disabled on this port:
1669
+ any GVRP packets received will be silently discarded, and
1670
+ no GVRP registrations will be propagated from other
1671
+ ports. This object affects all GVRP Applicant and
1672
+ Registrar state machines on this port. A transition
1673
+ from disabled(2) to enabled(1) will cause a reset of all
1674
+ GVRP state machines on this port.
1675
+
1676
+ The value of this object MUST be retained across
1677
+ reinitializations of the management system.""",
1678
+ }, # column
1679
+ "dot1qPortGvrpFailedRegistrations" : {
1680
+ "nodetype" : "column",
1681
+ "moduleName" : "Q-BRIDGE-MIB",
1682
+ "oid" : "1.3.6.1.2.1.17.7.1.4.5.1.5",
1683
+ "status" : "current",
1684
+ "syntax" : {
1685
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1686
+ },
1687
+ "access" : "readonly",
1688
+ "description" :
1689
+ """The total number of failed GVRP registrations, for any
1690
+ reason, on this port.""",
1691
+ }, # column
1692
+ "dot1qPortGvrpLastPduOrigin" : {
1693
+ "nodetype" : "column",
1694
+ "moduleName" : "Q-BRIDGE-MIB",
1695
+ "oid" : "1.3.6.1.2.1.17.7.1.4.5.1.6",
1696
+ "status" : "current",
1697
+ "syntax" : {
1698
+ "type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
1699
+ },
1700
+ "access" : "readonly",
1701
+ "description" :
1702
+ """The Source MAC Address of the last GVRP message
1703
+ received on this port.""",
1704
+ }, # column
1705
+ "dot1qPortRestrictedVlanRegistration" : {
1706
+ "nodetype" : "column",
1707
+ "moduleName" : "Q-BRIDGE-MIB",
1708
+ "oid" : "1.3.6.1.2.1.17.7.1.4.5.1.7",
1709
+ "status" : "current",
1710
+ "syntax" : {
1711
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1712
+ },
1713
+ "access" : "readwrite",
1714
+ "default" : "false",
1715
+ "description" :
1716
+ """The state of Restricted VLAN Registration on this port.
1717
+ If the value of this control is true(1), then creation
1718
+ of a new dynamic VLAN entry is permitted only if there
1719
+ is a Static VLAN Registration Entry for the VLAN concerned,
1720
+ in which the Registrar Administrative Control value for
1721
+ this port is Normal Registration.
1722
+
1723
+ The value of this object MUST be retained across
1724
+ reinitializations of the management system.""",
1725
+ "reference" :
1726
+ """IEEE 802.1u clause 11.2.3.2.3, 12.10.1.7.""",
1727
+ }, # column
1728
+ "dot1qPortVlanStatisticsTable" : {
1729
+ "nodetype" : "table",
1730
+ "moduleName" : "Q-BRIDGE-MIB",
1731
+ "oid" : "1.3.6.1.2.1.17.7.1.4.6",
1732
+ "status" : "current",
1733
+ "description" :
1734
+ """A table containing per-port, per-VLAN statistics for
1735
+ traffic received. Separate objects are provided for both the
1736
+ most-significant and least-significant bits of statistics
1737
+ counters for ports that are associated with this transparent
1738
+ bridge. The most-significant bit objects are only required on
1739
+ high-capacity interfaces, as defined in the conformance clauses
1740
+ for these objects. This mechanism is provided as a way to read
1741
+ 64-bit counters for agents that support only SNMPv1.
1742
+
1743
+ Note that the reporting of most-significant and least-
1744
+ significant counter bits separately runs the risk of missing
1745
+ an overflow of the lower bits in the interval between sampling.
1746
+ The manager must be aware of this possibility, even within the
1747
+ same varbindlist, when interpreting the results of a request or
1748
+
1749
+
1750
+
1751
+ asynchronous notification.""",
1752
+ }, # table
1753
+ "dot1qPortVlanStatisticsEntry" : {
1754
+ "nodetype" : "row",
1755
+ "moduleName" : "Q-BRIDGE-MIB",
1756
+ "oid" : "1.3.6.1.2.1.17.7.1.4.6.1",
1757
+ "status" : "current",
1758
+ "linkage" : [
1759
+ "dot1dBasePort",
1760
+ "dot1qVlanIndex",
1761
+ ],
1762
+ "description" :
1763
+ """Traffic statistics for a VLAN on an interface.""",
1764
+ }, # row
1765
+ "dot1qTpVlanPortInFrames" : {
1766
+ "nodetype" : "column",
1767
+ "moduleName" : "Q-BRIDGE-MIB",
1768
+ "oid" : "1.3.6.1.2.1.17.7.1.4.6.1.1",
1769
+ "status" : "current",
1770
+ "syntax" : {
1771
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1772
+ },
1773
+ "access" : "readonly",
1774
+ "description" :
1775
+ """The number of valid frames received by this port from
1776
+ its segment that were classified as belonging to this
1777
+ VLAN. Note that a frame received on this port is
1778
+ counted by this object if and only if it is for a
1779
+ protocol being processed by the local forwarding process
1780
+ for this VLAN. This object includes received bridge
1781
+ management frames classified as belonging to this VLAN
1782
+ (e.g., GMRP, but not GVRP or STP.""",
1783
+ "reference" :
1784
+ """IEEE 802.1Q/D11 Section 12.6.1.1.3(a)""",
1785
+ }, # column
1786
+ "dot1qTpVlanPortOutFrames" : {
1787
+ "nodetype" : "column",
1788
+ "moduleName" : "Q-BRIDGE-MIB",
1789
+ "oid" : "1.3.6.1.2.1.17.7.1.4.6.1.2",
1790
+ "status" : "current",
1791
+ "syntax" : {
1792
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1793
+ },
1794
+ "access" : "readonly",
1795
+ "description" :
1796
+ """The number of valid frames transmitted by this port to
1797
+ its segment from the local forwarding process for this
1798
+ VLAN. This includes bridge management frames originated
1799
+ by this device that are classified as belonging to this
1800
+ VLAN (e.g., GMRP, but not GVRP or STP).""",
1801
+ "reference" :
1802
+ """IEEE 802.1Q/D11 Section 12.6.1.1.3(d)""",
1803
+ }, # column
1804
+ "dot1qTpVlanPortInDiscards" : {
1805
+ "nodetype" : "column",
1806
+ "moduleName" : "Q-BRIDGE-MIB",
1807
+ "oid" : "1.3.6.1.2.1.17.7.1.4.6.1.3",
1808
+ "status" : "current",
1809
+ "syntax" : {
1810
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1811
+ },
1812
+ "access" : "readonly",
1813
+ "description" :
1814
+ """The number of valid frames received by this port from
1815
+ its segment that were classified as belonging to this
1816
+ VLAN and that were discarded due to VLAN-related reasons.
1817
+ Specifically, the IEEE 802.1Q counters for Discard
1818
+ Inbound and Discard on Ingress Filtering.""",
1819
+ "reference" :
1820
+ """IEEE 802.1Q/D11 Section 12.6.1.1.3""",
1821
+ }, # column
1822
+ "dot1qTpVlanPortInOverflowFrames" : {
1823
+ "nodetype" : "column",
1824
+ "moduleName" : "Q-BRIDGE-MIB",
1825
+ "oid" : "1.3.6.1.2.1.17.7.1.4.6.1.4",
1826
+ "status" : "current",
1827
+ "syntax" : {
1828
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1829
+ },
1830
+ "access" : "readonly",
1831
+ "description" :
1832
+ """The number of times the associated
1833
+ dot1qTpVlanPortInFrames counter has overflowed.""",
1834
+ "reference" :
1835
+ """ISO/IEC 15802-3 Section 14.6.1.1.3""",
1836
+ }, # column
1837
+ "dot1qTpVlanPortOutOverflowFrames" : {
1838
+ "nodetype" : "column",
1839
+ "moduleName" : "Q-BRIDGE-MIB",
1840
+ "oid" : "1.3.6.1.2.1.17.7.1.4.6.1.5",
1841
+ "status" : "current",
1842
+ "syntax" : {
1843
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1844
+ },
1845
+ "access" : "readonly",
1846
+ "description" :
1847
+ """The number of times the associated
1848
+ dot1qTpVlanPortOutFrames counter has overflowed.""",
1849
+ "reference" :
1850
+ """ISO/IEC 15802-3 Section 14.6.1.1.3""",
1851
+ }, # column
1852
+ "dot1qTpVlanPortInOverflowDiscards" : {
1853
+ "nodetype" : "column",
1854
+ "moduleName" : "Q-BRIDGE-MIB",
1855
+ "oid" : "1.3.6.1.2.1.17.7.1.4.6.1.6",
1856
+ "status" : "current",
1857
+ "syntax" : {
1858
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1859
+ },
1860
+ "access" : "readonly",
1861
+ "description" :
1862
+ """The number of times the associated
1863
+ dot1qTpVlanPortInDiscards counter has overflowed.""",
1864
+ "reference" :
1865
+ """ISO/IEC 15802-3 Section 14.6.1.1.3""",
1866
+ }, # column
1867
+ "dot1qPortVlanHCStatisticsTable" : {
1868
+ "nodetype" : "table",
1869
+ "moduleName" : "Q-BRIDGE-MIB",
1870
+ "oid" : "1.3.6.1.2.1.17.7.1.4.7",
1871
+ "status" : "current",
1872
+ "description" :
1873
+ """A table containing per-port, per-VLAN statistics for
1874
+ traffic on high-capacity interfaces.""",
1875
+ }, # table
1876
+ "dot1qPortVlanHCStatisticsEntry" : {
1877
+ "nodetype" : "row",
1878
+ "moduleName" : "Q-BRIDGE-MIB",
1879
+ "oid" : "1.3.6.1.2.1.17.7.1.4.7.1",
1880
+ "status" : "current",
1881
+ "linkage" : [
1882
+ "dot1dBasePort",
1883
+ "dot1qVlanIndex",
1884
+ ],
1885
+ "description" :
1886
+ """Traffic statistics for a VLAN on a high-capacity
1887
+ interface.""",
1888
+ }, # row
1889
+ "dot1qTpVlanPortHCInFrames" : {
1890
+ "nodetype" : "column",
1891
+ "moduleName" : "Q-BRIDGE-MIB",
1892
+ "oid" : "1.3.6.1.2.1.17.7.1.4.7.1.1",
1893
+ "status" : "current",
1894
+ "syntax" : {
1895
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1896
+ },
1897
+ "access" : "readonly",
1898
+ "description" :
1899
+ """The number of valid frames received by this port from
1900
+ its segment that were classified as belonging to this
1901
+ VLAN. Note that a frame received on this port is
1902
+ counted by this object if and only if it is for a
1903
+
1904
+
1905
+
1906
+ protocol being processed by the local forwarding process
1907
+ for this VLAN. This object includes received bridge
1908
+ management frames classified as belonging to this VLAN
1909
+ (e.g., GMRP, but not GVRP or STP).""",
1910
+ "reference" :
1911
+ """IEEE 802.1Q/D11 Section 12.6.1.1.3(a)""",
1912
+ }, # column
1913
+ "dot1qTpVlanPortHCOutFrames" : {
1914
+ "nodetype" : "column",
1915
+ "moduleName" : "Q-BRIDGE-MIB",
1916
+ "oid" : "1.3.6.1.2.1.17.7.1.4.7.1.2",
1917
+ "status" : "current",
1918
+ "syntax" : {
1919
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1920
+ },
1921
+ "access" : "readonly",
1922
+ "description" :
1923
+ """The number of valid frames transmitted by this port to
1924
+ its segment from the local forwarding process for this
1925
+ VLAN. This includes bridge management frames originated
1926
+ by this device that are classified as belonging to this
1927
+ VLAN (e.g., GMRP, but not GVRP or STP).""",
1928
+ "reference" :
1929
+ """IEEE 802.1Q/D11 Section 12.6.1.1.3(d)""",
1930
+ }, # column
1931
+ "dot1qTpVlanPortHCInDiscards" : {
1932
+ "nodetype" : "column",
1933
+ "moduleName" : "Q-BRIDGE-MIB",
1934
+ "oid" : "1.3.6.1.2.1.17.7.1.4.7.1.3",
1935
+ "status" : "current",
1936
+ "syntax" : {
1937
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1938
+ },
1939
+ "access" : "readonly",
1940
+ "description" :
1941
+ """The number of valid frames received by this port from
1942
+ its segment that were classified as belonging to this
1943
+ VLAN and that were discarded due to VLAN-related reasons.
1944
+ Specifically, the IEEE 802.1Q counters for Discard
1945
+ Inbound and Discard on Ingress Filtering.""",
1946
+ "reference" :
1947
+ """IEEE 802.1Q/D11 Section 12.6.1.1.3""",
1948
+ }, # column
1949
+ "dot1qLearningConstraintsTable" : {
1950
+ "nodetype" : "table",
1951
+ "moduleName" : "Q-BRIDGE-MIB",
1952
+ "oid" : "1.3.6.1.2.1.17.7.1.4.8",
1953
+ "status" : "current",
1954
+ "description" :
1955
+ """A table containing learning constraints for sets of
1956
+ Shared and Independent VLANs.""",
1957
+ "reference" :
1958
+ """IEEE 802.1Q/D11 Section 12.10.3.1""",
1959
+ }, # table
1960
+ "dot1qLearningConstraintsEntry" : {
1961
+ "nodetype" : "row",
1962
+ "moduleName" : "Q-BRIDGE-MIB",
1963
+ "oid" : "1.3.6.1.2.1.17.7.1.4.8.1",
1964
+ "create" : "true",
1965
+ "status" : "current",
1966
+ "linkage" : [
1967
+ "dot1qConstraintVlan",
1968
+ "dot1qConstraintSet",
1969
+ ],
1970
+ "description" :
1971
+ """A learning constraint defined for a VLAN.""",
1972
+ }, # row
1973
+ "dot1qConstraintVlan" : {
1974
+ "nodetype" : "column",
1975
+ "moduleName" : "Q-BRIDGE-MIB",
1976
+ "oid" : "1.3.6.1.2.1.17.7.1.4.8.1.1",
1977
+ "status" : "current",
1978
+ "syntax" : {
1979
+ "type" : { "module" :"Q-BRIDGE-MIB", "name" : "VlanIndex"},
1980
+ },
1981
+ "access" : "noaccess",
1982
+ "description" :
1983
+ """The index of the row in dot1qVlanCurrentTable for the
1984
+ VLAN constrained by this entry.""",
1985
+ }, # column
1986
+ "dot1qConstraintSet" : {
1987
+ "nodetype" : "column",
1988
+ "moduleName" : "Q-BRIDGE-MIB",
1989
+ "oid" : "1.3.6.1.2.1.17.7.1.4.8.1.2",
1990
+ "status" : "current",
1991
+ "syntax" : {
1992
+ "type" : {
1993
+ "basetype" : "Integer32",
1994
+ "ranges" : [
1995
+ {
1996
+ "min" : "0",
1997
+ "max" : "65535"
1998
+ },
1999
+ ],
2000
+ "range" : {
2001
+ "min" : "0",
2002
+ "max" : "65535"
2003
+ },
2004
+ },
2005
+ },
2006
+ "access" : "noaccess",
2007
+ "description" :
2008
+ """The identity of the constraint set to which
2009
+ dot1qConstraintVlan belongs. These values may be chosen
2010
+ by the management station.""",
2011
+ }, # column
2012
+ "dot1qConstraintType" : {
2013
+ "nodetype" : "column",
2014
+ "moduleName" : "Q-BRIDGE-MIB",
2015
+ "oid" : "1.3.6.1.2.1.17.7.1.4.8.1.3",
2016
+ "status" : "current",
2017
+ "syntax" : {
2018
+ "type" : {
2019
+ "basetype" : "Enumeration",
2020
+ "independent" : {
2021
+ "nodetype" : "namednumber",
2022
+ "number" : "1"
2023
+ },
2024
+ "shared" : {
2025
+ "nodetype" : "namednumber",
2026
+ "number" : "2"
2027
+ },
2028
+ },
2029
+ },
2030
+ "access" : "readwrite",
2031
+ "description" :
2032
+ """The type of constraint this entry defines.
2033
+ independent(1) - the VLAN, dot1qConstraintVlan,
2034
+ uses a filtering database independent from all
2035
+ other VLANs in the same set, defined by
2036
+ dot1qConstraintSet.
2037
+ shared(2) - the VLAN, dot1qConstraintVlan, shares
2038
+ the same filtering database as all other VLANs
2039
+ in the same set, defined by dot1qConstraintSet.""",
2040
+ }, # column
2041
+ "dot1qConstraintStatus" : {
2042
+ "nodetype" : "column",
2043
+ "moduleName" : "Q-BRIDGE-MIB",
2044
+ "oid" : "1.3.6.1.2.1.17.7.1.4.8.1.4",
2045
+ "status" : "current",
2046
+ "syntax" : {
2047
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
2048
+ },
2049
+ "access" : "readwrite",
2050
+ "description" :
2051
+ """The status of this entry.""",
2052
+ }, # column
2053
+ "dot1qConstraintSetDefault" : {
2054
+ "nodetype" : "scalar",
2055
+ "moduleName" : "Q-BRIDGE-MIB",
2056
+ "oid" : "1.3.6.1.2.1.17.7.1.4.9",
2057
+ "status" : "current",
2058
+ "syntax" : {
2059
+ "type" : {
2060
+ "basetype" : "Integer32",
2061
+ "ranges" : [
2062
+ {
2063
+ "min" : "0",
2064
+ "max" : "65535"
2065
+ },
2066
+ ],
2067
+ "range" : {
2068
+ "min" : "0",
2069
+ "max" : "65535"
2070
+ },
2071
+ },
2072
+ },
2073
+ "access" : "readwrite",
2074
+ "description" :
2075
+ """The identity of the constraint set to which a VLAN
2076
+ belongs, if there is not an explicit entry for that VLAN
2077
+ in dot1qLearningConstraintsTable.
2078
+
2079
+ The value of this object MUST be retained across
2080
+ reinitializations of the management system.""",
2081
+ }, # scalar
2082
+ "dot1qConstraintTypeDefault" : {
2083
+ "nodetype" : "scalar",
2084
+ "moduleName" : "Q-BRIDGE-MIB",
2085
+ "oid" : "1.3.6.1.2.1.17.7.1.4.10",
2086
+ "status" : "current",
2087
+ "syntax" : {
2088
+ "type" : {
2089
+ "basetype" : "Enumeration",
2090
+ "independent" : {
2091
+ "nodetype" : "namednumber",
2092
+ "number" : "1"
2093
+ },
2094
+ "shared" : {
2095
+ "nodetype" : "namednumber",
2096
+ "number" : "2"
2097
+ },
2098
+ },
2099
+ },
2100
+ "access" : "readwrite",
2101
+ "description" :
2102
+ """The type of constraint set to which a VLAN belongs, if
2103
+ there is not an explicit entry for that VLAN in
2104
+ dot1qLearningConstraintsTable. The types are as defined
2105
+ for dot1qConstraintType.
2106
+
2107
+ The value of this object MUST be retained across
2108
+
2109
+
2110
+
2111
+ reinitializations of the management system.""",
2112
+ }, # scalar
2113
+ "dot1vProtocol" : {
2114
+ "nodetype" : "node",
2115
+ "moduleName" : "Q-BRIDGE-MIB",
2116
+ "oid" : "1.3.6.1.2.1.17.7.1.5",
2117
+ }, # node
2118
+ "dot1vProtocolGroupTable" : {
2119
+ "nodetype" : "table",
2120
+ "moduleName" : "Q-BRIDGE-MIB",
2121
+ "oid" : "1.3.6.1.2.1.17.7.1.5.1",
2122
+ "status" : "current",
2123
+ "description" :
2124
+ """A table that contains mappings from Protocol
2125
+ Templates to Protocol Group Identifiers used for
2126
+ Port-and-Protocol-based VLAN Classification.""",
2127
+ "reference" :
2128
+ """IEEE 802.1v clause 8.6.4""",
2129
+ }, # table
2130
+ "dot1vProtocolGroupEntry" : {
2131
+ "nodetype" : "row",
2132
+ "moduleName" : "Q-BRIDGE-MIB",
2133
+ "oid" : "1.3.6.1.2.1.17.7.1.5.1.1",
2134
+ "create" : "true",
2135
+ "status" : "current",
2136
+ "linkage" : [
2137
+ "dot1vProtocolTemplateFrameType",
2138
+ "dot1vProtocolTemplateProtocolValue",
2139
+ ],
2140
+ "description" :
2141
+ """A mapping from a Protocol Template to a Protocol
2142
+ Group Identifier.""",
2143
+ }, # row
2144
+ "dot1vProtocolTemplateFrameType" : {
2145
+ "nodetype" : "column",
2146
+ "moduleName" : "Q-BRIDGE-MIB",
2147
+ "oid" : "1.3.6.1.2.1.17.7.1.5.1.1.1",
2148
+ "status" : "current",
2149
+ "syntax" : {
2150
+ "type" : {
2151
+ "basetype" : "Enumeration",
2152
+ "ethernet" : {
2153
+ "nodetype" : "namednumber",
2154
+ "number" : "1"
2155
+ },
2156
+ "rfc1042" : {
2157
+ "nodetype" : "namednumber",
2158
+ "number" : "2"
2159
+ },
2160
+ "snap8021H" : {
2161
+ "nodetype" : "namednumber",
2162
+ "number" : "3"
2163
+ },
2164
+ "snapOther" : {
2165
+ "nodetype" : "namednumber",
2166
+ "number" : "4"
2167
+ },
2168
+ "llcOther" : {
2169
+ "nodetype" : "namednumber",
2170
+ "number" : "5"
2171
+ },
2172
+ },
2173
+ },
2174
+ "access" : "noaccess",
2175
+ "description" :
2176
+ """The data-link encapsulation format or the
2177
+ 'detagged_frame_type' in a Protocol Template.""",
2178
+ "reference" :
2179
+ """IEEE 802.1v clause 8.6.2""",
2180
+ }, # column
2181
+ "dot1vProtocolTemplateProtocolValue" : {
2182
+ "nodetype" : "column",
2183
+ "moduleName" : "Q-BRIDGE-MIB",
2184
+ "oid" : "1.3.6.1.2.1.17.7.1.5.1.1.2",
2185
+ "status" : "current",
2186
+ "syntax" : {
2187
+ "type" : {
2188
+ "basetype" : "OctetString",
2189
+ "ranges" : [
2190
+ {
2191
+ "min" : "2",
2192
+ "max" : "2"
2193
+ },
2194
+ {
2195
+ "min" : "5",
2196
+ "max" : "5"
2197
+ },
2198
+ ],
2199
+ "range" : {
2200
+ "min" : "2",
2201
+ "max" : "5"
2202
+ },
2203
+ },
2204
+ },
2205
+ "access" : "noaccess",
2206
+ "description" :
2207
+ """The identification of the protocol above the data-link
2208
+ layer in a Protocol Template. Depending on the
2209
+ frame type, the octet string will have one of the
2210
+ following values:
2211
+
2212
+ For 'ethernet', 'rfc1042' and 'snap8021H',
2213
+ this is the 16-bit (2-octet) IEEE 802.3 Type Field.
2214
+ For 'snapOther',
2215
+ this is the 40-bit (5-octet) PID.
2216
+ For 'llcOther',
2217
+ this is the 2-octet IEEE 802.2 Link Service Access
2218
+ Point (LSAP) pair: first octet for Destination Service
2219
+ Access Point (DSAP) and second octet for Source Service
2220
+ Access Point (SSAP).""",
2221
+ "reference" :
2222
+ """IEEE 802.1v clause 8.6.2""",
2223
+ }, # column
2224
+ "dot1vProtocolGroupId" : {
2225
+ "nodetype" : "column",
2226
+ "moduleName" : "Q-BRIDGE-MIB",
2227
+ "oid" : "1.3.6.1.2.1.17.7.1.5.1.1.3",
2228
+ "status" : "current",
2229
+ "syntax" : {
2230
+ "type" : {
2231
+ "basetype" : "Integer32",
2232
+ "ranges" : [
2233
+ {
2234
+ "min" : "0",
2235
+ "max" : "2147483647"
2236
+ },
2237
+ ],
2238
+ "range" : {
2239
+ "min" : "0",
2240
+ "max" : "2147483647"
2241
+ },
2242
+ },
2243
+ },
2244
+ "access" : "readwrite",
2245
+ "description" :
2246
+ """Represents a group of protocols that are associated
2247
+ together when assigning a VID to a frame.""",
2248
+ "reference" :
2249
+ """IEEE 802.1v clause 8.6.3, 12.10.2.1""",
2250
+ }, # column
2251
+ "dot1vProtocolGroupRowStatus" : {
2252
+ "nodetype" : "column",
2253
+ "moduleName" : "Q-BRIDGE-MIB",
2254
+ "oid" : "1.3.6.1.2.1.17.7.1.5.1.1.4",
2255
+ "status" : "current",
2256
+ "syntax" : {
2257
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
2258
+ },
2259
+ "access" : "readwrite",
2260
+ "description" :
2261
+ """This object indicates the status of this entry.""",
2262
+ }, # column
2263
+ "dot1vProtocolPortTable" : {
2264
+ "nodetype" : "table",
2265
+ "moduleName" : "Q-BRIDGE-MIB",
2266
+ "oid" : "1.3.6.1.2.1.17.7.1.5.2",
2267
+ "status" : "current",
2268
+ "description" :
2269
+ """A table that contains VID sets used for
2270
+ Port-and-Protocol-based VLAN Classification.""",
2271
+ "reference" :
2272
+ """IEEE 802.1v clause 8.4.4""",
2273
+ }, # table
2274
+ "dot1vProtocolPortEntry" : {
2275
+ "nodetype" : "row",
2276
+ "moduleName" : "Q-BRIDGE-MIB",
2277
+ "oid" : "1.3.6.1.2.1.17.7.1.5.2.1",
2278
+ "create" : "true",
2279
+ "status" : "current",
2280
+ "linkage" : [
2281
+ "dot1dBasePort",
2282
+ "dot1vProtocolPortGroupId",
2283
+ ],
2284
+ "description" :
2285
+ """A VID set for a port.""",
2286
+ }, # row
2287
+ "dot1vProtocolPortGroupId" : {
2288
+ "nodetype" : "column",
2289
+ "moduleName" : "Q-BRIDGE-MIB",
2290
+ "oid" : "1.3.6.1.2.1.17.7.1.5.2.1.1",
2291
+ "status" : "current",
2292
+ "syntax" : {
2293
+ "type" : {
2294
+ "basetype" : "Integer32",
2295
+ "ranges" : [
2296
+ {
2297
+ "min" : "1",
2298
+ "max" : "2147483647"
2299
+ },
2300
+ ],
2301
+ "range" : {
2302
+ "min" : "1",
2303
+ "max" : "2147483647"
2304
+ },
2305
+ },
2306
+ },
2307
+ "access" : "noaccess",
2308
+ "description" :
2309
+ """Designates a group of protocols in the Protocol
2310
+ Group Database.""",
2311
+ "reference" :
2312
+ """IEEE 802.1v clause 8.6.3, 12.10.1.2""",
2313
+ }, # column
2314
+ "dot1vProtocolPortGroupVid" : {
2315
+ "nodetype" : "column",
2316
+ "moduleName" : "Q-BRIDGE-MIB",
2317
+ "oid" : "1.3.6.1.2.1.17.7.1.5.2.1.2",
2318
+ "status" : "current",
2319
+ "syntax" : {
2320
+ "type" : {
2321
+ "basetype" : "Integer32",
2322
+ "ranges" : [
2323
+ {
2324
+ "min" : "1",
2325
+ "max" : "4094"
2326
+ },
2327
+ ],
2328
+ "range" : {
2329
+ "min" : "1",
2330
+ "max" : "4094"
2331
+ },
2332
+ },
2333
+ },
2334
+ "access" : "readwrite",
2335
+ "description" :
2336
+ """The VID associated with a group of protocols for
2337
+ each port.""",
2338
+ "reference" :
2339
+ """IEEE 802.1v clause 8.4.4, 12.10.1.2""",
2340
+ }, # column
2341
+ "dot1vProtocolPortRowStatus" : {
2342
+ "nodetype" : "column",
2343
+ "moduleName" : "Q-BRIDGE-MIB",
2344
+ "oid" : "1.3.6.1.2.1.17.7.1.5.2.1.3",
2345
+ "status" : "current",
2346
+ "syntax" : {
2347
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
2348
+ },
2349
+ "access" : "readwrite",
2350
+ "description" :
2351
+ """This object indicates the status of this entry.""",
2352
+ }, # column
2353
+ "qBridgeConformance" : {
2354
+ "nodetype" : "node",
2355
+ "moduleName" : "Q-BRIDGE-MIB",
2356
+ "oid" : "1.3.6.1.2.1.17.7.2",
2357
+ }, # node
2358
+ "qBridgeGroups" : {
2359
+ "nodetype" : "node",
2360
+ "moduleName" : "Q-BRIDGE-MIB",
2361
+ "oid" : "1.3.6.1.2.1.17.7.2.1",
2362
+ }, # node
2363
+ "qBridgeCompliances" : {
2364
+ "nodetype" : "node",
2365
+ "moduleName" : "Q-BRIDGE-MIB",
2366
+ "oid" : "1.3.6.1.2.1.17.7.2.2",
2367
+ }, # node
2368
+ }, # nodes
2369
+
2370
+ "groups" : {
2371
+ "qBridgeBaseGroup" : {
2372
+ "nodetype" : "group",
2373
+ "moduleName" : "Q-BRIDGE-MIB",
2374
+ "oid" : "1.3.6.1.2.1.17.7.2.1.1",
2375
+ "status" : "current",
2376
+ "members" : {
2377
+ "dot1qVlanVersionNumber" : {
2378
+ "nodetype" : "member",
2379
+ "module" : "Q-BRIDGE-MIB"
2380
+ },
2381
+ "dot1qMaxVlanId" : {
2382
+ "nodetype" : "member",
2383
+ "module" : "Q-BRIDGE-MIB"
2384
+ },
2385
+ "dot1qMaxSupportedVlans" : {
2386
+ "nodetype" : "member",
2387
+ "module" : "Q-BRIDGE-MIB"
2388
+ },
2389
+ "dot1qNumVlans" : {
2390
+ "nodetype" : "member",
2391
+ "module" : "Q-BRIDGE-MIB"
2392
+ },
2393
+ "dot1qGvrpStatus" : {
2394
+ "nodetype" : "member",
2395
+ "module" : "Q-BRIDGE-MIB"
2396
+ },
2397
+ }, # members
2398
+ "description" :
2399
+ """A collection of objects providing device-level control
2400
+ and status information for the Virtual LAN bridge
2401
+ services.""",
2402
+ }, # group
2403
+ "qBridgeFdbUnicastGroup" : {
2404
+ "nodetype" : "group",
2405
+ "moduleName" : "Q-BRIDGE-MIB",
2406
+ "oid" : "1.3.6.1.2.1.17.7.2.1.2",
2407
+ "status" : "current",
2408
+ "members" : {
2409
+ "dot1qFdbDynamicCount" : {
2410
+ "nodetype" : "member",
2411
+ "module" : "Q-BRIDGE-MIB"
2412
+ },
2413
+ "dot1qTpFdbPort" : {
2414
+ "nodetype" : "member",
2415
+ "module" : "Q-BRIDGE-MIB"
2416
+ },
2417
+ "dot1qTpFdbStatus" : {
2418
+ "nodetype" : "member",
2419
+ "module" : "Q-BRIDGE-MIB"
2420
+ },
2421
+ }, # members
2422
+ "description" :
2423
+ """A collection of objects providing information about all
2424
+ unicast addresses, learned dynamically or statically
2425
+ configured by management, in each Filtering Database.""",
2426
+ }, # group
2427
+ "qBridgeFdbMulticastGroup" : {
2428
+ "nodetype" : "group",
2429
+ "moduleName" : "Q-BRIDGE-MIB",
2430
+ "oid" : "1.3.6.1.2.1.17.7.2.1.3",
2431
+ "status" : "current",
2432
+ "members" : {
2433
+ "dot1qTpGroupEgressPorts" : {
2434
+ "nodetype" : "member",
2435
+ "module" : "Q-BRIDGE-MIB"
2436
+ },
2437
+ "dot1qTpGroupLearnt" : {
2438
+ "nodetype" : "member",
2439
+ "module" : "Q-BRIDGE-MIB"
2440
+ },
2441
+ }, # members
2442
+ "description" :
2443
+ """A collection of objects providing information about all
2444
+ multicast addresses, learned dynamically or statically
2445
+ configured by management, in each Filtering Database.""",
2446
+ }, # group
2447
+ "qBridgeServiceRequirementsGroup" : {
2448
+ "nodetype" : "group",
2449
+ "moduleName" : "Q-BRIDGE-MIB",
2450
+ "oid" : "1.3.6.1.2.1.17.7.2.1.4",
2451
+ "status" : "current",
2452
+ "members" : {
2453
+ "dot1qForwardAllPorts" : {
2454
+ "nodetype" : "member",
2455
+ "module" : "Q-BRIDGE-MIB"
2456
+ },
2457
+ "dot1qForwardAllStaticPorts" : {
2458
+ "nodetype" : "member",
2459
+ "module" : "Q-BRIDGE-MIB"
2460
+ },
2461
+ "dot1qForwardAllForbiddenPorts" : {
2462
+ "nodetype" : "member",
2463
+ "module" : "Q-BRIDGE-MIB"
2464
+ },
2465
+ "dot1qForwardUnregisteredPorts" : {
2466
+ "nodetype" : "member",
2467
+ "module" : "Q-BRIDGE-MIB"
2468
+ },
2469
+ "dot1qForwardUnregisteredStaticPorts" : {
2470
+ "nodetype" : "member",
2471
+ "module" : "Q-BRIDGE-MIB"
2472
+ },
2473
+ "dot1qForwardUnregisteredForbiddenPorts" : {
2474
+ "nodetype" : "member",
2475
+ "module" : "Q-BRIDGE-MIB"
2476
+ },
2477
+ }, # members
2478
+ "description" :
2479
+ """A collection of objects providing information about
2480
+ service requirements, learned dynamically or statically
2481
+ configured by management, in each Filtering Database.""",
2482
+ }, # group
2483
+ "qBridgeFdbStaticGroup" : {
2484
+ "nodetype" : "group",
2485
+ "moduleName" : "Q-BRIDGE-MIB",
2486
+ "oid" : "1.3.6.1.2.1.17.7.2.1.5",
2487
+ "status" : "current",
2488
+ "members" : {
2489
+ "dot1qStaticUnicastAllowedToGoTo" : {
2490
+ "nodetype" : "member",
2491
+ "module" : "Q-BRIDGE-MIB"
2492
+ },
2493
+ "dot1qStaticUnicastStatus" : {
2494
+ "nodetype" : "member",
2495
+ "module" : "Q-BRIDGE-MIB"
2496
+ },
2497
+ "dot1qStaticMulticastStaticEgressPorts" : {
2498
+ "nodetype" : "member",
2499
+ "module" : "Q-BRIDGE-MIB"
2500
+ },
2501
+ "dot1qStaticMulticastForbiddenEgressPorts" : {
2502
+ "nodetype" : "member",
2503
+ "module" : "Q-BRIDGE-MIB"
2504
+ },
2505
+ "dot1qStaticMulticastStatus" : {
2506
+ "nodetype" : "member",
2507
+ "module" : "Q-BRIDGE-MIB"
2508
+ },
2509
+ }, # members
2510
+ "description" :
2511
+ """A collection of objects providing information about
2512
+ unicast and multicast addresses statically configured by
2513
+ management, in each Filtering Database or VLAN.""",
2514
+ }, # group
2515
+ "qBridgeVlanGroup" : {
2516
+ "nodetype" : "group",
2517
+ "moduleName" : "Q-BRIDGE-MIB",
2518
+ "oid" : "1.3.6.1.2.1.17.7.2.1.6",
2519
+ "status" : "current",
2520
+ "members" : {
2521
+ "dot1qVlanNumDeletes" : {
2522
+ "nodetype" : "member",
2523
+ "module" : "Q-BRIDGE-MIB"
2524
+ },
2525
+ "dot1qVlanFdbId" : {
2526
+ "nodetype" : "member",
2527
+ "module" : "Q-BRIDGE-MIB"
2528
+ },
2529
+ "dot1qVlanCurrentEgressPorts" : {
2530
+ "nodetype" : "member",
2531
+ "module" : "Q-BRIDGE-MIB"
2532
+ },
2533
+ "dot1qVlanCurrentUntaggedPorts" : {
2534
+ "nodetype" : "member",
2535
+ "module" : "Q-BRIDGE-MIB"
2536
+ },
2537
+ "dot1qVlanStatus" : {
2538
+ "nodetype" : "member",
2539
+ "module" : "Q-BRIDGE-MIB"
2540
+ },
2541
+ "dot1qVlanCreationTime" : {
2542
+ "nodetype" : "member",
2543
+ "module" : "Q-BRIDGE-MIB"
2544
+ },
2545
+ }, # members
2546
+ "description" :
2547
+ """A collection of objects providing information about
2548
+ all VLANs currently configured on this device.""",
2549
+ }, # group
2550
+ "qBridgeVlanStaticGroup" : {
2551
+ "nodetype" : "group",
2552
+ "moduleName" : "Q-BRIDGE-MIB",
2553
+ "oid" : "1.3.6.1.2.1.17.7.2.1.7",
2554
+ "status" : "current",
2555
+ "members" : {
2556
+ "dot1qVlanStaticName" : {
2557
+ "nodetype" : "member",
2558
+ "module" : "Q-BRIDGE-MIB"
2559
+ },
2560
+ "dot1qVlanStaticEgressPorts" : {
2561
+ "nodetype" : "member",
2562
+ "module" : "Q-BRIDGE-MIB"
2563
+ },
2564
+ "dot1qVlanForbiddenEgressPorts" : {
2565
+ "nodetype" : "member",
2566
+ "module" : "Q-BRIDGE-MIB"
2567
+ },
2568
+ "dot1qVlanStaticUntaggedPorts" : {
2569
+ "nodetype" : "member",
2570
+ "module" : "Q-BRIDGE-MIB"
2571
+ },
2572
+ "dot1qVlanStaticRowStatus" : {
2573
+ "nodetype" : "member",
2574
+ "module" : "Q-BRIDGE-MIB"
2575
+ },
2576
+ "dot1qNextFreeLocalVlanIndex" : {
2577
+ "nodetype" : "member",
2578
+ "module" : "Q-BRIDGE-MIB"
2579
+ },
2580
+ }, # members
2581
+ "description" :
2582
+ """A collection of objects providing information about
2583
+ VLANs statically configured by management.""",
2584
+ }, # group
2585
+ "qBridgePortGroup" : {
2586
+ "nodetype" : "group",
2587
+ "moduleName" : "Q-BRIDGE-MIB",
2588
+ "oid" : "1.3.6.1.2.1.17.7.2.1.8",
2589
+ "status" : "deprecated",
2590
+ "members" : {
2591
+ "dot1qPvid" : {
2592
+ "nodetype" : "member",
2593
+ "module" : "Q-BRIDGE-MIB"
2594
+ },
2595
+ "dot1qPortAcceptableFrameTypes" : {
2596
+ "nodetype" : "member",
2597
+ "module" : "Q-BRIDGE-MIB"
2598
+ },
2599
+ "dot1qPortIngressFiltering" : {
2600
+ "nodetype" : "member",
2601
+ "module" : "Q-BRIDGE-MIB"
2602
+ },
2603
+ "dot1qPortGvrpStatus" : {
2604
+ "nodetype" : "member",
2605
+ "module" : "Q-BRIDGE-MIB"
2606
+ },
2607
+ "dot1qPortGvrpFailedRegistrations" : {
2608
+ "nodetype" : "member",
2609
+ "module" : "Q-BRIDGE-MIB"
2610
+ },
2611
+ "dot1qPortGvrpLastPduOrigin" : {
2612
+ "nodetype" : "member",
2613
+ "module" : "Q-BRIDGE-MIB"
2614
+ },
2615
+ }, # members
2616
+ "description" :
2617
+ """A collection of objects providing port-level VLAN
2618
+ control and status information for all ports.""",
2619
+ }, # group
2620
+ "qBridgeVlanStatisticsGroup" : {
2621
+ "nodetype" : "group",
2622
+ "moduleName" : "Q-BRIDGE-MIB",
2623
+ "oid" : "1.3.6.1.2.1.17.7.2.1.9",
2624
+ "status" : "current",
2625
+ "members" : {
2626
+ "dot1qTpVlanPortInFrames" : {
2627
+ "nodetype" : "member",
2628
+ "module" : "Q-BRIDGE-MIB"
2629
+ },
2630
+ "dot1qTpVlanPortOutFrames" : {
2631
+ "nodetype" : "member",
2632
+ "module" : "Q-BRIDGE-MIB"
2633
+ },
2634
+ "dot1qTpVlanPortInDiscards" : {
2635
+ "nodetype" : "member",
2636
+ "module" : "Q-BRIDGE-MIB"
2637
+ },
2638
+ }, # members
2639
+ "description" :
2640
+ """A collection of objects providing per-port packet
2641
+ statistics for all VLANs currently configured on this
2642
+ device.""",
2643
+ }, # group
2644
+ "qBridgeVlanStatisticsOverflowGroup" : {
2645
+ "nodetype" : "group",
2646
+ "moduleName" : "Q-BRIDGE-MIB",
2647
+ "oid" : "1.3.6.1.2.1.17.7.2.1.10",
2648
+ "status" : "current",
2649
+ "members" : {
2650
+ "dot1qTpVlanPortInOverflowFrames" : {
2651
+ "nodetype" : "member",
2652
+ "module" : "Q-BRIDGE-MIB"
2653
+ },
2654
+ "dot1qTpVlanPortOutOverflowFrames" : {
2655
+ "nodetype" : "member",
2656
+ "module" : "Q-BRIDGE-MIB"
2657
+ },
2658
+ "dot1qTpVlanPortInOverflowDiscards" : {
2659
+ "nodetype" : "member",
2660
+ "module" : "Q-BRIDGE-MIB"
2661
+ },
2662
+ }, # members
2663
+ "description" :
2664
+ """A collection of objects providing overflow counters for
2665
+ per-port packet statistics for all VLANs currently configured
2666
+ on this device for high-capacity interfaces, defined as those
2667
+ that have the value of the corresponding instance of
2668
+ ifSpeed greater than 650,000,000 bits/second.""",
2669
+ }, # group
2670
+ "qBridgeVlanHCStatisticsGroup" : {
2671
+ "nodetype" : "group",
2672
+ "moduleName" : "Q-BRIDGE-MIB",
2673
+ "oid" : "1.3.6.1.2.1.17.7.2.1.11",
2674
+ "status" : "current",
2675
+ "members" : {
2676
+ "dot1qTpVlanPortHCInFrames" : {
2677
+ "nodetype" : "member",
2678
+ "module" : "Q-BRIDGE-MIB"
2679
+ },
2680
+ "dot1qTpVlanPortHCOutFrames" : {
2681
+ "nodetype" : "member",
2682
+ "module" : "Q-BRIDGE-MIB"
2683
+ },
2684
+ "dot1qTpVlanPortHCInDiscards" : {
2685
+ "nodetype" : "member",
2686
+ "module" : "Q-BRIDGE-MIB"
2687
+ },
2688
+ }, # members
2689
+ "description" :
2690
+ """A collection of objects providing per-port packet
2691
+ statistics for all VLANs currently configured on this
2692
+ device for high-capacity interfaces, defined as those
2693
+ that have the value of the corresponding instance of
2694
+ ifSpeed greater than 650,000,000 bits/second.""",
2695
+ }, # group
2696
+ "qBridgeLearningConstraintsGroup" : {
2697
+ "nodetype" : "group",
2698
+ "moduleName" : "Q-BRIDGE-MIB",
2699
+ "oid" : "1.3.6.1.2.1.17.7.2.1.12",
2700
+ "status" : "current",
2701
+ "members" : {
2702
+ "dot1qConstraintType" : {
2703
+ "nodetype" : "member",
2704
+ "module" : "Q-BRIDGE-MIB"
2705
+ },
2706
+ "dot1qConstraintStatus" : {
2707
+ "nodetype" : "member",
2708
+ "module" : "Q-BRIDGE-MIB"
2709
+ },
2710
+ }, # members
2711
+ "description" :
2712
+ """A collection of objects defining the Filtering Database
2713
+ constraints all VLANs have with each other.""",
2714
+ }, # group
2715
+ "qBridgeLearningConstraintDefaultGroup" : {
2716
+ "nodetype" : "group",
2717
+ "moduleName" : "Q-BRIDGE-MIB",
2718
+ "oid" : "1.3.6.1.2.1.17.7.2.1.13",
2719
+ "status" : "current",
2720
+ "members" : {
2721
+ "dot1qConstraintSetDefault" : {
2722
+ "nodetype" : "member",
2723
+ "module" : "Q-BRIDGE-MIB"
2724
+ },
2725
+ "dot1qConstraintTypeDefault" : {
2726
+ "nodetype" : "member",
2727
+ "module" : "Q-BRIDGE-MIB"
2728
+ },
2729
+ }, # members
2730
+ "description" :
2731
+ """A collection of objects defining the default Filtering
2732
+ Database constraints for VLANs that have no specific
2733
+ constraints defined.""",
2734
+ }, # group
2735
+ "qBridgeClassificationDeviceGroup" : {
2736
+ "nodetype" : "group",
2737
+ "moduleName" : "Q-BRIDGE-MIB",
2738
+ "oid" : "1.3.6.1.2.1.17.7.2.1.14",
2739
+ "status" : "current",
2740
+ "members" : {
2741
+ "dot1vProtocolGroupId" : {
2742
+ "nodetype" : "member",
2743
+ "module" : "Q-BRIDGE-MIB"
2744
+ },
2745
+ "dot1vProtocolGroupRowStatus" : {
2746
+ "nodetype" : "member",
2747
+ "module" : "Q-BRIDGE-MIB"
2748
+ },
2749
+ }, # members
2750
+ "description" :
2751
+ """VLAN classification information for the bridge.""",
2752
+ }, # group
2753
+ "qBridgeClassificationPortGroup" : {
2754
+ "nodetype" : "group",
2755
+ "moduleName" : "Q-BRIDGE-MIB",
2756
+ "oid" : "1.3.6.1.2.1.17.7.2.1.15",
2757
+ "status" : "current",
2758
+ "members" : {
2759
+ "dot1vProtocolPortGroupVid" : {
2760
+ "nodetype" : "member",
2761
+ "module" : "Q-BRIDGE-MIB"
2762
+ },
2763
+ "dot1vProtocolPortRowStatus" : {
2764
+ "nodetype" : "member",
2765
+ "module" : "Q-BRIDGE-MIB"
2766
+ },
2767
+ }, # members
2768
+ "description" :
2769
+ """VLAN classification information for individual ports.""",
2770
+ }, # group
2771
+ "qBridgePortGroup2" : {
2772
+ "nodetype" : "group",
2773
+ "moduleName" : "Q-BRIDGE-MIB",
2774
+ "oid" : "1.3.6.1.2.1.17.7.2.1.16",
2775
+ "status" : "current",
2776
+ "members" : {
2777
+ "dot1qPvid" : {
2778
+ "nodetype" : "member",
2779
+ "module" : "Q-BRIDGE-MIB"
2780
+ },
2781
+ "dot1qPortAcceptableFrameTypes" : {
2782
+ "nodetype" : "member",
2783
+ "module" : "Q-BRIDGE-MIB"
2784
+ },
2785
+ "dot1qPortIngressFiltering" : {
2786
+ "nodetype" : "member",
2787
+ "module" : "Q-BRIDGE-MIB"
2788
+ },
2789
+ "dot1qPortGvrpStatus" : {
2790
+ "nodetype" : "member",
2791
+ "module" : "Q-BRIDGE-MIB"
2792
+ },
2793
+ "dot1qPortGvrpFailedRegistrations" : {
2794
+ "nodetype" : "member",
2795
+ "module" : "Q-BRIDGE-MIB"
2796
+ },
2797
+ "dot1qPortGvrpLastPduOrigin" : {
2798
+ "nodetype" : "member",
2799
+ "module" : "Q-BRIDGE-MIB"
2800
+ },
2801
+ "dot1qPortRestrictedVlanRegistration" : {
2802
+ "nodetype" : "member",
2803
+ "module" : "Q-BRIDGE-MIB"
2804
+ },
2805
+ }, # members
2806
+ "description" :
2807
+ """A collection of objects providing port-level VLAN
2808
+ control and status information for all ports.""",
2809
+ }, # group
2810
+ }, # groups
2811
+
2812
+ "compliances" : {
2813
+ "qBridgeCompliance" : {
2814
+ "nodetype" : "compliance",
2815
+ "moduleName" : "Q-BRIDGE-MIB",
2816
+ "oid" : "1.3.6.1.2.1.17.7.2.2.1",
2817
+ "status" : "deprecated",
2818
+ "description" :
2819
+ """The compliance statement for device support of Virtual
2820
+ LAN Bridge services.
2821
+
2822
+ RFC2674 was silent about the expected persistence of the
2823
+ read-write objects in this MIB module. Applications MUST
2824
+ NOT assume that the values of the read-write objects are
2825
+ persistent across reinitializations of the management
2826
+ system and MUST NOT assume that the values are not
2827
+ persistent across reinitializations of the management
2828
+ system.""",
2829
+ "requires" : {
2830
+ "qBridgeBaseGroup" : {
2831
+ "nodetype" : "mandatory",
2832
+ "module" : "Q-BRIDGE-MIB"
2833
+ },
2834
+ "qBridgeVlanGroup" : {
2835
+ "nodetype" : "mandatory",
2836
+ "module" : "Q-BRIDGE-MIB"
2837
+ },
2838
+ "qBridgeVlanStaticGroup" : {
2839
+ "nodetype" : "mandatory",
2840
+ "module" : "Q-BRIDGE-MIB"
2841
+ },
2842
+ "qBridgePortGroup" : {
2843
+ "nodetype" : "mandatory",
2844
+ "module" : "Q-BRIDGE-MIB"
2845
+ },
2846
+ "qBridgeFdbUnicastGroup" : {
2847
+ "nodetype" : "optional",
2848
+ "module" : "Q-BRIDGE-MIB",
2849
+ "description" :
2850
+ """This group is mandatory for bridges that implement
2851
+ 802.1Q transparent bridging.""",
2852
+ },
2853
+ "qBridgeFdbMulticastGroup" : {
2854
+ "nodetype" : "optional",
2855
+ "module" : "Q-BRIDGE-MIB",
2856
+ "description" :
2857
+ """This group is mandatory for bridges that implement
2858
+ 802.1Q transparent bridging.""",
2859
+ },
2860
+ "qBridgeServiceRequirementsGroup" : {
2861
+ "nodetype" : "optional",
2862
+ "module" : "Q-BRIDGE-MIB",
2863
+ "description" :
2864
+ """This group is mandatory for bridges that implement
2865
+ extended filtering services. All objects must be
2866
+ read-write if extended-filtering services are
2867
+ enabled.""",
2868
+ },
2869
+ "qBridgeFdbStaticGroup" : {
2870
+ "nodetype" : "optional",
2871
+ "module" : "Q-BRIDGE-MIB",
2872
+ "description" :
2873
+ """This group is optional.""",
2874
+ },
2875
+ "qBridgeVlanStatisticsGroup" : {
2876
+ "nodetype" : "optional",
2877
+ "module" : "Q-BRIDGE-MIB",
2878
+ "description" :
2879
+ """This group is optional as there may be significant
2880
+ implementation cost associated with its support.""",
2881
+ },
2882
+ "qBridgeVlanStatisticsOverflowGroup" : {
2883
+ "nodetype" : "optional",
2884
+ "module" : "Q-BRIDGE-MIB",
2885
+ "description" :
2886
+ """This group is optional as there may be significant
2887
+ implementation cost associated with its support. It is most
2888
+ relevant for high-capacity interfaces where the SNMP agent
2889
+ supports only SNMPv1.""",
2890
+ },
2891
+ "qBridgeVlanHCStatisticsGroup" : {
2892
+ "nodetype" : "optional",
2893
+ "module" : "Q-BRIDGE-MIB",
2894
+ "description" :
2895
+ """This group is optional as there may be significant
2896
+ implementation cost associated with its support. It is most
2897
+ relevant for high-capacity interfaces.""",
2898
+ },
2899
+ "qBridgeLearningConstraintsGroup" : {
2900
+ "nodetype" : "optional",
2901
+ "module" : "Q-BRIDGE-MIB",
2902
+ "description" :
2903
+ """This group is mandatory for devices implementing
2904
+ both Independent VLAN Learning (IVL) and Shared
2905
+ VLAN Learning (SVL) modes of operation of the
2906
+ filtering database, as defined by IEEE 802.1Q.""",
2907
+ },
2908
+ "qBridgeLearningConstraintDefaultGroup" : {
2909
+ "nodetype" : "optional",
2910
+ "module" : "Q-BRIDGE-MIB",
2911
+ "description" :
2912
+ """This group is mandatory for devices implementing
2913
+ both Independent VLAN Learning (IVL) and Shared
2914
+ VLAN Learning (SVL) modes of operation of the
2915
+ filtering database, as defined by IEEE 802.1Q.""",
2916
+ },
2917
+ }, # requires
2918
+ "refinements" : {
2919
+ "dot1qPortAcceptableFrameTypes" : {
2920
+ "module" : "Q-BRIDGE-MIB",
2921
+ "access" : "readonly",
2922
+ "description" :
2923
+ """Write access is not required as this is an optional
2924
+ capability in IEEE 802.1Q.""",
2925
+ },
2926
+ "dot1qPortIngressFiltering" : {
2927
+ "module" : "Q-BRIDGE-MIB",
2928
+ "access" : "readonly",
2929
+ "description" :
2930
+ """Write access is not required as this is an optional
2931
+ capability in IEEE 802.1Q.""",
2932
+ },
2933
+ "dot1qConstraintSetDefault" : {
2934
+ "module" : "Q-BRIDGE-MIB",
2935
+ "access" : "readonly",
2936
+ "description" :
2937
+ """Write access is not required as this is an optional
2938
+ capability in IEEE 802.1Q.""",
2939
+ },
2940
+ "dot1qConstraintTypeDefault" : {
2941
+ "module" : "Q-BRIDGE-MIB",
2942
+ "access" : "readonly",
2943
+ "description" :
2944
+ """Write access is not required as this is an optional
2945
+ capability in IEEE 802.1Q.""",
2946
+ },
2947
+ }, # refinements
2948
+
2949
+ }, # compliance
2950
+ "qBridgeCompliance2" : {
2951
+ "nodetype" : "compliance",
2952
+ "moduleName" : "Q-BRIDGE-MIB",
2953
+ "oid" : "1.3.6.1.2.1.17.7.2.2.2",
2954
+ "status" : "current",
2955
+ "description" :
2956
+ """The compliance statement for device support of Virtual
2957
+ LAN Bridge services.
2958
+
2959
+ This document clarifies the persistence requirements for
2960
+ the read-write objects in this MIB module. All
2961
+ implementations claiming compliance to qBridgeCompliance2
2962
+ MUST retain the values of those read-write objects that
2963
+ specify this requirement.""",
2964
+ "requires" : {
2965
+ "qBridgeBaseGroup" : {
2966
+ "nodetype" : "mandatory",
2967
+ "module" : "Q-BRIDGE-MIB"
2968
+ },
2969
+ "qBridgeVlanGroup" : {
2970
+ "nodetype" : "mandatory",
2971
+ "module" : "Q-BRIDGE-MIB"
2972
+ },
2973
+ "qBridgeVlanStaticGroup" : {
2974
+ "nodetype" : "mandatory",
2975
+ "module" : "Q-BRIDGE-MIB"
2976
+ },
2977
+ "qBridgePortGroup2" : {
2978
+ "nodetype" : "mandatory",
2979
+ "module" : "Q-BRIDGE-MIB"
2980
+ },
2981
+ "qBridgeFdbUnicastGroup" : {
2982
+ "nodetype" : "optional",
2983
+ "module" : "Q-BRIDGE-MIB",
2984
+ "description" :
2985
+ """This group is mandatory for bridges that implement
2986
+ 802.1Q transparent bridging.""",
2987
+ },
2988
+ "qBridgeFdbMulticastGroup" : {
2989
+ "nodetype" : "optional",
2990
+ "module" : "Q-BRIDGE-MIB",
2991
+ "description" :
2992
+ """This group is mandatory for bridges that implement
2993
+ 802.1Q transparent bridging.""",
2994
+ },
2995
+ "qBridgeServiceRequirementsGroup" : {
2996
+ "nodetype" : "optional",
2997
+ "module" : "Q-BRIDGE-MIB",
2998
+ "description" :
2999
+ """This group is mandatory for bridges that implement
3000
+ extended filtering services. All objects must be
3001
+ read-write if extended-filtering services are
3002
+ enabled.""",
3003
+ },
3004
+ "qBridgeFdbStaticGroup" : {
3005
+ "nodetype" : "optional",
3006
+ "module" : "Q-BRIDGE-MIB",
3007
+ "description" :
3008
+ """This group is optional.""",
3009
+ },
3010
+ "qBridgeVlanStatisticsGroup" : {
3011
+ "nodetype" : "optional",
3012
+ "module" : "Q-BRIDGE-MIB",
3013
+ "description" :
3014
+ """This group is optional as there may be significant
3015
+ implementation cost associated with its support.""",
3016
+ },
3017
+ "qBridgeVlanStatisticsOverflowGroup" : {
3018
+ "nodetype" : "optional",
3019
+ "module" : "Q-BRIDGE-MIB",
3020
+ "description" :
3021
+ """This group is optional as there may be significant
3022
+ implementation cost associated with its support. It is most
3023
+ relevant for high-capacity interfaces where the SNMP agent
3024
+ supports only SNMPv1.""",
3025
+ },
3026
+ "qBridgeVlanHCStatisticsGroup" : {
3027
+ "nodetype" : "optional",
3028
+ "module" : "Q-BRIDGE-MIB",
3029
+ "description" :
3030
+ """This group is optional as there may be significant
3031
+ implementation cost associated with its support. It is most
3032
+ relevant for high-capacity interfaces.""",
3033
+ },
3034
+ "qBridgeLearningConstraintsGroup" : {
3035
+ "nodetype" : "optional",
3036
+ "module" : "Q-BRIDGE-MIB",
3037
+ "description" :
3038
+ """This group is mandatory for devices implementing
3039
+ both Independent VLAN Learning (IVL) and Shared
3040
+ VLAN Learning (SVL) modes of operation of the
3041
+ filtering database, as defined by IEEE 802.1Q.""",
3042
+ },
3043
+ "qBridgeLearningConstraintDefaultGroup" : {
3044
+ "nodetype" : "optional",
3045
+ "module" : "Q-BRIDGE-MIB",
3046
+ "description" :
3047
+ """This group is mandatory for devices implementing
3048
+ both Independent VLAN Learning (IVL) and Shared
3049
+ VLAN Learning (SVL) modes of operation of the
3050
+ filtering database, as defined by IEEE 802.1Q.""",
3051
+ },
3052
+ "qBridgeClassificationDeviceGroup" : {
3053
+ "nodetype" : "optional",
3054
+ "module" : "Q-BRIDGE-MIB",
3055
+ "description" :
3056
+ """This group is mandatory ONLY for devices implementing
3057
+ VLAN Classification as specified in IEEE 802.1v.""",
3058
+ },
3059
+ "qBridgeClassificationPortGroup" : {
3060
+ "nodetype" : "optional",
3061
+ "module" : "Q-BRIDGE-MIB",
3062
+ "description" :
3063
+ """This group is mandatory ONLY for devices implementing
3064
+ VLAN Classification as specified in IEEE 802.1v.""",
3065
+ },
3066
+ }, # requires
3067
+ "refinements" : {
3068
+ "dot1qPortAcceptableFrameTypes" : {
3069
+ "module" : "Q-BRIDGE-MIB",
3070
+ "access" : "readonly",
3071
+ "description" :
3072
+ """Write access is not required as this is an optional
3073
+ capability in IEEE 802.1Q.""",
3074
+ },
3075
+ "dot1qPortIngressFiltering" : {
3076
+ "module" : "Q-BRIDGE-MIB",
3077
+ "access" : "readonly",
3078
+ "description" :
3079
+ """Write access is not required as this is an optional
3080
+ capability in IEEE 802.1Q.""",
3081
+ },
3082
+ "dot1qConstraintSetDefault" : {
3083
+ "module" : "Q-BRIDGE-MIB",
3084
+ "access" : "readonly",
3085
+ "description" :
3086
+ """Write access is not required as this is an optional
3087
+ capability in IEEE 802.1Q.""",
3088
+ },
3089
+ "dot1qConstraintTypeDefault" : {
3090
+ "module" : "Q-BRIDGE-MIB",
3091
+ "access" : "readonly",
3092
+ "description" :
3093
+ """Write access is not required as this is an optional
3094
+ capability in IEEE 802.1Q.""",
3095
+ },
3096
+ "dot1vProtocolGroupId" : {
3097
+ "module" : "Q-BRIDGE-MIB",
3098
+ "access" : "readonly",
3099
+ "description" :
3100
+ """Write access is not required as this is an optional
3101
+ capability in IEEE 802.1v.""",
3102
+ },
3103
+ "dot1vProtocolGroupRowStatus" : {
3104
+ "module" : "Q-BRIDGE-MIB",
3105
+ "access" : "readonly",
3106
+ "description" :
3107
+ """Write access is not required as this is an optional
3108
+ capability in IEEE 802.1v.""",
3109
+ },
3110
+ }, # refinements
3111
+
3112
+ }, # compliance
3113
+ }, # compliances
3114
+
3115
+ }