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,3390 @@
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 IPMCAST-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/IPMCAST-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "IPMCAST-MIB",
11
+
12
+ "IPMCAST-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF MBONE Deployment (MBONED) Working Group""",
17
+ "contact" :
18
+ """David McWalter
19
+ Data Connection Limited
20
+
21
+
22
+
23
+ 100 Church Street
24
+ Enfield, EN2 6BQ
25
+ UK
26
+
27
+ Phone: +44 208 366 1177
28
+ EMail: dmcw@dataconnection.com
29
+
30
+ Dave Thaler
31
+ Microsoft Corporation
32
+ One Microsoft Way
33
+ Redmond, WA 98052-6399
34
+ US
35
+
36
+ Phone: +1 425 703 8835
37
+ EMail: dthaler@dthaler.microsoft.com
38
+
39
+ Andrew Kessler
40
+ Cisco Systems
41
+ 425 E. Tasman Drive
42
+ San Jose, CA 95134
43
+ US
44
+
45
+ Phone: +1 408 526 5139
46
+ EMail: kessler@cisco.com""",
47
+ "description" :
48
+ """The MIB module for management of IP Multicast, including
49
+ multicast routing, data forwarding, and data reception.
50
+
51
+ Copyright (C) The IETF Trust (2007). This version of this
52
+ MIB module is part of RFC 5132; see the RFC itself for full
53
+ legal notices.""",
54
+ "revisions" : (
55
+ {
56
+ "date" : "2007-11-09 00:00",
57
+ "description" :
58
+ """Initial version, published as RFC 5132.
59
+
60
+ This MIB module obsoletes IPMROUTE-STD-MIB defined by
61
+ [RFC2932]. Changes include the following:
62
+
63
+ o This MIB module includes support for IPv6 addressing
64
+ and the IPv6 scoped address architecture. [RFC2932]
65
+ supported only IPv4.
66
+
67
+ o This MIB module allows several multicast protocols
68
+ to perform routing on a single interface, where
69
+ [RFC2932] assumed each interface supported at most
70
+ one multicast routing protocol. Multicast routing
71
+ protocols are now per-route, see
72
+ ipMcastRouteProtocol.
73
+
74
+
75
+
76
+
77
+ o This MIB module includes objects that are not
78
+ specific to multicast routing. It allows management
79
+ of multicast function on systems that do not perform
80
+ routing, whereas [RFC2932] was restricted to
81
+ multicast routing.
82
+
83
+ o This MIB module includes a table of Source-Specific
84
+ Multicast (SSM) address ranges to which SSM
85
+ semantics [RFC3569] should be applied.
86
+
87
+ o This MIB module includes a table of local
88
+ applications that are receiving multicast data.
89
+
90
+ o This MIB module includes a table of multicast scope
91
+ zones.""",
92
+ },
93
+ ),
94
+ "identity node" : "ipMcastMIB",
95
+ },
96
+
97
+ "imports" : (
98
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
99
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
100
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
101
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
102
+ {"module" : "SNMPv2-SMI", "name" : "Counter64"},
103
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
104
+ {"module" : "SNMPv2-SMI", "name" : "TimeTicks"},
105
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
106
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
107
+ {"module" : "SNMPv2-TC", "name" : "StorageType"},
108
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
109
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
110
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
111
+ {"module" : "HCNUM-TC", "name" : "CounterBasedGauge64"},
112
+ {"module" : "IF-MIB", "name" : "InterfaceIndexOrZero"},
113
+ {"module" : "IF-MIB", "name" : "InterfaceIndex"},
114
+ {"module" : "IANA-RTPROTO-MIB", "name" : "IANAipRouteProtocol"},
115
+ {"module" : "IANA-RTPROTO-MIB", "name" : "IANAipMRouteProtocol"},
116
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
117
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddress"},
118
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddressType"},
119
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddressPrefixLength"},
120
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetZoneIndex"},
121
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetVersion"},
122
+ {"module" : "LANGTAG-TC-MIB", "name" : "LangTag"},
123
+ ),
124
+
125
+ "nodes" : {
126
+ "ipMcastMIB" : {
127
+ "nodetype" : "node",
128
+ "moduleName" : "IPMCAST-MIB",
129
+ "oid" : "1.3.6.1.2.1.168",
130
+ "status" : "current",
131
+ }, # node
132
+ "ipMcast" : {
133
+ "nodetype" : "node",
134
+ "moduleName" : "IPMCAST-MIB",
135
+ "oid" : "1.3.6.1.2.1.168.1",
136
+ }, # node
137
+ "ipMcastEnabled" : {
138
+ "nodetype" : "scalar",
139
+ "moduleName" : "IPMCAST-MIB",
140
+ "oid" : "1.3.6.1.2.1.168.1.1",
141
+ "status" : "current",
142
+ "syntax" : {
143
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
144
+ },
145
+ "access" : "readwrite",
146
+ "description" :
147
+ """The enabled status of IP Multicast function on this
148
+ system.
149
+
150
+ The storage type of this object is determined by
151
+ ipMcastDeviceConfigStorageType.""",
152
+ }, # scalar
153
+ "ipMcastRouteEntryCount" : {
154
+ "nodetype" : "scalar",
155
+ "moduleName" : "IPMCAST-MIB",
156
+ "oid" : "1.3.6.1.2.1.168.1.2",
157
+ "status" : "current",
158
+ "syntax" : {
159
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
160
+ },
161
+ "access" : "readonly",
162
+ "description" :
163
+ """The number of rows in the ipMcastRouteTable. This can be
164
+ used to check for multicast routing activity, and to monitor
165
+ the multicast routing table size.""",
166
+ }, # scalar
167
+ "ipMcastInterfaceTable" : {
168
+ "nodetype" : "table",
169
+ "moduleName" : "IPMCAST-MIB",
170
+ "oid" : "1.3.6.1.2.1.168.1.3",
171
+ "status" : "current",
172
+ "description" :
173
+ """The (conceptual) table used to manage the multicast
174
+ protocol active on an interface.""",
175
+ }, # table
176
+ "ipMcastInterfaceEntry" : {
177
+ "nodetype" : "row",
178
+ "moduleName" : "IPMCAST-MIB",
179
+ "oid" : "1.3.6.1.2.1.168.1.3.1",
180
+ "status" : "current",
181
+ "linkage" : [
182
+ "ipMcastInterfaceIPVersion",
183
+ "ipMcastInterfaceIfIndex",
184
+ ],
185
+ "description" :
186
+ """An entry (conceptual row) containing the multicast protocol
187
+ information for a particular interface.
188
+
189
+ Per-interface multicast forwarding statistics are also
190
+ available in ipIfStatsTable.""",
191
+ "reference" :
192
+ """RFC 4293 ipIfStatsTable""",
193
+ }, # row
194
+ "ipMcastInterfaceIPVersion" : {
195
+ "nodetype" : "column",
196
+ "moduleName" : "IPMCAST-MIB",
197
+ "oid" : "1.3.6.1.2.1.168.1.3.1.1",
198
+ "status" : "current",
199
+ "syntax" : {
200
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetVersion"},
201
+ },
202
+ "access" : "noaccess",
203
+ "description" :
204
+ """The IP version of this row.""",
205
+ }, # column
206
+ "ipMcastInterfaceIfIndex" : {
207
+ "nodetype" : "column",
208
+ "moduleName" : "IPMCAST-MIB",
209
+ "oid" : "1.3.6.1.2.1.168.1.3.1.2",
210
+ "status" : "current",
211
+ "syntax" : {
212
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
213
+ },
214
+ "access" : "noaccess",
215
+ "description" :
216
+ """The index value that uniquely identifies the interface to
217
+ which this entry is applicable. The interface identified by
218
+ a particular value of this index is the same interface as
219
+ identified by the same value of the IF-MIB's ifIndex.""",
220
+ }, # column
221
+ "ipMcastInterfaceTtl" : {
222
+ "nodetype" : "column",
223
+ "moduleName" : "IPMCAST-MIB",
224
+ "oid" : "1.3.6.1.2.1.168.1.3.1.3",
225
+ "status" : "current",
226
+ "syntax" : {
227
+ "type" : {
228
+ "basetype" : "Unsigned32",
229
+ "ranges" : [
230
+ {
231
+ "min" : "0",
232
+ "max" : "256"
233
+ },
234
+ ],
235
+ "range" : {
236
+ "min" : "0",
237
+ "max" : "256"
238
+ },
239
+ },
240
+ },
241
+ "access" : "readwrite",
242
+ "default" : "0",
243
+ "description" :
244
+ """The datagram Time to Live (TTL) threshold for the
245
+ interface. Any IP multicast datagrams with a TTL (IPv4) or
246
+ Hop Limit (IPv6) less than this threshold will not be
247
+ forwarded out the interface. The default value of 0 means
248
+ all multicast packets are forwarded out the interface. A
249
+ value of 256 means that no multicast packets are forwarded
250
+ out the interface.""",
251
+ }, # column
252
+ "ipMcastInterfaceRateLimit" : {
253
+ "nodetype" : "column",
254
+ "moduleName" : "IPMCAST-MIB",
255
+ "oid" : "1.3.6.1.2.1.168.1.3.1.4",
256
+ "status" : "current",
257
+ "syntax" : {
258
+ "type" : { "module" :"", "name" : "Unsigned32"},
259
+ },
260
+ "access" : "readwrite",
261
+ "default" : "0",
262
+ "description" :
263
+ """The rate-limit, in kilobits per second, of forwarded
264
+ multicast traffic on the interface. A rate-limit of 0
265
+ indicates that no rate limiting is done.""",
266
+ }, # column
267
+ "ipMcastInterfaceStorageType" : {
268
+ "nodetype" : "column",
269
+ "moduleName" : "IPMCAST-MIB",
270
+ "oid" : "1.3.6.1.2.1.168.1.3.1.5",
271
+ "status" : "current",
272
+ "syntax" : {
273
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
274
+ },
275
+ "access" : "readwrite",
276
+ "default" : "nonVolatile",
277
+ "description" :
278
+ """The storage type for this row. Rows having the value
279
+ 'permanent' need not allow write-access to any columnar
280
+ objects in the row.""",
281
+ }, # column
282
+ "ipMcastSsmRangeTable" : {
283
+ "nodetype" : "table",
284
+ "moduleName" : "IPMCAST-MIB",
285
+ "oid" : "1.3.6.1.2.1.168.1.4",
286
+ "status" : "current",
287
+ "description" :
288
+ """This table is used to create and manage the range(s) of
289
+ group addresses to which SSM semantics should be applied.""",
290
+ "reference" :
291
+ """RFC 3569""",
292
+ }, # table
293
+ "ipMcastSsmRangeEntry" : {
294
+ "nodetype" : "row",
295
+ "moduleName" : "IPMCAST-MIB",
296
+ "oid" : "1.3.6.1.2.1.168.1.4.1",
297
+ "create" : "true",
298
+ "status" : "current",
299
+ "linkage" : [
300
+ "ipMcastSsmRangeAddressType",
301
+ "ipMcastSsmRangeAddress",
302
+ "ipMcastSsmRangePrefixLength",
303
+ ],
304
+ "description" :
305
+ """An entry (conceptual row) containing a range of group
306
+ addresses to which SSM semantics should be applied.
307
+
308
+ Object Identifiers (OIDs) are limited to 128
309
+ sub-identifiers, but this limit is not enforced by the
310
+ syntax of this entry. In practice, this does not present
311
+ a problem, because IP address types allowed by conformance
312
+ statements do not exceed this limit.""",
313
+ "reference" :
314
+ """RFC 3569""",
315
+ }, # row
316
+ "ipMcastSsmRangeAddressType" : {
317
+ "nodetype" : "column",
318
+ "moduleName" : "IPMCAST-MIB",
319
+ "oid" : "1.3.6.1.2.1.168.1.4.1.1",
320
+ "status" : "current",
321
+ "syntax" : {
322
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
323
+ },
324
+ "access" : "noaccess",
325
+ "description" :
326
+ """The address type of the multicast group prefix.""",
327
+ }, # column
328
+ "ipMcastSsmRangeAddress" : {
329
+ "nodetype" : "column",
330
+ "moduleName" : "IPMCAST-MIB",
331
+ "oid" : "1.3.6.1.2.1.168.1.4.1.2",
332
+ "status" : "current",
333
+ "syntax" : {
334
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
335
+ },
336
+ "access" : "noaccess",
337
+ "description" :
338
+ """The multicast group address which, when combined with
339
+ ipMcastSsmRangePrefixLength, gives the group prefix for this
340
+ SSM range. The InetAddressType is given by
341
+ ipMcastSsmRangeAddressType.
342
+
343
+ This address object is only significant up to
344
+ ipMcastSsmRangePrefixLength bits. The remaining address
345
+ bits are set to zero. This is especially important for this
346
+ index field, which is part of the index of this entry. Any
347
+ non-zero bits would signify an entirely different entry.
348
+
349
+ For IPv6 SSM address ranges, only ranges prefixed by
350
+ FF3x::/16 are permitted, where 'x' is a valid IPv6 RFC 4291
351
+ multicast address scope. The syntax of the address range is
352
+ given by RFC 3306, Sections 4 and 7.
353
+
354
+ For addresses of type ipv4z or ipv6z, the appended zone
355
+ index is significant even though it lies beyond the prefix
356
+ length. The use of these address types indicate that this
357
+ SSM range entry applies only within the given zone. Zone
358
+ index zero is not valid in this table.
359
+
360
+ If non-global scope SSM range entries are present, then
361
+ consistent ipMcastBoundaryTable entries are required on
362
+ routers at the zone boundary.""",
363
+ "reference" :
364
+ """RFC 2365, RFC 4291 Section 2.7, RFC 3306 Sections 4, 6,
365
+ and 7""",
366
+ }, # column
367
+ "ipMcastSsmRangePrefixLength" : {
368
+ "nodetype" : "column",
369
+ "moduleName" : "IPMCAST-MIB",
370
+ "oid" : "1.3.6.1.2.1.168.1.4.1.3",
371
+ "status" : "current",
372
+ "syntax" : {
373
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressPrefixLength"},
374
+ },
375
+ "access" : "noaccess",
376
+ "description" :
377
+ """The length in bits of the mask which, when combined with
378
+
379
+
380
+
381
+ ipMcastSsmRangeAddress, gives the group prefix for this SSM
382
+ range.
383
+
384
+ The InetAddressType is given by ipMcastSsmRangeAddressType.
385
+ For values 'ipv4' and 'ipv4z', this object must be in the
386
+ range 4..32. For values 'ipv6' and 'ipv6z', this object
387
+ must be in the range 8..128.""",
388
+ "reference" :
389
+ """RFC 2365, RFC 4291 Section 2.7, RFC 3306 Sections 4, 6,
390
+ and 7""",
391
+ }, # column
392
+ "ipMcastSsmRangeRowStatus" : {
393
+ "nodetype" : "column",
394
+ "moduleName" : "IPMCAST-MIB",
395
+ "oid" : "1.3.6.1.2.1.168.1.4.1.4",
396
+ "status" : "current",
397
+ "syntax" : {
398
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
399
+ },
400
+ "access" : "readwrite",
401
+ "description" :
402
+ """The status of this row, by which rows in this table can
403
+ be created and destroyed.
404
+
405
+ This status object can be set to active(1) without setting
406
+ any other columnar objects in this entry.
407
+
408
+ All writeable objects in this entry can be modified when the
409
+ status of this entry is active(1).""",
410
+ }, # column
411
+ "ipMcastSsmRangeStorageType" : {
412
+ "nodetype" : "column",
413
+ "moduleName" : "IPMCAST-MIB",
414
+ "oid" : "1.3.6.1.2.1.168.1.4.1.5",
415
+ "status" : "current",
416
+ "syntax" : {
417
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
418
+ },
419
+ "access" : "readwrite",
420
+ "default" : "nonVolatile",
421
+ "description" :
422
+ """The storage type for this row. Rows having the value
423
+ 'permanent' need not allow write-access to any columnar
424
+ objects in the row.""",
425
+ }, # column
426
+ "ipMcastRouteTable" : {
427
+ "nodetype" : "table",
428
+ "moduleName" : "IPMCAST-MIB",
429
+ "oid" : "1.3.6.1.2.1.168.1.5",
430
+ "status" : "current",
431
+ "description" :
432
+ """The (conceptual) table containing multicast routing
433
+ information for IP datagrams sent by particular sources
434
+
435
+
436
+
437
+ to the IP multicast groups known to this router.""",
438
+ }, # table
439
+ "ipMcastRouteEntry" : {
440
+ "nodetype" : "row",
441
+ "moduleName" : "IPMCAST-MIB",
442
+ "oid" : "1.3.6.1.2.1.168.1.5.1",
443
+ "status" : "current",
444
+ "linkage" : [
445
+ "ipMcastRouteGroupAddressType",
446
+ "ipMcastRouteGroup",
447
+ "ipMcastRouteGroupPrefixLength",
448
+ "ipMcastRouteSourceAddressType",
449
+ "ipMcastRouteSource",
450
+ "ipMcastRouteSourcePrefixLength",
451
+ ],
452
+ "description" :
453
+ """An entry (conceptual row) containing the multicast routing
454
+ information for IP datagrams from a particular source and
455
+ addressed to a particular IP multicast group address.
456
+
457
+ OIDs are limited to 128 sub-identifiers, but this limit
458
+ is not enforced by the syntax of this entry. In practice,
459
+ this does not present a problem, because IP address types
460
+ allowed by conformance statements do not exceed this limit.""",
461
+ }, # row
462
+ "ipMcastRouteGroupAddressType" : {
463
+ "nodetype" : "column",
464
+ "moduleName" : "IPMCAST-MIB",
465
+ "oid" : "1.3.6.1.2.1.168.1.5.1.1",
466
+ "status" : "current",
467
+ "syntax" : {
468
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
469
+ },
470
+ "access" : "noaccess",
471
+ "description" :
472
+ """A value indicating the address family of the address
473
+ contained in ipMcastRouteGroup. Legal values correspond to
474
+ the subset of address families for which multicast
475
+ forwarding is supported.""",
476
+ }, # column
477
+ "ipMcastRouteGroup" : {
478
+ "nodetype" : "column",
479
+ "moduleName" : "IPMCAST-MIB",
480
+ "oid" : "1.3.6.1.2.1.168.1.5.1.2",
481
+ "status" : "current",
482
+ "syntax" : {
483
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
484
+ },
485
+ "access" : "noaccess",
486
+ "description" :
487
+ """The IP multicast group address which, when combined with
488
+ the corresponding value specified in
489
+ ipMcastRouteGroupPrefixLength, identifies the groups for
490
+ which this entry contains multicast routing information.
491
+
492
+ This address object is only significant up to
493
+ ipMcastRouteGroupPrefixLength bits. The remaining address
494
+ bits are set to zero. This is especially important for this
495
+ index field, which is part of the index of this entry. Any
496
+ non-zero bits would signify an entirely different entry.
497
+
498
+ For addresses of type ipv4z or ipv6z, the appended zone
499
+ index is significant even though it lies beyond the prefix
500
+ length. The use of these address types indicate that this
501
+ forwarding state applies only within the given zone. Zone
502
+ index zero is not valid in this table.""",
503
+ }, # column
504
+ "ipMcastRouteGroupPrefixLength" : {
505
+ "nodetype" : "column",
506
+ "moduleName" : "IPMCAST-MIB",
507
+ "oid" : "1.3.6.1.2.1.168.1.5.1.3",
508
+ "status" : "current",
509
+ "syntax" : {
510
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressPrefixLength"},
511
+ },
512
+ "access" : "noaccess",
513
+ "description" :
514
+ """The length in bits of the mask which, when combined with
515
+ the corresponding value of ipMcastRouteGroup, identifies the
516
+ groups for which this entry contains multicast routing
517
+ information.
518
+
519
+ The InetAddressType is given by
520
+
521
+
522
+
523
+ ipMcastRouteGroupAddressType. For values 'ipv4' and
524
+ 'ipv4z', this object must be in the range 4..32. For values
525
+ 'ipv6' and 'ipv6z', this object must be in the range
526
+ 8..128.""",
527
+ }, # column
528
+ "ipMcastRouteSourceAddressType" : {
529
+ "nodetype" : "column",
530
+ "moduleName" : "IPMCAST-MIB",
531
+ "oid" : "1.3.6.1.2.1.168.1.5.1.4",
532
+ "status" : "current",
533
+ "syntax" : {
534
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
535
+ },
536
+ "access" : "noaccess",
537
+ "description" :
538
+ """A value indicating the address family of the address
539
+ contained in ipMcastRouteSource.
540
+
541
+ A value of unknown(0) indicates a non-source-specific entry,
542
+ corresponding to all sources in the group. Otherwise, the
543
+ value MUST be the same as the value of
544
+ ipMcastRouteGroupType.""",
545
+ }, # column
546
+ "ipMcastRouteSource" : {
547
+ "nodetype" : "column",
548
+ "moduleName" : "IPMCAST-MIB",
549
+ "oid" : "1.3.6.1.2.1.168.1.5.1.5",
550
+ "status" : "current",
551
+ "syntax" : {
552
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
553
+ },
554
+ "access" : "noaccess",
555
+ "description" :
556
+ """The network address which, when combined with the
557
+ corresponding value of ipMcastRouteSourcePrefixLength,
558
+ identifies the sources for which this entry contains
559
+ multicast routing information.
560
+
561
+ This address object is only significant up to
562
+ ipMcastRouteSourcePrefixLength bits. The remaining address
563
+ bits are set to zero. This is especially important for this
564
+ index field, which is part of the index of this entry. Any
565
+ non-zero bits would signify an entirely different entry.
566
+
567
+ For addresses of type ipv4z or ipv6z, the appended zone
568
+ index is significant even though it lies beyond the prefix
569
+ length. The use of these address types indicate that this
570
+ source address applies only within the given zone. Zone
571
+ index zero is not valid in this table.""",
572
+ }, # column
573
+ "ipMcastRouteSourcePrefixLength" : {
574
+ "nodetype" : "column",
575
+ "moduleName" : "IPMCAST-MIB",
576
+ "oid" : "1.3.6.1.2.1.168.1.5.1.6",
577
+ "status" : "current",
578
+ "syntax" : {
579
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressPrefixLength"},
580
+ },
581
+ "access" : "noaccess",
582
+ "description" :
583
+ """The length in bits of the mask which, when combined with
584
+ the corresponding value of ipMcastRouteSource, identifies
585
+ the sources for which this entry contains multicast routing
586
+ information.
587
+
588
+ The InetAddressType is given by
589
+ ipMcastRouteSourceAddressType. For the value 'unknown',
590
+ this object must be zero. For values 'ipv4' and 'ipv4z',
591
+ this object must be in the range 4..32. For values 'ipv6'
592
+ and 'ipv6z', this object must be in the range 8..128.""",
593
+ }, # column
594
+ "ipMcastRouteUpstreamNeighborType" : {
595
+ "nodetype" : "column",
596
+ "moduleName" : "IPMCAST-MIB",
597
+ "oid" : "1.3.6.1.2.1.168.1.5.1.7",
598
+ "status" : "current",
599
+ "syntax" : {
600
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
601
+ },
602
+ "access" : "readonly",
603
+ "description" :
604
+ """A value indicating the address family of the address
605
+ contained in ipMcastRouteUpstreamNeighbor.
606
+
607
+ An address type of unknown(0) indicates that the upstream
608
+ neighbor is unknown, for example in BIDIR-PIM.""",
609
+ "reference" :
610
+ """RFC 5015""",
611
+ }, # column
612
+ "ipMcastRouteUpstreamNeighbor" : {
613
+ "nodetype" : "column",
614
+ "moduleName" : "IPMCAST-MIB",
615
+ "oid" : "1.3.6.1.2.1.168.1.5.1.8",
616
+ "status" : "current",
617
+ "syntax" : {
618
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
619
+ },
620
+ "access" : "readonly",
621
+ "description" :
622
+ """The address of the upstream neighbor (for example, RPF
623
+ neighbor) from which IP datagrams from these sources to
624
+ this multicast address are received.""",
625
+ }, # column
626
+ "ipMcastRouteInIfIndex" : {
627
+ "nodetype" : "column",
628
+ "moduleName" : "IPMCAST-MIB",
629
+ "oid" : "1.3.6.1.2.1.168.1.5.1.9",
630
+ "status" : "current",
631
+ "syntax" : {
632
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndexOrZero"},
633
+ },
634
+ "access" : "readonly",
635
+ "description" :
636
+ """The value of ifIndex for the interface on which IP
637
+ datagrams sent by these sources to this multicast address
638
+ are received. A value of 0 indicates that datagrams are not
639
+ subject to an incoming interface check, but may be accepted
640
+ on multiple interfaces (for example, in BIDIR-PIM).""",
641
+ "reference" :
642
+ """RFC 5015""",
643
+ }, # column
644
+ "ipMcastRouteTimeStamp" : {
645
+ "nodetype" : "column",
646
+ "moduleName" : "IPMCAST-MIB",
647
+ "oid" : "1.3.6.1.2.1.168.1.5.1.10",
648
+ "status" : "current",
649
+ "syntax" : {
650
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
651
+ },
652
+ "access" : "readonly",
653
+ "description" :
654
+ """The value of sysUpTime at which the multicast routing
655
+ information represented by this entry was learned by the
656
+ router.
657
+
658
+ If this information was present at the most recent re-
659
+ initialization of the local management subsystem, then this
660
+ object contains a zero value.""",
661
+ }, # column
662
+ "ipMcastRouteExpiryTime" : {
663
+ "nodetype" : "column",
664
+ "moduleName" : "IPMCAST-MIB",
665
+ "oid" : "1.3.6.1.2.1.168.1.5.1.11",
666
+ "status" : "current",
667
+ "syntax" : {
668
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
669
+ },
670
+ "access" : "readonly",
671
+ "description" :
672
+ """The minimum amount of time remaining before this entry will
673
+ be aged out. The value 0 indicates that the entry is not
674
+ subject to aging. If ipMcastRouteNextHopState is pruned(1),
675
+ this object represents the remaining time until the prune
676
+ expires. If this timer expires, state reverts to
677
+ forwarding(2). Otherwise, this object represents the time
678
+ until this entry is removed from the table.""",
679
+ }, # column
680
+ "ipMcastRouteProtocol" : {
681
+ "nodetype" : "column",
682
+ "moduleName" : "IPMCAST-MIB",
683
+ "oid" : "1.3.6.1.2.1.168.1.5.1.12",
684
+ "status" : "current",
685
+ "syntax" : {
686
+ "type" : { "module" :"IANA-RTPROTO-MIB", "name" : "IANAipMRouteProtocol"},
687
+ },
688
+ "access" : "readonly",
689
+ "description" :
690
+ """The multicast routing protocol via which this multicast
691
+ forwarding entry was learned.""",
692
+ }, # column
693
+ "ipMcastRouteRtProtocol" : {
694
+ "nodetype" : "column",
695
+ "moduleName" : "IPMCAST-MIB",
696
+ "oid" : "1.3.6.1.2.1.168.1.5.1.13",
697
+ "status" : "current",
698
+ "syntax" : {
699
+ "type" : { "module" :"IANA-RTPROTO-MIB", "name" : "IANAipRouteProtocol"},
700
+ },
701
+ "access" : "readonly",
702
+ "description" :
703
+ """The routing mechanism via which the route used to find the
704
+ upstream or parent interface for this multicast forwarding
705
+ entry was learned.""",
706
+ }, # column
707
+ "ipMcastRouteRtAddressType" : {
708
+ "nodetype" : "column",
709
+ "moduleName" : "IPMCAST-MIB",
710
+ "oid" : "1.3.6.1.2.1.168.1.5.1.14",
711
+ "status" : "current",
712
+ "syntax" : {
713
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
714
+ },
715
+ "access" : "readonly",
716
+ "description" :
717
+ """A value indicating the address family of the address
718
+ contained in ipMcastRouteRtAddress.""",
719
+ }, # column
720
+ "ipMcastRouteRtAddress" : {
721
+ "nodetype" : "column",
722
+ "moduleName" : "IPMCAST-MIB",
723
+ "oid" : "1.3.6.1.2.1.168.1.5.1.15",
724
+ "status" : "current",
725
+ "syntax" : {
726
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
727
+ },
728
+ "access" : "readonly",
729
+ "description" :
730
+ """The address portion of the route used to find the upstream
731
+ or parent interface for this multicast forwarding entry.
732
+
733
+ This address object is only significant up to
734
+ ipMcastRouteRtPrefixLength bits. The remaining address bits
735
+ are set to zero.
736
+
737
+ For addresses of type ipv4z or ipv6z, the appended zone
738
+ index is significant even though it lies beyond the prefix
739
+ length. The use of these address types indicate that this
740
+ forwarding state applies only within the given zone. Zone
741
+ index zero is not valid in this table.""",
742
+ }, # column
743
+ "ipMcastRouteRtPrefixLength" : {
744
+ "nodetype" : "column",
745
+ "moduleName" : "IPMCAST-MIB",
746
+ "oid" : "1.3.6.1.2.1.168.1.5.1.16",
747
+ "status" : "current",
748
+ "syntax" : {
749
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressPrefixLength"},
750
+ },
751
+ "access" : "readonly",
752
+ "description" :
753
+ """The length in bits of the mask associated with the route
754
+ used to find the upstream or parent interface for this
755
+ multicast forwarding entry.
756
+
757
+ The InetAddressType is given by ipMcastRouteRtAddressType.
758
+ For values 'ipv4' and 'ipv4z', this object must be in the
759
+ range 4..32. For values 'ipv6' and 'ipv6z', this object
760
+ must be in the range 8..128.""",
761
+ }, # column
762
+ "ipMcastRouteRtType" : {
763
+ "nodetype" : "column",
764
+ "moduleName" : "IPMCAST-MIB",
765
+ "oid" : "1.3.6.1.2.1.168.1.5.1.17",
766
+ "status" : "current",
767
+ "syntax" : {
768
+ "type" : {
769
+ "basetype" : "Enumeration",
770
+ "unicast" : {
771
+ "nodetype" : "namednumber",
772
+ "number" : "1"
773
+ },
774
+ "multicast" : {
775
+ "nodetype" : "namednumber",
776
+ "number" : "2"
777
+ },
778
+ },
779
+ },
780
+ "access" : "readonly",
781
+ "description" :
782
+ """The reason the given route was placed in the (logical)
783
+ multicast Routing Information Base (RIB). A value of
784
+ unicast means that the route would normally be placed only
785
+ in the unicast RIB, but was placed in the multicast RIB
786
+ due (instead or in addition) to local configuration, such as
787
+ when running PIM over RIP. A value of multicast means that
788
+ the route was explicitly added to the multicast RIB by the
789
+ routing protocol, such as the Distance Vector Multicast
790
+ Routing Protocol (DVMRP) or Multiprotocol BGP.""",
791
+ }, # column
792
+ "ipMcastRouteOctets" : {
793
+ "nodetype" : "column",
794
+ "moduleName" : "IPMCAST-MIB",
795
+ "oid" : "1.3.6.1.2.1.168.1.5.1.18",
796
+ "status" : "current",
797
+ "syntax" : {
798
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
799
+ },
800
+ "access" : "readonly",
801
+ "description" :
802
+ """The number of octets contained in IP datagrams that were
803
+ received from these sources and addressed to this multicast
804
+ group address, and which were forwarded by this router.
805
+
806
+ Discontinuities in this monotonically increasing value
807
+ occur at re-initialization of the management system.
808
+ Discontinuities can also occur as a result of routes being
809
+ removed and replaced, which can be detected by observing
810
+ the value of ipMcastRouteTimeStamp.""",
811
+ }, # column
812
+ "ipMcastRoutePkts" : {
813
+ "nodetype" : "column",
814
+ "moduleName" : "IPMCAST-MIB",
815
+ "oid" : "1.3.6.1.2.1.168.1.5.1.19",
816
+ "status" : "current",
817
+ "syntax" : {
818
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
819
+ },
820
+ "access" : "readonly",
821
+ "description" :
822
+ """The number of packets routed using this multicast route
823
+ entry.
824
+
825
+ Discontinuities in this monotonically increasing value
826
+ occur at re-initialization of the management system.
827
+ Discontinuities can also occur as a result of routes being
828
+ removed and replaced, which can be detected by observing
829
+ the value of ipMcastRouteTimeStamp.""",
830
+ }, # column
831
+ "ipMcastRouteTtlDropOctets" : {
832
+ "nodetype" : "column",
833
+ "moduleName" : "IPMCAST-MIB",
834
+ "oid" : "1.3.6.1.2.1.168.1.5.1.20",
835
+ "status" : "current",
836
+ "syntax" : {
837
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
838
+ },
839
+ "access" : "readonly",
840
+ "description" :
841
+ """The number of octets contained in IP datagrams that this
842
+ router has received from these sources and addressed to this
843
+ multicast group address, which were dropped because the TTL
844
+ (IPv4) or Hop Limit (IPv6) was decremented to zero, or to a
845
+ value less than ipMcastInterfaceTtl for all next hops.
846
+
847
+ Discontinuities in this monotonically increasing value
848
+ occur at re-initialization of the management system.
849
+ Discontinuities can also occur as a result of routes being
850
+ removed and replaced, which can be detected by observing
851
+ the value of ipMcastRouteTimeStamp.""",
852
+ }, # column
853
+ "ipMcastRouteTtlDropPackets" : {
854
+ "nodetype" : "column",
855
+ "moduleName" : "IPMCAST-MIB",
856
+ "oid" : "1.3.6.1.2.1.168.1.5.1.21",
857
+ "status" : "current",
858
+ "syntax" : {
859
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
860
+ },
861
+ "access" : "readonly",
862
+ "description" :
863
+ """The number of packets that this router has received from
864
+ these sources and addressed to this multicast group address,
865
+ which were dropped because the TTL (IPv4) or Hop Limit
866
+ (IPv6) was decremented to zero, or to a value less than
867
+ ipMcastInterfaceTtl for all next hops.
868
+
869
+ Discontinuities in this monotonically increasing value
870
+ occur at re-initialization of the management system.
871
+ Discontinuities can also occur as a result of routes being
872
+ removed and replaced, which can be detected by observing
873
+ the value of ipMcastRouteTimeStamp.""",
874
+ }, # column
875
+ "ipMcastRouteDifferentInIfOctets" : {
876
+ "nodetype" : "column",
877
+ "moduleName" : "IPMCAST-MIB",
878
+ "oid" : "1.3.6.1.2.1.168.1.5.1.22",
879
+ "status" : "current",
880
+ "syntax" : {
881
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
882
+ },
883
+ "access" : "readonly",
884
+ "description" :
885
+ """The number of octets contained in IP datagrams that this
886
+ router has received from these sources and addressed to this
887
+ multicast group address, which were dropped because they
888
+ were received on an unexpected interface.
889
+
890
+ For RPF checking protocols (such as PIM-SM), these packets
891
+ arrived on interfaces other than ipMcastRouteInIfIndex, and
892
+ were dropped because of this failed RPF check. (RPF paths
893
+ are 'Reverse Path Forwarding' paths; the unicast routes to
894
+ the expected origin of multicast data flows).
895
+
896
+
897
+
898
+
899
+ Other protocols may drop packets on an incoming interface
900
+ check for different reasons (for example, BIDIR-PIM performs
901
+ a DF check on receipt of packets). All packets dropped as a
902
+ result of an incoming interface check are counted here.
903
+
904
+ If this counter increases rapidly, this indicates a problem.
905
+ A significant quantity of multicast data is arriving at this
906
+ router on unexpected interfaces, and is not being forwarded.
907
+
908
+ For guidance, if the rate of increase of this counter
909
+ exceeds 1% of the rate of increase of ipMcastRouteOctets,
910
+ then there are multicast routing problems that require
911
+ investigation.
912
+
913
+ Discontinuities in this monotonically increasing value
914
+ occur at re-initialization of the management system.
915
+ Discontinuities can also occur as a result of routes being
916
+ removed and replaced, which can be detected by observing
917
+ the value of ipMcastRouteTimeStamp.""",
918
+ "reference" :
919
+ """RFC 4601 and RFC 5015""",
920
+ }, # column
921
+ "ipMcastRouteDifferentInIfPackets" : {
922
+ "nodetype" : "column",
923
+ "moduleName" : "IPMCAST-MIB",
924
+ "oid" : "1.3.6.1.2.1.168.1.5.1.23",
925
+ "status" : "current",
926
+ "syntax" : {
927
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
928
+ },
929
+ "access" : "readonly",
930
+ "description" :
931
+ """The number of packets which this router has received from
932
+ these sources and addressed to this multicast group address,
933
+ which were dropped because they were received on an
934
+ unexpected interface.
935
+
936
+ For RPF checking protocols (such as PIM-SM), these packets
937
+ arrived on interfaces other than ipMcastRouteInIfIndex, and
938
+ were dropped because of this failed RPF check. (RPF paths
939
+ are 'Reverse Path Forwarding' path; the unicast routes to
940
+ the expected origin of multicast data flows).
941
+
942
+ Other protocols may drop packets on an incoming interface
943
+ check for different reasons (for example, BIDIR-PIM performs
944
+ a DF check on receipt of packets). All packets dropped as a
945
+ result of an incoming interface check are counted here.
946
+
947
+ If this counter increases rapidly, this indicates a problem.
948
+ A significant quantity of multicast data is arriving at this
949
+ router on unexpected interfaces, and is not being forwarded.
950
+
951
+ For guidance, if the rate of increase of this counter
952
+
953
+
954
+
955
+ exceeds 1% of the rate of increase of ipMcastRoutePkts, then
956
+ there are multicast routing problems that require
957
+ investigation.
958
+
959
+ Discontinuities in this monotonically increasing value
960
+ occur at re-initialization of the management system.
961
+ Discontinuities can also occur as a result of routes being
962
+ removed and replaced, which can be detected by observing
963
+ the value of ipMcastRouteTimeStamp.""",
964
+ "reference" :
965
+ """RFC 4601 and RFC 5015""",
966
+ }, # column
967
+ "ipMcastRouteBps" : {
968
+ "nodetype" : "column",
969
+ "moduleName" : "IPMCAST-MIB",
970
+ "oid" : "1.3.6.1.2.1.168.1.5.1.24",
971
+ "status" : "current",
972
+ "syntax" : {
973
+ "type" : { "module" :"HCNUM-TC", "name" : "CounterBasedGauge64"},
974
+ },
975
+ "access" : "readonly",
976
+ "units" : "bits per second",
977
+ "description" :
978
+ """Bits per second forwarded by this router using this
979
+ multicast routing entry.
980
+
981
+ This value is a sample; it is the number of bits forwarded
982
+ during the last whole 1 second sampling period. The value
983
+ during the current 1 second sampling period is not made
984
+ available until the period is completed.
985
+
986
+ The quantity being sampled is the same as that measured by
987
+ ipMcastRouteOctets. The units and the sampling method are
988
+ different.""",
989
+ }, # column
990
+ "ipMcastRouteNextHopTable" : {
991
+ "nodetype" : "table",
992
+ "moduleName" : "IPMCAST-MIB",
993
+ "oid" : "1.3.6.1.2.1.168.1.6",
994
+ "status" : "current",
995
+ "description" :
996
+ """The (conceptual) table containing information on the
997
+ next-hops on outgoing interfaces for routing IP multicast
998
+ datagrams. Each entry is one of a list of next-hops on
999
+ outgoing interfaces for particular sources sending to a
1000
+ particular multicast group address.""",
1001
+ }, # table
1002
+ "ipMcastRouteNextHopEntry" : {
1003
+ "nodetype" : "row",
1004
+ "moduleName" : "IPMCAST-MIB",
1005
+ "oid" : "1.3.6.1.2.1.168.1.6.1",
1006
+ "status" : "current",
1007
+ "linkage" : [
1008
+ "ipMcastRouteNextHopGroupAddressType",
1009
+ "ipMcastRouteNextHopGroup",
1010
+ "ipMcastRouteNextHopGroupPrefixLength",
1011
+ "ipMcastRouteNextHopSourceAddressType",
1012
+ "ipMcastRouteNextHopSource",
1013
+ "ipMcastRouteNextHopSourcePrefixLength",
1014
+ "ipMcastRouteNextHopIfIndex",
1015
+ "ipMcastRouteNextHopAddressType",
1016
+ "ipMcastRouteNextHopAddress",
1017
+ ],
1018
+ "description" :
1019
+ """An entry (conceptual row) in the list of next-hops on
1020
+ outgoing interfaces to which IP multicast datagrams from
1021
+ particular sources to an IP multicast group address are
1022
+ routed.
1023
+
1024
+ OIDs are limited to 128 sub-identifiers, but this limit
1025
+ is not enforced by the syntax of this entry. In practice,
1026
+ this does not present a problem, because IP address types
1027
+ allowed by conformance statements do not exceed this limit.""",
1028
+ }, # row
1029
+ "ipMcastRouteNextHopGroupAddressType" : {
1030
+ "nodetype" : "column",
1031
+ "moduleName" : "IPMCAST-MIB",
1032
+ "oid" : "1.3.6.1.2.1.168.1.6.1.1",
1033
+ "status" : "current",
1034
+ "syntax" : {
1035
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
1036
+ },
1037
+ "access" : "noaccess",
1038
+ "description" :
1039
+ """A value indicating the address family of the address
1040
+
1041
+
1042
+
1043
+ contained in ipMcastRouteNextHopGroup. Legal values
1044
+ correspond to the subset of address families for which
1045
+ multicast forwarding is supported.""",
1046
+ }, # column
1047
+ "ipMcastRouteNextHopGroup" : {
1048
+ "nodetype" : "column",
1049
+ "moduleName" : "IPMCAST-MIB",
1050
+ "oid" : "1.3.6.1.2.1.168.1.6.1.2",
1051
+ "status" : "current",
1052
+ "syntax" : {
1053
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
1054
+ },
1055
+ "access" : "noaccess",
1056
+ "description" :
1057
+ """The IP multicast group address which, when combined with
1058
+ the corresponding value specified in
1059
+ ipMcastRouteNextHopGroupPrefixLength, identifies the groups
1060
+ for which this entry contains multicast forwarding
1061
+ information.
1062
+
1063
+ This address object is only significant up to
1064
+ ipMcastRouteNextHopGroupPrefixLength bits. The remaining
1065
+ address bits are set to zero. This is especially important
1066
+ for this index field, which is part of the index of this
1067
+ entry. Any non-zero bits would signify an entirely
1068
+ different entry.
1069
+
1070
+ For addresses of type ipv4z or ipv6z, the appended zone
1071
+ index is significant even though it lies beyond the prefix
1072
+ length. The use of these address types indicate that this
1073
+ forwarding state applies only within the given zone. Zone
1074
+ index zero is not valid in this table.""",
1075
+ }, # column
1076
+ "ipMcastRouteNextHopGroupPrefixLength" : {
1077
+ "nodetype" : "column",
1078
+ "moduleName" : "IPMCAST-MIB",
1079
+ "oid" : "1.3.6.1.2.1.168.1.6.1.3",
1080
+ "status" : "current",
1081
+ "syntax" : {
1082
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressPrefixLength"},
1083
+ },
1084
+ "access" : "noaccess",
1085
+ "description" :
1086
+ """The length in bits of the mask which, when combined with
1087
+ the corresponding value of ipMcastRouteGroup, identifies the
1088
+ groups for which this entry contains multicast routing
1089
+ information.
1090
+
1091
+ The InetAddressType is given by
1092
+ ipMcastRouteNextHopGroupAddressType. For values 'ipv4' and
1093
+ 'ipv4z', this object must be in the range 4..32. For values
1094
+ 'ipv6' and 'ipv6z', this object must be in the range
1095
+ 8..128.""",
1096
+ }, # column
1097
+ "ipMcastRouteNextHopSourceAddressType" : {
1098
+ "nodetype" : "column",
1099
+ "moduleName" : "IPMCAST-MIB",
1100
+ "oid" : "1.3.6.1.2.1.168.1.6.1.4",
1101
+ "status" : "current",
1102
+ "syntax" : {
1103
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
1104
+ },
1105
+ "access" : "noaccess",
1106
+ "description" :
1107
+ """A value indicating the address family of the address
1108
+ contained in ipMcastRouteNextHopSource.
1109
+
1110
+ A value of unknown(0) indicates a non-source-specific entry,
1111
+ corresponding to all sources in the group. Otherwise, the
1112
+ value MUST be the same as the value of
1113
+ ipMcastRouteNextHopGroupType.""",
1114
+ }, # column
1115
+ "ipMcastRouteNextHopSource" : {
1116
+ "nodetype" : "column",
1117
+ "moduleName" : "IPMCAST-MIB",
1118
+ "oid" : "1.3.6.1.2.1.168.1.6.1.5",
1119
+ "status" : "current",
1120
+ "syntax" : {
1121
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
1122
+ },
1123
+ "access" : "noaccess",
1124
+ "description" :
1125
+ """The network address which, when combined with the
1126
+ corresponding value of the mask specified in
1127
+ ipMcastRouteNextHopSourcePrefixLength, identifies the
1128
+ sources for which this entry specifies a next-hop on an
1129
+ outgoing interface.
1130
+
1131
+ This address object is only significant up to
1132
+ ipMcastRouteNextHopSourcePrefixLength bits. The remaining
1133
+ address bits are set to zero. This is especially important
1134
+ for this index field, which is part of the index of this
1135
+ entry. Any non-zero bits would signify an entirely
1136
+ different entry.
1137
+
1138
+ For addresses of type ipv4z or ipv6z, the appended zone
1139
+ index is significant even though it lies beyond the prefix
1140
+ length. The use of these address types indicate that this
1141
+ source address applies only within the given zone. Zone
1142
+ index zero is not valid in this table.""",
1143
+ }, # column
1144
+ "ipMcastRouteNextHopSourcePrefixLength" : {
1145
+ "nodetype" : "column",
1146
+ "moduleName" : "IPMCAST-MIB",
1147
+ "oid" : "1.3.6.1.2.1.168.1.6.1.6",
1148
+ "status" : "current",
1149
+ "syntax" : {
1150
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressPrefixLength"},
1151
+ },
1152
+ "access" : "noaccess",
1153
+ "description" :
1154
+ """The length in bits of the mask which, when combined with
1155
+ the corresponding value specified in
1156
+ ipMcastRouteNextHopSource, identifies the sources for which
1157
+ this entry specifies a next-hop on an outgoing interface.
1158
+
1159
+
1160
+
1161
+
1162
+ The InetAddressType is given by
1163
+ ipMcastRouteNextHopSourceAddressType. For the value
1164
+ 'unknown', this object must be zero. For values 'ipv4' and
1165
+ 'ipv4z', this object must be in the range 4..32. For values
1166
+ 'ipv6' and 'ipv6z', this object must be in the range
1167
+ 8..128.""",
1168
+ }, # column
1169
+ "ipMcastRouteNextHopIfIndex" : {
1170
+ "nodetype" : "column",
1171
+ "moduleName" : "IPMCAST-MIB",
1172
+ "oid" : "1.3.6.1.2.1.168.1.6.1.7",
1173
+ "status" : "current",
1174
+ "syntax" : {
1175
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
1176
+ },
1177
+ "access" : "noaccess",
1178
+ "description" :
1179
+ """The ifIndex value of the interface for the outgoing
1180
+ interface for this next-hop.""",
1181
+ }, # column
1182
+ "ipMcastRouteNextHopAddressType" : {
1183
+ "nodetype" : "column",
1184
+ "moduleName" : "IPMCAST-MIB",
1185
+ "oid" : "1.3.6.1.2.1.168.1.6.1.8",
1186
+ "status" : "current",
1187
+ "syntax" : {
1188
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
1189
+ },
1190
+ "access" : "noaccess",
1191
+ "description" :
1192
+ """A value indicating the address family of the address
1193
+ contained in ipMcastRouteNextHopAddress.""",
1194
+ }, # column
1195
+ "ipMcastRouteNextHopAddress" : {
1196
+ "nodetype" : "column",
1197
+ "moduleName" : "IPMCAST-MIB",
1198
+ "oid" : "1.3.6.1.2.1.168.1.6.1.9",
1199
+ "status" : "current",
1200
+ "syntax" : {
1201
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
1202
+ },
1203
+ "access" : "noaccess",
1204
+ "description" :
1205
+ """The address of the next-hop specific to this entry. For
1206
+ most interfaces, this is identical to
1207
+ ipMcastRouteNextHopGroup. Non-Broadcast Multi-Access
1208
+ (NBMA) interfaces, however, may
1209
+ have multiple next-hop addresses out a single outgoing
1210
+ interface.""",
1211
+ }, # column
1212
+ "ipMcastRouteNextHopState" : {
1213
+ "nodetype" : "column",
1214
+ "moduleName" : "IPMCAST-MIB",
1215
+ "oid" : "1.3.6.1.2.1.168.1.6.1.10",
1216
+ "status" : "current",
1217
+ "syntax" : {
1218
+ "type" : {
1219
+ "basetype" : "Enumeration",
1220
+ "pruned" : {
1221
+ "nodetype" : "namednumber",
1222
+ "number" : "1"
1223
+ },
1224
+ "forwarding" : {
1225
+ "nodetype" : "namednumber",
1226
+ "number" : "2"
1227
+ },
1228
+ },
1229
+ },
1230
+ "access" : "readonly",
1231
+ "description" :
1232
+ """An indication of whether the outgoing interface and next-
1233
+ hop represented by this entry is currently being used to
1234
+ forward IP datagrams. The value 'forwarding' indicates it
1235
+ is currently being used; the value 'pruned' indicates it is
1236
+
1237
+
1238
+
1239
+ not.""",
1240
+ }, # column
1241
+ "ipMcastRouteNextHopTimeStamp" : {
1242
+ "nodetype" : "column",
1243
+ "moduleName" : "IPMCAST-MIB",
1244
+ "oid" : "1.3.6.1.2.1.168.1.6.1.11",
1245
+ "status" : "current",
1246
+ "syntax" : {
1247
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1248
+ },
1249
+ "access" : "readonly",
1250
+ "description" :
1251
+ """The value of sysUpTime at which the multicast routing
1252
+ information represented by this entry was learned by the
1253
+ router.
1254
+
1255
+ If this information was present at the most recent re-
1256
+ initialization of the local management subsystem, then this
1257
+ object contains a zero value.""",
1258
+ }, # column
1259
+ "ipMcastRouteNextHopExpiryTime" : {
1260
+ "nodetype" : "column",
1261
+ "moduleName" : "IPMCAST-MIB",
1262
+ "oid" : "1.3.6.1.2.1.168.1.6.1.12",
1263
+ "status" : "current",
1264
+ "syntax" : {
1265
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
1266
+ },
1267
+ "access" : "readonly",
1268
+ "description" :
1269
+ """The minimum amount of time remaining before this entry will
1270
+ be aged out. If ipMcastRouteNextHopState is pruned(1), the
1271
+ remaining time until the prune expires and the state reverts
1272
+ to forwarding(2). Otherwise, the remaining time until this
1273
+ entry is removed from the table. The time remaining may be
1274
+ copied from ipMcastRouteExpiryTime if the protocol in use
1275
+ for this entry does not specify next-hop timers. The value
1276
+ 0 indicates that the entry is not subject to aging.""",
1277
+ }, # column
1278
+ "ipMcastRouteNextHopClosestMemberHops" : {
1279
+ "nodetype" : "column",
1280
+ "moduleName" : "IPMCAST-MIB",
1281
+ "oid" : "1.3.6.1.2.1.168.1.6.1.13",
1282
+ "status" : "current",
1283
+ "syntax" : {
1284
+ "type" : {
1285
+ "basetype" : "Unsigned32",
1286
+ "ranges" : [
1287
+ {
1288
+ "min" : "0",
1289
+ "max" : "256"
1290
+ },
1291
+ ],
1292
+ "range" : {
1293
+ "min" : "0",
1294
+ "max" : "256"
1295
+ },
1296
+ },
1297
+ },
1298
+ "access" : "readonly",
1299
+ "description" :
1300
+ """The minimum number of hops between this router and any
1301
+ member of this IP multicast group reached via this next-hop
1302
+ on this outgoing interface. Any IP multicast datagrams for
1303
+ the group that have a TTL (IPv4) or Hop Count (IPv6) less
1304
+ than this number of hops will not be forwarded to this
1305
+ next-hop.
1306
+
1307
+ A value of 0 means all multicast datagrams are forwarded out
1308
+ the interface. A value of 256 means that no multicast
1309
+ datagrams are forwarded out the interface.
1310
+
1311
+
1312
+
1313
+
1314
+ This is an optimization applied by multicast routing
1315
+ protocols that explicitly track hop counts to downstream
1316
+ listeners. Multicast protocols that are not aware of hop
1317
+ counts to downstream listeners set this object to 0.""",
1318
+ }, # column
1319
+ "ipMcastRouteNextHopProtocol" : {
1320
+ "nodetype" : "column",
1321
+ "moduleName" : "IPMCAST-MIB",
1322
+ "oid" : "1.3.6.1.2.1.168.1.6.1.14",
1323
+ "status" : "current",
1324
+ "syntax" : {
1325
+ "type" : { "module" :"IANA-RTPROTO-MIB", "name" : "IANAipMRouteProtocol"},
1326
+ },
1327
+ "access" : "readonly",
1328
+ "description" :
1329
+ """The routing mechanism via which this next-hop was learned.""",
1330
+ }, # column
1331
+ "ipMcastRouteNextHopOctets" : {
1332
+ "nodetype" : "column",
1333
+ "moduleName" : "IPMCAST-MIB",
1334
+ "oid" : "1.3.6.1.2.1.168.1.6.1.15",
1335
+ "status" : "current",
1336
+ "syntax" : {
1337
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1338
+ },
1339
+ "access" : "readonly",
1340
+ "description" :
1341
+ """The number of octets of multicast packets that have been
1342
+ forwarded using this route.
1343
+
1344
+ Discontinuities in this monotonically increasing value
1345
+ occur at re-initialization of the management system.
1346
+ Discontinuities can also occur as a result of routes being
1347
+ removed and replaced, which can be detected by observing
1348
+ the value of ipMcastRouteNextHopTimeStamp.""",
1349
+ }, # column
1350
+ "ipMcastRouteNextHopPkts" : {
1351
+ "nodetype" : "column",
1352
+ "moduleName" : "IPMCAST-MIB",
1353
+ "oid" : "1.3.6.1.2.1.168.1.6.1.16",
1354
+ "status" : "current",
1355
+ "syntax" : {
1356
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1357
+ },
1358
+ "access" : "readonly",
1359
+ "description" :
1360
+ """The number of packets which have been forwarded using this
1361
+ route.
1362
+
1363
+ Discontinuities in this monotonically increasing value
1364
+ occur at re-initialization of the management system.
1365
+ Discontinuities can also occur as a result of routes being
1366
+ removed and replaced, which can be detected by observing
1367
+ the value of ipMcastRouteNextHopTimeStamp.""",
1368
+ }, # column
1369
+ "ipMcastBoundaryTable" : {
1370
+ "nodetype" : "table",
1371
+ "moduleName" : "IPMCAST-MIB",
1372
+ "oid" : "1.3.6.1.2.1.168.1.7",
1373
+ "status" : "current",
1374
+ "description" :
1375
+ """The (conceptual) table listing the system's multicast scope
1376
+ zone boundaries.""",
1377
+ "reference" :
1378
+ """RFC 4007 Section 5""",
1379
+ }, # table
1380
+ "ipMcastBoundaryEntry" : {
1381
+ "nodetype" : "row",
1382
+ "moduleName" : "IPMCAST-MIB",
1383
+ "oid" : "1.3.6.1.2.1.168.1.7.1",
1384
+ "create" : "true",
1385
+ "status" : "current",
1386
+ "linkage" : [
1387
+ "ipMcastBoundaryIfIndex",
1388
+ "ipMcastBoundaryAddressType",
1389
+ "ipMcastBoundaryAddress",
1390
+ "ipMcastBoundaryAddressPrefixLength",
1391
+ ],
1392
+ "description" :
1393
+ """An entry (conceptual row) describing one of this device's
1394
+ multicast scope zone boundaries.
1395
+
1396
+ OIDs are limited to 128 sub-identifiers, but this limit
1397
+ is not enforced by the syntax of this entry. In practice,
1398
+ this does not present a problem, because IP address types
1399
+ allowed by conformance statements do not exceed this limit.""",
1400
+ "reference" :
1401
+ """RFC 2365 Section 5, RFC 4007 Section 5""",
1402
+ }, # row
1403
+ "ipMcastBoundaryIfIndex" : {
1404
+ "nodetype" : "column",
1405
+ "moduleName" : "IPMCAST-MIB",
1406
+ "oid" : "1.3.6.1.2.1.168.1.7.1.1",
1407
+ "status" : "current",
1408
+ "syntax" : {
1409
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
1410
+ },
1411
+ "access" : "noaccess",
1412
+ "description" :
1413
+ """The IfIndex value for the interface to which this boundary
1414
+ applies. Packets with a destination address in the
1415
+
1416
+
1417
+
1418
+ associated address/mask range will not be forwarded over
1419
+ this interface.
1420
+
1421
+ For IPv4, zone boundaries cut through links. Therefore,
1422
+ this is an external interface. This may be either a
1423
+ physical or virtual interface (tunnel, encapsulation, and
1424
+ so forth.)
1425
+
1426
+ For IPv6, zone boundaries cut through nodes. Therefore,
1427
+ this is a virtual interface within the node. This is not
1428
+ an external interface, either real or virtual. Packets
1429
+ crossing this interface neither arrive at nor leave the
1430
+ node, but only move between zones within the node.""",
1431
+ "reference" :
1432
+ """RFC 2365 Section 5, RFC 4007 Section 5""",
1433
+ }, # column
1434
+ "ipMcastBoundaryAddressType" : {
1435
+ "nodetype" : "column",
1436
+ "moduleName" : "IPMCAST-MIB",
1437
+ "oid" : "1.3.6.1.2.1.168.1.7.1.2",
1438
+ "status" : "current",
1439
+ "syntax" : {
1440
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
1441
+ },
1442
+ "access" : "noaccess",
1443
+ "description" :
1444
+ """A value indicating the address family of the address
1445
+ contained in ipMcastBoundaryAddress. Legal values
1446
+ correspond to the subset of address families for which
1447
+ multicast forwarding is supported.""",
1448
+ }, # column
1449
+ "ipMcastBoundaryAddress" : {
1450
+ "nodetype" : "column",
1451
+ "moduleName" : "IPMCAST-MIB",
1452
+ "oid" : "1.3.6.1.2.1.168.1.7.1.3",
1453
+ "status" : "current",
1454
+ "syntax" : {
1455
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
1456
+ },
1457
+ "access" : "noaccess",
1458
+ "description" :
1459
+ """The group address which, when combined with the
1460
+ corresponding value of ipMcastBoundaryAddressPrefixLength,
1461
+ identifies the group range for which the scoped boundary
1462
+ exists. Scoped IPv4 multicast address ranges must be
1463
+ prefixed by 239.0.0.0/8. Scoped IPv6 multicast address
1464
+ ranges are FF0x::/16, where x is a valid RFC 4291 multicast
1465
+ scope.
1466
+
1467
+ An IPv6 address prefixed by FF1x::/16 is a non-permanently-
1468
+ assigned address. An IPv6 address prefixed by FF3x::/16 is
1469
+ a unicast-prefix-based multicast addresses. A zone boundary
1470
+ for FF0x::/16 implies an identical boundary for these other
1471
+ prefixes. No separate FF1x::/16 or FF3x::/16 entries exist
1472
+ in this table.
1473
+
1474
+ This address object is only significant up to
1475
+
1476
+
1477
+
1478
+ ipMcastBoundaryAddressPrefixLength bits. The remaining
1479
+ address bits are set to zero. This is especially important
1480
+ for this index field, which is part of the index of this
1481
+ entry. Any non-zero bits would signify an entirely
1482
+ different entry.""",
1483
+ }, # column
1484
+ "ipMcastBoundaryAddressPrefixLength" : {
1485
+ "nodetype" : "column",
1486
+ "moduleName" : "IPMCAST-MIB",
1487
+ "oid" : "1.3.6.1.2.1.168.1.7.1.4",
1488
+ "status" : "current",
1489
+ "syntax" : {
1490
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressPrefixLength"},
1491
+ },
1492
+ "access" : "noaccess",
1493
+ "description" :
1494
+ """The length in bits of the mask which when, combined with
1495
+ the corresponding value of ipMcastBoundaryAddress,
1496
+ identifies the group range for which the scoped boundary
1497
+ exists.
1498
+
1499
+ The InetAddressType is given by ipMcastBoundaryAddressType.
1500
+ For values 'ipv4' and 'ipv4z', this object must be in the
1501
+ range 4..32. For values 'ipv6' and 'ipv6z', this object
1502
+ must be set to 16.""",
1503
+ }, # column
1504
+ "ipMcastBoundaryTimeStamp" : {
1505
+ "nodetype" : "column",
1506
+ "moduleName" : "IPMCAST-MIB",
1507
+ "oid" : "1.3.6.1.2.1.168.1.7.1.5",
1508
+ "status" : "current",
1509
+ "syntax" : {
1510
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1511
+ },
1512
+ "access" : "readonly",
1513
+ "description" :
1514
+ """The value of sysUpTime at which the multicast boundary
1515
+ information represented by this entry was learned by the
1516
+ router.
1517
+
1518
+ If this information was present at the most recent re-
1519
+ initialization of the local management subsystem, then this
1520
+ object contains a zero value.""",
1521
+ }, # column
1522
+ "ipMcastBoundaryDroppedMcastOctets" : {
1523
+ "nodetype" : "column",
1524
+ "moduleName" : "IPMCAST-MIB",
1525
+ "oid" : "1.3.6.1.2.1.168.1.7.1.6",
1526
+ "status" : "current",
1527
+ "syntax" : {
1528
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1529
+ },
1530
+ "access" : "readonly",
1531
+ "description" :
1532
+ """The number of octets of multicast packets that have been
1533
+ dropped as a result of this zone boundary configuration.
1534
+
1535
+ Discontinuities in this monotonically increasing value
1536
+ occur at re-initialization of the management system.
1537
+ Discontinuities can also occur as a result of boundary
1538
+
1539
+
1540
+
1541
+ configuration being removed and replaced, which can be
1542
+ detected by observing the value of
1543
+ ipMcastBoundaryTimeStamp.""",
1544
+ }, # column
1545
+ "ipMcastBoundaryDroppedMcastPkts" : {
1546
+ "nodetype" : "column",
1547
+ "moduleName" : "IPMCAST-MIB",
1548
+ "oid" : "1.3.6.1.2.1.168.1.7.1.7",
1549
+ "status" : "current",
1550
+ "syntax" : {
1551
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1552
+ },
1553
+ "access" : "readonly",
1554
+ "description" :
1555
+ """The number of multicast packets that have been dropped as a
1556
+ result of this zone boundary configuration.
1557
+
1558
+ Discontinuities in this monotonically increasing value
1559
+ occur at re-initialization of the management system.
1560
+ Discontinuities can also occur as a result of boundary
1561
+ configuration being removed and replaced, which can be
1562
+ detected by observing the value of
1563
+ ipMcastBoundaryTimeStamp.""",
1564
+ }, # column
1565
+ "ipMcastBoundaryStatus" : {
1566
+ "nodetype" : "column",
1567
+ "moduleName" : "IPMCAST-MIB",
1568
+ "oid" : "1.3.6.1.2.1.168.1.7.1.8",
1569
+ "status" : "current",
1570
+ "syntax" : {
1571
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1572
+ },
1573
+ "access" : "readwrite",
1574
+ "description" :
1575
+ """The status of this row, by which rows in this table can
1576
+ be created and destroyed.
1577
+
1578
+ This status object can be set to active(1) without setting
1579
+ any other columnar objects in this entry.
1580
+
1581
+ All writeable objects in this entry can be modified when the
1582
+ status of this entry is active(1).""",
1583
+ }, # column
1584
+ "ipMcastBoundaryStorageType" : {
1585
+ "nodetype" : "column",
1586
+ "moduleName" : "IPMCAST-MIB",
1587
+ "oid" : "1.3.6.1.2.1.168.1.7.1.9",
1588
+ "status" : "current",
1589
+ "syntax" : {
1590
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
1591
+ },
1592
+ "access" : "readwrite",
1593
+ "default" : "nonVolatile",
1594
+ "description" :
1595
+ """The storage type for this row. Rows having the value
1596
+ 'permanent' need not allow write-access to any columnar
1597
+ objects in the row.""",
1598
+ }, # column
1599
+ "ipMcastScopeNameTable" : {
1600
+ "nodetype" : "table",
1601
+ "moduleName" : "IPMCAST-MIB",
1602
+ "oid" : "1.3.6.1.2.1.168.1.8",
1603
+ "status" : "current",
1604
+ "description" :
1605
+ """The (conceptual) table listing multicast scope names.""",
1606
+ "reference" :
1607
+ """RFC 4007 Section 4""",
1608
+ }, # table
1609
+ "ipMcastScopeNameEntry" : {
1610
+ "nodetype" : "row",
1611
+ "moduleName" : "IPMCAST-MIB",
1612
+ "oid" : "1.3.6.1.2.1.168.1.8.1",
1613
+ "create" : "true",
1614
+ "status" : "current",
1615
+ "linkage" : [
1616
+ "ipMcastScopeNameAddressType",
1617
+ "ipMcastScopeNameAddress",
1618
+ "ipMcastScopeNameAddressPrefixLength",
1619
+ "ipMcastScopeNameLanguage",
1620
+ ],
1621
+ "description" :
1622
+ """An entry (conceptual row) that names a multicast address
1623
+ scope.
1624
+
1625
+ OIDs are limited to 128 sub-identifiers, but this limit
1626
+ is not enforced by the syntax of this entry. In practice,
1627
+ this does not present a problem, because IP address types
1628
+ allowed by conformance statements do not exceed this limit.""",
1629
+ "reference" :
1630
+ """RFC 4007 Section 4""",
1631
+ }, # row
1632
+ "ipMcastScopeNameAddressType" : {
1633
+ "nodetype" : "column",
1634
+ "moduleName" : "IPMCAST-MIB",
1635
+ "oid" : "1.3.6.1.2.1.168.1.8.1.1",
1636
+ "status" : "current",
1637
+ "syntax" : {
1638
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
1639
+ },
1640
+ "access" : "noaccess",
1641
+ "description" :
1642
+ """A value indicating the address family of the address
1643
+
1644
+
1645
+
1646
+ contained in ipMcastScopeNameAddress. Legal values
1647
+ correspond to the subset of address families for which
1648
+ multicast forwarding is supported.""",
1649
+ }, # column
1650
+ "ipMcastScopeNameAddress" : {
1651
+ "nodetype" : "column",
1652
+ "moduleName" : "IPMCAST-MIB",
1653
+ "oid" : "1.3.6.1.2.1.168.1.8.1.2",
1654
+ "status" : "current",
1655
+ "syntax" : {
1656
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
1657
+ },
1658
+ "access" : "noaccess",
1659
+ "description" :
1660
+ """The group address which, when combined with the
1661
+ corresponding value of ipMcastScopeNameAddressPrefixLength,
1662
+ identifies the group range associated with the multicast
1663
+ scope. Scoped IPv4 multicast address ranges must be
1664
+ prefixed by 239.0.0.0/8. Scoped IPv6 multicast address
1665
+ ranges are FF0x::/16, where x is a valid RFC 4291 multicast
1666
+ scope.
1667
+
1668
+ An IPv6 address prefixed by FF1x::/16 is a non-permanently-
1669
+ assigned address. An IPv6 address prefixed by FF3x::/16 is
1670
+ a unicast-prefix-based multicast addresses. A scope
1671
+ FF0x::/16 implies an identical scope name for these other
1672
+ prefixes. No separate FF1x::/16 or FF3x::/16 entries exist
1673
+ in this table.
1674
+
1675
+ This address object is only significant up to
1676
+ ipMcastScopeNameAddressPrefixLength bits. The remaining
1677
+ address bits are set to zero. This is especially important
1678
+ for this index field, which is part of the index of this
1679
+ entry. Any non-zero bits would signify an entirely
1680
+ different entry.""",
1681
+ }, # column
1682
+ "ipMcastScopeNameAddressPrefixLength" : {
1683
+ "nodetype" : "column",
1684
+ "moduleName" : "IPMCAST-MIB",
1685
+ "oid" : "1.3.6.1.2.1.168.1.8.1.3",
1686
+ "status" : "current",
1687
+ "syntax" : {
1688
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressPrefixLength"},
1689
+ },
1690
+ "access" : "noaccess",
1691
+ "description" :
1692
+ """The length in bits of the mask which, when combined with
1693
+ the corresponding value of ipMcastScopeNameAddress,
1694
+ identifies the group range associated with the multicast
1695
+ scope.
1696
+
1697
+ The InetAddressType is given by ipMcastScopeNameAddressType.
1698
+ For values 'ipv4' and 'ipv4z', this object must be in the
1699
+ range 4..32. For values 'ipv6' and 'ipv6z', this object
1700
+ must be set to 16.""",
1701
+ }, # column
1702
+ "ipMcastScopeNameLanguage" : {
1703
+ "nodetype" : "column",
1704
+ "moduleName" : "IPMCAST-MIB",
1705
+ "oid" : "1.3.6.1.2.1.168.1.8.1.4",
1706
+ "status" : "current",
1707
+ "syntax" : {
1708
+ "type" : { "module" :"LANGTAG-TC-MIB", "name" : "LangTag"},
1709
+ },
1710
+ "access" : "noaccess",
1711
+ "description" :
1712
+ """Language tag associated with the scope name.""",
1713
+ "reference" :
1714
+ """RFC 4646""",
1715
+ }, # column
1716
+ "ipMcastScopeNameString" : {
1717
+ "nodetype" : "column",
1718
+ "moduleName" : "IPMCAST-MIB",
1719
+ "oid" : "1.3.6.1.2.1.168.1.8.1.5",
1720
+ "status" : "current",
1721
+ "syntax" : {
1722
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
1723
+ },
1724
+ "access" : "readwrite",
1725
+ "description" :
1726
+ """The textual name associated with the multicast scope. The
1727
+ value of this object should be suitable for displaying to
1728
+ end-users, such as when allocating a multicast address in
1729
+ this scope.
1730
+
1731
+ When no name is specified, the default value of this object
1732
+ for IPv4 should be the string 239.x.x.x/y with x and y
1733
+ replaced with decimal values to describe the address and
1734
+ mask length associated with the scope.
1735
+
1736
+ When no name is specified, the default value of this object
1737
+ for IPv6 should be the string FF0x::/16, with x replaced by
1738
+ the hexadecimal value for the RFC 4291 multicast scope.
1739
+
1740
+ An IPv6 address prefixed by FF1x::/16 is a non-permanently-
1741
+ assigned address. An IPv6 address prefixed by FF3x::/16 is
1742
+ a unicast-prefix-based multicast addresses. A scope
1743
+ FF0x::/16 implies an identical scope name for these other
1744
+ prefixes. No separate FF1x::/16 or FF3x::/16 entries exist
1745
+ in this table.""",
1746
+ "reference" :
1747
+ """RFC 2365, RFC 3306 Section 4, RFC 4291 Section 2.7""",
1748
+ }, # column
1749
+ "ipMcastScopeNameDefault" : {
1750
+ "nodetype" : "column",
1751
+ "moduleName" : "IPMCAST-MIB",
1752
+ "oid" : "1.3.6.1.2.1.168.1.8.1.6",
1753
+ "status" : "current",
1754
+ "syntax" : {
1755
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1756
+ },
1757
+ "access" : "readwrite",
1758
+ "default" : "false",
1759
+ "description" :
1760
+ """If true, indicates a preference that the name in the
1761
+ following language should be used by applications if no name
1762
+ is available in a desired language.""",
1763
+ }, # column
1764
+ "ipMcastScopeNameStatus" : {
1765
+ "nodetype" : "column",
1766
+ "moduleName" : "IPMCAST-MIB",
1767
+ "oid" : "1.3.6.1.2.1.168.1.8.1.7",
1768
+ "status" : "current",
1769
+ "syntax" : {
1770
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1771
+ },
1772
+ "access" : "readwrite",
1773
+ "description" :
1774
+ """The status of this row, by which rows in this table can
1775
+ be created and destroyed. Before the row can be activated,
1776
+ the object ipMcastScopeNameString must be set to a valid
1777
+ value. All writeable objects in this entry can be modified
1778
+ when the status is active(1).""",
1779
+ }, # column
1780
+ "ipMcastScopeNameStorageType" : {
1781
+ "nodetype" : "column",
1782
+ "moduleName" : "IPMCAST-MIB",
1783
+ "oid" : "1.3.6.1.2.1.168.1.8.1.8",
1784
+ "status" : "current",
1785
+ "syntax" : {
1786
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
1787
+ },
1788
+ "access" : "readwrite",
1789
+ "default" : "nonVolatile",
1790
+ "description" :
1791
+ """The storage type for this row. Rows having the value
1792
+ 'permanent' need not allow write-access to any columnar
1793
+ objects in the row.""",
1794
+ }, # column
1795
+ "ipMcastLocalListenerTable" : {
1796
+ "nodetype" : "table",
1797
+ "moduleName" : "IPMCAST-MIB",
1798
+ "oid" : "1.3.6.1.2.1.168.1.9",
1799
+ "status" : "current",
1800
+ "description" :
1801
+ """The (conceptual) table listing local applications or
1802
+ services that have joined multicast groups as listeners.
1803
+
1804
+ Entries exist for all addresses in the multicast range for
1805
+ all applications and services as they are classified on this
1806
+ device.""",
1807
+ }, # table
1808
+ "ipMcastLocalListenerEntry" : {
1809
+ "nodetype" : "row",
1810
+ "moduleName" : "IPMCAST-MIB",
1811
+ "oid" : "1.3.6.1.2.1.168.1.9.1",
1812
+ "status" : "current",
1813
+ "linkage" : [
1814
+ "ipMcastLocalListenerGroupAddressType",
1815
+ "ipMcastLocalListenerGroupAddress",
1816
+ "ipMcastLocalListenerSourceAddressType",
1817
+ "ipMcastLocalListenerSourceAddress",
1818
+ "ipMcastLocalListenerSourcePrefixLength",
1819
+ "ipMcastLocalListenerIfIndex",
1820
+ "ipMcastLocalListenerRunIndex",
1821
+ ],
1822
+ "description" :
1823
+ """An entry (conceptual row) identifying a local application
1824
+ or service that has joined a multicast group as a listener.
1825
+
1826
+
1827
+
1828
+
1829
+ OIDs are limited to 128 sub-identifiers, but this limit
1830
+ is not enforced by the syntax of this entry. In practice,
1831
+ this does not present a problem, because IP address types
1832
+ allowed by conformance statements do not exceed this limit.""",
1833
+ }, # row
1834
+ "ipMcastLocalListenerGroupAddressType" : {
1835
+ "nodetype" : "column",
1836
+ "moduleName" : "IPMCAST-MIB",
1837
+ "oid" : "1.3.6.1.2.1.168.1.9.1.1",
1838
+ "status" : "current",
1839
+ "syntax" : {
1840
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
1841
+ },
1842
+ "access" : "noaccess",
1843
+ "description" :
1844
+ """A value indicating the address family of the address
1845
+ contained in ipMcastLocalListenerGroupAddress. Legal values
1846
+ correspond to the subset of address families for which
1847
+ multicast is supported.""",
1848
+ }, # column
1849
+ "ipMcastLocalListenerGroupAddress" : {
1850
+ "nodetype" : "column",
1851
+ "moduleName" : "IPMCAST-MIB",
1852
+ "oid" : "1.3.6.1.2.1.168.1.9.1.2",
1853
+ "status" : "current",
1854
+ "syntax" : {
1855
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
1856
+ },
1857
+ "access" : "noaccess",
1858
+ "description" :
1859
+ """The IP multicast group for which this entry specifies
1860
+ locally joined applications or services.""",
1861
+ }, # column
1862
+ "ipMcastLocalListenerSourceAddressType" : {
1863
+ "nodetype" : "column",
1864
+ "moduleName" : "IPMCAST-MIB",
1865
+ "oid" : "1.3.6.1.2.1.168.1.9.1.3",
1866
+ "status" : "current",
1867
+ "syntax" : {
1868
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
1869
+ },
1870
+ "access" : "noaccess",
1871
+ "description" :
1872
+ """A value indicating the address family of the address
1873
+ contained in ipMcastLocalListenerSource.
1874
+
1875
+ A value of unknown(0) indicates a non-source-specific entry,
1876
+ corresponding to all sources in the group. Otherwise, the
1877
+ value MUST be the same as the value of
1878
+ ipMcastLocalListenerGroupAddressType.""",
1879
+ }, # column
1880
+ "ipMcastLocalListenerSourceAddress" : {
1881
+ "nodetype" : "column",
1882
+ "moduleName" : "IPMCAST-MIB",
1883
+ "oid" : "1.3.6.1.2.1.168.1.9.1.4",
1884
+ "status" : "current",
1885
+ "syntax" : {
1886
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
1887
+ },
1888
+ "access" : "noaccess",
1889
+ "description" :
1890
+ """The network address which, when combined with the
1891
+ corresponding value of the mask specified in
1892
+ ipMcastLocalListenerSourcePrefixLength, identifies the
1893
+ sources for which this entry specifies a local listener.
1894
+
1895
+ This address object is only significant up to
1896
+ ipMcastLocalListenerSourcePrefixLength bits. The remaining
1897
+ address bits are set to zero. This is especially important
1898
+ for this index field, which is part of the index of this
1899
+ entry. Any non-zero bits would signify an entirely
1900
+ different entry.
1901
+
1902
+ For addresses of type ipv4z or ipv6z, the appended zone
1903
+ index is significant even though it lies beyond the prefix
1904
+ length. The use of these address types indicate that this
1905
+ listener address applies only within the given zone. Zone
1906
+ index zero is not valid in this table.""",
1907
+ }, # column
1908
+ "ipMcastLocalListenerSourcePrefixLength" : {
1909
+ "nodetype" : "column",
1910
+ "moduleName" : "IPMCAST-MIB",
1911
+ "oid" : "1.3.6.1.2.1.168.1.9.1.5",
1912
+ "status" : "current",
1913
+ "syntax" : {
1914
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressPrefixLength"},
1915
+ },
1916
+ "access" : "noaccess",
1917
+ "description" :
1918
+ """The length in bits of the mask which, when combined with
1919
+ the corresponding value specified in
1920
+ ipMcastLocalListenerSource, identifies the sources for which
1921
+ this entry specifies a local listener.
1922
+
1923
+ The InetAddressType is given by
1924
+ ipMcastLocalListenerSourceAddressType. For the value
1925
+ 'unknown', this object must be zero. For values 'ipv4' and
1926
+ 'ipv4z', this object must be in the range 4..32. For values
1927
+ 'ipv6' and 'ipv6z', this object must be in the range
1928
+
1929
+
1930
+
1931
+ 8..128.""",
1932
+ }, # column
1933
+ "ipMcastLocalListenerIfIndex" : {
1934
+ "nodetype" : "column",
1935
+ "moduleName" : "IPMCAST-MIB",
1936
+ "oid" : "1.3.6.1.2.1.168.1.9.1.6",
1937
+ "status" : "current",
1938
+ "syntax" : {
1939
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
1940
+ },
1941
+ "access" : "noaccess",
1942
+ "description" :
1943
+ """The IfIndex value of the interface for which this entry
1944
+ specifies a local listener.""",
1945
+ }, # column
1946
+ "ipMcastLocalListenerRunIndex" : {
1947
+ "nodetype" : "column",
1948
+ "moduleName" : "IPMCAST-MIB",
1949
+ "oid" : "1.3.6.1.2.1.168.1.9.1.7",
1950
+ "status" : "current",
1951
+ "syntax" : {
1952
+ "type" : {
1953
+ "basetype" : "Unsigned32",
1954
+ "ranges" : [
1955
+ {
1956
+ "min" : "0",
1957
+ "max" : "2147483647"
1958
+ },
1959
+ ],
1960
+ "range" : {
1961
+ "min" : "0",
1962
+ "max" : "2147483647"
1963
+ },
1964
+ },
1965
+ },
1966
+ "access" : "readonly",
1967
+ "description" :
1968
+ """A unique value corresponding to a piece of software running
1969
+ on this router or host system. Where possible, this should
1970
+ be the system's native, unique identification number.
1971
+
1972
+ This identifier is platform-specific. It may correspond to
1973
+ a process ID or application instance number.
1974
+
1975
+ A value of zero indicates that the application instance(s)
1976
+ cannot be identified. A value of zero indicates that one or
1977
+ more unidentified applications have joined the specified
1978
+ multicast groups (for the specified sources) as listeners.""",
1979
+ "reference" :
1980
+ """RFC 2287 sysApplRunIndex""",
1981
+ }, # column
1982
+ "ipMcastZoneTable" : {
1983
+ "nodetype" : "table",
1984
+ "moduleName" : "IPMCAST-MIB",
1985
+ "oid" : "1.3.6.1.2.1.168.1.10",
1986
+ "status" : "current",
1987
+ "description" :
1988
+ """The (conceptual) table listing scope zones on this device.""",
1989
+ "reference" :
1990
+ """RFC 4007 Section 5""",
1991
+ }, # table
1992
+ "ipMcastZoneEntry" : {
1993
+ "nodetype" : "row",
1994
+ "moduleName" : "IPMCAST-MIB",
1995
+ "oid" : "1.3.6.1.2.1.168.1.10.1",
1996
+ "status" : "current",
1997
+ "linkage" : [
1998
+ "ipMcastZoneIndex",
1999
+ ],
2000
+ "description" :
2001
+ """An entry (conceptual row) describing a scope zone on this
2002
+ device.""",
2003
+ "reference" :
2004
+ """RFC 4007 Section 5""",
2005
+ }, # row
2006
+ "ipMcastZoneIndex" : {
2007
+ "nodetype" : "column",
2008
+ "moduleName" : "IPMCAST-MIB",
2009
+ "oid" : "1.3.6.1.2.1.168.1.10.1.1",
2010
+ "status" : "current",
2011
+ "syntax" : {
2012
+ "type" : {
2013
+ "basetype" : "Unsigned32",
2014
+ "parent module" : {
2015
+ "name" : "INET-ADDRESS-MIB",
2016
+ "type" : "InetZoneIndex",
2017
+ },
2018
+ "ranges" : [
2019
+ {
2020
+ "min" : "1",
2021
+ "max" : "4294967295"
2022
+ },
2023
+ ],
2024
+ "range" : {
2025
+ "min" : "1",
2026
+ "max" : "4294967295"
2027
+ },
2028
+ },
2029
+ },
2030
+ "access" : "noaccess",
2031
+ "description" :
2032
+ """This zone index uniquely identifies a zone on a device.
2033
+
2034
+ Each zone is for a given scope. Scope-level information in
2035
+ this table is for the unique scope that corresponds to this
2036
+ zone.
2037
+
2038
+ Zero is a special value used to request the default zone for
2039
+ a given scope. Zero is not a valid value for this object.
2040
+
2041
+ To test whether ipMcastZoneIndex is the default zone for
2042
+ this scope, test whether ipMcastZoneIndex is equal to
2043
+ ipMcastZoneScopeDefaultZoneIndex.""",
2044
+ }, # column
2045
+ "ipMcastZoneScopeDefaultZoneIndex" : {
2046
+ "nodetype" : "column",
2047
+ "moduleName" : "IPMCAST-MIB",
2048
+ "oid" : "1.3.6.1.2.1.168.1.10.1.2",
2049
+ "status" : "current",
2050
+ "syntax" : {
2051
+ "type" : {
2052
+ "basetype" : "Unsigned32",
2053
+ "parent module" : {
2054
+ "name" : "INET-ADDRESS-MIB",
2055
+ "type" : "InetZoneIndex",
2056
+ },
2057
+ "ranges" : [
2058
+ {
2059
+ "min" : "1",
2060
+ "max" : "4294967295"
2061
+ },
2062
+ ],
2063
+ "range" : {
2064
+ "min" : "1",
2065
+ "max" : "4294967295"
2066
+ },
2067
+ },
2068
+ },
2069
+ "access" : "readonly",
2070
+ "description" :
2071
+ """The default zone index for this scope. This is the zone
2072
+ that this device will use if the default (zero) zone is
2073
+ requested for this scope.
2074
+
2075
+ Zero is not a valid value for this object.""",
2076
+ }, # column
2077
+ "ipMcastZoneScopeAddressType" : {
2078
+ "nodetype" : "column",
2079
+ "moduleName" : "IPMCAST-MIB",
2080
+ "oid" : "1.3.6.1.2.1.168.1.10.1.3",
2081
+ "status" : "current",
2082
+ "syntax" : {
2083
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
2084
+ },
2085
+ "access" : "readonly",
2086
+ "description" :
2087
+ """The IP address type for which this scope zone exists.""",
2088
+ }, # column
2089
+ "ipMcastZoneScopeAddress" : {
2090
+ "nodetype" : "column",
2091
+ "moduleName" : "IPMCAST-MIB",
2092
+ "oid" : "1.3.6.1.2.1.168.1.10.1.4",
2093
+ "status" : "current",
2094
+ "syntax" : {
2095
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
2096
+ },
2097
+ "access" : "readonly",
2098
+ "description" :
2099
+ """The multicast group address which, when combined with
2100
+ ipMcastZoneScopeAddressPrefixLength, gives the multicast
2101
+ address range for this scope. The InetAddressType is given
2102
+ by ipMcastZoneScopeAddressType.
2103
+
2104
+ Scoped IPv4 multicast address ranges are prefixed by
2105
+ 239.0.0.0/8. Scoped IPv6 multicast address ranges are
2106
+ FF0x::/16, where x is a valid RFC 4291 multicast scope.
2107
+
2108
+ An IPv6 address prefixed by FF1x::/16 is a non-permanently-
2109
+ assigned address. An IPv6 address prefixed by FF3x::/16 is
2110
+ a unicast-prefix-based multicast addresses. A scope
2111
+ FF0x::/16 implies an identical scope for these other
2112
+ prefixes. No separate FF1x::/16 or FF3x::/16 entries exist
2113
+ in this table.
2114
+
2115
+ This address object is only significant up to
2116
+ ipMcastZoneScopeAddressPrefixLength bits. The remaining
2117
+ address bits are set to zero.""",
2118
+ "reference" :
2119
+ """RFC 2365, RFC 3306 Section 4, RFC 4291 Section 2.7""",
2120
+ }, # column
2121
+ "ipMcastZoneScopeAddressPrefixLength" : {
2122
+ "nodetype" : "column",
2123
+ "moduleName" : "IPMCAST-MIB",
2124
+ "oid" : "1.3.6.1.2.1.168.1.10.1.5",
2125
+ "status" : "current",
2126
+ "syntax" : {
2127
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressPrefixLength"},
2128
+ },
2129
+ "access" : "readonly",
2130
+ "description" :
2131
+ """The length in bits of the mask which, when combined
2132
+ with ipMcastZoneScopeAddress, gives the multicast address
2133
+ prefix for this scope.
2134
+
2135
+ The InetAddressType is given by ipMcastZoneScopeAddressType.
2136
+ For values 'ipv4' and 'ipv4z', this object must be in the
2137
+ range 4..32. For values 'ipv6' and 'ipv6z', this object
2138
+ must be set to 16.""",
2139
+ }, # column
2140
+ "ipMcastDeviceConfigStorageType" : {
2141
+ "nodetype" : "scalar",
2142
+ "moduleName" : "IPMCAST-MIB",
2143
+ "oid" : "1.3.6.1.2.1.168.1.11",
2144
+ "status" : "current",
2145
+ "syntax" : {
2146
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
2147
+ },
2148
+ "access" : "readwrite",
2149
+ "default" : "nonVolatile",
2150
+ "description" :
2151
+ """The storage type used for the global IP multicast
2152
+ configuration of this device, comprised of the objects
2153
+ listed below. If this storage type takes the value
2154
+ 'permanent', write-access to the listed objects need not be
2155
+ allowed.
2156
+
2157
+ The objects described by this storage type are:
2158
+ ipMcastEnabled.""",
2159
+ }, # scalar
2160
+ "ipMcastMIBConformance" : {
2161
+ "nodetype" : "node",
2162
+ "moduleName" : "IPMCAST-MIB",
2163
+ "oid" : "1.3.6.1.2.1.168.2",
2164
+ }, # node
2165
+ "ipMcastMIBCompliances" : {
2166
+ "nodetype" : "node",
2167
+ "moduleName" : "IPMCAST-MIB",
2168
+ "oid" : "1.3.6.1.2.1.168.2.1",
2169
+ }, # node
2170
+ "ipMcastMIBGroups" : {
2171
+ "nodetype" : "node",
2172
+ "moduleName" : "IPMCAST-MIB",
2173
+ "oid" : "1.3.6.1.2.1.168.2.2",
2174
+ }, # node
2175
+ }, # nodes
2176
+
2177
+ "groups" : {
2178
+ "ipMcastMIBBasicGroup" : {
2179
+ "nodetype" : "group",
2180
+ "moduleName" : "IPMCAST-MIB",
2181
+ "oid" : "1.3.6.1.2.1.168.2.2.1",
2182
+ "status" : "current",
2183
+ "members" : {
2184
+ "ipMcastEnabled" : {
2185
+ "nodetype" : "member",
2186
+ "module" : "IPMCAST-MIB"
2187
+ },
2188
+ "ipMcastRouteEntryCount" : {
2189
+ "nodetype" : "member",
2190
+ "module" : "IPMCAST-MIB"
2191
+ },
2192
+ "ipMcastDeviceConfigStorageType" : {
2193
+ "nodetype" : "member",
2194
+ "module" : "IPMCAST-MIB"
2195
+ },
2196
+ }, # members
2197
+ "description" :
2198
+ """A collection of objects to support basic management of IP
2199
+ Multicast protocols.""",
2200
+ }, # group
2201
+ "ipMcastMIBSsmGroup" : {
2202
+ "nodetype" : "group",
2203
+ "moduleName" : "IPMCAST-MIB",
2204
+ "oid" : "1.3.6.1.2.1.168.2.2.2",
2205
+ "status" : "current",
2206
+ "members" : {
2207
+ "ipMcastSsmRangeRowStatus" : {
2208
+ "nodetype" : "member",
2209
+ "module" : "IPMCAST-MIB"
2210
+ },
2211
+ "ipMcastSsmRangeStorageType" : {
2212
+ "nodetype" : "member",
2213
+ "module" : "IPMCAST-MIB"
2214
+ },
2215
+ }, # members
2216
+ "description" :
2217
+ """A collection of objects to support management of Source-
2218
+ Specific Multicast routing.""",
2219
+ }, # group
2220
+ "ipMcastMIBRouteGroup" : {
2221
+ "nodetype" : "group",
2222
+ "moduleName" : "IPMCAST-MIB",
2223
+ "oid" : "1.3.6.1.2.1.168.2.2.3",
2224
+ "status" : "current",
2225
+ "members" : {
2226
+ "ipMcastInterfaceTtl" : {
2227
+ "nodetype" : "member",
2228
+ "module" : "IPMCAST-MIB"
2229
+ },
2230
+ "ipMcastInterfaceRateLimit" : {
2231
+ "nodetype" : "member",
2232
+ "module" : "IPMCAST-MIB"
2233
+ },
2234
+ "ipMcastInterfaceStorageType" : {
2235
+ "nodetype" : "member",
2236
+ "module" : "IPMCAST-MIB"
2237
+ },
2238
+ "ipMcastRouteUpstreamNeighborType" : {
2239
+ "nodetype" : "member",
2240
+ "module" : "IPMCAST-MIB"
2241
+ },
2242
+ "ipMcastRouteUpstreamNeighbor" : {
2243
+ "nodetype" : "member",
2244
+ "module" : "IPMCAST-MIB"
2245
+ },
2246
+ "ipMcastRouteInIfIndex" : {
2247
+ "nodetype" : "member",
2248
+ "module" : "IPMCAST-MIB"
2249
+ },
2250
+ "ipMcastRouteTimeStamp" : {
2251
+ "nodetype" : "member",
2252
+ "module" : "IPMCAST-MIB"
2253
+ },
2254
+ "ipMcastRouteExpiryTime" : {
2255
+ "nodetype" : "member",
2256
+ "module" : "IPMCAST-MIB"
2257
+ },
2258
+ "ipMcastRouteNextHopState" : {
2259
+ "nodetype" : "member",
2260
+ "module" : "IPMCAST-MIB"
2261
+ },
2262
+ "ipMcastRouteNextHopTimeStamp" : {
2263
+ "nodetype" : "member",
2264
+ "module" : "IPMCAST-MIB"
2265
+ },
2266
+ "ipMcastRouteNextHopExpiryTime" : {
2267
+ "nodetype" : "member",
2268
+ "module" : "IPMCAST-MIB"
2269
+ },
2270
+ }, # members
2271
+ "description" :
2272
+ """A collection of objects to support basic management of IP
2273
+ Multicast routing.""",
2274
+ }, # group
2275
+ "ipMcastMIBRouteDiagnosticsGroup" : {
2276
+ "nodetype" : "group",
2277
+ "moduleName" : "IPMCAST-MIB",
2278
+ "oid" : "1.3.6.1.2.1.168.2.2.4",
2279
+ "status" : "current",
2280
+ "members" : {
2281
+ "ipMcastRoutePkts" : {
2282
+ "nodetype" : "member",
2283
+ "module" : "IPMCAST-MIB"
2284
+ },
2285
+ "ipMcastRouteTtlDropPackets" : {
2286
+ "nodetype" : "member",
2287
+ "module" : "IPMCAST-MIB"
2288
+ },
2289
+ "ipMcastRouteDifferentInIfPackets" : {
2290
+ "nodetype" : "member",
2291
+ "module" : "IPMCAST-MIB"
2292
+ },
2293
+ }, # members
2294
+ "description" :
2295
+ """A collection of routing diagnostic packet counters.""",
2296
+ }, # group
2297
+ "ipMcastMIBPktsOutGroup" : {
2298
+ "nodetype" : "group",
2299
+ "moduleName" : "IPMCAST-MIB",
2300
+ "oid" : "1.3.6.1.2.1.168.2.2.5",
2301
+ "status" : "current",
2302
+ "members" : {
2303
+ "ipMcastRouteNextHopTimeStamp" : {
2304
+ "nodetype" : "member",
2305
+ "module" : "IPMCAST-MIB"
2306
+ },
2307
+ "ipMcastRouteNextHopPkts" : {
2308
+ "nodetype" : "member",
2309
+ "module" : "IPMCAST-MIB"
2310
+ },
2311
+ }, # members
2312
+ "description" :
2313
+ """A collection of objects to support management of packet
2314
+ counters for each outgoing interface entry of a route.""",
2315
+ }, # group
2316
+ "ipMcastMIBHopCountGroup" : {
2317
+ "nodetype" : "group",
2318
+ "moduleName" : "IPMCAST-MIB",
2319
+ "oid" : "1.3.6.1.2.1.168.2.2.6",
2320
+ "status" : "current",
2321
+ "members" : {
2322
+ "ipMcastRouteNextHopClosestMemberHops" : {
2323
+ "nodetype" : "member",
2324
+ "module" : "IPMCAST-MIB"
2325
+ },
2326
+ }, # members
2327
+ "description" :
2328
+ """A collection of objects to support management of the use of
2329
+ hop counts in IP Multicast routing.""",
2330
+ }, # group
2331
+ "ipMcastMIBRouteOctetsGroup" : {
2332
+ "nodetype" : "group",
2333
+ "moduleName" : "IPMCAST-MIB",
2334
+ "oid" : "1.3.6.1.2.1.168.2.2.7",
2335
+ "status" : "current",
2336
+ "members" : {
2337
+ "ipMcastRouteTimeStamp" : {
2338
+ "nodetype" : "member",
2339
+ "module" : "IPMCAST-MIB"
2340
+ },
2341
+ "ipMcastRouteOctets" : {
2342
+ "nodetype" : "member",
2343
+ "module" : "IPMCAST-MIB"
2344
+ },
2345
+ "ipMcastRouteTtlDropOctets" : {
2346
+ "nodetype" : "member",
2347
+ "module" : "IPMCAST-MIB"
2348
+ },
2349
+ "ipMcastRouteDifferentInIfOctets" : {
2350
+ "nodetype" : "member",
2351
+ "module" : "IPMCAST-MIB"
2352
+ },
2353
+ "ipMcastRouteNextHopTimeStamp" : {
2354
+ "nodetype" : "member",
2355
+ "module" : "IPMCAST-MIB"
2356
+ },
2357
+ "ipMcastRouteNextHopOctets" : {
2358
+ "nodetype" : "member",
2359
+ "module" : "IPMCAST-MIB"
2360
+ },
2361
+ }, # members
2362
+ "description" :
2363
+ """A collection of objects to support management of octet
2364
+ counters for each forwarding entry.""",
2365
+ }, # group
2366
+ "ipMcastMIBRouteBpsGroup" : {
2367
+ "nodetype" : "group",
2368
+ "moduleName" : "IPMCAST-MIB",
2369
+ "oid" : "1.3.6.1.2.1.168.2.2.8",
2370
+ "status" : "current",
2371
+ "members" : {
2372
+ "ipMcastRouteBps" : {
2373
+ "nodetype" : "member",
2374
+ "module" : "IPMCAST-MIB"
2375
+ },
2376
+ }, # members
2377
+ "description" :
2378
+ """A collection of objects to support sampling of data rate
2379
+ in bits per second for each forwarding entry.""",
2380
+ }, # group
2381
+ "ipMcastMIBRouteProtoGroup" : {
2382
+ "nodetype" : "group",
2383
+ "moduleName" : "IPMCAST-MIB",
2384
+ "oid" : "1.3.6.1.2.1.168.2.2.9",
2385
+ "status" : "current",
2386
+ "members" : {
2387
+ "ipMcastRouteProtocol" : {
2388
+ "nodetype" : "member",
2389
+ "module" : "IPMCAST-MIB"
2390
+ },
2391
+ "ipMcastRouteRtProtocol" : {
2392
+ "nodetype" : "member",
2393
+ "module" : "IPMCAST-MIB"
2394
+ },
2395
+ "ipMcastRouteRtAddressType" : {
2396
+ "nodetype" : "member",
2397
+ "module" : "IPMCAST-MIB"
2398
+ },
2399
+ "ipMcastRouteRtAddress" : {
2400
+ "nodetype" : "member",
2401
+ "module" : "IPMCAST-MIB"
2402
+ },
2403
+ "ipMcastRouteRtPrefixLength" : {
2404
+ "nodetype" : "member",
2405
+ "module" : "IPMCAST-MIB"
2406
+ },
2407
+ "ipMcastRouteRtType" : {
2408
+ "nodetype" : "member",
2409
+ "module" : "IPMCAST-MIB"
2410
+ },
2411
+ "ipMcastRouteNextHopProtocol" : {
2412
+ "nodetype" : "member",
2413
+ "module" : "IPMCAST-MIB"
2414
+ },
2415
+ }, # members
2416
+ "description" :
2417
+ """A collection of objects providing information on the
2418
+ relationship between multicast routing information and the
2419
+ IP Forwarding Table.""",
2420
+ }, # group
2421
+ "ipMcastMIBLocalListenerGroup" : {
2422
+ "nodetype" : "group",
2423
+ "moduleName" : "IPMCAST-MIB",
2424
+ "oid" : "1.3.6.1.2.1.168.2.2.10",
2425
+ "status" : "current",
2426
+ "members" : {
2427
+ "ipMcastLocalListenerRunIndex" : {
2428
+ "nodetype" : "member",
2429
+ "module" : "IPMCAST-MIB"
2430
+ },
2431
+ }, # members
2432
+ "description" :
2433
+ """A collection of objects to support management of local
2434
+ listeners on hosts or routers.""",
2435
+ }, # group
2436
+ "ipMcastMIBBoundaryIfGroup" : {
2437
+ "nodetype" : "group",
2438
+ "moduleName" : "IPMCAST-MIB",
2439
+ "oid" : "1.3.6.1.2.1.168.2.2.11",
2440
+ "status" : "current",
2441
+ "members" : {
2442
+ "ipMcastBoundaryTimeStamp" : {
2443
+ "nodetype" : "member",
2444
+ "module" : "IPMCAST-MIB"
2445
+ },
2446
+ "ipMcastBoundaryDroppedMcastOctets" : {
2447
+ "nodetype" : "member",
2448
+ "module" : "IPMCAST-MIB"
2449
+ },
2450
+ "ipMcastBoundaryDroppedMcastPkts" : {
2451
+ "nodetype" : "member",
2452
+ "module" : "IPMCAST-MIB"
2453
+ },
2454
+ "ipMcastBoundaryStatus" : {
2455
+ "nodetype" : "member",
2456
+ "module" : "IPMCAST-MIB"
2457
+ },
2458
+ "ipMcastBoundaryStorageType" : {
2459
+ "nodetype" : "member",
2460
+ "module" : "IPMCAST-MIB"
2461
+ },
2462
+ "ipMcastZoneScopeDefaultZoneIndex" : {
2463
+ "nodetype" : "member",
2464
+ "module" : "IPMCAST-MIB"
2465
+ },
2466
+ "ipMcastZoneScopeAddressType" : {
2467
+ "nodetype" : "member",
2468
+ "module" : "IPMCAST-MIB"
2469
+ },
2470
+ "ipMcastZoneScopeAddress" : {
2471
+ "nodetype" : "member",
2472
+ "module" : "IPMCAST-MIB"
2473
+ },
2474
+ "ipMcastZoneScopeAddressPrefixLength" : {
2475
+ "nodetype" : "member",
2476
+ "module" : "IPMCAST-MIB"
2477
+ },
2478
+ }, # members
2479
+ "description" :
2480
+ """A collection of objects to support management of multicast
2481
+ scope zone boundaries.""",
2482
+ }, # group
2483
+ "ipMcastMIBScopeNameGroup" : {
2484
+ "nodetype" : "group",
2485
+ "moduleName" : "IPMCAST-MIB",
2486
+ "oid" : "1.3.6.1.2.1.168.2.2.12",
2487
+ "status" : "current",
2488
+ "members" : {
2489
+ "ipMcastScopeNameString" : {
2490
+ "nodetype" : "member",
2491
+ "module" : "IPMCAST-MIB"
2492
+ },
2493
+ "ipMcastScopeNameDefault" : {
2494
+ "nodetype" : "member",
2495
+ "module" : "IPMCAST-MIB"
2496
+ },
2497
+ "ipMcastScopeNameStatus" : {
2498
+ "nodetype" : "member",
2499
+ "module" : "IPMCAST-MIB"
2500
+ },
2501
+ "ipMcastScopeNameStorageType" : {
2502
+ "nodetype" : "member",
2503
+ "module" : "IPMCAST-MIB"
2504
+ },
2505
+ }, # members
2506
+ "description" :
2507
+ """A collection of objects to support management of multicast
2508
+ address scope names.""",
2509
+ }, # group
2510
+ }, # groups
2511
+
2512
+ "compliances" : {
2513
+ "ipMcastMIBComplianceHost" : {
2514
+ "nodetype" : "compliance",
2515
+ "moduleName" : "IPMCAST-MIB",
2516
+ "oid" : "1.3.6.1.2.1.168.2.1.1",
2517
+ "status" : "current",
2518
+ "description" :
2519
+ """The compliance statement for hosts supporting IPMCAST-MIB.
2520
+
2521
+ Support for either InetAddressType ipv4 or ipv6 is
2522
+ mandatory; support for both InetAddressTypes ipv4 and ipv6
2523
+ is optional. Support for types ipv4z and ipv6z is
2524
+ optional.
2525
+
2526
+ -- OBJECT ipMcastLocalListenerGroupAddressType
2527
+ -- SYNTAX InetAddressType {unknown(0), ipv4(1), ipv6(2),
2528
+ -- ipv4z(3), ipv6z(4)}
2529
+ -- DESCRIPTION
2530
+ -- This compliance requires support for ipv4 or ipv6.
2531
+ --
2532
+ -- OBJECT ipMcastLocalListenerGroupAddress
2533
+ -- SYNTAX InetAddress (SIZE (0|4|8|16|20))
2534
+ -- DESCRIPTION
2535
+ -- This compliance requires support for ipv4 or ipv6.
2536
+ --
2537
+ -- OBJECT ipMcastLocalListenerSourceAddressType
2538
+ -- SYNTAX InetAddressType {unknown(0), ipv4(1), ipv6(2),
2539
+ -- ipv4z(3), ipv6z(4)}
2540
+ -- DESCRIPTION
2541
+ -- This compliance requires support for ipv4 or ipv6.
2542
+ --
2543
+ -- OBJECT ipMcastLocalListenerSourceAddress
2544
+ -- SYNTAX InetAddress (SIZE (0|4|8|16|20))
2545
+ -- DESCRIPTION
2546
+ -- This compliance requires support for ipv4 or ipv6.""",
2547
+ "requires" : {
2548
+ "ipMcastMIBLocalListenerGroup" : {
2549
+ "nodetype" : "mandatory",
2550
+ "module" : "IPMCAST-MIB"
2551
+ },
2552
+ "ipMcastMIBBasicGroup" : {
2553
+ "nodetype" : "mandatory",
2554
+ "module" : "IPMCAST-MIB"
2555
+ },
2556
+ "ipMcastMIBSsmGroup" : {
2557
+ "nodetype" : "optional",
2558
+ "module" : "IPMCAST-MIB",
2559
+ "description" :
2560
+ """This group is optional.""",
2561
+ },
2562
+ "ipMcastMIBRouteGroup" : {
2563
+ "nodetype" : "optional",
2564
+ "module" : "IPMCAST-MIB",
2565
+ "description" :
2566
+ """This group is optional.""",
2567
+ },
2568
+ "ipMcastMIBRouteDiagnosticsGroup" : {
2569
+ "nodetype" : "optional",
2570
+ "module" : "IPMCAST-MIB",
2571
+ "description" :
2572
+ """This group is optional.""",
2573
+ },
2574
+ "ipMcastMIBBoundaryIfGroup" : {
2575
+ "nodetype" : "optional",
2576
+ "module" : "IPMCAST-MIB",
2577
+ "description" :
2578
+ """This group is optional.""",
2579
+ },
2580
+ "ipMcastMIBScopeNameGroup" : {
2581
+ "nodetype" : "optional",
2582
+ "module" : "IPMCAST-MIB",
2583
+ "description" :
2584
+ """This group is optional.""",
2585
+ },
2586
+ }, # requires
2587
+ "refinements" : {
2588
+ "ipMcastEnabled" : {
2589
+ "module" : "IPMCAST-MIB",
2590
+ "access" : "readonly",
2591
+ "description" :
2592
+ """Write access is not required.""",
2593
+ },
2594
+ "ipMcastDeviceConfigStorageType" : {
2595
+ "module" : "IPMCAST-MIB",
2596
+ "access" : "readonly",
2597
+ "description" :
2598
+ """Write access is not required.""",
2599
+ },
2600
+ }, # refinements
2601
+
2602
+ }, # compliance
2603
+ "ipMcastMIBComplianceRouter" : {
2604
+ "nodetype" : "compliance",
2605
+ "moduleName" : "IPMCAST-MIB",
2606
+ "oid" : "1.3.6.1.2.1.168.2.1.2",
2607
+ "status" : "current",
2608
+ "description" :
2609
+ """The compliance statement for routers supporting
2610
+ IPMCAST-MIB.
2611
+
2612
+ Support for either InetAddressType ipv4 or ipv6 is
2613
+ mandatory; support for both InetAddressTypes ipv4 and ipv6
2614
+ is optional. Support for types ipv4z and ipv6z is
2615
+ optional.
2616
+
2617
+ -- OBJECT ipMcastSsmRangeAddressType
2618
+ -- SYNTAX InetAddressType {ipv4(1), ipv6(2), ipv4z(3),
2619
+ -- ipv6z(4)}
2620
+
2621
+
2622
+
2623
+ -- DESCRIPTION
2624
+ -- This compliance requires support for ipv4 or ipv6.
2625
+ --
2626
+ -- OBJECT ipMcastSsmRangeAddress
2627
+ -- SYNTAX InetAddress (SIZE (4|8|16|20))
2628
+ -- DESCRIPTION
2629
+ -- This compliance requires support for ipv4 or ipv6.
2630
+ --
2631
+ -- OBJECT ipMcastRouteGroupAddressType
2632
+ -- SYNTAX InetAddressType {unknown(0), ipv4(1), ipv6(2),
2633
+ -- ipv4z(3), ipv6z(4)}
2634
+ -- DESCRIPTION
2635
+ -- This compliance requires support for unknown and
2636
+ -- either ipv4 or ipv6.
2637
+ --
2638
+ -- OBJECT ipMcastRouteGroup
2639
+ -- SYNTAX InetAddress (SIZE (0|4|8|16|20))
2640
+ -- DESCRIPTION
2641
+ -- This compliance requires support for unknown and
2642
+ -- either ipv4 or ipv6.
2643
+ --
2644
+ -- OBJECT ipMcastRouteSourceAddressType
2645
+ -- SYNTAX InetAddressType {unknown(0), ipv4(1), ipv6(2),
2646
+ -- ipv4z(3), ipv6z(4)}
2647
+ -- DESCRIPTION
2648
+ -- This compliance requires support for unknown and
2649
+ -- either ipv4 or ipv6.
2650
+ --
2651
+ -- OBJECT ipMcastRouteSource
2652
+ -- SYNTAX InetAddress (SIZE (0|4|8|16|20))
2653
+ -- DESCRIPTION
2654
+ -- This compliance requires support for unknown and
2655
+ -- either ipv4 or ipv6.
2656
+ --
2657
+ -- OBJECT ipMcastRouteNextHopGroupAddressType
2658
+ -- SYNTAX InetAddressType {unknown(0), ipv4(1), ipv6(2),
2659
+ -- ipv4z(3), ipv6z(4)}
2660
+ -- DESCRIPTION
2661
+ -- This compliance requires support for unknown and
2662
+ -- either ipv4 or ipv6.
2663
+ --
2664
+ -- OBJECT ipMcastRouteNextHopGroup
2665
+ -- SYNTAX InetAddress (SIZE (0|4|8|16|20))
2666
+ -- DESCRIPTION
2667
+ -- This compliance requires support for unknown and
2668
+ -- either ipv4 or ipv6.
2669
+ --
2670
+ -- OBJECT ipMcastRouteNextHopSourceAddressType
2671
+
2672
+
2673
+
2674
+ -- SYNTAX InetAddressType {unknown(0), ipv4(1), ipv6(2),
2675
+ -- ipv4z(3), ipv6z(4)}
2676
+ -- DESCRIPTION
2677
+ -- This compliance requires support for unknown and
2678
+ -- either ipv4 or ipv6.
2679
+ --
2680
+ -- OBJECT ipMcastRouteNextHopSource
2681
+ -- SYNTAX InetAddress (SIZE (0|4|8|16|20))
2682
+ -- DESCRIPTION
2683
+ -- This compliance requires support for unknown and
2684
+ -- either ipv4 or ipv6.
2685
+ --
2686
+ -- OBJECT ipMcastRouteNextHopAddressType
2687
+ -- SYNTAX InetAddressType {unknown(0), ipv4(1), ipv6(2),
2688
+ -- ipv4z(3), ipv6z(4)}
2689
+ -- DESCRIPTION
2690
+ -- This compliance requires support for unknown and
2691
+ -- either ipv4 or ipv6.
2692
+ --
2693
+ -- OBJECT ipMcastRouteNextHopAddress
2694
+ -- SYNTAX InetAddress (SIZE (0|4|8|16|20))
2695
+ -- DESCRIPTION
2696
+ -- This compliance requires support for unknown and
2697
+ -- either ipv4 or ipv6.""",
2698
+ "requires" : {
2699
+ "ipMcastMIBRouteProtoGroup" : {
2700
+ "nodetype" : "mandatory",
2701
+ "module" : "IPMCAST-MIB"
2702
+ },
2703
+ "ipMcastMIBBasicGroup" : {
2704
+ "nodetype" : "mandatory",
2705
+ "module" : "IPMCAST-MIB"
2706
+ },
2707
+ "ipMcastMIBSsmGroup" : {
2708
+ "nodetype" : "mandatory",
2709
+ "module" : "IPMCAST-MIB"
2710
+ },
2711
+ "ipMcastMIBRouteGroup" : {
2712
+ "nodetype" : "mandatory",
2713
+ "module" : "IPMCAST-MIB"
2714
+ },
2715
+ "ipMcastMIBRouteDiagnosticsGroup" : {
2716
+ "nodetype" : "optional",
2717
+ "module" : "IPMCAST-MIB",
2718
+ "description" :
2719
+ """This group is not mandatory, but SHOULD be supported where
2720
+ hardware permits.""",
2721
+ },
2722
+ "ipMcastMIBPktsOutGroup" : {
2723
+ "nodetype" : "optional",
2724
+ "module" : "IPMCAST-MIB",
2725
+ "description" :
2726
+ """This group is optional.""",
2727
+ },
2728
+ "ipMcastMIBHopCountGroup" : {
2729
+ "nodetype" : "optional",
2730
+ "module" : "IPMCAST-MIB",
2731
+ "description" :
2732
+ """This group is optional.""",
2733
+ },
2734
+ "ipMcastMIBRouteOctetsGroup" : {
2735
+ "nodetype" : "optional",
2736
+ "module" : "IPMCAST-MIB",
2737
+ "description" :
2738
+ """This group is optional.""",
2739
+ },
2740
+ "ipMcastMIBRouteBpsGroup" : {
2741
+ "nodetype" : "optional",
2742
+ "module" : "IPMCAST-MIB",
2743
+ "description" :
2744
+ """This group is optional.""",
2745
+ },
2746
+ "ipMcastMIBLocalListenerGroup" : {
2747
+ "nodetype" : "optional",
2748
+ "module" : "IPMCAST-MIB",
2749
+ "description" :
2750
+ """This group is optional.""",
2751
+ },
2752
+ "ipMcastMIBBoundaryIfGroup" : {
2753
+ "nodetype" : "optional",
2754
+ "module" : "IPMCAST-MIB",
2755
+ "description" :
2756
+ """This group is optional.""",
2757
+ },
2758
+ "ipMcastMIBScopeNameGroup" : {
2759
+ "nodetype" : "optional",
2760
+ "module" : "IPMCAST-MIB",
2761
+ "description" :
2762
+ """This group is optional.""",
2763
+ },
2764
+ }, # requires
2765
+ "refinements" : {
2766
+ "ipMcastEnabled" : {
2767
+ "module" : "IPMCAST-MIB",
2768
+ "access" : "readonly",
2769
+ "description" :
2770
+ """Write access is not required.""",
2771
+ },
2772
+ "ipMcastDeviceConfigStorageType" : {
2773
+ "module" : "IPMCAST-MIB",
2774
+ "access" : "readonly",
2775
+ "description" :
2776
+ """Write access is not required.""",
2777
+ },
2778
+ "ipMcastInterfaceTtl" : {
2779
+ "module" : "IPMCAST-MIB",
2780
+ "access" : "readonly",
2781
+ "description" :
2782
+ """Write access is not required.""",
2783
+ },
2784
+ "ipMcastInterfaceRateLimit" : {
2785
+ "module" : "IPMCAST-MIB",
2786
+ "access" : "readonly",
2787
+ "description" :
2788
+ """Write access is not required.""",
2789
+ },
2790
+ "ipMcastInterfaceStorageType" : {
2791
+ "module" : "IPMCAST-MIB",
2792
+ "access" : "readonly",
2793
+ "description" :
2794
+ """Write access is not required.""",
2795
+ },
2796
+ "ipMcastRouteUpstreamNeighborType" : {
2797
+ "module" : "IPMCAST-MIB",
2798
+ "syntax" : {
2799
+ "type" : {
2800
+ "basetype" : "Enumeration",
2801
+ "parent module" : {
2802
+ "name" : "INET-ADDRESS-MIB",
2803
+ "type" : "InetAddressType",
2804
+ },
2805
+ "unknown" : {
2806
+ "nodetype" : "namednumber",
2807
+ "number" : "0"
2808
+ },
2809
+ "ipv4" : {
2810
+ "nodetype" : "namednumber",
2811
+ "number" : "1"
2812
+ },
2813
+ "ipv6" : {
2814
+ "nodetype" : "namednumber",
2815
+ "number" : "2"
2816
+ },
2817
+ "ipv4z" : {
2818
+ "nodetype" : "namednumber",
2819
+ "number" : "3"
2820
+ },
2821
+ "ipv6z" : {
2822
+ "nodetype" : "namednumber",
2823
+ "number" : "4"
2824
+ },
2825
+ },
2826
+ }, # syntax
2827
+ "description" :
2828
+ """This compliance requires support for unknown and either ipv4
2829
+ or ipv6.""",
2830
+ },
2831
+ "ipMcastRouteUpstreamNeighbor" : {
2832
+ "module" : "IPMCAST-MIB",
2833
+ "syntax" : {
2834
+ "type" : {
2835
+ "basetype" : "OctetString",
2836
+ "parent module" : {
2837
+ "name" : "INET-ADDRESS-MIB",
2838
+ "type" : "InetAddress",
2839
+ },
2840
+ "ranges" : [
2841
+ {
2842
+ "min" : "0",
2843
+ "max" : "0"
2844
+ },
2845
+ {
2846
+ "min" : "4",
2847
+ "max" : "4"
2848
+ },
2849
+ {
2850
+ "min" : "8",
2851
+ "max" : "8"
2852
+ },
2853
+ {
2854
+ "min" : "16",
2855
+ "max" : "16"
2856
+ },
2857
+ {
2858
+ "min" : "20",
2859
+ "max" : "20"
2860
+ },
2861
+ ],
2862
+ "range" : {
2863
+ "min" : "0",
2864
+ "max" : "20"
2865
+ },
2866
+ },
2867
+ }, # syntax
2868
+ "description" :
2869
+ """This compliance requires support for unknown and either ipv4
2870
+ or ipv6.""",
2871
+ },
2872
+ "ipMcastRouteRtAddressType" : {
2873
+ "module" : "IPMCAST-MIB",
2874
+ "syntax" : {
2875
+ "type" : {
2876
+ "basetype" : "Enumeration",
2877
+ "parent module" : {
2878
+ "name" : "INET-ADDRESS-MIB",
2879
+ "type" : "InetAddressType",
2880
+ },
2881
+ "unknown" : {
2882
+ "nodetype" : "namednumber",
2883
+ "number" : "0"
2884
+ },
2885
+ "ipv4" : {
2886
+ "nodetype" : "namednumber",
2887
+ "number" : "1"
2888
+ },
2889
+ "ipv6" : {
2890
+ "nodetype" : "namednumber",
2891
+ "number" : "2"
2892
+ },
2893
+ "ipv4z" : {
2894
+ "nodetype" : "namednumber",
2895
+ "number" : "3"
2896
+ },
2897
+ "ipv6z" : {
2898
+ "nodetype" : "namednumber",
2899
+ "number" : "4"
2900
+ },
2901
+ },
2902
+ }, # syntax
2903
+ "description" :
2904
+ """This compliance requires support for unknown and either ipv4
2905
+ or ipv6.""",
2906
+ },
2907
+ "ipMcastRouteRtAddress" : {
2908
+ "module" : "IPMCAST-MIB",
2909
+ "syntax" : {
2910
+ "type" : {
2911
+ "basetype" : "OctetString",
2912
+ "parent module" : {
2913
+ "name" : "INET-ADDRESS-MIB",
2914
+ "type" : "InetAddress",
2915
+ },
2916
+ "ranges" : [
2917
+ {
2918
+ "min" : "0",
2919
+ "max" : "0"
2920
+ },
2921
+ {
2922
+ "min" : "4",
2923
+ "max" : "4"
2924
+ },
2925
+ {
2926
+ "min" : "8",
2927
+ "max" : "8"
2928
+ },
2929
+ {
2930
+ "min" : "16",
2931
+ "max" : "16"
2932
+ },
2933
+ {
2934
+ "min" : "20",
2935
+ "max" : "20"
2936
+ },
2937
+ ],
2938
+ "range" : {
2939
+ "min" : "0",
2940
+ "max" : "20"
2941
+ },
2942
+ },
2943
+ }, # syntax
2944
+ "description" :
2945
+ """This compliance requires support for unknown and either ipv4
2946
+ or ipv6.""",
2947
+ },
2948
+ "ipMcastSsmRangeRowStatus" : {
2949
+ "module" : "IPMCAST-MIB",
2950
+ "access" : "readonly",
2951
+ "description" :
2952
+ """Write access is not required.""",
2953
+ },
2954
+ "ipMcastSsmRangeStorageType" : {
2955
+ "module" : "IPMCAST-MIB",
2956
+ "access" : "readonly",
2957
+ "description" :
2958
+ """Write access is not required.""",
2959
+ },
2960
+ }, # refinements
2961
+
2962
+ }, # compliance
2963
+ "ipMcastMIBComplianceBorderRouter" : {
2964
+ "nodetype" : "compliance",
2965
+ "moduleName" : "IPMCAST-MIB",
2966
+ "oid" : "1.3.6.1.2.1.168.2.1.3",
2967
+ "status" : "current",
2968
+ "description" :
2969
+ """The compliance statement for routers on scope
2970
+ boundaries supporting IPMCAST-MIB.
2971
+
2972
+ Support for either InetAddressType ipv4z or ipv6z is
2973
+ mandatory; support for both InetAddressTypes ipv4z and
2974
+ ipv6z is optional.
2975
+
2976
+ -- OBJECT ipMcastSsmRangeAddressType
2977
+ -- SYNTAX InetAddressType {ipv4(1), ipv6(2), ipv4z(3),
2978
+ -- ipv6z(4)}
2979
+ -- DESCRIPTION
2980
+ -- This compliance requires support for ipv4 or ipv6.
2981
+ --
2982
+ -- OBJECT ipMcastSsmRangeAddress
2983
+ -- SYNTAX InetAddress (SIZE (4|8|16|20))
2984
+
2985
+
2986
+
2987
+ -- DESCRIPTION
2988
+ -- This compliance requires support for ipv4 or ipv6.
2989
+ --
2990
+ -- OBJECT ipMcastRouteGroupAddressType
2991
+ -- SYNTAX InetAddressType {unknown(0), ipv4(1), ipv6(2),
2992
+ -- ipv4z(3), ipv6z(4)}
2993
+ -- DESCRIPTION
2994
+ -- This compliance requires support for unknown and
2995
+ -- either ipv4 or ipv6.
2996
+ --
2997
+ -- OBJECT ipMcastRouteGroup
2998
+ -- SYNTAX InetAddress (SIZE (0|4|8|16|20))
2999
+ -- DESCRIPTION
3000
+ -- This compliance requires support for unknown and
3001
+ -- either ipv4 and ipv4z or ipv6 and ipv6z.
3002
+ --
3003
+ -- OBJECT ipMcastRouteSourceAddressType
3004
+ -- SYNTAX InetAddressType {unknown(0), ipv4(1), ipv6(2),
3005
+ -- ipv4z(3), ipv6z(4)}
3006
+ -- DESCRIPTION
3007
+ -- This compliance requires support for unknown and
3008
+ -- either ipv4 and ipv4z or ipv6 and ipv6z.
3009
+ --
3010
+ -- OBJECT ipMcastRouteSource
3011
+ -- SYNTAX InetAddress (SIZE (0|4|8|16|20))
3012
+ -- DESCRIPTION
3013
+ -- This compliance requires support for unknown and
3014
+ -- either ipv4 and ipv4z or ipv6 and ipv6z.
3015
+ --
3016
+ -- OBJECT ipMcastRouteNextHopGroupAddressType
3017
+ -- SYNTAX InetAddressType {unknown(0), ipv4(1), ipv6(2),
3018
+ -- ipv4z(3), ipv6z(4)}
3019
+ -- DESCRIPTION
3020
+ -- This compliance requires support for unknown and
3021
+ -- either ipv4 and ipv4z or ipv6 and ipv6z.
3022
+ --
3023
+ -- OBJECT ipMcastRouteNextHopGroup
3024
+ -- SYNTAX InetAddress (SIZE (0|4|8|16|20))
3025
+ -- DESCRIPTION
3026
+ -- This compliance requires support for unknown and
3027
+ -- either ipv4 and ipv4z or ipv6 and ipv6z.
3028
+ --
3029
+ -- OBJECT ipMcastRouteNextHopSourceAddressType
3030
+ -- SYNTAX InetAddressType {unknown(0), ipv4(1), ipv6(2),
3031
+ -- ipv4z(3), ipv6z(4)}
3032
+ -- DESCRIPTION
3033
+ -- This compliance requires support for unknown and
3034
+ -- either ipv4 and ipv4z or ipv6 and ipv6z.
3035
+
3036
+
3037
+
3038
+ --
3039
+ -- OBJECT ipMcastRouteNextHopSource
3040
+ -- SYNTAX InetAddress (SIZE (0|4|8|16|20))
3041
+ -- DESCRIPTION
3042
+ -- This compliance requires support for unknown and
3043
+ -- either ipv4 and ipv4z or ipv6 and ipv6z.
3044
+ --
3045
+ -- OBJECT ipMcastRouteNextHopAddressType
3046
+ -- SYNTAX InetAddressType {unknown(0), ipv4(1), ipv6(2),
3047
+ -- ipv4z(3), ipv6z(4)}
3048
+ -- DESCRIPTION
3049
+ -- This compliance requires support for unknown and
3050
+ -- either ipv4 and ipv4z or ipv6 and ipv6z.
3051
+ --
3052
+ -- OBJECT ipMcastRouteNextHopAddress
3053
+ -- SYNTAX InetAddress (SIZE (0|4|8|16|20))
3054
+ -- DESCRIPTION
3055
+ -- This compliance requires support for unknown and
3056
+ -- either ipv4 and ipv4z or ipv6 and ipv6z.
3057
+ --
3058
+ -- OBJECT ipMcastBoundaryAddressType
3059
+ -- SYNTAX InetAddressType {ipv4(1), ipv6(2)}
3060
+ -- DESCRIPTION
3061
+ -- This compliance requires support for ipv4 or ipv6.
3062
+ --
3063
+ -- OBJECT ipMcastBoundaryAddress
3064
+ -- SYNTAX InetAddress (SIZE (4|16)
3065
+ -- DESCRIPTION
3066
+ -- This compliance requires support for ipv4 or ipv6.
3067
+ --
3068
+ -- OBJECT ipMcastScopeNameAddressType
3069
+ -- SYNTAX InetAddressType {ipv4(1), ipv6(2)}
3070
+ -- DESCRIPTION
3071
+ -- This compliance requires support for ipv4 or ipv6.
3072
+ --
3073
+ -- OBJECT ipMcastScopeNameAddress
3074
+ -- SYNTAX InetAddress (SIZE (4|16)
3075
+ -- DESCRIPTION
3076
+ -- This compliance requires support for ipv4 or ipv6.""",
3077
+ "requires" : {
3078
+ "ipMcastMIBRouteProtoGroup" : {
3079
+ "nodetype" : "mandatory",
3080
+ "module" : "IPMCAST-MIB"
3081
+ },
3082
+ "ipMcastMIBBasicGroup" : {
3083
+ "nodetype" : "mandatory",
3084
+ "module" : "IPMCAST-MIB"
3085
+ },
3086
+ "ipMcastMIBSsmGroup" : {
3087
+ "nodetype" : "mandatory",
3088
+ "module" : "IPMCAST-MIB"
3089
+ },
3090
+ "ipMcastMIBRouteGroup" : {
3091
+ "nodetype" : "mandatory",
3092
+ "module" : "IPMCAST-MIB"
3093
+ },
3094
+ "ipMcastMIBBoundaryIfGroup" : {
3095
+ "nodetype" : "mandatory",
3096
+ "module" : "IPMCAST-MIB"
3097
+ },
3098
+ "ipMcastMIBScopeNameGroup" : {
3099
+ "nodetype" : "mandatory",
3100
+ "module" : "IPMCAST-MIB"
3101
+ },
3102
+ "ipMcastMIBRouteDiagnosticsGroup" : {
3103
+ "nodetype" : "optional",
3104
+ "module" : "IPMCAST-MIB",
3105
+ "description" :
3106
+ """This group is not mandatory, but SHOULD be supported where
3107
+ hardware permits.""",
3108
+ },
3109
+ "ipMcastMIBPktsOutGroup" : {
3110
+ "nodetype" : "optional",
3111
+ "module" : "IPMCAST-MIB",
3112
+ "description" :
3113
+ """This group is optional.""",
3114
+ },
3115
+ "ipMcastMIBHopCountGroup" : {
3116
+ "nodetype" : "optional",
3117
+ "module" : "IPMCAST-MIB",
3118
+ "description" :
3119
+ """This group is optional.""",
3120
+ },
3121
+ "ipMcastMIBRouteOctetsGroup" : {
3122
+ "nodetype" : "optional",
3123
+ "module" : "IPMCAST-MIB",
3124
+ "description" :
3125
+ """This group is optional.""",
3126
+ },
3127
+ "ipMcastMIBRouteBpsGroup" : {
3128
+ "nodetype" : "optional",
3129
+ "module" : "IPMCAST-MIB",
3130
+ "description" :
3131
+ """This group is optional.""",
3132
+ },
3133
+ "ipMcastMIBLocalListenerGroup" : {
3134
+ "nodetype" : "optional",
3135
+ "module" : "IPMCAST-MIB",
3136
+ "description" :
3137
+ """This group is optional.""",
3138
+ },
3139
+ }, # requires
3140
+ "refinements" : {
3141
+ "ipMcastEnabled" : {
3142
+ "module" : "IPMCAST-MIB",
3143
+ "access" : "readonly",
3144
+ "description" :
3145
+ """Write access is not required.""",
3146
+ },
3147
+ "ipMcastDeviceConfigStorageType" : {
3148
+ "module" : "IPMCAST-MIB",
3149
+ "access" : "readonly",
3150
+ "description" :
3151
+ """Write access is not required.""",
3152
+ },
3153
+ "ipMcastInterfaceTtl" : {
3154
+ "module" : "IPMCAST-MIB",
3155
+ "access" : "readonly",
3156
+ "description" :
3157
+ """Write access is not required.""",
3158
+ },
3159
+ "ipMcastInterfaceRateLimit" : {
3160
+ "module" : "IPMCAST-MIB",
3161
+ "access" : "readonly",
3162
+ "description" :
3163
+ """Write access is not required.""",
3164
+ },
3165
+ "ipMcastInterfaceStorageType" : {
3166
+ "module" : "IPMCAST-MIB",
3167
+ "access" : "readonly",
3168
+ "description" :
3169
+ """Write access is not required.""",
3170
+ },
3171
+ "ipMcastRouteUpstreamNeighborType" : {
3172
+ "module" : "IPMCAST-MIB",
3173
+ "syntax" : {
3174
+ "type" : {
3175
+ "basetype" : "Enumeration",
3176
+ "parent module" : {
3177
+ "name" : "INET-ADDRESS-MIB",
3178
+ "type" : "InetAddressType",
3179
+ },
3180
+ "unknown" : {
3181
+ "nodetype" : "namednumber",
3182
+ "number" : "0"
3183
+ },
3184
+ "ipv4" : {
3185
+ "nodetype" : "namednumber",
3186
+ "number" : "1"
3187
+ },
3188
+ "ipv6" : {
3189
+ "nodetype" : "namednumber",
3190
+ "number" : "2"
3191
+ },
3192
+ "ipv4z" : {
3193
+ "nodetype" : "namednumber",
3194
+ "number" : "3"
3195
+ },
3196
+ "ipv6z" : {
3197
+ "nodetype" : "namednumber",
3198
+ "number" : "4"
3199
+ },
3200
+ },
3201
+ }, # syntax
3202
+ "description" :
3203
+ """This compliance requires support for unknown and either ipv4
3204
+ and ipv4z, or ipv6 and ipv6z.""",
3205
+ },
3206
+ "ipMcastRouteUpstreamNeighbor" : {
3207
+ "module" : "IPMCAST-MIB",
3208
+ "syntax" : {
3209
+ "type" : {
3210
+ "basetype" : "OctetString",
3211
+ "parent module" : {
3212
+ "name" : "INET-ADDRESS-MIB",
3213
+ "type" : "InetAddress",
3214
+ },
3215
+ "ranges" : [
3216
+ {
3217
+ "min" : "0",
3218
+ "max" : "0"
3219
+ },
3220
+ {
3221
+ "min" : "4",
3222
+ "max" : "4"
3223
+ },
3224
+ {
3225
+ "min" : "8",
3226
+ "max" : "8"
3227
+ },
3228
+ {
3229
+ "min" : "16",
3230
+ "max" : "16"
3231
+ },
3232
+ {
3233
+ "min" : "20",
3234
+ "max" : "20"
3235
+ },
3236
+ ],
3237
+ "range" : {
3238
+ "min" : "0",
3239
+ "max" : "20"
3240
+ },
3241
+ },
3242
+ }, # syntax
3243
+ "description" :
3244
+ """This compliance requires support for unknown and either ipv4
3245
+ and ipv4z, or ipv6 and ipv6z.""",
3246
+ },
3247
+ "ipMcastRouteRtAddressType" : {
3248
+ "module" : "IPMCAST-MIB",
3249
+ "syntax" : {
3250
+ "type" : {
3251
+ "basetype" : "Enumeration",
3252
+ "parent module" : {
3253
+ "name" : "INET-ADDRESS-MIB",
3254
+ "type" : "InetAddressType",
3255
+ },
3256
+ "unknown" : {
3257
+ "nodetype" : "namednumber",
3258
+ "number" : "0"
3259
+ },
3260
+ "ipv4" : {
3261
+ "nodetype" : "namednumber",
3262
+ "number" : "1"
3263
+ },
3264
+ "ipv6" : {
3265
+ "nodetype" : "namednumber",
3266
+ "number" : "2"
3267
+ },
3268
+ "ipv4z" : {
3269
+ "nodetype" : "namednumber",
3270
+ "number" : "3"
3271
+ },
3272
+ "ipv6z" : {
3273
+ "nodetype" : "namednumber",
3274
+ "number" : "4"
3275
+ },
3276
+ },
3277
+ }, # syntax
3278
+ "description" :
3279
+ """This compliance requires support for unknown and either ipv4
3280
+ and ipv4z, or ipv6 and ipv6z.""",
3281
+ },
3282
+ "ipMcastRouteRtAddress" : {
3283
+ "module" : "IPMCAST-MIB",
3284
+ "syntax" : {
3285
+ "type" : {
3286
+ "basetype" : "OctetString",
3287
+ "parent module" : {
3288
+ "name" : "INET-ADDRESS-MIB",
3289
+ "type" : "InetAddress",
3290
+ },
3291
+ "ranges" : [
3292
+ {
3293
+ "min" : "0",
3294
+ "max" : "0"
3295
+ },
3296
+ {
3297
+ "min" : "4",
3298
+ "max" : "4"
3299
+ },
3300
+ {
3301
+ "min" : "8",
3302
+ "max" : "8"
3303
+ },
3304
+ {
3305
+ "min" : "16",
3306
+ "max" : "16"
3307
+ },
3308
+ {
3309
+ "min" : "20",
3310
+ "max" : "20"
3311
+ },
3312
+ ],
3313
+ "range" : {
3314
+ "min" : "0",
3315
+ "max" : "20"
3316
+ },
3317
+ },
3318
+ }, # syntax
3319
+ "description" :
3320
+ """This compliance requires support for unknown and either ipv4
3321
+ and ipv4z, or ipv6 and ipv6z.""",
3322
+ },
3323
+ "ipMcastSsmRangeRowStatus" : {
3324
+ "module" : "IPMCAST-MIB",
3325
+ "access" : "readonly",
3326
+ "description" :
3327
+ """Write access is not required.""",
3328
+ },
3329
+ "ipMcastSsmRangeStorageType" : {
3330
+ "module" : "IPMCAST-MIB",
3331
+ "access" : "readonly",
3332
+ "description" :
3333
+ """Write access is not required.""",
3334
+ },
3335
+ "ipMcastZoneScopeAddressType" : {
3336
+ "module" : "IPMCAST-MIB",
3337
+ "syntax" : {
3338
+ "type" : {
3339
+ "basetype" : "Enumeration",
3340
+ "parent module" : {
3341
+ "name" : "INET-ADDRESS-MIB",
3342
+ "type" : "InetAddressType",
3343
+ },
3344
+ "ipv4" : {
3345
+ "nodetype" : "namednumber",
3346
+ "number" : "1"
3347
+ },
3348
+ "ipv6" : {
3349
+ "nodetype" : "namednumber",
3350
+ "number" : "2"
3351
+ },
3352
+ },
3353
+ }, # syntax
3354
+ "description" :
3355
+ """This compliance requires support for ipv4 or ipv6.""",
3356
+ },
3357
+ "ipMcastZoneScopeAddress" : {
3358
+ "module" : "IPMCAST-MIB",
3359
+ "syntax" : {
3360
+ "type" : {
3361
+ "basetype" : "OctetString",
3362
+ "parent module" : {
3363
+ "name" : "INET-ADDRESS-MIB",
3364
+ "type" : "InetAddress",
3365
+ },
3366
+ "ranges" : [
3367
+ {
3368
+ "min" : "4",
3369
+ "max" : "4"
3370
+ },
3371
+ {
3372
+ "min" : "16",
3373
+ "max" : "16"
3374
+ },
3375
+ ],
3376
+ "range" : {
3377
+ "min" : "4",
3378
+ "max" : "16"
3379
+ },
3380
+ },
3381
+ }, # syntax
3382
+ "description" :
3383
+ """This compliance requires support for ipv4 or ipv6.""",
3384
+ },
3385
+ }, # refinements
3386
+
3387
+ }, # compliance
3388
+ }, # compliances
3389
+
3390
+ }