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,1758 @@
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 SMON-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/SMON-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "SMON-MIB",
11
+
12
+ "SMON-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF RMON MIB Working Group""",
17
+ "contact" :
18
+ """IETF RMONMIB WG Mailing list: rmonmib@cisco.com
19
+
20
+ Rich Waterman
21
+ Allot Networks Inc.
22
+ Tel: +1-408-559-0253
23
+ Email: rich@allot.com
24
+
25
+ Bill Lahaye
26
+ Xylan Corp.
27
+ Tel: +1-800-995-2612
28
+ Email: lahaye@ctron.com
29
+
30
+ Dan Romascanu
31
+ Lucent Technologies
32
+ Tel: +972-3-645-8414
33
+ Email: dromasca@lucent.com
34
+
35
+ Steven Waldbusser
36
+ International Network Services (INS)
37
+ Tel: +1-650-318-1251
38
+ Email: waldbusser@ins.com""",
39
+ "description" :
40
+ """The MIB module for managing remote monitoring device
41
+ implementations for Switched Networks""",
42
+ "revisions" : (
43
+ {
44
+ "date" : "1998-12-16 00:00",
45
+ "description" :
46
+ """Initial Version, published as RFC 2613.""",
47
+ },
48
+ ),
49
+ "identity node" : "switchRMON",
50
+ },
51
+
52
+ "imports" : (
53
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
54
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
55
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
56
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
57
+ {"module" : "SNMPv2-SMI", "name" : "Counter64"},
58
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
59
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
60
+ {"module" : "RMON-MIB", "name" : "rmon"},
61
+ {"module" : "RMON-MIB", "name" : "OwnerString"},
62
+ {"module" : "RMON2-MIB", "name" : "LastCreateTime"},
63
+ {"module" : "RMON2-MIB", "name" : "DataSource"},
64
+ {"module" : "RMON2-MIB", "name" : "rmonConformance"},
65
+ {"module" : "RMON2-MIB", "name" : "probeConfig"},
66
+ {"module" : "IF-MIB", "name" : "InterfaceIndex"},
67
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
68
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
69
+ ),
70
+
71
+ "typedefs" : {
72
+ "SmonDataSource" : {
73
+ "basetype" : "ObjectIdentifier",
74
+ "status" : "current",
75
+ "description" :
76
+ """Identifies the source of the data that the associated function
77
+ is configured to analyze. This Textual Convention
78
+ extends the DataSource Textual Convention defined by RMON 2
79
+ to the following data source types:
80
+
81
+ - ifIndex.<I>
82
+ DataSources of this traditional form are called 'port-based',
83
+ but only if ifType.<I> is not equal to 'propVirtual(53)'.
84
+
85
+ - smonVlanDataSource.<V>
86
+ A dataSource of this form refers to a 'Packet-based VLAN'
87
+ and is called a 'VLAN-based' dataSource. <V> is the VLAN
88
+ ID as defined by the IEEE 802.1Q standard [19]. The
89
+ value is between 1 and 4094 inclusive, and it represents
90
+ an 802.1Q VLAN-ID with global scope within a given
91
+ bridged domain, as defined by [19].
92
+
93
+ - entPhysicalEntry.<N>
94
+ A dataSource of this form refers to a physical entity within
95
+ the agent (e.g. entPhysicalClass = backplane(4)) and is called
96
+ an 'entity-based' dataSource.""",
97
+ },
98
+ }, # typedefs
99
+
100
+ "nodes" : {
101
+ "smonCapabilities" : {
102
+ "nodetype" : "scalar",
103
+ "moduleName" : "SMON-MIB",
104
+ "oid" : "1.3.6.1.2.1.16.19.15",
105
+ "status" : "current",
106
+ "syntax" : {
107
+ "type" : {
108
+ "basetype" : "Bits",
109
+ "smonVlanStats" : {
110
+ "nodetype" : "namednumber",
111
+ "number" : "0"
112
+ },
113
+ "smonPrioStats" : {
114
+ "nodetype" : "namednumber",
115
+ "number" : "1"
116
+ },
117
+ "dataSource" : {
118
+ "nodetype" : "namednumber",
119
+ "number" : "2"
120
+ },
121
+ "smonUnusedBit" : {
122
+ "nodetype" : "namednumber",
123
+ "number" : "3"
124
+ },
125
+ "portCopy" : {
126
+ "nodetype" : "namednumber",
127
+ "number" : "4"
128
+ },
129
+ },
130
+ },
131
+ "access" : "readonly",
132
+ "description" :
133
+ """An indication of the SMON MIB groups supported
134
+ by this agent.""",
135
+ }, # scalar
136
+ "smonMIBCompliances" : {
137
+ "nodetype" : "node",
138
+ "moduleName" : "SMON-MIB",
139
+ "oid" : "1.3.6.1.2.1.16.20.3",
140
+ }, # node
141
+ "smonMIBGroups" : {
142
+ "nodetype" : "node",
143
+ "moduleName" : "SMON-MIB",
144
+ "oid" : "1.3.6.1.2.1.16.20.4",
145
+ }, # node
146
+ "switchRMON" : {
147
+ "nodetype" : "node",
148
+ "moduleName" : "SMON-MIB",
149
+ "oid" : "1.3.6.1.2.1.16.22",
150
+ "status" : "current",
151
+ }, # node
152
+ "smonMIBObjects" : {
153
+ "nodetype" : "node",
154
+ "moduleName" : "SMON-MIB",
155
+ "oid" : "1.3.6.1.2.1.16.22.1",
156
+ }, # node
157
+ "dataSourceCaps" : {
158
+ "nodetype" : "node",
159
+ "moduleName" : "SMON-MIB",
160
+ "oid" : "1.3.6.1.2.1.16.22.1.1",
161
+ }, # node
162
+ "dataSourceCapsTable" : {
163
+ "nodetype" : "table",
164
+ "moduleName" : "SMON-MIB",
165
+ "oid" : "1.3.6.1.2.1.16.22.1.1.1",
166
+ "status" : "current",
167
+ "description" :
168
+ """This table describes RMON data sources and port copy
169
+ capabilities. An NMS MAY use this table to discover the
170
+ identity and attributes of the data sources on a given agent
171
+ implementation. Similar to the probeCapabilities object,
172
+ actual row-creation operations will succeed or fail based on
173
+ the resources available and parameter values used in each
174
+ row-creation operation.
175
+
176
+ Upon restart of the RMON agent, the dataSourceTable, ifTable,
177
+ and perhaps entPhysicalTable are initialized for the available
178
+ dataSources.
179
+
180
+ For each dataSourceCapsEntry representing a VLAN or
181
+ entPhysicalEntry the agent MUST create an associated ifEntry
182
+ with a ifType value of 'propVirtual(53)'. This ifEntry will be
183
+ used as the actual value in RMON control table dataSource
184
+ objects. The assigned ifIndex value is copied into the
185
+ associated dataSourceCapsIfIndex object.
186
+
187
+ It is understood that dataSources representing VLANs may not
188
+ always be instantiated immediately upon restart, but rather as
189
+ VLAN usage is detected by the agent. The agent SHOULD attempt
190
+ to create dataSource and interface entries for all dataSources
191
+ as soon as possible.""",
192
+ }, # table
193
+ "dataSourceCapsEntry" : {
194
+ "nodetype" : "row",
195
+ "moduleName" : "SMON-MIB",
196
+ "oid" : "1.3.6.1.2.1.16.22.1.1.1.1",
197
+ "status" : "current",
198
+ "implied" : "true",
199
+ "linkage" : [
200
+ "dataSourceCapsObject",
201
+ ],
202
+ "description" :
203
+ """Entries per data source containing descriptions of data
204
+ source and port copy capabilities. This table is populated by
205
+ the SMON agent with one entry for each supported data
206
+ source.""",
207
+ }, # row
208
+ "dataSourceCapsObject" : {
209
+ "nodetype" : "column",
210
+ "moduleName" : "SMON-MIB",
211
+ "oid" : "1.3.6.1.2.1.16.22.1.1.1.1.1",
212
+ "status" : "current",
213
+ "syntax" : {
214
+ "type" : { "module" :"SMON-MIB", "name" : "SmonDataSource"},
215
+ },
216
+ "access" : "noaccess",
217
+ "description" :
218
+ """Defines an object that can be a SMON data source or a
219
+ source or a destination for a port copy operation.""",
220
+ }, # column
221
+ "dataSourceRmonCaps" : {
222
+ "nodetype" : "column",
223
+ "moduleName" : "SMON-MIB",
224
+ "oid" : "1.3.6.1.2.1.16.22.1.1.1.1.2",
225
+ "status" : "current",
226
+ "syntax" : {
227
+ "type" : {
228
+ "basetype" : "Bits",
229
+ "countErrFrames" : {
230
+ "nodetype" : "namednumber",
231
+ "number" : "0"
232
+ },
233
+ "countAllGoodFrames" : {
234
+ "nodetype" : "namednumber",
235
+ "number" : "1"
236
+ },
237
+ "countAnyRmonTables" : {
238
+ "nodetype" : "namednumber",
239
+ "number" : "2"
240
+ },
241
+ "babyGiantsCountAsGood" : {
242
+ "nodetype" : "namednumber",
243
+ "number" : "3"
244
+ },
245
+ },
246
+ },
247
+ "access" : "readonly",
248
+ "description" :
249
+ """ General attributes of the specified dataSource. Note that
250
+ these are static attributes, which SHOULD NOT be adjusted
251
+ because of current resources or configuration.
252
+
253
+ - countErrFrames(0)
254
+ The agent sets this bit for the dataSource if errored frames
255
+ received on this dataSource can actually be monitored by the
256
+ agent The agent clears this bit if any errored frames are
257
+ not visible to the RMON data collector.
258
+
259
+ - countAllGoodFrames(1)
260
+ The agent sets this bit for the dataSource if all good
261
+ frames received on this dataSource can actually be monitored
262
+ by the agent. The agent clears this bit if any good frames
263
+ are not visible for RMON collection, e.g., the dataSource is
264
+ a non-promiscuous interface or an internal switch interface
265
+ which may not receive frames which were switched in hardware
266
+ or dropped by the bridge forwarding function.
267
+
268
+ - countAnyRmonTables(2)
269
+ The agent sets this bit if this dataSource can actually be
270
+ used in any of the implemented RMON tables, resources
271
+ notwithstanding. The agent clears this bit if this
272
+ dataSourceCapsEntry is present simply to identify a
273
+ dataSource that may only be used as portCopySource and/or a
274
+ portCopyDest, but not the source of an actual RMON data
275
+ collection.
276
+
277
+ - babyGiantsCountAsGood(3)
278
+ The agent sets this bit if it can distinguish, for counting
279
+ purposes, between true giant frames and frames that exceed
280
+ Ethernet maximum frame size 1518 due to VLAN tagging ('baby
281
+ giants'). Specifically, this BIT means that frames up to
282
+ 1522 octets are counted as good.
283
+
284
+ Agents not capable of detecting 'baby giants' will clear
285
+ this bit and will view all frames less than or equal to 1518
286
+ octets as 'good frames' and all frames larger than 1518
287
+ octets as 'bad frames' for the purpose of counting in the
288
+ smonVlanIdStats and smonPrioStats tables.
289
+
290
+ Agents capable of detecting 'baby giants' SHALL consider
291
+ them as 'good frames' for the purpose of counting in the
292
+ smonVlanIdStats and smonPrioStats tables.""",
293
+ }, # column
294
+ "dataSourceCopyCaps" : {
295
+ "nodetype" : "column",
296
+ "moduleName" : "SMON-MIB",
297
+ "oid" : "1.3.6.1.2.1.16.22.1.1.1.1.3",
298
+ "status" : "current",
299
+ "syntax" : {
300
+ "type" : {
301
+ "basetype" : "Bits",
302
+ "copySourcePort" : {
303
+ "nodetype" : "namednumber",
304
+ "number" : "0"
305
+ },
306
+ "copyDestPort" : {
307
+ "nodetype" : "namednumber",
308
+ "number" : "1"
309
+ },
310
+ "copySrcTxTraffic" : {
311
+ "nodetype" : "namednumber",
312
+ "number" : "2"
313
+ },
314
+ "copySrcRxTraffic" : {
315
+ "nodetype" : "namednumber",
316
+ "number" : "3"
317
+ },
318
+ "countDestDropEvents" : {
319
+ "nodetype" : "namednumber",
320
+ "number" : "4"
321
+ },
322
+ "copyErrFrames" : {
323
+ "nodetype" : "namednumber",
324
+ "number" : "5"
325
+ },
326
+ "copyUnalteredFrames" : {
327
+ "nodetype" : "namednumber",
328
+ "number" : "6"
329
+ },
330
+ "copyAllGoodFrames" : {
331
+ "nodetype" : "namednumber",
332
+ "number" : "7"
333
+ },
334
+ },
335
+ },
336
+ "access" : "readonly",
337
+ "description" :
338
+ """PortCopy function capabilities of the specified dataSource.
339
+ Note that these are static capabilities, which SHOULD NOT be
340
+ adjusted because of current resources or configuration.
341
+
342
+ - copySourcePort(0)
343
+ The agent sets this bit if this dataSource is capable of
344
+ acting as a source of a portCopy operation. The agent clears
345
+ this bit otherwise.
346
+
347
+ - copyDestPort(1)
348
+ The agent sets this bit if this dataSource is capable of
349
+ acting as a destination of a portCopy operation. The agent
350
+ clears this bit otherwise.
351
+
352
+ - copySrcTxTraffic(2)
353
+ If the copySourcePort bit is set:
354
+ The agent sets this bit if this dataSource is capable of
355
+ copying frames transmitted out this portCopy source. The
356
+ agent clears this bit otherwise. This function is needed
357
+ to support full-duplex ports.
358
+ Else:
359
+ this bit SHOULD be cleared.
360
+
361
+ - copySrcRxTraffic(3)
362
+ If the copySourcePort bit is set:
363
+ The agent sets this bit if this dataSource is capable of
364
+ copying frames received on this portCopy source. The agent
365
+ clears this bit otherwise. This function is needed to
366
+ support full-duplex ports.
367
+ Else:
368
+ this bit SHOULD be cleared.
369
+
370
+ - countDestDropEvents(4)
371
+ If the copyDestPort bit is set:
372
+ The agent sets this bit if it is capable of incrementing
373
+ portCopyDestDropEvents, when this dataSource is the
374
+ target of a portCopy operation and a frame destined to
375
+ this dataSource is dropped (for RMON counting purposes).
376
+ Else:
377
+ this BIT SHOULD be cleared.
378
+
379
+ - copyErrFrames(5)
380
+ If the copySourcePort bit is set:
381
+ The agent sets this bit if it is capable of copying all
382
+ errored frames from this portCopy source-port, for
383
+ errored frames received on this dataSource.
384
+ Else:
385
+ this BIT SHOULD be cleared.
386
+
387
+ - copyUnalteredFrames(6)
388
+ If the copySourcePort bit is set:
389
+ The agent sets the copyUnalteredFrames bit If it is
390
+ capable of copying all frames from this portCopy
391
+ source-port without alteration in any way;
392
+ Else:
393
+ this bit SHOULD be cleared.
394
+
395
+ - copyAllGoodFrames(7)
396
+ If the copySourcePort bit is set:
397
+ The agent sets this bit for the dataSource if all good
398
+ frames received on this dataSource are normally capable
399
+ of being copied by the agent. The agent clears this bit
400
+ if any good frames are not visible for the RMON portCopy
401
+ operation, e.g., the dataSource is a non-promiscuous
402
+ interface or an internal switch interface which may not
403
+ receive frames which were switched in hardware or
404
+ dropped by the bridge forwarding function.
405
+ Else:
406
+ this bit SHOULD be cleared.""",
407
+ }, # column
408
+ "dataSourceCapsIfIndex" : {
409
+ "nodetype" : "column",
410
+ "moduleName" : "SMON-MIB",
411
+ "oid" : "1.3.6.1.2.1.16.22.1.1.1.1.4",
412
+ "status" : "current",
413
+ "syntax" : {
414
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
415
+ },
416
+ "access" : "readonly",
417
+ "description" :
418
+ """This object contains the ifIndex value of the ifEntry
419
+ associated with this smonDataSource. The agent MUST create
420
+ 'propVirtual' ifEntries for each dataSourceCapsEntry of type
421
+ VLAN or entPhysicalEntry.""",
422
+ }, # column
423
+ "smonStats" : {
424
+ "nodetype" : "node",
425
+ "moduleName" : "SMON-MIB",
426
+ "oid" : "1.3.6.1.2.1.16.22.1.2",
427
+ }, # node
428
+ "smonVlanStatsControlTable" : {
429
+ "nodetype" : "table",
430
+ "moduleName" : "SMON-MIB",
431
+ "oid" : "1.3.6.1.2.1.16.22.1.2.1",
432
+ "status" : "current",
433
+ "description" :
434
+ """Controls the setup of VLAN statistics tables.
435
+
436
+ The statistics collected represent a distribution based on
437
+ the IEEE 802.1Q VLAN-ID (VID), for each good frame attributed
438
+ to the data source for the collection.""",
439
+ }, # table
440
+ "smonVlanStatsControlEntry" : {
441
+ "nodetype" : "row",
442
+ "moduleName" : "SMON-MIB",
443
+ "oid" : "1.3.6.1.2.1.16.22.1.2.1.1",
444
+ "create" : "true",
445
+ "status" : "current",
446
+ "linkage" : [
447
+ "smonVlanStatsControlIndex",
448
+ ],
449
+ "description" :
450
+ """A conceptual row in the smonVlanStatsControlTable.""",
451
+ }, # row
452
+ "smonVlanStatsControlIndex" : {
453
+ "nodetype" : "column",
454
+ "moduleName" : "SMON-MIB",
455
+ "oid" : "1.3.6.1.2.1.16.22.1.2.1.1.1",
456
+ "status" : "current",
457
+ "syntax" : {
458
+ "type" : {
459
+ "basetype" : "Integer32",
460
+ "ranges" : [
461
+ {
462
+ "min" : "1",
463
+ "max" : "65535"
464
+ },
465
+ ],
466
+ "range" : {
467
+ "min" : "1",
468
+ "max" : "65535"
469
+ },
470
+ },
471
+ },
472
+ "access" : "noaccess",
473
+ "description" :
474
+ """A unique arbitrary index for this smonVlanStatsControlEntry.""",
475
+ }, # column
476
+ "smonVlanStatsControlDataSource" : {
477
+ "nodetype" : "column",
478
+ "moduleName" : "SMON-MIB",
479
+ "oid" : "1.3.6.1.2.1.16.22.1.2.1.1.2",
480
+ "status" : "current",
481
+ "syntax" : {
482
+ "type" : { "module" :"RMON2-MIB", "name" : "DataSource"},
483
+ },
484
+ "access" : "readwrite",
485
+ "description" :
486
+ """The source of data for this set of VLAN statistics.
487
+
488
+ This object MAY NOT be modified if the associated
489
+ smonVlanStatsControlStatus object is equal to active(1).""",
490
+ }, # column
491
+ "smonVlanStatsControlCreateTime" : {
492
+ "nodetype" : "column",
493
+ "moduleName" : "SMON-MIB",
494
+ "oid" : "1.3.6.1.2.1.16.22.1.2.1.1.3",
495
+ "status" : "current",
496
+ "syntax" : {
497
+ "type" : { "module" :"RMON2-MIB", "name" : "LastCreateTime"},
498
+ },
499
+ "access" : "readonly",
500
+ "description" :
501
+ """The value of sysUpTime when this control entry was last
502
+ activated. This object allows to a management station to
503
+ detect deletion and recreation cycles between polls.""",
504
+ }, # column
505
+ "smonVlanStatsControlOwner" : {
506
+ "nodetype" : "column",
507
+ "moduleName" : "SMON-MIB",
508
+ "oid" : "1.3.6.1.2.1.16.22.1.2.1.1.4",
509
+ "status" : "current",
510
+ "syntax" : {
511
+ "type" : { "module" :"RMON-MIB", "name" : "OwnerString"},
512
+ },
513
+ "access" : "readwrite",
514
+ "description" :
515
+ """Administratively assigned named of the owner of this entry.
516
+ It usually defines the entity that created this entry and is
517
+ therefore using the resources assigned to it, though there is
518
+ no enforcement mechanism, nor assurance that rows created are
519
+ ever used.""",
520
+ }, # column
521
+ "smonVlanStatsControlStatus" : {
522
+ "nodetype" : "column",
523
+ "moduleName" : "SMON-MIB",
524
+ "oid" : "1.3.6.1.2.1.16.22.1.2.1.1.5",
525
+ "status" : "current",
526
+ "syntax" : {
527
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
528
+ },
529
+ "access" : "readwrite",
530
+ "description" :
531
+ """The status of this row.
532
+ An entry MAY NOT exist in the active state unless all
533
+ objects in the entry have an appropriate value.
534
+
535
+ If this object is not equal to active(1), all associated
536
+ entries in the smonVlanIdStatsTable SHALL be deleted.""",
537
+ }, # column
538
+ "smonVlanIdStatsTable" : {
539
+ "nodetype" : "table",
540
+ "moduleName" : "SMON-MIB",
541
+ "oid" : "1.3.6.1.2.1.16.22.1.2.2",
542
+ "status" : "current",
543
+ "description" :
544
+ """Contains the VLAN statistics data.
545
+ The statistics collected represent a distribution based
546
+ on the IEEE 802.1Q VLAN-ID (VID), for each good frame
547
+ attributed to the data source for the collection.
548
+
549
+ This function applies the same rules for attributing frames
550
+ to VLAN-based collections. RMON VLAN statistics are collected
551
+ after the Ingress Rules defined in section 3.13 of the VLAN
552
+ Specification [20] are applied.
553
+
554
+ It is possible that entries in this table will be
555
+ garbage-collected, based on agent resources, and VLAN
556
+ configuration. Agents are encouraged to support all 4094
557
+ index values and not garbage collect this table.""",
558
+ }, # table
559
+ "smonVlanIdStatsEntry" : {
560
+ "nodetype" : "row",
561
+ "moduleName" : "SMON-MIB",
562
+ "oid" : "1.3.6.1.2.1.16.22.1.2.2.1",
563
+ "status" : "current",
564
+ "linkage" : [
565
+ "smonVlanStatsControlIndex",
566
+ "smonVlanIdStatsId",
567
+ ],
568
+ "description" :
569
+ """A conceptual row in smonVlanIdStatsTable.""",
570
+ }, # row
571
+ "smonVlanIdStatsId" : {
572
+ "nodetype" : "column",
573
+ "moduleName" : "SMON-MIB",
574
+ "oid" : "1.3.6.1.2.1.16.22.1.2.2.1.1",
575
+ "status" : "current",
576
+ "syntax" : {
577
+ "type" : {
578
+ "basetype" : "Integer32",
579
+ "ranges" : [
580
+ {
581
+ "min" : "1",
582
+ "max" : "4094"
583
+ },
584
+ ],
585
+ "range" : {
586
+ "min" : "1",
587
+ "max" : "4094"
588
+ },
589
+ },
590
+ },
591
+ "access" : "noaccess",
592
+ "description" :
593
+ """The unique identifier of the VLAN monitored for
594
+ this specific statistics collection.
595
+
596
+ Tagged packets match the VID for the range between 1 and 4094.
597
+ An external RMON probe MAY detect VID=0 on an Inter Switch
598
+ Link, in which case the packet belongs to a VLAN determined by
599
+ the PVID of the ingress port. The VLAN to which such a packet
600
+ belongs can be determined only by a RMON probe internal to the
601
+ switch.""",
602
+ "reference" :
603
+ """Draft Standard for Virtual Bridged Local Area Networks,
604
+ P802.1Q/D10, chapter 3.13""",
605
+ }, # column
606
+ "smonVlanIdStatsTotalPkts" : {
607
+ "nodetype" : "column",
608
+ "moduleName" : "SMON-MIB",
609
+ "oid" : "1.3.6.1.2.1.16.22.1.2.2.1.2",
610
+ "status" : "current",
611
+ "syntax" : {
612
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
613
+ },
614
+ "access" : "readonly",
615
+ "units" : "packets",
616
+ "description" :
617
+ """The total number of packets counted on this VLAN.""",
618
+ }, # column
619
+ "smonVlanIdStatsTotalOverflowPkts" : {
620
+ "nodetype" : "column",
621
+ "moduleName" : "SMON-MIB",
622
+ "oid" : "1.3.6.1.2.1.16.22.1.2.2.1.3",
623
+ "status" : "current",
624
+ "syntax" : {
625
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
626
+ },
627
+ "access" : "readonly",
628
+ "units" : "packets",
629
+ "description" :
630
+ """The number of times the associated smonVlanIdStatsTotalPkts
631
+ counter has overflowed.""",
632
+ }, # column
633
+ "smonVlanIdStatsTotalHCPkts" : {
634
+ "nodetype" : "column",
635
+ "moduleName" : "SMON-MIB",
636
+ "oid" : "1.3.6.1.2.1.16.22.1.2.2.1.4",
637
+ "status" : "current",
638
+ "syntax" : {
639
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
640
+ },
641
+ "access" : "readonly",
642
+ "units" : "packets",
643
+ "description" :
644
+ """The total number of packets counted on this VLAN.""",
645
+ }, # column
646
+ "smonVlanIdStatsTotalOctets" : {
647
+ "nodetype" : "column",
648
+ "moduleName" : "SMON-MIB",
649
+ "oid" : "1.3.6.1.2.1.16.22.1.2.2.1.5",
650
+ "status" : "current",
651
+ "syntax" : {
652
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
653
+ },
654
+ "access" : "readonly",
655
+ "units" : "octets",
656
+ "description" :
657
+ """The total number of octets counted on this VLAN.""",
658
+ }, # column
659
+ "smonVlanIdStatsTotalOverflowOctets" : {
660
+ "nodetype" : "column",
661
+ "moduleName" : "SMON-MIB",
662
+ "oid" : "1.3.6.1.2.1.16.22.1.2.2.1.6",
663
+ "status" : "current",
664
+ "syntax" : {
665
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
666
+ },
667
+ "access" : "readonly",
668
+ "units" : "octets",
669
+ "description" :
670
+ """The number of times the associated smonVlanIdStatsTotalOctets
671
+ counter has overflowed.""",
672
+ }, # column
673
+ "smonVlanIdStatsTotalHCOctets" : {
674
+ "nodetype" : "column",
675
+ "moduleName" : "SMON-MIB",
676
+ "oid" : "1.3.6.1.2.1.16.22.1.2.2.1.7",
677
+ "status" : "current",
678
+ "syntax" : {
679
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
680
+ },
681
+ "access" : "readonly",
682
+ "units" : "octets",
683
+ "description" :
684
+ """The total number of octets counted on this VLAN.""",
685
+ }, # column
686
+ "smonVlanIdStatsNUcastPkts" : {
687
+ "nodetype" : "column",
688
+ "moduleName" : "SMON-MIB",
689
+ "oid" : "1.3.6.1.2.1.16.22.1.2.2.1.8",
690
+ "status" : "current",
691
+ "syntax" : {
692
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
693
+ },
694
+ "access" : "readonly",
695
+ "units" : "packets",
696
+ "description" :
697
+ """The total number of non-unicast packets counted on this
698
+ VLAN.""",
699
+ }, # column
700
+ "smonVlanIdStatsNUcastOverflowPkts" : {
701
+ "nodetype" : "column",
702
+ "moduleName" : "SMON-MIB",
703
+ "oid" : "1.3.6.1.2.1.16.22.1.2.2.1.9",
704
+ "status" : "current",
705
+ "syntax" : {
706
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
707
+ },
708
+ "access" : "readonly",
709
+ "units" : "packets",
710
+ "description" :
711
+ """The number of times the associated smonVlanIdStatsNUcastPkts
712
+ counter has overflowed.""",
713
+ }, # column
714
+ "smonVlanIdStatsNUcastHCPkts" : {
715
+ "nodetype" : "column",
716
+ "moduleName" : "SMON-MIB",
717
+ "oid" : "1.3.6.1.2.1.16.22.1.2.2.1.10",
718
+ "status" : "current",
719
+ "syntax" : {
720
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
721
+ },
722
+ "access" : "readonly",
723
+ "units" : "packets",
724
+ "description" :
725
+ """The total number of non-unicast packets counted on
726
+ this VLAN.""",
727
+ }, # column
728
+ "smonVlanIdStatsNUcastOctets" : {
729
+ "nodetype" : "column",
730
+ "moduleName" : "SMON-MIB",
731
+ "oid" : "1.3.6.1.2.1.16.22.1.2.2.1.11",
732
+ "status" : "current",
733
+ "syntax" : {
734
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
735
+ },
736
+ "access" : "readonly",
737
+ "units" : "octets",
738
+ "description" :
739
+ """The total number of non-unicast octets counted on
740
+ this VLAN.""",
741
+ }, # column
742
+ "smonVlanIdStatsNUcastOverflowOctets" : {
743
+ "nodetype" : "column",
744
+ "moduleName" : "SMON-MIB",
745
+ "oid" : "1.3.6.1.2.1.16.22.1.2.2.1.12",
746
+ "status" : "current",
747
+ "syntax" : {
748
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
749
+ },
750
+ "access" : "readonly",
751
+ "units" : "octets",
752
+ "description" :
753
+ """The number of times the associated
754
+ smonVlanIdStatsNUcastOctets counter has overflowed.""",
755
+ }, # column
756
+ "smonVlanIdStatsNUcastHCOctets" : {
757
+ "nodetype" : "column",
758
+ "moduleName" : "SMON-MIB",
759
+ "oid" : "1.3.6.1.2.1.16.22.1.2.2.1.13",
760
+ "status" : "current",
761
+ "syntax" : {
762
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
763
+ },
764
+ "access" : "readonly",
765
+ "units" : "octets",
766
+ "description" :
767
+ """The total number of Non-unicast octets counted on
768
+ this VLAN.""",
769
+ }, # column
770
+ "smonVlanIdStatsCreateTime" : {
771
+ "nodetype" : "column",
772
+ "moduleName" : "SMON-MIB",
773
+ "oid" : "1.3.6.1.2.1.16.22.1.2.2.1.14",
774
+ "status" : "current",
775
+ "syntax" : {
776
+ "type" : { "module" :"RMON2-MIB", "name" : "LastCreateTime"},
777
+ },
778
+ "access" : "readonly",
779
+ "description" :
780
+ """The value of sysUpTime when this entry was last
781
+ activated. This object allows to a management station to
782
+ detect deletion and recreation cycles between polls.""",
783
+ }, # column
784
+ "smonPrioStatsControlTable" : {
785
+ "nodetype" : "table",
786
+ "moduleName" : "SMON-MIB",
787
+ "oid" : "1.3.6.1.2.1.16.22.1.2.3",
788
+ "status" : "current",
789
+ "description" :
790
+ """Controls the setup of priority statistics tables.
791
+
792
+ The smonPrioStatsControlTable allows configuration of
793
+ collections based on the value of the 3-bit user priority
794
+ field encoded in the Tag Control Information (TCI) field
795
+ according to [19],[20].
796
+
797
+ Note that this table merely reports priority as encoded in
798
+ the VLAN headers, not the priority (if any) given to the
799
+ frame for the actual switching purposes.""",
800
+ }, # table
801
+ "smonPrioStatsControlEntry" : {
802
+ "nodetype" : "row",
803
+ "moduleName" : "SMON-MIB",
804
+ "oid" : "1.3.6.1.2.1.16.22.1.2.3.1",
805
+ "create" : "true",
806
+ "status" : "current",
807
+ "linkage" : [
808
+ "smonPrioStatsControlIndex",
809
+ ],
810
+ "description" :
811
+ """A conceptual row in the smonPrioStatsControlTable.""",
812
+ }, # row
813
+ "smonPrioStatsControlIndex" : {
814
+ "nodetype" : "column",
815
+ "moduleName" : "SMON-MIB",
816
+ "oid" : "1.3.6.1.2.1.16.22.1.2.3.1.1",
817
+ "status" : "current",
818
+ "syntax" : {
819
+ "type" : {
820
+ "basetype" : "Integer32",
821
+ "ranges" : [
822
+ {
823
+ "min" : "1",
824
+ "max" : "65535"
825
+ },
826
+ ],
827
+ "range" : {
828
+ "min" : "1",
829
+ "max" : "65535"
830
+ },
831
+ },
832
+ },
833
+ "access" : "noaccess",
834
+ "description" :
835
+ """A unique arbitrary index for this smonPrioStatsControlEntry.""",
836
+ }, # column
837
+ "smonPrioStatsControlDataSource" : {
838
+ "nodetype" : "column",
839
+ "moduleName" : "SMON-MIB",
840
+ "oid" : "1.3.6.1.2.1.16.22.1.2.3.1.2",
841
+ "status" : "current",
842
+ "syntax" : {
843
+ "type" : { "module" :"RMON2-MIB", "name" : "DataSource"},
844
+ },
845
+ "access" : "readwrite",
846
+ "description" :
847
+ """The source of data for this set of VLAN statistics.
848
+
849
+ This object MAY NOT be modified if the associated
850
+ smonPrioStatsControlStatus object is equal to active(1).""",
851
+ }, # column
852
+ "smonPrioStatsControlCreateTime" : {
853
+ "nodetype" : "column",
854
+ "moduleName" : "SMON-MIB",
855
+ "oid" : "1.3.6.1.2.1.16.22.1.2.3.1.3",
856
+ "status" : "current",
857
+ "syntax" : {
858
+ "type" : { "module" :"RMON2-MIB", "name" : "LastCreateTime"},
859
+ },
860
+ "access" : "readonly",
861
+ "description" :
862
+ """The value of sysUpTime when this entry was created.
863
+ This object allows to a management station to
864
+ detect deletion and recreation cycles between polls.""",
865
+ }, # column
866
+ "smonPrioStatsControlOwner" : {
867
+ "nodetype" : "column",
868
+ "moduleName" : "SMON-MIB",
869
+ "oid" : "1.3.6.1.2.1.16.22.1.2.3.1.4",
870
+ "status" : "current",
871
+ "syntax" : {
872
+ "type" : { "module" :"RMON-MIB", "name" : "OwnerString"},
873
+ },
874
+ "access" : "readwrite",
875
+ "description" :
876
+ """Administratively assigned named of the owner of this entry.
877
+ It usually defines the entity that created this entry and is
878
+ therefore using the resources assigned to it, though there is
879
+ no enforcement mechanism, nor assurance that rows created are
880
+ ever used.""",
881
+ }, # column
882
+ "smonPrioStatsControlStatus" : {
883
+ "nodetype" : "column",
884
+ "moduleName" : "SMON-MIB",
885
+ "oid" : "1.3.6.1.2.1.16.22.1.2.3.1.5",
886
+ "status" : "current",
887
+ "syntax" : {
888
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
889
+ },
890
+ "access" : "readwrite",
891
+ "description" :
892
+ """The status of this row.
893
+ An entry MAY NOT exist in the active state unless all
894
+ objects in the entry have an appropriate value.
895
+
896
+ If this object is not equal to active(1), all associated
897
+ entries in the smonPrioStatsTable SHALL be deleted.""",
898
+ }, # column
899
+ "smonPrioStatsTable" : {
900
+ "nodetype" : "table",
901
+ "moduleName" : "SMON-MIB",
902
+ "oid" : "1.3.6.1.2.1.16.22.1.2.4",
903
+ "status" : "current",
904
+ "description" :
905
+ """Contains the priority statistics. The collections are based
906
+ on the value of the 3-bit user priority field encoded in the
907
+ Tag Control Information (TCI) field according to [19], [20].
908
+ Note that this table merely reports priority as encoded in
909
+ the VLAN headers, not the priority (if any) given to the
910
+ frame for the actual switching purposes.
911
+
912
+ No garbage collection is designed for this table, as there
913
+ always are at most eight rows per statistical set, and the
914
+ low memory requirements do not justify the implementation of
915
+ such a mechanism.""",
916
+ }, # table
917
+ "smonPrioStatsEntry" : {
918
+ "nodetype" : "row",
919
+ "moduleName" : "SMON-MIB",
920
+ "oid" : "1.3.6.1.2.1.16.22.1.2.4.1",
921
+ "status" : "current",
922
+ "linkage" : [
923
+ "smonPrioStatsControlIndex",
924
+ "smonPrioStatsId",
925
+ ],
926
+ "description" :
927
+ """A conceptual row in smonPrioStatsTable.""",
928
+ }, # row
929
+ "smonPrioStatsId" : {
930
+ "nodetype" : "column",
931
+ "moduleName" : "SMON-MIB",
932
+ "oid" : "1.3.6.1.2.1.16.22.1.2.4.1.1",
933
+ "status" : "current",
934
+ "syntax" : {
935
+ "type" : {
936
+ "basetype" : "Integer32",
937
+ "ranges" : [
938
+ {
939
+ "min" : "0",
940
+ "max" : "7"
941
+ },
942
+ ],
943
+ "range" : {
944
+ "min" : "0",
945
+ "max" : "7"
946
+ },
947
+ },
948
+ },
949
+ "access" : "noaccess",
950
+ "description" :
951
+ """The unique identifier of the priority level monitored for
952
+ this specific statistics collection.""",
953
+ "reference" :
954
+ """ Draft Standard for Virtual Bridged Local Area Networks,
955
+ P802.1Q/D10, chapter 4.3.2.1""",
956
+ }, # column
957
+ "smonPrioStatsPkts" : {
958
+ "nodetype" : "column",
959
+ "moduleName" : "SMON-MIB",
960
+ "oid" : "1.3.6.1.2.1.16.22.1.2.4.1.2",
961
+ "status" : "current",
962
+ "syntax" : {
963
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
964
+ },
965
+ "access" : "readonly",
966
+ "units" : "packets",
967
+ "description" :
968
+ """The total number of packets counted on
969
+ this priority level.""",
970
+ }, # column
971
+ "smonPrioStatsOverflowPkts" : {
972
+ "nodetype" : "column",
973
+ "moduleName" : "SMON-MIB",
974
+ "oid" : "1.3.6.1.2.1.16.22.1.2.4.1.3",
975
+ "status" : "current",
976
+ "syntax" : {
977
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
978
+ },
979
+ "access" : "readonly",
980
+ "units" : "packets",
981
+ "description" :
982
+ """The number of times the associated smonPrioStatsPkts
983
+ counter has overflowed.""",
984
+ }, # column
985
+ "smonPrioStatsHCPkts" : {
986
+ "nodetype" : "column",
987
+ "moduleName" : "SMON-MIB",
988
+ "oid" : "1.3.6.1.2.1.16.22.1.2.4.1.4",
989
+ "status" : "current",
990
+ "syntax" : {
991
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
992
+ },
993
+ "access" : "readonly",
994
+ "units" : "packets",
995
+ "description" :
996
+ """The total number of packets counted on
997
+ this priority level.""",
998
+ }, # column
999
+ "smonPrioStatsOctets" : {
1000
+ "nodetype" : "column",
1001
+ "moduleName" : "SMON-MIB",
1002
+ "oid" : "1.3.6.1.2.1.16.22.1.2.4.1.5",
1003
+ "status" : "current",
1004
+ "syntax" : {
1005
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1006
+ },
1007
+ "access" : "readonly",
1008
+ "units" : "octets",
1009
+ "description" :
1010
+ """The total number of octets counted on
1011
+ this priority level.""",
1012
+ }, # column
1013
+ "smonPrioStatsOverflowOctets" : {
1014
+ "nodetype" : "column",
1015
+ "moduleName" : "SMON-MIB",
1016
+ "oid" : "1.3.6.1.2.1.16.22.1.2.4.1.6",
1017
+ "status" : "current",
1018
+ "syntax" : {
1019
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1020
+ },
1021
+ "access" : "readonly",
1022
+ "units" : "octets",
1023
+ "description" :
1024
+ """The number of times the associated smonPrioStatsOctets
1025
+ counter has overflowed.""",
1026
+ }, # column
1027
+ "smonPrioStatsHCOctets" : {
1028
+ "nodetype" : "column",
1029
+ "moduleName" : "SMON-MIB",
1030
+ "oid" : "1.3.6.1.2.1.16.22.1.2.4.1.7",
1031
+ "status" : "current",
1032
+ "syntax" : {
1033
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1034
+ },
1035
+ "access" : "readonly",
1036
+ "units" : "octets",
1037
+ "description" :
1038
+ """The total number of octets counted on
1039
+ this priority level.""",
1040
+ }, # column
1041
+ "portCopyConfig" : {
1042
+ "nodetype" : "node",
1043
+ "moduleName" : "SMON-MIB",
1044
+ "oid" : "1.3.6.1.2.1.16.22.1.3",
1045
+ }, # node
1046
+ "portCopyTable" : {
1047
+ "nodetype" : "table",
1048
+ "moduleName" : "SMON-MIB",
1049
+ "oid" : "1.3.6.1.2.1.16.22.1.3.1",
1050
+ "status" : "current",
1051
+ "description" :
1052
+ """ Port Copy provides the ability to copy all frames from a
1053
+ specified source to specified destination within a switch.
1054
+ Source and destinations MUST be ifEntries, as defined by [22].
1055
+ One to one, one to many, many to one and many to many source to
1056
+ destination relationships may be configured.
1057
+
1058
+ Applicable counters on the destination will increment for all
1059
+ packets transiting the port, be it by normal bridging/switching
1060
+ or due to packet copy.
1061
+ Note that this table manages no RMON data collection by itself,
1062
+ and an agent may possibly implement no RMON objects except
1063
+ objects related to the port copy operation defined by the
1064
+ portCopyCompliance conformance macro. That allows for a switch
1065
+ with no other embedded RMON capability to perform port copy
1066
+ operations to a destination port at which a different external
1067
+ RMON probe is connected.
1068
+
1069
+ One to one, many to one and one to many source to destination
1070
+ relationships may be configured.
1071
+ Each row that exists in this table defines such a
1072
+ relationship. By disabling a row in this table the port copy
1073
+ relationship no longer exists.
1074
+
1075
+ The number of entries and the types of port copies (1-1,
1076
+ many-1, 1-many) are implementation specific and could
1077
+ possibly be dynamic due to changing resource availability.
1078
+
1079
+ In order to configure a source to destination portCopy
1080
+ relationship, both source and destination interfaces MUST be
1081
+ present as an ifEntry in the ifTable and their respective
1082
+ ifAdminStatus and ifOperStatus values MUST be equal to
1083
+ 'up(1)'. If the value of any of those two objects changes
1084
+ after the portCopyEntry is activated, portCopyStatus will
1085
+ transition to 'notReady(3)'.
1086
+
1087
+ The capability of an interface to be source or destination of
1088
+ a port copy operation is described by the 'copySourcePort(0)'
1089
+ and 'copyDestPort(1)' bits in dataSourceCopyCaps. Those bits
1090
+ SHOULD be appropriately set by the agent, in order to allow
1091
+ for a portCopyEntry to be created.
1092
+
1093
+ Applicable counters on the destination will increment for all
1094
+ packets transmitted, be it by normal bridging/switching or
1095
+ due to packet copy.""",
1096
+ }, # table
1097
+ "portCopyEntry" : {
1098
+ "nodetype" : "row",
1099
+ "moduleName" : "SMON-MIB",
1100
+ "oid" : "1.3.6.1.2.1.16.22.1.3.1.1",
1101
+ "create" : "true",
1102
+ "status" : "current",
1103
+ "linkage" : [
1104
+ "portCopySource",
1105
+ "portCopyDest",
1106
+ ],
1107
+ "description" :
1108
+ """Describes a particular port copy entry.""",
1109
+ }, # row
1110
+ "portCopySource" : {
1111
+ "nodetype" : "column",
1112
+ "moduleName" : "SMON-MIB",
1113
+ "oid" : "1.3.6.1.2.1.16.22.1.3.1.1.1",
1114
+ "status" : "current",
1115
+ "syntax" : {
1116
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
1117
+ },
1118
+ "access" : "noaccess",
1119
+ "description" :
1120
+ """The ifIndex of the source which will have all packets
1121
+ redirected to the destination as defined by portCopyDest.""",
1122
+ }, # column
1123
+ "portCopyDest" : {
1124
+ "nodetype" : "column",
1125
+ "moduleName" : "SMON-MIB",
1126
+ "oid" : "1.3.6.1.2.1.16.22.1.3.1.1.2",
1127
+ "status" : "current",
1128
+ "syntax" : {
1129
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
1130
+ },
1131
+ "access" : "noaccess",
1132
+ "description" :
1133
+ """Defines the ifIndex destination for the copy operation.""",
1134
+ }, # column
1135
+ "portCopyDestDropEvents" : {
1136
+ "nodetype" : "column",
1137
+ "moduleName" : "SMON-MIB",
1138
+ "oid" : "1.3.6.1.2.1.16.22.1.3.1.1.3",
1139
+ "status" : "current",
1140
+ "syntax" : {
1141
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1142
+ },
1143
+ "access" : "readonly",
1144
+ "units" : "events",
1145
+ "description" :
1146
+ """The total number of events in which port copy packets were
1147
+ dropped by the switch at the destination port due to lack of
1148
+ resources.
1149
+
1150
+ Note that this number is not necessarily the number of
1151
+ packets dropped; it is just the number of times this
1152
+ condition has been detected.
1153
+
1154
+ A single dropped event counter is maintained for each
1155
+ portCopyDest. Thus all instances associated with a given
1156
+ portCopyDest will have the same portCopyDestDropEvents
1157
+ value.""",
1158
+ }, # column
1159
+ "portCopyDirection" : {
1160
+ "nodetype" : "column",
1161
+ "moduleName" : "SMON-MIB",
1162
+ "oid" : "1.3.6.1.2.1.16.22.1.3.1.1.4",
1163
+ "status" : "current",
1164
+ "syntax" : {
1165
+ "type" : {
1166
+ "basetype" : "Enumeration",
1167
+ "copyRxOnly" : {
1168
+ "nodetype" : "namednumber",
1169
+ "number" : "1"
1170
+ },
1171
+ "copyTxOnly" : {
1172
+ "nodetype" : "namednumber",
1173
+ "number" : "2"
1174
+ },
1175
+ "copyBoth" : {
1176
+ "nodetype" : "namednumber",
1177
+ "number" : "3"
1178
+ },
1179
+ },
1180
+ },
1181
+ "access" : "readwrite",
1182
+ "default" : "copyBoth",
1183
+ "description" :
1184
+ """This object affects the way traffic is copied from a switch
1185
+ source port, for the indicated port copy operation.
1186
+ If this object has the value 'copyRxOnly(1)', then only
1187
+ traffic received on the indicated source port will be copied
1188
+ to the indicated destination port.
1189
+
1190
+ If this object has the value 'copyTxOnly(2)', then only
1191
+ traffic transmitted out the indicated source port will be
1192
+ copied to the indicated destination port.
1193
+
1194
+ If this object has the value 'copyBoth(3)', then all traffic
1195
+ received or transmitted on the indicated source port will be
1196
+ copied to the indicated destination port.
1197
+
1198
+ The creation and deletion of instances of this object is
1199
+ controlled by the portCopyRowStatus object. Note that there
1200
+ is no guarantee that changes in the value of this object
1201
+ performed while the associated portCopyRowStatus object is
1202
+ equal to active will not cause traffic discontinuities in the
1203
+ packet stream.""",
1204
+ }, # column
1205
+ "portCopyStatus" : {
1206
+ "nodetype" : "column",
1207
+ "moduleName" : "SMON-MIB",
1208
+ "oid" : "1.3.6.1.2.1.16.22.1.3.1.1.5",
1209
+ "status" : "current",
1210
+ "syntax" : {
1211
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1212
+ },
1213
+ "access" : "readwrite",
1214
+ "description" :
1215
+ """Defines the status of the port copy entry.
1216
+
1217
+ In order to configure a source to destination portCopy
1218
+ relationship, both source and destination interfaces MUST be
1219
+ present as an ifEntry in the ifTable and their respective
1220
+ ifAdminStatus and ifOperStatus values MUST be equal to
1221
+ 'up(1)'. If the value of any of those two objects changes
1222
+ after the portCopyEntry is activated, portCopyStatus will
1223
+ transition to 'notReady(3)'.
1224
+
1225
+ The capability of an interface to be source or destination of
1226
+ a port copy operation is described by the 'copySourcePort(0)'
1227
+ and 'copyDestPort(1)' bits in dataSourceCopyCaps. Those bits
1228
+ SHOULD be appropriately set by the agent, in order to allow
1229
+ for a portCopyEntry to be created.""",
1230
+ }, # column
1231
+ "smonRegistrationPoints" : {
1232
+ "nodetype" : "node",
1233
+ "moduleName" : "SMON-MIB",
1234
+ "oid" : "1.3.6.1.2.1.16.22.1.4",
1235
+ }, # node
1236
+ "smonVlanDataSource" : {
1237
+ "nodetype" : "node",
1238
+ "moduleName" : "SMON-MIB",
1239
+ "oid" : "1.3.6.1.2.1.16.22.1.4.1",
1240
+ }, # node
1241
+ }, # nodes
1242
+
1243
+ "groups" : {
1244
+ "dataSourceCapsGroup" : {
1245
+ "nodetype" : "group",
1246
+ "moduleName" : "SMON-MIB",
1247
+ "oid" : "1.3.6.1.2.1.16.20.4.1",
1248
+ "status" : "current",
1249
+ "members" : {
1250
+ "dataSourceRmonCaps" : {
1251
+ "nodetype" : "member",
1252
+ "module" : "SMON-MIB"
1253
+ },
1254
+ "dataSourceCopyCaps" : {
1255
+ "nodetype" : "member",
1256
+ "module" : "SMON-MIB"
1257
+ },
1258
+ "dataSourceCapsIfIndex" : {
1259
+ "nodetype" : "member",
1260
+ "module" : "SMON-MIB"
1261
+ },
1262
+ }, # members
1263
+ "description" :
1264
+ """Defines the objects that describe the capabilities of RMON
1265
+ data sources.""",
1266
+ }, # group
1267
+ "smonVlanStatsGroup" : {
1268
+ "nodetype" : "group",
1269
+ "moduleName" : "SMON-MIB",
1270
+ "oid" : "1.3.6.1.2.1.16.20.4.2",
1271
+ "status" : "current",
1272
+ "members" : {
1273
+ "smonVlanStatsControlDataSource" : {
1274
+ "nodetype" : "member",
1275
+ "module" : "SMON-MIB"
1276
+ },
1277
+ "smonVlanStatsControlCreateTime" : {
1278
+ "nodetype" : "member",
1279
+ "module" : "SMON-MIB"
1280
+ },
1281
+ "smonVlanStatsControlOwner" : {
1282
+ "nodetype" : "member",
1283
+ "module" : "SMON-MIB"
1284
+ },
1285
+ "smonVlanStatsControlStatus" : {
1286
+ "nodetype" : "member",
1287
+ "module" : "SMON-MIB"
1288
+ },
1289
+ "smonVlanIdStatsTotalPkts" : {
1290
+ "nodetype" : "member",
1291
+ "module" : "SMON-MIB"
1292
+ },
1293
+ "smonVlanIdStatsTotalOctets" : {
1294
+ "nodetype" : "member",
1295
+ "module" : "SMON-MIB"
1296
+ },
1297
+ "smonVlanIdStatsNUcastPkts" : {
1298
+ "nodetype" : "member",
1299
+ "module" : "SMON-MIB"
1300
+ },
1301
+ "smonVlanIdStatsCreateTime" : {
1302
+ "nodetype" : "member",
1303
+ "module" : "SMON-MIB"
1304
+ },
1305
+ }, # members
1306
+ "description" :
1307
+ """Defines the switch monitoring specific statistics - per VLAN
1308
+ Id on interfaces of 10MB or less.""",
1309
+ }, # group
1310
+ "smonPrioStatsGroup" : {
1311
+ "nodetype" : "group",
1312
+ "moduleName" : "SMON-MIB",
1313
+ "oid" : "1.3.6.1.2.1.16.20.4.3",
1314
+ "status" : "current",
1315
+ "members" : {
1316
+ "smonPrioStatsControlDataSource" : {
1317
+ "nodetype" : "member",
1318
+ "module" : "SMON-MIB"
1319
+ },
1320
+ "smonPrioStatsControlCreateTime" : {
1321
+ "nodetype" : "member",
1322
+ "module" : "SMON-MIB"
1323
+ },
1324
+ "smonPrioStatsControlOwner" : {
1325
+ "nodetype" : "member",
1326
+ "module" : "SMON-MIB"
1327
+ },
1328
+ "smonPrioStatsControlStatus" : {
1329
+ "nodetype" : "member",
1330
+ "module" : "SMON-MIB"
1331
+ },
1332
+ "smonPrioStatsPkts" : {
1333
+ "nodetype" : "member",
1334
+ "module" : "SMON-MIB"
1335
+ },
1336
+ "smonPrioStatsOctets" : {
1337
+ "nodetype" : "member",
1338
+ "module" : "SMON-MIB"
1339
+ },
1340
+ }, # members
1341
+ "description" :
1342
+ """Defines the switch monitoring specific statistics - per VLAN
1343
+ Id on interface.""",
1344
+ }, # group
1345
+ "smonHcTo100mbGroup" : {
1346
+ "nodetype" : "group",
1347
+ "moduleName" : "SMON-MIB",
1348
+ "oid" : "1.3.6.1.2.1.16.20.4.4",
1349
+ "status" : "current",
1350
+ "members" : {
1351
+ "smonVlanIdStatsTotalOverflowOctets" : {
1352
+ "nodetype" : "member",
1353
+ "module" : "SMON-MIB"
1354
+ },
1355
+ "smonVlanIdStatsTotalHCOctets" : {
1356
+ "nodetype" : "member",
1357
+ "module" : "SMON-MIB"
1358
+ },
1359
+ "smonPrioStatsOverflowOctets" : {
1360
+ "nodetype" : "member",
1361
+ "module" : "SMON-MIB"
1362
+ },
1363
+ "smonPrioStatsHCOctets" : {
1364
+ "nodetype" : "member",
1365
+ "module" : "SMON-MIB"
1366
+ },
1367
+ }, # members
1368
+ "description" :
1369
+ """Defines the additional high capacity statistics needed to be
1370
+ kept on interfaces with ifSpeed greater than 10MB/sec and
1371
+ less than or equal to 100MB/sec.""",
1372
+ }, # group
1373
+ "smonHc100mbPlusGroup" : {
1374
+ "nodetype" : "group",
1375
+ "moduleName" : "SMON-MIB",
1376
+ "oid" : "1.3.6.1.2.1.16.20.4.5",
1377
+ "status" : "current",
1378
+ "members" : {
1379
+ "smonVlanIdStatsTotalOverflowPkts" : {
1380
+ "nodetype" : "member",
1381
+ "module" : "SMON-MIB"
1382
+ },
1383
+ "smonVlanIdStatsTotalHCPkts" : {
1384
+ "nodetype" : "member",
1385
+ "module" : "SMON-MIB"
1386
+ },
1387
+ "smonVlanIdStatsTotalOverflowOctets" : {
1388
+ "nodetype" : "member",
1389
+ "module" : "SMON-MIB"
1390
+ },
1391
+ "smonVlanIdStatsTotalHCOctets" : {
1392
+ "nodetype" : "member",
1393
+ "module" : "SMON-MIB"
1394
+ },
1395
+ "smonVlanIdStatsNUcastOverflowPkts" : {
1396
+ "nodetype" : "member",
1397
+ "module" : "SMON-MIB"
1398
+ },
1399
+ "smonVlanIdStatsNUcastHCPkts" : {
1400
+ "nodetype" : "member",
1401
+ "module" : "SMON-MIB"
1402
+ },
1403
+ "smonPrioStatsOverflowPkts" : {
1404
+ "nodetype" : "member",
1405
+ "module" : "SMON-MIB"
1406
+ },
1407
+ "smonPrioStatsHCPkts" : {
1408
+ "nodetype" : "member",
1409
+ "module" : "SMON-MIB"
1410
+ },
1411
+ "smonPrioStatsOverflowOctets" : {
1412
+ "nodetype" : "member",
1413
+ "module" : "SMON-MIB"
1414
+ },
1415
+ "smonPrioStatsHCOctets" : {
1416
+ "nodetype" : "member",
1417
+ "module" : "SMON-MIB"
1418
+ },
1419
+ }, # members
1420
+ "description" :
1421
+ """Defines the additional high capacity statistics needed to be
1422
+ kept on interfaces with ifSpeed of more than 100MB/sec. These
1423
+ statistics MUST also be kept on smonDataSources of type VLAN
1424
+ or entPhysicalEntry.""",
1425
+ }, # group
1426
+ "hcVlanTo100mbGroup" : {
1427
+ "nodetype" : "group",
1428
+ "moduleName" : "SMON-MIB",
1429
+ "oid" : "1.3.6.1.2.1.16.20.4.6",
1430
+ "status" : "current",
1431
+ "members" : {
1432
+ "smonVlanIdStatsTotalOverflowOctets" : {
1433
+ "nodetype" : "member",
1434
+ "module" : "SMON-MIB"
1435
+ },
1436
+ "smonVlanIdStatsTotalHCOctets" : {
1437
+ "nodetype" : "member",
1438
+ "module" : "SMON-MIB"
1439
+ },
1440
+ }, # members
1441
+ "description" :
1442
+ """Defines the additional high capacity VLAN statistics
1443
+ needed to be kept on interfaces with ifSpeed greater than
1444
+ 10MB/sec and less than or equal to 100MB/sec.""",
1445
+ }, # group
1446
+ "hcVlan100mbPlusGroup" : {
1447
+ "nodetype" : "group",
1448
+ "moduleName" : "SMON-MIB",
1449
+ "oid" : "1.3.6.1.2.1.16.20.4.7",
1450
+ "status" : "current",
1451
+ "members" : {
1452
+ "smonVlanIdStatsTotalOverflowPkts" : {
1453
+ "nodetype" : "member",
1454
+ "module" : "SMON-MIB"
1455
+ },
1456
+ "smonVlanIdStatsTotalHCPkts" : {
1457
+ "nodetype" : "member",
1458
+ "module" : "SMON-MIB"
1459
+ },
1460
+ "smonVlanIdStatsTotalOverflowOctets" : {
1461
+ "nodetype" : "member",
1462
+ "module" : "SMON-MIB"
1463
+ },
1464
+ "smonVlanIdStatsTotalHCOctets" : {
1465
+ "nodetype" : "member",
1466
+ "module" : "SMON-MIB"
1467
+ },
1468
+ "smonVlanIdStatsNUcastOverflowPkts" : {
1469
+ "nodetype" : "member",
1470
+ "module" : "SMON-MIB"
1471
+ },
1472
+ "smonVlanIdStatsNUcastHCPkts" : {
1473
+ "nodetype" : "member",
1474
+ "module" : "SMON-MIB"
1475
+ },
1476
+ }, # members
1477
+ "description" :
1478
+ """Defines the additional high capacity VLAN statistics
1479
+ needed to be kept on interfaces with ifSpeed of more than
1480
+ 100MB/sec. These statistics MUST also be kept on
1481
+ smonDataSources of type VLAN or entPhysicalEntry.""",
1482
+ }, # group
1483
+ "hcPrioTo100mbGroup" : {
1484
+ "nodetype" : "group",
1485
+ "moduleName" : "SMON-MIB",
1486
+ "oid" : "1.3.6.1.2.1.16.20.4.8",
1487
+ "status" : "current",
1488
+ "members" : {
1489
+ "smonPrioStatsOverflowOctets" : {
1490
+ "nodetype" : "member",
1491
+ "module" : "SMON-MIB"
1492
+ },
1493
+ "smonPrioStatsHCOctets" : {
1494
+ "nodetype" : "member",
1495
+ "module" : "SMON-MIB"
1496
+ },
1497
+ }, # members
1498
+ "description" :
1499
+ """Defines the additional high capacity VLAN priority
1500
+ statistics needed to be kept on interfaces with
1501
+ ifSpeed of greater than 10MB/sec and less than or equal
1502
+ to 100MB/sec.""",
1503
+ }, # group
1504
+ "hcPrio100mbPlusGroup" : {
1505
+ "nodetype" : "group",
1506
+ "moduleName" : "SMON-MIB",
1507
+ "oid" : "1.3.6.1.2.1.16.20.4.9",
1508
+ "status" : "current",
1509
+ "members" : {
1510
+ "smonPrioStatsOverflowPkts" : {
1511
+ "nodetype" : "member",
1512
+ "module" : "SMON-MIB"
1513
+ },
1514
+ "smonPrioStatsHCPkts" : {
1515
+ "nodetype" : "member",
1516
+ "module" : "SMON-MIB"
1517
+ },
1518
+ "smonPrioStatsOverflowOctets" : {
1519
+ "nodetype" : "member",
1520
+ "module" : "SMON-MIB"
1521
+ },
1522
+ "smonPrioStatsHCOctets" : {
1523
+ "nodetype" : "member",
1524
+ "module" : "SMON-MIB"
1525
+ },
1526
+ }, # members
1527
+ "description" :
1528
+ """Defines the additional high capacity VLAN priority
1529
+ statistics needed to be kept on interfaces with
1530
+ ifSpeed of greater than 100MB/sec. These statistics MUST
1531
+ also be kept on smonDataSources of type VLAN or
1532
+ entPhysicalEntry.""",
1533
+ }, # group
1534
+ "smonVlanStatsExtGroup" : {
1535
+ "nodetype" : "group",
1536
+ "moduleName" : "SMON-MIB",
1537
+ "oid" : "1.3.6.1.2.1.16.20.4.10",
1538
+ "status" : "current",
1539
+ "members" : {
1540
+ "smonVlanIdStatsNUcastOctets" : {
1541
+ "nodetype" : "member",
1542
+ "module" : "SMON-MIB"
1543
+ },
1544
+ "smonVlanIdStatsNUcastOverflowOctets" : {
1545
+ "nodetype" : "member",
1546
+ "module" : "SMON-MIB"
1547
+ },
1548
+ "smonVlanIdStatsNUcastHCOctets" : {
1549
+ "nodetype" : "member",
1550
+ "module" : "SMON-MIB"
1551
+ },
1552
+ }, # members
1553
+ "description" :
1554
+ """Defines the switch monitoring specific statistics for systems
1555
+ capable of counting non-unicast octets for a given dataSource
1556
+ (as described in the dataSourceRmonCaps object).""",
1557
+ }, # group
1558
+ "smonInformationGroup" : {
1559
+ "nodetype" : "group",
1560
+ "moduleName" : "SMON-MIB",
1561
+ "oid" : "1.3.6.1.2.1.16.20.4.11",
1562
+ "status" : "current",
1563
+ "members" : {
1564
+ "smonCapabilities" : {
1565
+ "nodetype" : "member",
1566
+ "module" : "SMON-MIB"
1567
+ },
1568
+ }, # members
1569
+ "description" :
1570
+ """An indication of the SMON capabilities supported by this
1571
+ agent.""",
1572
+ }, # group
1573
+ "portCopyConfigGroup" : {
1574
+ "nodetype" : "group",
1575
+ "moduleName" : "SMON-MIB",
1576
+ "oid" : "1.3.6.1.2.1.16.20.4.12",
1577
+ "status" : "current",
1578
+ "members" : {
1579
+ "portCopyDestDropEvents" : {
1580
+ "nodetype" : "member",
1581
+ "module" : "SMON-MIB"
1582
+ },
1583
+ "portCopyDirection" : {
1584
+ "nodetype" : "member",
1585
+ "module" : "SMON-MIB"
1586
+ },
1587
+ "portCopyStatus" : {
1588
+ "nodetype" : "member",
1589
+ "module" : "SMON-MIB"
1590
+ },
1591
+ }, # members
1592
+ "description" :
1593
+ """Defines the control objects for copy port operations.""",
1594
+ }, # group
1595
+ }, # groups
1596
+
1597
+ "compliances" : {
1598
+ "smonMIBCompliance" : {
1599
+ "nodetype" : "compliance",
1600
+ "moduleName" : "SMON-MIB",
1601
+ "oid" : "1.3.6.1.2.1.16.20.3.1",
1602
+ "status" : "current",
1603
+ "description" :
1604
+ """Describes the requirements for full conformance with the SMON
1605
+ MIB""",
1606
+ "requires" : {
1607
+ "dataSourceCapsGroup" : {
1608
+ "nodetype" : "mandatory",
1609
+ "module" : "SMON-MIB"
1610
+ },
1611
+ "smonVlanStatsGroup" : {
1612
+ "nodetype" : "mandatory",
1613
+ "module" : "SMON-MIB"
1614
+ },
1615
+ "smonPrioStatsGroup" : {
1616
+ "nodetype" : "mandatory",
1617
+ "module" : "SMON-MIB"
1618
+ },
1619
+ "portCopyConfigGroup" : {
1620
+ "nodetype" : "mandatory",
1621
+ "module" : "SMON-MIB"
1622
+ },
1623
+ "smonInformationGroup" : {
1624
+ "nodetype" : "mandatory",
1625
+ "module" : "SMON-MIB"
1626
+ },
1627
+ "smonHcTo100mbGroup" : {
1628
+ "nodetype" : "optional",
1629
+ "module" : "SMON-MIB",
1630
+ "description" :
1631
+ """This group of VLAN statistics counter are mandatory only for
1632
+ those network interfaces for which the corresponding ifSpeed
1633
+ can be greater than 10MB/sec and less than or equal to
1634
+ 100MB/sec.""",
1635
+ },
1636
+ "smonHc100mbPlusGroup" : {
1637
+ "nodetype" : "optional",
1638
+ "module" : "SMON-MIB",
1639
+ "description" :
1640
+ """This group of VLAN statistics counters are mandatory only for
1641
+ those network interfaces for which the corresponding ifSpeed
1642
+ can be more than 100MB/sec. This group of VLAN statistics is
1643
+ also mandatory for smonDataSources of type VLAN or
1644
+ entPhysicalEntry.""",
1645
+ },
1646
+ }, # requires
1647
+ }, # compliance
1648
+ "smonMIBVlanStatsCompliance" : {
1649
+ "nodetype" : "compliance",
1650
+ "moduleName" : "SMON-MIB",
1651
+ "oid" : "1.3.6.1.2.1.16.20.3.2",
1652
+ "status" : "current",
1653
+ "description" :
1654
+ """Describes the requirements for conformance with the SMON MIB
1655
+ with support for VLAN Statistics. Mandatory for a SMON probe
1656
+ in environment where IEEE 802.1Q bridging is implemented.""",
1657
+ "requires" : {
1658
+ "dataSourceCapsGroup" : {
1659
+ "nodetype" : "mandatory",
1660
+ "module" : "SMON-MIB"
1661
+ },
1662
+ "smonVlanStatsGroup" : {
1663
+ "nodetype" : "mandatory",
1664
+ "module" : "SMON-MIB"
1665
+ },
1666
+ "smonInformationGroup" : {
1667
+ "nodetype" : "mandatory",
1668
+ "module" : "SMON-MIB"
1669
+ },
1670
+ "hcVlanTo100mbGroup" : {
1671
+ "nodetype" : "optional",
1672
+ "module" : "SMON-MIB",
1673
+ "description" :
1674
+ """This group of VLAN statistics counter are mandatory only
1675
+ for those network interfaces for which the corresponding
1676
+ ifSpeed can be up to and including 100MB/sec.""",
1677
+ },
1678
+ "hcVlan100mbPlusGroup" : {
1679
+ "nodetype" : "optional",
1680
+ "module" : "SMON-MIB",
1681
+ "description" :
1682
+ """This group of VLAN statistics counters are mandatory only for
1683
+ those network interfaces for which the corresponding ifSpeed
1684
+ is greater than 100MB/sec. This group of VLAN statistics is
1685
+ also mandatory for smonDataSources of type VLAN or
1686
+ entPhysicalEntry.""",
1687
+ },
1688
+ }, # requires
1689
+ }, # compliance
1690
+ "smonMIBPrioStatsCompliance" : {
1691
+ "nodetype" : "compliance",
1692
+ "moduleName" : "SMON-MIB",
1693
+ "oid" : "1.3.6.1.2.1.16.20.3.3",
1694
+ "status" : "current",
1695
+ "description" :
1696
+ """Describes the requirements for conformance with the SMON MIB
1697
+ with support for priority level Statistics. Mandatory for a
1698
+ SMON probe in a environment where IEEE 802.1p
1699
+ priority-switching is implemented.""",
1700
+ "requires" : {
1701
+ "dataSourceCapsGroup" : {
1702
+ "nodetype" : "mandatory",
1703
+ "module" : "SMON-MIB"
1704
+ },
1705
+ "smonPrioStatsGroup" : {
1706
+ "nodetype" : "mandatory",
1707
+ "module" : "SMON-MIB"
1708
+ },
1709
+ "smonInformationGroup" : {
1710
+ "nodetype" : "mandatory",
1711
+ "module" : "SMON-MIB"
1712
+ },
1713
+ "hcPrioTo100mbGroup" : {
1714
+ "nodetype" : "optional",
1715
+ "module" : "SMON-MIB",
1716
+ "description" :
1717
+ """This group of VLAN priority statistics counters are mandatory
1718
+ only for those network interfaces for which the corresponding
1719
+ ifSpeed can be up to and including 100MB/sec.""",
1720
+ },
1721
+ "hcPrio100mbPlusGroup" : {
1722
+ "nodetype" : "optional",
1723
+ "module" : "SMON-MIB",
1724
+ "description" :
1725
+ """This group is mandatory only for those network
1726
+ interfaces for which the corresponding ifSpeed is greater
1727
+ than 100MB/sec. This group of VLAN priority
1728
+ statistics is also mandatory for smonDataSources of type
1729
+ VLAN or entPhysicalEntry""",
1730
+ },
1731
+ }, # requires
1732
+ }, # compliance
1733
+ "portCopyCompliance" : {
1734
+ "nodetype" : "compliance",
1735
+ "moduleName" : "SMON-MIB",
1736
+ "oid" : "1.3.6.1.2.1.16.20.3.4",
1737
+ "status" : "current",
1738
+ "description" :
1739
+ """Describes the requirements for conformance with the port copy
1740
+ functionality defined by the SMON MIB""",
1741
+ "requires" : {
1742
+ "dataSourceCapsGroup" : {
1743
+ "nodetype" : "mandatory",
1744
+ "module" : "SMON-MIB"
1745
+ },
1746
+ "portCopyConfigGroup" : {
1747
+ "nodetype" : "mandatory",
1748
+ "module" : "SMON-MIB"
1749
+ },
1750
+ "smonInformationGroup" : {
1751
+ "nodetype" : "mandatory",
1752
+ "module" : "SMON-MIB"
1753
+ },
1754
+ }, # requires
1755
+ }, # compliance
1756
+ }, # compliances
1757
+
1758
+ }