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,4830 @@
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 IPATM-IPMC-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/IPATM-IPMC-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "IPATM-IPMC-MIB",
11
+
12
+ "IPATM-IPMC-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """Internetworking Over NBMA (ion) Working Group""",
17
+ "contact" :
18
+ """ Chris Chung
19
+ Postal: SAIC
20
+ 1710 Goodridge Drive
21
+ Mail Stop 1-4-7
22
+ McLean, VA 22102
23
+ Tel: +1 703 448 6485
24
+ Fax: +1 703 356 2160
25
+ E-mail: cchung@tieo.saic.com
26
+
27
+ Editor: Maria Greene
28
+ Postal: Independent Contractor
29
+ E-mail: maria@xedia.com""",
30
+ "description" :
31
+ """This module defines a portion of the managed information
32
+ base (MIB) for managing classical IP multicast address
33
+ resolution server (MARS) and related entities as
34
+ described in the RFC2022. This MIB is meant to be
35
+ used in conjunction with the ATM-MIB (RFC1695),
36
+ MIB-II (RFC1213), and optionally the IF-MIB (RFC1573).""",
37
+ "revisions" : (
38
+ {
39
+ "date" : "1998-04-15 01:45",
40
+ "description" :
41
+ """[Revision added by libsmi due to a LAST-UPDATED clause.]""",
42
+ },
43
+ ),
44
+ "identity node" : "marsMIB",
45
+ },
46
+
47
+ "imports" : (
48
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
49
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
50
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
51
+ {"module" : "SNMPv2-SMI", "name" : "snmpModules"},
52
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
53
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
54
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
55
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
56
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
57
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
58
+ {"module" : "SNMPv2-SMI", "name" : "IpAddress"},
59
+ {"module" : "ATM-TC-MIB", "name" : "AtmAddr"},
60
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
61
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
62
+ {"module" : "RFC1213-MIB", "name" : "ipAdEntAddr"},
63
+ {"module" : "IF-MIB", "name" : "InterfaceIndex"},
64
+ ),
65
+
66
+ "nodes" : {
67
+ "marsMIB" : {
68
+ "nodetype" : "node",
69
+ "moduleName" : "IPATM-IPMC-MIB",
70
+ "oid" : "1.3.6.1.6.3.17",
71
+ "status" : "current",
72
+ }, # node
73
+ "marsTrapInfo" : {
74
+ "nodetype" : "node",
75
+ "moduleName" : "IPATM-IPMC-MIB",
76
+ "oid" : "1.3.6.1.6.3.17.0",
77
+ }, # node
78
+ "marsClientObjects" : {
79
+ "nodetype" : "node",
80
+ "moduleName" : "IPATM-IPMC-MIB",
81
+ "oid" : "1.3.6.1.6.3.17.1",
82
+ }, # node
83
+ "marsClientTable" : {
84
+ "nodetype" : "table",
85
+ "moduleName" : "IPATM-IPMC-MIB",
86
+ "oid" : "1.3.6.1.6.3.17.1.1",
87
+ "status" : "current",
88
+ "description" :
89
+ """The objects defined in this table are used for
90
+ the management of MARS clients, ATM attached
91
+ endpoints.""",
92
+ }, # table
93
+ "marsClientEntry" : {
94
+ "nodetype" : "row",
95
+ "moduleName" : "IPATM-IPMC-MIB",
96
+ "oid" : "1.3.6.1.6.3.17.1.1.1",
97
+ "create" : "true",
98
+ "status" : "current",
99
+ "linkage" : [
100
+ "ipAdEntAddr",
101
+ "marsClientIndex",
102
+ ],
103
+ "description" :
104
+ """Each entry contains a MARS client and its associated
105
+ attributes. An entry in the marsClientTable has
106
+ a corresponding entry in the ipAddrTable defined in
107
+ RFC1213. Association between the ipAddrTable and
108
+ the marsClientTable is made through the index,
109
+ ipAdEntAddr.""",
110
+ }, # row
111
+ "marsClientIndex" : {
112
+ "nodetype" : "column",
113
+ "moduleName" : "IPATM-IPMC-MIB",
114
+ "oid" : "1.3.6.1.6.3.17.1.1.1.1",
115
+ "status" : "current",
116
+ "syntax" : {
117
+ "type" : {
118
+ "basetype" : "Integer32",
119
+ "ranges" : [
120
+ {
121
+ "min" : "1",
122
+ "max" : "65535"
123
+ },
124
+ ],
125
+ "range" : {
126
+ "min" : "1",
127
+ "max" : "65535"
128
+ },
129
+ },
130
+ },
131
+ "access" : "noaccess",
132
+ "description" :
133
+ """The auxiliary variable used to identify instances of
134
+ the columnar objects in the MARS MarsClientTable.""",
135
+ }, # column
136
+ "marsClientAddr" : {
137
+ "nodetype" : "column",
138
+ "moduleName" : "IPATM-IPMC-MIB",
139
+ "oid" : "1.3.6.1.6.3.17.1.1.1.2",
140
+ "status" : "current",
141
+ "syntax" : {
142
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmAddr"},
143
+ },
144
+ "access" : "readwrite",
145
+ "description" :
146
+ """The ATM address associated with the ATM Client.""",
147
+ }, # column
148
+ "marsClientDefaultMarsAddr" : {
149
+ "nodetype" : "column",
150
+ "moduleName" : "IPATM-IPMC-MIB",
151
+ "oid" : "1.3.6.1.6.3.17.1.1.1.3",
152
+ "status" : "current",
153
+ "syntax" : {
154
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmAddr"},
155
+ },
156
+ "access" : "readwrite",
157
+ "description" :
158
+ """The default MARS ATM address which is needed to
159
+ setup the initial signalling path between a MARS
160
+ client and its associated MARS.""",
161
+ }, # column
162
+ "marsClientHsn" : {
163
+ "nodetype" : "column",
164
+ "moduleName" : "IPATM-IPMC-MIB",
165
+ "oid" : "1.3.6.1.6.3.17.1.1.1.4",
166
+ "status" : "current",
167
+ "syntax" : {
168
+ "type" : { "module" :"", "name" : "Unsigned32"},
169
+ },
170
+ "access" : "readwrite",
171
+ "description" :
172
+ """The cluster membership own 32 bit Host Sequence
173
+ Number. When a new cluster member starts up, it is
174
+ initialized to zero. When the cluster member sends
175
+ the MARS_JOIN to register, the HSN will be correctly
176
+ set to the current cluster sequence number (CSN) when
177
+ the Client receives the copy of its MARS_JOIN from
178
+ the MARS. It is is used to track the MARS sequence
179
+ number.""",
180
+ }, # column
181
+ "marsClientRegistration" : {
182
+ "nodetype" : "column",
183
+ "moduleName" : "IPATM-IPMC-MIB",
184
+ "oid" : "1.3.6.1.6.3.17.1.1.1.5",
185
+ "status" : "current",
186
+ "syntax" : {
187
+ "type" : {
188
+ "basetype" : "Enumeration",
189
+ "notRegistered" : {
190
+ "nodetype" : "namednumber",
191
+ "number" : "1"
192
+ },
193
+ "registering" : {
194
+ "nodetype" : "namednumber",
195
+ "number" : "2"
196
+ },
197
+ "registered" : {
198
+ "nodetype" : "namednumber",
199
+ "number" : "3"
200
+ },
201
+ "reRegisteringFault" : {
202
+ "nodetype" : "namednumber",
203
+ "number" : "4"
204
+ },
205
+ "reRegisteringRedirMap" : {
206
+ "nodetype" : "namednumber",
207
+ "number" : "5"
208
+ },
209
+ },
210
+ },
211
+ "access" : "readwrite",
212
+ "description" :
213
+ """An indication with regards to the registration
214
+ status of this client. The registration codes
215
+ of 'notRegistered (1)', 'registered (2)', and
216
+ registered (3) are self-explanatory. The
217
+ 'reRegisteringFault (4)' indicates the client is
218
+ in the process of re-registering with a MARS due
219
+ to some fault conditions. The 'reRegisteringRedMap
220
+ (5)' status code shows that client is re-registering
221
+ because it has received a MARS_REDIRECT_MAP message
222
+ and was told to register with a different MARS from
223
+ the current MARS.""",
224
+ }, # column
225
+ "marsClientCmi" : {
226
+ "nodetype" : "column",
227
+ "moduleName" : "IPATM-IPMC-MIB",
228
+ "oid" : "1.3.6.1.6.3.17.1.1.1.6",
229
+ "status" : "current",
230
+ "syntax" : {
231
+ "type" : {
232
+ "basetype" : "Integer32",
233
+ "ranges" : [
234
+ {
235
+ "min" : "0",
236
+ "max" : "65535"
237
+ },
238
+ ],
239
+ "range" : {
240
+ "min" : "0",
241
+ "max" : "65535"
242
+ },
243
+ },
244
+ },
245
+ "access" : "readwrite",
246
+ "description" :
247
+ """16 bit Cluster member identifier (CMI) assigned by the
248
+ MARS which uniquely identifies each endpoint attached
249
+ to the cluster. The value becomes valid after the
250
+ 'marsClientRegistration' is set to the value
251
+ of 'registered (1)'.""",
252
+ }, # column
253
+ "marsClientDefaultMtu" : {
254
+ "nodetype" : "column",
255
+ "moduleName" : "IPATM-IPMC-MIB",
256
+ "oid" : "1.3.6.1.6.3.17.1.1.1.7",
257
+ "status" : "current",
258
+ "syntax" : {
259
+ "type" : {
260
+ "basetype" : "Integer32",
261
+ "ranges" : [
262
+ {
263
+ "min" : "1",
264
+ "max" : "65535"
265
+ },
266
+ ],
267
+ "range" : {
268
+ "min" : "1",
269
+ "max" : "65535"
270
+ },
271
+ },
272
+ },
273
+ "access" : "readwrite",
274
+ "default" : "9180",
275
+ "description" :
276
+ """The default maximum transmission unit (MTU) used for
277
+ this cluster. Note that the actual size used for a
278
+ VC between two members of the cluster may be negotiated
279
+ during connection setup and may be different than this
280
+ value. Default value = 9180 bytes.""",
281
+ }, # column
282
+ "marsClientFailureTimer" : {
283
+ "nodetype" : "column",
284
+ "moduleName" : "IPATM-IPMC-MIB",
285
+ "oid" : "1.3.6.1.6.3.17.1.1.1.8",
286
+ "status" : "current",
287
+ "syntax" : {
288
+ "type" : {
289
+ "basetype" : "Integer32",
290
+ "ranges" : [
291
+ {
292
+ "min" : "1",
293
+ "max" : "2147483647"
294
+ },
295
+ ],
296
+ "range" : {
297
+ "min" : "1",
298
+ "max" : "2147483647"
299
+ },
300
+ },
301
+ },
302
+ "access" : "readwrite",
303
+ "default" : "10",
304
+ "units" : "seconds",
305
+ "description" :
306
+ """A timer used to flag the failure of last MARS_MULTI
307
+ to arrive. Default value = 10 seconds (recommended).""",
308
+ }, # column
309
+ "marsClientRetranDelayTimer" : {
310
+ "nodetype" : "column",
311
+ "moduleName" : "IPATM-IPMC-MIB",
312
+ "oid" : "1.3.6.1.6.3.17.1.1.1.9",
313
+ "status" : "current",
314
+ "syntax" : {
315
+ "type" : {
316
+ "basetype" : "Integer32",
317
+ "ranges" : [
318
+ {
319
+ "min" : "5",
320
+ "max" : "10"
321
+ },
322
+ ],
323
+ "range" : {
324
+ "min" : "5",
325
+ "max" : "10"
326
+ },
327
+ },
328
+ },
329
+ "access" : "readwrite",
330
+ "units" : "seconds",
331
+ "description" :
332
+ """The delay timer for sending out new MARS_REQUEST
333
+ for the group after the client learned that there
334
+ is no other group in the cluster. The timer must
335
+ be set between 5 and 10 seconds inclusive.""",
336
+ }, # column
337
+ "marsClientRdmMulReqAddRetrTimer" : {
338
+ "nodetype" : "column",
339
+ "moduleName" : "IPATM-IPMC-MIB",
340
+ "oid" : "1.3.6.1.6.3.17.1.1.1.10",
341
+ "status" : "current",
342
+ "syntax" : {
343
+ "type" : {
344
+ "basetype" : "Integer32",
345
+ "ranges" : [
346
+ {
347
+ "min" : "5",
348
+ "max" : "10"
349
+ },
350
+ ],
351
+ "range" : {
352
+ "min" : "5",
353
+ "max" : "10"
354
+ },
355
+ },
356
+ },
357
+ "access" : "readwrite",
358
+ "units" : "seconds",
359
+ "description" :
360
+ """The initial random L_MULTI_RQ/ADD retransmit timer
361
+ which can be set between 5 and 10 seconds inclusive.""",
362
+ }, # column
363
+ "marsClientRdmVcRevalidateTimer" : {
364
+ "nodetype" : "column",
365
+ "moduleName" : "IPATM-IPMC-MIB",
366
+ "oid" : "1.3.6.1.6.3.17.1.1.1.11",
367
+ "status" : "current",
368
+ "syntax" : {
369
+ "type" : {
370
+ "basetype" : "Integer32",
371
+ "ranges" : [
372
+ {
373
+ "min" : "1",
374
+ "max" : "10"
375
+ },
376
+ ],
377
+ "range" : {
378
+ "min" : "1",
379
+ "max" : "10"
380
+ },
381
+ },
382
+ },
383
+ "access" : "readwrite",
384
+ "units" : "seconds",
385
+ "description" :
386
+ """The random time to set VC_revalidate flag. The
387
+ timer value ranges between 1 and 10 seconds
388
+ inclusive.""",
389
+ }, # column
390
+ "marsClientJoinLeaveRetrInterval" : {
391
+ "nodetype" : "column",
392
+ "moduleName" : "IPATM-IPMC-MIB",
393
+ "oid" : "1.3.6.1.6.3.17.1.1.1.12",
394
+ "status" : "current",
395
+ "syntax" : {
396
+ "type" : {
397
+ "basetype" : "Integer32",
398
+ "ranges" : [
399
+ {
400
+ "min" : "5",
401
+ "max" : "2147483647"
402
+ },
403
+ ],
404
+ "range" : {
405
+ "min" : "5",
406
+ "max" : "2147483647"
407
+ },
408
+ },
409
+ },
410
+ "access" : "readwrite",
411
+ "default" : "10",
412
+ "units" : "seconds",
413
+ "description" :
414
+ """MARS_JOIN/LEAVE retransmit interval. The minimum
415
+ and recommended values are 5 and 10 seconds,
416
+ respectively.""",
417
+ }, # column
418
+ "marsClientJoinLeaveRetrLimit" : {
419
+ "nodetype" : "column",
420
+ "moduleName" : "IPATM-IPMC-MIB",
421
+ "oid" : "1.3.6.1.6.3.17.1.1.1.13",
422
+ "status" : "current",
423
+ "syntax" : {
424
+ "type" : {
425
+ "basetype" : "Integer32",
426
+ "ranges" : [
427
+ {
428
+ "min" : "0",
429
+ "max" : "5"
430
+ },
431
+ ],
432
+ "range" : {
433
+ "min" : "0",
434
+ "max" : "5"
435
+ },
436
+ },
437
+ },
438
+ "access" : "readwrite",
439
+ "description" :
440
+ """MARS_JOIN/LEAVE retransmit limit. The maximum
441
+ value is 5.""",
442
+ }, # column
443
+ "marsClientRegWithMarsRdmTimer" : {
444
+ "nodetype" : "column",
445
+ "moduleName" : "IPATM-IPMC-MIB",
446
+ "oid" : "1.3.6.1.6.3.17.1.1.1.14",
447
+ "status" : "current",
448
+ "syntax" : {
449
+ "type" : {
450
+ "basetype" : "Integer32",
451
+ "ranges" : [
452
+ {
453
+ "min" : "1",
454
+ "max" : "10"
455
+ },
456
+ ],
457
+ "range" : {
458
+ "min" : "1",
459
+ "max" : "10"
460
+ },
461
+ },
462
+ },
463
+ "access" : "readwrite",
464
+ "units" : "seconds",
465
+ "description" :
466
+ """Random time to register with MARS.""",
467
+ }, # column
468
+ "marsClientForceWaitTimer" : {
469
+ "nodetype" : "column",
470
+ "moduleName" : "IPATM-IPMC-MIB",
471
+ "oid" : "1.3.6.1.6.3.17.1.1.1.15",
472
+ "status" : "current",
473
+ "syntax" : {
474
+ "type" : {
475
+ "basetype" : "Integer32",
476
+ "ranges" : [
477
+ {
478
+ "min" : "1",
479
+ "max" : "2147483647"
480
+ },
481
+ ],
482
+ "range" : {
483
+ "min" : "1",
484
+ "max" : "2147483647"
485
+ },
486
+ },
487
+ },
488
+ "access" : "readwrite",
489
+ "units" : "minutes",
490
+ "description" :
491
+ """Force wait if MARS re-registration is looping.
492
+ The minimum value is 1 minute.""",
493
+ }, # column
494
+ "marsClientLmtToMissRedirMapTimer" : {
495
+ "nodetype" : "column",
496
+ "moduleName" : "IPATM-IPMC-MIB",
497
+ "oid" : "1.3.6.1.6.3.17.1.1.1.16",
498
+ "status" : "current",
499
+ "syntax" : {
500
+ "type" : {
501
+ "basetype" : "Integer32",
502
+ "ranges" : [
503
+ {
504
+ "min" : "1",
505
+ "max" : "4"
506
+ },
507
+ ],
508
+ "range" : {
509
+ "min" : "1",
510
+ "max" : "4"
511
+ },
512
+ },
513
+ },
514
+ "access" : "readwrite",
515
+ "units" : "seconds",
516
+ "description" :
517
+ """Timer limit for client to miss MARS_REDIRECT_MAPS.""",
518
+ }, # column
519
+ "marsClientIdleTimer" : {
520
+ "nodetype" : "column",
521
+ "moduleName" : "IPATM-IPMC-MIB",
522
+ "oid" : "1.3.6.1.6.3.17.1.1.1.17",
523
+ "status" : "current",
524
+ "syntax" : {
525
+ "type" : {
526
+ "basetype" : "Integer32",
527
+ "ranges" : [
528
+ {
529
+ "min" : "1",
530
+ "max" : "2147483647"
531
+ },
532
+ ],
533
+ "range" : {
534
+ "min" : "1",
535
+ "max" : "2147483647"
536
+ },
537
+ },
538
+ },
539
+ "access" : "readwrite",
540
+ "default" : "20",
541
+ "units" : "minutes",
542
+ "description" :
543
+ """The configurable inactivity timer associated with a
544
+ client. When a VC is created at this client, it gets
545
+ the idle timer value from this configurable timer.
546
+ The minimum suggested value is 1 minute and the
547
+ recommended default value is 20 minutes.""",
548
+ }, # column
549
+ "marsClientRowStatus" : {
550
+ "nodetype" : "column",
551
+ "moduleName" : "IPATM-IPMC-MIB",
552
+ "oid" : "1.3.6.1.6.3.17.1.1.1.18",
553
+ "status" : "current",
554
+ "syntax" : {
555
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
556
+ },
557
+ "access" : "readwrite",
558
+ "description" :
559
+ """The object is used to create, delete or modify a
560
+ row in this table.
561
+
562
+ A row cannot be made 'active' until instances of
563
+ all corresponding columns in the row of this table
564
+ are appropriately configured and until the agent
565
+ has also created a corresponding row in the
566
+ marsClientStatTable.
567
+
568
+ When this object has a value of 'active', the
569
+ following columnar objects can not be modified:
570
+
571
+ marsClientDefaultMarsAddr,
572
+ marsClientHsn,
573
+ marsClientRegstration,
574
+ marsClientCmi,
575
+ marsClientDefaultMtu
576
+
577
+ while other objects in this conceptual row can be
578
+ modified irrespective of the value of this object.
579
+
580
+ Deletion of this row is allowed regardless of
581
+ whether or not a row in any associated tables
582
+ (i.e., marsClientVcTable) still exists or is in
583
+ use. Once this row is deleted, it is recommended
584
+ that the agent or the SNMP management station
585
+ (if possible) through the set command deletes
586
+ any stale rows that are associated with this
587
+ row.""",
588
+ }, # column
589
+ "marsClientMcGrpTable" : {
590
+ "nodetype" : "table",
591
+ "moduleName" : "IPATM-IPMC-MIB",
592
+ "oid" : "1.3.6.1.6.3.17.1.2",
593
+ "status" : "current",
594
+ "description" :
595
+ """This table contains a list of IP multicast group address
596
+ blocks associated with a MARS client. Entries in this
597
+ table are used by the client that needs to receive or
598
+ transmit packets from/to the specified range of
599
+ multicast addresses.
600
+ Each row can be created or deleted via configuration.""",
601
+ }, # table
602
+ "marsClientMcGrpEntry" : {
603
+ "nodetype" : "row",
604
+ "moduleName" : "IPATM-IPMC-MIB",
605
+ "oid" : "1.3.6.1.6.3.17.1.2.1",
606
+ "create" : "true",
607
+ "status" : "current",
608
+ "linkage" : [
609
+ "ipAdEntAddr",
610
+ "marsClientIndex",
611
+ "marsClientMcMinGrpAddr",
612
+ "marsClientMcMaxGrpAddr",
613
+ ],
614
+ "description" :
615
+ """Each entry represents a consecutive block of multicast
616
+ group addresses.""",
617
+ }, # row
618
+ "marsClientMcMinGrpAddr" : {
619
+ "nodetype" : "column",
620
+ "moduleName" : "IPATM-IPMC-MIB",
621
+ "oid" : "1.3.6.1.6.3.17.1.2.1.1",
622
+ "status" : "current",
623
+ "syntax" : {
624
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
625
+ },
626
+ "access" : "noaccess",
627
+ "description" :
628
+ """Minimum multicast group address - the min and max
629
+ multicast forms multi-group block. If the MinGrpAddr
630
+ and MaxGrpAddr are the same, it indicates that this
631
+ block contains a single group address.""",
632
+ }, # column
633
+ "marsClientMcMaxGrpAddr" : {
634
+ "nodetype" : "column",
635
+ "moduleName" : "IPATM-IPMC-MIB",
636
+ "oid" : "1.3.6.1.6.3.17.1.2.1.2",
637
+ "status" : "current",
638
+ "syntax" : {
639
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
640
+ },
641
+ "access" : "noaccess",
642
+ "description" :
643
+ """Maximum multicast group address - the min and max
644
+ multicast forms a multi-group block. If the MinGrpAddr
645
+ and MaxGrpAddr are the same, it indicates that this
646
+ block contains a single group address.""",
647
+ }, # column
648
+ "marsClientMcGrpRowStatus" : {
649
+ "nodetype" : "column",
650
+ "moduleName" : "IPATM-IPMC-MIB",
651
+ "oid" : "1.3.6.1.6.3.17.1.2.1.3",
652
+ "status" : "current",
653
+ "syntax" : {
654
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
655
+ },
656
+ "access" : "readwrite",
657
+ "description" :
658
+ """The object is used to create or delete a row in this
659
+ table.
660
+
661
+ Since other objects in this row are not-accessible
662
+ 'index-objects', the value of this object has no
663
+ effect on whether those objects in this conceptual
664
+ row can be modified.""",
665
+ }, # column
666
+ "marsClientBackupMarsTable" : {
667
+ "nodetype" : "table",
668
+ "moduleName" : "IPATM-IPMC-MIB",
669
+ "oid" : "1.3.6.1.6.3.17.1.3",
670
+ "status" : "current",
671
+ "description" :
672
+ """This table contains a list of backup MARS addresses that
673
+ a client can connect to in case of failure for connecting
674
+ to the primary server. The list of addresses is in
675
+ descending order of preference. It should be noted that
676
+ the backup list provided by the MARS to the client via
677
+ the MARS_REDIRECT_MAP message has a higher preference than
678
+ addresses that are manually configured into the client.
679
+ When such a list is received from the MARS, this information
680
+ should be inserted at the top of the list.
681
+ Each row can be created or deleted via configuration.""",
682
+ }, # table
683
+ "marsClientBackupMarsEntry" : {
684
+ "nodetype" : "row",
685
+ "moduleName" : "IPATM-IPMC-MIB",
686
+ "oid" : "1.3.6.1.6.3.17.1.3.1",
687
+ "create" : "true",
688
+ "status" : "current",
689
+ "linkage" : [
690
+ "ipAdEntAddr",
691
+ "marsClientIndex",
692
+ "marsClientBackupMarsPriority",
693
+ "marsClientBackupMarsAddr",
694
+ ],
695
+ "description" :
696
+ """Each entry represents an ATM address of a backup MARS.""",
697
+ }, # row
698
+ "marsClientBackupMarsPriority" : {
699
+ "nodetype" : "column",
700
+ "moduleName" : "IPATM-IPMC-MIB",
701
+ "oid" : "1.3.6.1.6.3.17.1.3.1.1",
702
+ "status" : "current",
703
+ "syntax" : {
704
+ "type" : {
705
+ "basetype" : "Unsigned32",
706
+ "ranges" : [
707
+ {
708
+ "min" : "0",
709
+ "max" : "65535"
710
+ },
711
+ ],
712
+ "range" : {
713
+ "min" : "0",
714
+ "max" : "65535"
715
+ },
716
+ },
717
+ },
718
+ "access" : "noaccess",
719
+ "description" :
720
+ """The priority associated with a backup MARS. A lower
721
+ priority value inidcates a higher preference.""",
722
+ }, # column
723
+ "marsClientBackupMarsAddr" : {
724
+ "nodetype" : "column",
725
+ "moduleName" : "IPATM-IPMC-MIB",
726
+ "oid" : "1.3.6.1.6.3.17.1.3.1.2",
727
+ "status" : "current",
728
+ "syntax" : {
729
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmAddr"},
730
+ },
731
+ "access" : "noaccess",
732
+ "description" :
733
+ """The ATM address associated with a backup MARS.""",
734
+ }, # column
735
+ "marsClientBackupMarsRowStatus" : {
736
+ "nodetype" : "column",
737
+ "moduleName" : "IPATM-IPMC-MIB",
738
+ "oid" : "1.3.6.1.6.3.17.1.3.1.3",
739
+ "status" : "current",
740
+ "syntax" : {
741
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
742
+ },
743
+ "access" : "readwrite",
744
+ "description" :
745
+ """The object is used to create or delete a row in this
746
+ table.
747
+
748
+ Since other objects in this row are not-accessible
749
+ 'index-objects', the value of this object has no effect
750
+ on whether those objects in this conceptual row can be
751
+ modified.""",
752
+ }, # column
753
+ "marsClientVcTable" : {
754
+ "nodetype" : "table",
755
+ "moduleName" : "IPATM-IPMC-MIB",
756
+ "oid" : "1.3.6.1.6.3.17.1.4",
757
+ "status" : "current",
758
+ "description" :
759
+ """This table contains information about open virtual
760
+ circuits (VCs) that a client has. For point to point
761
+ circuit, each entry represents a single VC connection
762
+ between this client ATM address to another party ATM
763
+ address. In the case of point to multipoint connection
764
+ where a single source address is associated with
765
+ multiple destinations, several entries are used to
766
+ represent the relationship. An example of point to
767
+ multi-point VC represented in a table is shown below.
768
+
769
+ Client VPI/VCI Grp Addr1/Addr2 Part Addr
770
+ 1 0,1 g1,g2 p1
771
+ 1 0,1 g1,g2 p2
772
+ 1 0,1 g1,g2 p3
773
+
774
+ Note: This table assumes the IP multicast address
775
+ groups (min, max) defined in each entry are
776
+ always consecutive. In the case of that a
777
+ client receives a JOIN/LEAVE with
778
+ mars$flag.punched set, each pair of the IP
779
+ groups will first be broken into several
780
+ pairs of consecutive IP groups before each
781
+ entry row corresponding to a pair of IP group
782
+ is created.""",
783
+ }, # table
784
+ "marsClientVcEntry" : {
785
+ "nodetype" : "row",
786
+ "moduleName" : "IPATM-IPMC-MIB",
787
+ "oid" : "1.3.6.1.6.3.17.1.4.1",
788
+ "create" : "true",
789
+ "status" : "current",
790
+ "linkage" : [
791
+ "ipAdEntAddr",
792
+ "marsClientIndex",
793
+ "marsClientVcVpi",
794
+ "marsClientVcVci",
795
+ "marsClientVcMinGrpAddr",
796
+ "marsClientVcMaxGrpAddr",
797
+ "marsClientVcPartyAddr",
798
+ ],
799
+ "description" :
800
+ """The objects contained in the entry are VC related
801
+ attributes such as VC signalling type, control VC
802
+ type, idle timer, negotiated MTU size, etc.""",
803
+ }, # row
804
+ "marsClientVcVpi" : {
805
+ "nodetype" : "column",
806
+ "moduleName" : "IPATM-IPMC-MIB",
807
+ "oid" : "1.3.6.1.6.3.17.1.4.1.1",
808
+ "status" : "current",
809
+ "syntax" : {
810
+ "type" : {
811
+ "basetype" : "Integer32",
812
+ "ranges" : [
813
+ {
814
+ "min" : "0",
815
+ "max" : "4095"
816
+ },
817
+ ],
818
+ "range" : {
819
+ "min" : "0",
820
+ "max" : "4095"
821
+ },
822
+ },
823
+ },
824
+ "access" : "noaccess",
825
+ "description" :
826
+ """The value of virtual path identifier (VPI). Since
827
+ a VPI can be numbered 0, this sub-index can take
828
+ a value of 0.""",
829
+ }, # column
830
+ "marsClientVcVci" : {
831
+ "nodetype" : "column",
832
+ "moduleName" : "IPATM-IPMC-MIB",
833
+ "oid" : "1.3.6.1.6.3.17.1.4.1.2",
834
+ "status" : "current",
835
+ "syntax" : {
836
+ "type" : {
837
+ "basetype" : "Integer32",
838
+ "ranges" : [
839
+ {
840
+ "min" : "0",
841
+ "max" : "65535"
842
+ },
843
+ ],
844
+ "range" : {
845
+ "min" : "0",
846
+ "max" : "65535"
847
+ },
848
+ },
849
+ },
850
+ "access" : "noaccess",
851
+ "description" :
852
+ """The value of virtual circuit identifier (VCI). Since
853
+ a VCI can be numbered 0, this sub-index can take
854
+ a value of 0.""",
855
+ }, # column
856
+ "marsClientVcMinGrpAddr" : {
857
+ "nodetype" : "column",
858
+ "moduleName" : "IPATM-IPMC-MIB",
859
+ "oid" : "1.3.6.1.6.3.17.1.4.1.3",
860
+ "status" : "current",
861
+ "syntax" : {
862
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
863
+ },
864
+ "access" : "noaccess",
865
+ "description" :
866
+ """Minimum IP multicast group address - the min and
867
+ max multicast forms a multi-group consecutive
868
+ block which is associated with a table entry.
869
+ if the MinGrpAddr and MaxGrpAddr are the same, it
870
+ indicates that the size of multi-group block is 1,
871
+ a single IP group.""",
872
+ }, # column
873
+ "marsClientVcMaxGrpAddr" : {
874
+ "nodetype" : "column",
875
+ "moduleName" : "IPATM-IPMC-MIB",
876
+ "oid" : "1.3.6.1.6.3.17.1.4.1.4",
877
+ "status" : "current",
878
+ "syntax" : {
879
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
880
+ },
881
+ "access" : "noaccess",
882
+ "description" :
883
+ """Maximum IP multicast group address - the min and
884
+ max multicast forms a multi-group consecutive
885
+ block which is associated with a table entry.
886
+ if the MinGrpAddr and MaxGrpAddr are the same, it
887
+ indicates that the size of multi-group block is 1,
888
+ a single IP group.""",
889
+ }, # column
890
+ "marsClientVcPartyAddr" : {
891
+ "nodetype" : "column",
892
+ "moduleName" : "IPATM-IPMC-MIB",
893
+ "oid" : "1.3.6.1.6.3.17.1.4.1.5",
894
+ "status" : "current",
895
+ "syntax" : {
896
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmAddr"},
897
+ },
898
+ "access" : "noaccess",
899
+ "description" :
900
+ """An ATM party address in which this VC is linked.
901
+ The party type is identified by the
902
+ marsClientVcPartyAddrType.""",
903
+ }, # column
904
+ "marsClientVcPartyAddrType" : {
905
+ "nodetype" : "column",
906
+ "moduleName" : "IPATM-IPMC-MIB",
907
+ "oid" : "1.3.6.1.6.3.17.1.4.1.6",
908
+ "status" : "current",
909
+ "syntax" : {
910
+ "type" : {
911
+ "basetype" : "Enumeration",
912
+ "called" : {
913
+ "nodetype" : "namednumber",
914
+ "number" : "1"
915
+ },
916
+ "calling" : {
917
+ "nodetype" : "namednumber",
918
+ "number" : "2"
919
+ },
920
+ },
921
+ },
922
+ "access" : "readwrite",
923
+ "description" :
924
+ """The party type is associated with the party address.
925
+ The 'called (1)' indicates that the party address is
926
+ a destination address which implies that VC is
927
+ originated from this client. The 'calling (2)'
928
+ indicates the VC was initiated externally to this
929
+ client. In this case, the party address is the
930
+ source address.""",
931
+ }, # column
932
+ "marsClientVcType" : {
933
+ "nodetype" : "column",
934
+ "moduleName" : "IPATM-IPMC-MIB",
935
+ "oid" : "1.3.6.1.6.3.17.1.4.1.7",
936
+ "status" : "current",
937
+ "syntax" : {
938
+ "type" : {
939
+ "basetype" : "Enumeration",
940
+ "pvc" : {
941
+ "nodetype" : "namednumber",
942
+ "number" : "1"
943
+ },
944
+ "svc" : {
945
+ "nodetype" : "namednumber",
946
+ "number" : "2"
947
+ },
948
+ },
949
+ },
950
+ "access" : "readwrite",
951
+ "description" :
952
+ """Circuit Connection type: permanent virtual circuit or
953
+ switched virtual circuit.""",
954
+ }, # column
955
+ "marsClientVcCtrlType" : {
956
+ "nodetype" : "column",
957
+ "moduleName" : "IPATM-IPMC-MIB",
958
+ "oid" : "1.3.6.1.6.3.17.1.4.1.8",
959
+ "status" : "current",
960
+ "syntax" : {
961
+ "type" : {
962
+ "basetype" : "Enumeration",
963
+ "pointToPointVC" : {
964
+ "nodetype" : "namednumber",
965
+ "number" : "1"
966
+ },
967
+ "clusterControlVC" : {
968
+ "nodetype" : "namednumber",
969
+ "number" : "2"
970
+ },
971
+ "pointToMultiPointVC" : {
972
+ "nodetype" : "namednumber",
973
+ "number" : "3"
974
+ },
975
+ },
976
+ },
977
+ "access" : "readwrite",
978
+ "description" :
979
+ """Control VC type used to specify a particular connection.
980
+ pointToPointVC (1):
981
+ used by the ATM Clients for the registration and
982
+ queries. This VC or the initial signalling path
983
+ is set up from the source Client to a MARS. It is
984
+ bi-directional.
985
+ clusterControlVC (2):
986
+ used by a MARS to issue asynchronous updates to an
987
+ ATM Client. This VC is established from the MARS
988
+ to the ATM Client.
989
+ pointToMultiPointVC (3):
990
+ used by the client to transfer multicast data
991
+ packets from layer 3. This VC is established
992
+ from the source ATM Client to a destination ATM
993
+ endpoint which can be a multicast group member
994
+ or an MCS. The destination endpoint was obtained
995
+ from the MARS.""",
996
+ }, # column
997
+ "marsClientVcIdleTimer" : {
998
+ "nodetype" : "column",
999
+ "moduleName" : "IPATM-IPMC-MIB",
1000
+ "oid" : "1.3.6.1.6.3.17.1.4.1.9",
1001
+ "status" : "current",
1002
+ "syntax" : {
1003
+ "type" : {
1004
+ "basetype" : "Integer32",
1005
+ "ranges" : [
1006
+ {
1007
+ "min" : "1",
1008
+ "max" : "2147483647"
1009
+ },
1010
+ ],
1011
+ "range" : {
1012
+ "min" : "1",
1013
+ "max" : "2147483647"
1014
+ },
1015
+ },
1016
+ },
1017
+ "access" : "readwrite",
1018
+ "default" : "20",
1019
+ "units" : "minutes",
1020
+ "description" :
1021
+ """The idle timer associated with this VC. The minimum
1022
+ suggested value is 1 minute and the recommended
1023
+ default value is 20 minutes.""",
1024
+ }, # column
1025
+ "marsClientVcRevalidate" : {
1026
+ "nodetype" : "column",
1027
+ "moduleName" : "IPATM-IPMC-MIB",
1028
+ "oid" : "1.3.6.1.6.3.17.1.4.1.10",
1029
+ "status" : "current",
1030
+ "syntax" : {
1031
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1032
+ },
1033
+ "access" : "readwrite",
1034
+ "description" :
1035
+ """A flag associated with an open and active multipoint
1036
+ VC. It is checked every time a packet is queued for
1037
+ transmission on that VC. The object has the value of
1038
+ true (1) if revalidate is required and the value
1039
+ false (2) otherwise.""",
1040
+ }, # column
1041
+ "marsClientVcEncapsType" : {
1042
+ "nodetype" : "column",
1043
+ "moduleName" : "IPATM-IPMC-MIB",
1044
+ "oid" : "1.3.6.1.6.3.17.1.4.1.11",
1045
+ "status" : "current",
1046
+ "syntax" : {
1047
+ "type" : {
1048
+ "basetype" : "Enumeration",
1049
+ "other" : {
1050
+ "nodetype" : "namednumber",
1051
+ "number" : "1"
1052
+ },
1053
+ "llcSnap" : {
1054
+ "nodetype" : "namednumber",
1055
+ "number" : "2"
1056
+ },
1057
+ },
1058
+ },
1059
+ "access" : "readwrite",
1060
+ "description" :
1061
+ """The encapsulation type used when communicating over
1062
+ this VC.""",
1063
+ }, # column
1064
+ "marsClientVcNegotiatedMtu" : {
1065
+ "nodetype" : "column",
1066
+ "moduleName" : "IPATM-IPMC-MIB",
1067
+ "oid" : "1.3.6.1.6.3.17.1.4.1.12",
1068
+ "status" : "current",
1069
+ "syntax" : {
1070
+ "type" : {
1071
+ "basetype" : "Integer32",
1072
+ "ranges" : [
1073
+ {
1074
+ "min" : "1",
1075
+ "max" : "65535"
1076
+ },
1077
+ ],
1078
+ "range" : {
1079
+ "min" : "1",
1080
+ "max" : "65535"
1081
+ },
1082
+ },
1083
+ },
1084
+ "access" : "readwrite",
1085
+ "description" :
1086
+ """The negotiated MTU when communicating over this VC.""",
1087
+ }, # column
1088
+ "marsClientVcRowStatus" : {
1089
+ "nodetype" : "column",
1090
+ "moduleName" : "IPATM-IPMC-MIB",
1091
+ "oid" : "1.3.6.1.6.3.17.1.4.1.13",
1092
+ "status" : "current",
1093
+ "syntax" : {
1094
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1095
+ },
1096
+ "access" : "readwrite",
1097
+ "description" :
1098
+ """The object is used to create, delete or modify a
1099
+ row in this table.
1100
+
1101
+ A row cannot be made 'active' until instances of
1102
+ all corresponding columns in the row of this table
1103
+ are appropriately configured.
1104
+
1105
+ While objects: marsClientVcIdleTimer and
1106
+ marsClientVcRevalidate in this conceptual
1107
+ row can be modified irrespective of the value
1108
+ of this object, all other objects in the row can
1109
+ not be modified when this object has a value
1110
+ of 'active'.
1111
+
1112
+ It is possible for an SNMP management station
1113
+ to set the row to 'notInService' and modify
1114
+ the entry and then set it back to 'active'
1115
+
1116
+ with the following exception. That is, rows
1117
+ for which the corresponding instance of
1118
+ marsClientVcType has a value of 'svc' can not
1119
+ be modified or deleted.""",
1120
+ }, # column
1121
+ "marsClientStatTable" : {
1122
+ "nodetype" : "table",
1123
+ "moduleName" : "IPATM-IPMC-MIB",
1124
+ "oid" : "1.3.6.1.6.3.17.1.5",
1125
+ "status" : "current",
1126
+ "description" :
1127
+ """The table contains statistics collected at MARS
1128
+ clients.""",
1129
+ }, # table
1130
+ "marsClientStatEntry" : {
1131
+ "nodetype" : "row",
1132
+ "moduleName" : "IPATM-IPMC-MIB",
1133
+ "oid" : "1.3.6.1.6.3.17.1.5.1",
1134
+ "status" : "current",
1135
+ "linkage" : [
1136
+ "ipAdEntAddr",
1137
+ "marsClientIndex",
1138
+ ],
1139
+ "description" :
1140
+ """Each entry contains statistics collected at one MARS
1141
+ client.""",
1142
+ }, # row
1143
+ "marsClientStatTxReqMsgs" : {
1144
+ "nodetype" : "column",
1145
+ "moduleName" : "IPATM-IPMC-MIB",
1146
+ "oid" : "1.3.6.1.6.3.17.1.5.1.1",
1147
+ "status" : "current",
1148
+ "syntax" : {
1149
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1150
+ },
1151
+ "access" : "readonly",
1152
+ "description" :
1153
+ """Total number of MARS_REQUEST messages transmitted
1154
+ from a client.""",
1155
+ }, # column
1156
+ "marsClientStatTxJoinMsgs" : {
1157
+ "nodetype" : "column",
1158
+ "moduleName" : "IPATM-IPMC-MIB",
1159
+ "oid" : "1.3.6.1.6.3.17.1.5.1.2",
1160
+ "status" : "current",
1161
+ "syntax" : {
1162
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1163
+ },
1164
+ "access" : "readonly",
1165
+ "description" :
1166
+ """Total number of MARS_JOIN messages transmitted from
1167
+ a client.""",
1168
+ }, # column
1169
+ "marsClientStatTxLeaveMsgs" : {
1170
+ "nodetype" : "column",
1171
+ "moduleName" : "IPATM-IPMC-MIB",
1172
+ "oid" : "1.3.6.1.6.3.17.1.5.1.3",
1173
+ "status" : "current",
1174
+ "syntax" : {
1175
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1176
+ },
1177
+ "access" : "readonly",
1178
+ "description" :
1179
+ """Total number of MARS_LEAVE messages transmitted from
1180
+ a client.""",
1181
+ }, # column
1182
+ "marsClientStatTxGrpLstReqMsgs" : {
1183
+ "nodetype" : "column",
1184
+ "moduleName" : "IPATM-IPMC-MIB",
1185
+ "oid" : "1.3.6.1.6.3.17.1.5.1.4",
1186
+ "status" : "current",
1187
+ "syntax" : {
1188
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1189
+ },
1190
+ "access" : "readonly",
1191
+ "description" :
1192
+ """Total number of MARS_GROUPLIST_REQUEST messages
1193
+ transmitted from a client.""",
1194
+ }, # column
1195
+ "marsClientStatRxJoinMsgs" : {
1196
+ "nodetype" : "column",
1197
+ "moduleName" : "IPATM-IPMC-MIB",
1198
+ "oid" : "1.3.6.1.6.3.17.1.5.1.5",
1199
+ "status" : "current",
1200
+ "syntax" : {
1201
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1202
+ },
1203
+ "access" : "readonly",
1204
+ "description" :
1205
+ """Total number of MARS_JOIN messages received by
1206
+ a client.""",
1207
+ }, # column
1208
+ "marsClientStatRxLeaveMsgs" : {
1209
+ "nodetype" : "column",
1210
+ "moduleName" : "IPATM-IPMC-MIB",
1211
+ "oid" : "1.3.6.1.6.3.17.1.5.1.6",
1212
+ "status" : "current",
1213
+ "syntax" : {
1214
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1215
+ },
1216
+ "access" : "readonly",
1217
+ "description" :
1218
+ """Total number of MARS_LEAVE messages received by
1219
+ a client.""",
1220
+ }, # column
1221
+ "marsClientStatRxMultiMsgs" : {
1222
+ "nodetype" : "column",
1223
+ "moduleName" : "IPATM-IPMC-MIB",
1224
+ "oid" : "1.3.6.1.6.3.17.1.5.1.7",
1225
+ "status" : "current",
1226
+ "syntax" : {
1227
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1228
+ },
1229
+ "access" : "readonly",
1230
+ "description" :
1231
+ """Total number of MARS_MULTI messages received by
1232
+ a client.""",
1233
+ }, # column
1234
+ "marsClientStatRxNakMsgs" : {
1235
+ "nodetype" : "column",
1236
+ "moduleName" : "IPATM-IPMC-MIB",
1237
+ "oid" : "1.3.6.1.6.3.17.1.5.1.8",
1238
+ "status" : "current",
1239
+ "syntax" : {
1240
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1241
+ },
1242
+ "access" : "readonly",
1243
+ "description" :
1244
+ """Total number of MARS_NAK messages received by
1245
+ a client.""",
1246
+ }, # column
1247
+ "marsClientStatRxMigrateMsgs" : {
1248
+ "nodetype" : "column",
1249
+ "moduleName" : "IPATM-IPMC-MIB",
1250
+ "oid" : "1.3.6.1.6.3.17.1.5.1.9",
1251
+ "status" : "current",
1252
+ "syntax" : {
1253
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1254
+ },
1255
+ "access" : "readonly",
1256
+ "description" :
1257
+ """Total number of MARS_MIGRATE messages received by
1258
+ a client.""",
1259
+ }, # column
1260
+ "marsClientStatRxGrpLstRplyMsgs" : {
1261
+ "nodetype" : "column",
1262
+ "moduleName" : "IPATM-IPMC-MIB",
1263
+ "oid" : "1.3.6.1.6.3.17.1.5.1.10",
1264
+ "status" : "current",
1265
+ "syntax" : {
1266
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1267
+ },
1268
+ "access" : "readonly",
1269
+ "description" :
1270
+ """Total number of MARS_GROUPLIST_REPLY messages
1271
+ received by a client.""",
1272
+ }, # column
1273
+ "marsClientStatFailMultiMsgs" : {
1274
+ "nodetype" : "column",
1275
+ "moduleName" : "IPATM-IPMC-MIB",
1276
+ "oid" : "1.3.6.1.6.3.17.1.5.1.11",
1277
+ "status" : "current",
1278
+ "syntax" : {
1279
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1280
+ },
1281
+ "access" : "readonly",
1282
+ "description" :
1283
+ """Total number of timeouts occurred indicating
1284
+ failure of the last MARS_MULTI to arrive.""",
1285
+ }, # column
1286
+ "marsObjects" : {
1287
+ "nodetype" : "node",
1288
+ "moduleName" : "IPATM-IPMC-MIB",
1289
+ "oid" : "1.3.6.1.6.3.17.2",
1290
+ }, # node
1291
+ "marsTable" : {
1292
+ "nodetype" : "table",
1293
+ "moduleName" : "IPATM-IPMC-MIB",
1294
+ "oid" : "1.3.6.1.6.3.17.2.1",
1295
+ "status" : "current",
1296
+ "description" :
1297
+ """The objects defined in this table are used for the
1298
+ management of MARS servers.""",
1299
+ }, # table
1300
+ "marsEntry" : {
1301
+ "nodetype" : "row",
1302
+ "moduleName" : "IPATM-IPMC-MIB",
1303
+ "oid" : "1.3.6.1.6.3.17.2.1.1",
1304
+ "create" : "true",
1305
+ "status" : "current",
1306
+ "linkage" : [
1307
+ "marsIndex",
1308
+ "marsIfIndex",
1309
+ ],
1310
+ "description" :
1311
+ """Each entry contains a MARS and its associated
1312
+ attributes.""",
1313
+ }, # row
1314
+ "marsIndex" : {
1315
+ "nodetype" : "column",
1316
+ "moduleName" : "IPATM-IPMC-MIB",
1317
+ "oid" : "1.3.6.1.6.3.17.2.1.1.1",
1318
+ "status" : "current",
1319
+ "syntax" : {
1320
+ "type" : {
1321
+ "basetype" : "Integer32",
1322
+ "ranges" : [
1323
+ {
1324
+ "min" : "1",
1325
+ "max" : "65535"
1326
+ },
1327
+ ],
1328
+ "range" : {
1329
+ "min" : "1",
1330
+ "max" : "65535"
1331
+ },
1332
+ },
1333
+ },
1334
+ "access" : "noaccess",
1335
+ "description" :
1336
+ """The auxiliary variable used to identify instances of
1337
+ the columnar objects in the MARS table.""",
1338
+ }, # column
1339
+ "marsIfIndex" : {
1340
+ "nodetype" : "column",
1341
+ "moduleName" : "IPATM-IPMC-MIB",
1342
+ "oid" : "1.3.6.1.6.3.17.2.1.1.2",
1343
+ "status" : "current",
1344
+ "syntax" : {
1345
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
1346
+ },
1347
+ "access" : "noaccess",
1348
+ "description" :
1349
+ """The ifIndex of the interface that the MARS is
1350
+ associated with.""",
1351
+ }, # column
1352
+ "marsAddr" : {
1353
+ "nodetype" : "column",
1354
+ "moduleName" : "IPATM-IPMC-MIB",
1355
+ "oid" : "1.3.6.1.6.3.17.2.1.1.3",
1356
+ "status" : "current",
1357
+ "syntax" : {
1358
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmAddr"},
1359
+ },
1360
+ "access" : "readwrite",
1361
+ "description" :
1362
+ """The ATM address associated with the MARS.""",
1363
+ }, # column
1364
+ "marsLocal" : {
1365
+ "nodetype" : "column",
1366
+ "moduleName" : "IPATM-IPMC-MIB",
1367
+ "oid" : "1.3.6.1.6.3.17.2.1.1.4",
1368
+ "status" : "current",
1369
+ "syntax" : {
1370
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1371
+ },
1372
+ "access" : "readwrite",
1373
+ "description" :
1374
+ """A flag associated with a MARS entry. The object has
1375
+ the value of true (1) if the MARS whose interface
1376
+ is local to the machine that implements this MIB;
1377
+ otherwise the object has the value of false (2).""",
1378
+ }, # column
1379
+ "marsServStatus" : {
1380
+ "nodetype" : "column",
1381
+ "moduleName" : "IPATM-IPMC-MIB",
1382
+ "oid" : "1.3.6.1.6.3.17.2.1.1.5",
1383
+ "status" : "current",
1384
+ "syntax" : {
1385
+ "type" : {
1386
+ "basetype" : "Enumeration",
1387
+ "active" : {
1388
+ "nodetype" : "namednumber",
1389
+ "number" : "1"
1390
+ },
1391
+ "inactive" : {
1392
+ "nodetype" : "namednumber",
1393
+ "number" : "2"
1394
+ },
1395
+ "faulted" : {
1396
+ "nodetype" : "namednumber",
1397
+ "number" : "3"
1398
+ },
1399
+ },
1400
+ },
1401
+ "access" : "readwrite",
1402
+ "description" :
1403
+ """The current status of MARS.""",
1404
+ }, # column
1405
+ "marsServType" : {
1406
+ "nodetype" : "column",
1407
+ "moduleName" : "IPATM-IPMC-MIB",
1408
+ "oid" : "1.3.6.1.6.3.17.2.1.1.6",
1409
+ "status" : "current",
1410
+ "syntax" : {
1411
+ "type" : {
1412
+ "basetype" : "Enumeration",
1413
+ "primary" : {
1414
+ "nodetype" : "namednumber",
1415
+ "number" : "1"
1416
+ },
1417
+ "backup" : {
1418
+ "nodetype" : "namednumber",
1419
+ "number" : "2"
1420
+ },
1421
+ },
1422
+ },
1423
+ "access" : "readwrite",
1424
+ "description" :
1425
+ """Types of MARS servers: primary or backup.""",
1426
+ }, # column
1427
+ "marsServPriority" : {
1428
+ "nodetype" : "column",
1429
+ "moduleName" : "IPATM-IPMC-MIB",
1430
+ "oid" : "1.3.6.1.6.3.17.2.1.1.7",
1431
+ "status" : "current",
1432
+ "syntax" : {
1433
+ "type" : {
1434
+ "basetype" : "Unsigned32",
1435
+ "ranges" : [
1436
+ {
1437
+ "min" : "0",
1438
+ "max" : "65535"
1439
+ },
1440
+ ],
1441
+ "range" : {
1442
+ "min" : "0",
1443
+ "max" : "65535"
1444
+ },
1445
+ },
1446
+ },
1447
+ "access" : "readwrite",
1448
+ "description" :
1449
+ """Priority associated with a backup MARS server.
1450
+ A backup MARS server with lower priority value
1451
+ indicates a higher preference than other backup
1452
+ MARS servers to be used as the MARS server when
1453
+ the primary server fails.""",
1454
+ }, # column
1455
+ "marsRedirMapMsgTimer" : {
1456
+ "nodetype" : "column",
1457
+ "moduleName" : "IPATM-IPMC-MIB",
1458
+ "oid" : "1.3.6.1.6.3.17.2.1.1.8",
1459
+ "status" : "current",
1460
+ "syntax" : {
1461
+ "type" : {
1462
+ "basetype" : "Integer32",
1463
+ "ranges" : [
1464
+ {
1465
+ "min" : "1",
1466
+ "max" : "2"
1467
+ },
1468
+ ],
1469
+ "range" : {
1470
+ "min" : "1",
1471
+ "max" : "2"
1472
+ },
1473
+ },
1474
+ },
1475
+ "access" : "readwrite",
1476
+ "default" : "1",
1477
+ "units" : "minutes",
1478
+ "description" :
1479
+ """Periodic interval on which a multi-part
1480
+ MARS_REDIRECT_MAP is sent from this MARS.""",
1481
+ }, # column
1482
+ "marsCsn" : {
1483
+ "nodetype" : "column",
1484
+ "moduleName" : "IPATM-IPMC-MIB",
1485
+ "oid" : "1.3.6.1.6.3.17.2.1.1.9",
1486
+ "status" : "current",
1487
+ "syntax" : {
1488
+ "type" : { "module" :"", "name" : "Unsigned32"},
1489
+ },
1490
+ "access" : "readwrite",
1491
+ "description" :
1492
+ """Current cluster sequence number (CSN) which is global
1493
+ within the context of a given protocol. The CSN is
1494
+ incremented by the MARS on every transmission of a
1495
+ message on ClusterControlVC. A cluster member uses
1496
+ the CSN to track the message loss on ClusterControlVC
1497
+ or to monitor a membership change.""",
1498
+ }, # column
1499
+ "marsSsn" : {
1500
+ "nodetype" : "column",
1501
+ "moduleName" : "IPATM-IPMC-MIB",
1502
+ "oid" : "1.3.6.1.6.3.17.2.1.1.10",
1503
+ "status" : "current",
1504
+ "syntax" : {
1505
+ "type" : { "module" :"", "name" : "Unsigned32"},
1506
+ },
1507
+ "access" : "readwrite",
1508
+ "description" :
1509
+ """Current server sequence number (SSN) which is global
1510
+ within the context of a given protocol. The SSN is
1511
+ incremented by the MARS on every transmission of a
1512
+ message on ServerControlVC. A MCS uses the SSN to
1513
+ track the message loss on ServerControlVC or to
1514
+ monitor a membership change.""",
1515
+ }, # column
1516
+ "marsRowStatus" : {
1517
+ "nodetype" : "column",
1518
+ "moduleName" : "IPATM-IPMC-MIB",
1519
+ "oid" : "1.3.6.1.6.3.17.2.1.1.11",
1520
+ "status" : "current",
1521
+ "syntax" : {
1522
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1523
+ },
1524
+ "access" : "readwrite",
1525
+ "description" :
1526
+ """The object is used to create, delete or modify a
1527
+ row in this table.
1528
+
1529
+ A row cannot be made 'active' until instances of
1530
+ all corresponding columns in the row of this table
1531
+ are appropriately configured and until the agent
1532
+ has also created a corresponding row in the
1533
+ marsStatTable.
1534
+
1535
+ When this object has a value of 'active', the
1536
+ following columnar objects can not be modified:
1537
+
1538
+ marsAddr,
1539
+ marsAddrLocal,
1540
+ marsServStatus,
1541
+ marsServType,
1542
+ marsCsn,
1543
+ marsSsn
1544
+
1545
+ while other objects in this conceptual row can be
1546
+ modified irrespective of the value of this object.
1547
+
1548
+ Deletion of this row is allowed regardless of
1549
+ whether or not a row in any associated tables
1550
+ (i.e., marsVcTable) still exists or is in use.
1551
+ Once this row is deleted, it is recommended that
1552
+ the agent or the SNMP management station (if
1553
+ possible) through the set command deletes any
1554
+ stale rows that are associated with this row.""",
1555
+ }, # column
1556
+ "marsMcGrpTable" : {
1557
+ "nodetype" : "table",
1558
+ "moduleName" : "IPATM-IPMC-MIB",
1559
+ "oid" : "1.3.6.1.6.3.17.2.2",
1560
+ "status" : "current",
1561
+ "description" :
1562
+ """This table contains a list of IP multicast address
1563
+ blocks associated with a MARS. Entries in this table
1564
+ are used by the MARS host map table and the server map
1565
+ table. They should be created prior to being referenced
1566
+ as indices by those tables.
1567
+ Each row can be created or deleted via configuration.""",
1568
+ }, # table
1569
+ "marsMcGrpEntry" : {
1570
+ "nodetype" : "row",
1571
+ "moduleName" : "IPATM-IPMC-MIB",
1572
+ "oid" : "1.3.6.1.6.3.17.2.2.1",
1573
+ "create" : "true",
1574
+ "status" : "current",
1575
+ "linkage" : [
1576
+ "marsIndex",
1577
+ "marsIfIndex",
1578
+ "marsMcMinGrpAddr",
1579
+ "marsMcMaxGrpAddr",
1580
+ ],
1581
+ "description" :
1582
+ """Each entry represents a consecutive block of multicast
1583
+ group addresses.""",
1584
+ }, # row
1585
+ "marsMcMinGrpAddr" : {
1586
+ "nodetype" : "column",
1587
+ "moduleName" : "IPATM-IPMC-MIB",
1588
+ "oid" : "1.3.6.1.6.3.17.2.2.1.1",
1589
+ "status" : "current",
1590
+ "syntax" : {
1591
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
1592
+ },
1593
+ "access" : "noaccess",
1594
+ "description" :
1595
+ """Minimum multicast group address - the min and max
1596
+ multicast forms multi-group block. If the MinGrpAddr
1597
+ and MaxGrpAddr are the same, it indicates that this
1598
+ block contains a single group address.""",
1599
+ }, # column
1600
+ "marsMcMaxGrpAddr" : {
1601
+ "nodetype" : "column",
1602
+ "moduleName" : "IPATM-IPMC-MIB",
1603
+ "oid" : "1.3.6.1.6.3.17.2.2.1.2",
1604
+ "status" : "current",
1605
+ "syntax" : {
1606
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
1607
+ },
1608
+ "access" : "noaccess",
1609
+ "description" :
1610
+ """Maximum multicast group address - the min and max
1611
+ multicast forms a multi-group block. If The
1612
+ MinGrpAddr and MaxGrpAddr are the same, it indicates
1613
+ that this block contains a single group address.""",
1614
+ }, # column
1615
+ "marsMcGrpAddrUsage" : {
1616
+ "nodetype" : "column",
1617
+ "moduleName" : "IPATM-IPMC-MIB",
1618
+ "oid" : "1.3.6.1.6.3.17.2.2.1.3",
1619
+ "status" : "current",
1620
+ "syntax" : {
1621
+ "type" : {
1622
+ "basetype" : "Enumeration",
1623
+ "hostMap" : {
1624
+ "nodetype" : "namednumber",
1625
+ "number" : "1"
1626
+ },
1627
+ "serverMap" : {
1628
+ "nodetype" : "namednumber",
1629
+ "number" : "2"
1630
+ },
1631
+ "hostServerMap" : {
1632
+ "nodetype" : "namednumber",
1633
+ "number" : "3"
1634
+ },
1635
+ },
1636
+ },
1637
+ "access" : "readwrite",
1638
+ "description" :
1639
+ """Usage of the multicast address block. The hostMap (1)
1640
+ indicates that the address block is only used in the
1641
+ MARS host map table. The serverMap (2) indicates
1642
+ that the address block is only used in the MARS
1643
+ server map table. The hostServerMap (3) indicates
1644
+ that the address block is used in both the host map
1645
+ and the server map tables.""",
1646
+ }, # column
1647
+ "marsMcGrpRxLayer3GrpSets" : {
1648
+ "nodetype" : "column",
1649
+ "moduleName" : "IPATM-IPMC-MIB",
1650
+ "oid" : "1.3.6.1.6.3.17.2.2.1.4",
1651
+ "status" : "current",
1652
+ "syntax" : {
1653
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1654
+ },
1655
+ "access" : "readonly",
1656
+ "description" :
1657
+ """Number of MARS_JOIN messages received with
1658
+ mars$flags.layer3grp flag set.""",
1659
+ }, # column
1660
+ "marsMcGrpRxLayer3GrpResets" : {
1661
+ "nodetype" : "column",
1662
+ "moduleName" : "IPATM-IPMC-MIB",
1663
+ "oid" : "1.3.6.1.6.3.17.2.2.1.5",
1664
+ "status" : "current",
1665
+ "syntax" : {
1666
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1667
+ },
1668
+ "access" : "readonly",
1669
+ "description" :
1670
+ """Number of MARS_JOIN messages received with
1671
+ mars$flags.layer3grp flag reset.""",
1672
+ }, # column
1673
+ "marsMcGrpRowStatus" : {
1674
+ "nodetype" : "column",
1675
+ "moduleName" : "IPATM-IPMC-MIB",
1676
+ "oid" : "1.3.6.1.6.3.17.2.2.1.6",
1677
+ "status" : "current",
1678
+ "syntax" : {
1679
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1680
+ },
1681
+ "access" : "readwrite",
1682
+ "description" :
1683
+ """The object is used to create, delete or modify a
1684
+ row in this table.
1685
+
1686
+ The value of this object has no effect on whether
1687
+ other objects in this conceptual row can be modified.""",
1688
+ }, # column
1689
+ "marsHostMapTable" : {
1690
+ "nodetype" : "table",
1691
+ "moduleName" : "IPATM-IPMC-MIB",
1692
+ "oid" : "1.3.6.1.6.3.17.2.3",
1693
+ "status" : "current",
1694
+ "description" :
1695
+ """This table caches mappings between IP multicast
1696
+ address to a list of ATM addresses that are
1697
+ configured or dynamically learned from the MARS.
1698
+ This address resolution is used for the host map.
1699
+ It supports the mapping of a block of multicast
1700
+ group addresses to a cluster member address. In
1701
+ the case where a group block is associated with
1702
+ multiple cluster members, several entries are
1703
+ used to representing the relationship.""",
1704
+ }, # table
1705
+ "marsHostMapEntry" : {
1706
+ "nodetype" : "row",
1707
+ "moduleName" : "IPATM-IPMC-MIB",
1708
+ "oid" : "1.3.6.1.6.3.17.2.3.1",
1709
+ "create" : "true",
1710
+ "status" : "current",
1711
+ "linkage" : [
1712
+ "marsIndex",
1713
+ "marsIfIndex",
1714
+ "marsMcMinGrpAddr",
1715
+ "marsMcMaxGrpAddr",
1716
+ "marsHostMapAtmAddr",
1717
+ ],
1718
+ "description" :
1719
+ """Each entry row contains attributes associated with
1720
+ the mapping between a multicast group block and an
1721
+ ATM address.""",
1722
+ }, # row
1723
+ "marsHostMapAtmAddr" : {
1724
+ "nodetype" : "column",
1725
+ "moduleName" : "IPATM-IPMC-MIB",
1726
+ "oid" : "1.3.6.1.6.3.17.2.3.1.1",
1727
+ "status" : "current",
1728
+ "syntax" : {
1729
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmAddr"},
1730
+ },
1731
+ "access" : "noaccess",
1732
+ "description" :
1733
+ """The mapped cluster member ATM address.""",
1734
+ }, # column
1735
+ "marsHostMapRowType" : {
1736
+ "nodetype" : "column",
1737
+ "moduleName" : "IPATM-IPMC-MIB",
1738
+ "oid" : "1.3.6.1.6.3.17.2.3.1.2",
1739
+ "status" : "current",
1740
+ "syntax" : {
1741
+ "type" : {
1742
+ "basetype" : "Enumeration",
1743
+ "static" : {
1744
+ "nodetype" : "namednumber",
1745
+ "number" : "1"
1746
+ },
1747
+ "dynamic" : {
1748
+ "nodetype" : "namednumber",
1749
+ "number" : "2"
1750
+ },
1751
+ },
1752
+ },
1753
+ "access" : "readwrite",
1754
+ "description" :
1755
+ """Method in which this entry row is created. The
1756
+ static (1) indicates that this row is created
1757
+ through configuration. The dynamic (2) indicates
1758
+ that the row is created as the result of group
1759
+ address updates received at this MARS.""",
1760
+ }, # column
1761
+ "marsHostMapRowStatus" : {
1762
+ "nodetype" : "column",
1763
+ "moduleName" : "IPATM-IPMC-MIB",
1764
+ "oid" : "1.3.6.1.6.3.17.2.3.1.3",
1765
+ "status" : "current",
1766
+ "syntax" : {
1767
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1768
+ },
1769
+ "access" : "readwrite",
1770
+ "description" :
1771
+ """The object is used to create, delete or modify a
1772
+ row in this table.
1773
+
1774
+ This object must not be set to 'active' until
1775
+ instances of all corresponding columns in the
1776
+ row of this table are appropriately configured.
1777
+
1778
+ It is possible for an SNMP management station
1779
+ to set the row to 'notInService' and modify
1780
+ the entry and then set it back to 'active'
1781
+ with the following exception. That is, rows
1782
+ for which the corresponding instance of
1783
+ marsHostMapRowType has a value of 'dynamic'
1784
+ can not be modified or deleted.""",
1785
+ }, # column
1786
+ "marsServerMapTable" : {
1787
+ "nodetype" : "table",
1788
+ "moduleName" : "IPATM-IPMC-MIB",
1789
+ "oid" : "1.3.6.1.6.3.17.2.4",
1790
+ "status" : "current",
1791
+ "description" :
1792
+ """This table caches mappings between IP multicast
1793
+ address to a list of MCS ATM addresses that are
1794
+ configured or dynamically learned from the MARS.
1795
+ This address resolution is used for the server map.
1796
+ It supports the mapping of a block of multicast
1797
+ group addresses to a MCS address. In the case
1798
+ where a group block is associated with multiple
1799
+ MCSs, several entries are used to representing the
1800
+ relationship.""",
1801
+ }, # table
1802
+ "marsServerMapEntry" : {
1803
+ "nodetype" : "row",
1804
+ "moduleName" : "IPATM-IPMC-MIB",
1805
+ "oid" : "1.3.6.1.6.3.17.2.4.1",
1806
+ "create" : "true",
1807
+ "status" : "current",
1808
+ "linkage" : [
1809
+ "marsIndex",
1810
+ "marsIfIndex",
1811
+ "marsMcMinGrpAddr",
1812
+ "marsMcMaxGrpAddr",
1813
+ "marsServerMapAtmAddr",
1814
+ ],
1815
+ "description" :
1816
+ """Each entry row contains attributes associated with
1817
+ the mapping between a multicast group block and an
1818
+ MCS address.""",
1819
+ }, # row
1820
+ "marsServerMapAtmAddr" : {
1821
+ "nodetype" : "column",
1822
+ "moduleName" : "IPATM-IPMC-MIB",
1823
+ "oid" : "1.3.6.1.6.3.17.2.4.1.1",
1824
+ "status" : "current",
1825
+ "syntax" : {
1826
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmAddr"},
1827
+ },
1828
+ "access" : "noaccess",
1829
+ "description" :
1830
+ """The mapped MCS ATM address.""",
1831
+ }, # column
1832
+ "marsServerMapRowType" : {
1833
+ "nodetype" : "column",
1834
+ "moduleName" : "IPATM-IPMC-MIB",
1835
+ "oid" : "1.3.6.1.6.3.17.2.4.1.2",
1836
+ "status" : "current",
1837
+ "syntax" : {
1838
+ "type" : {
1839
+ "basetype" : "Enumeration",
1840
+ "static" : {
1841
+ "nodetype" : "namednumber",
1842
+ "number" : "1"
1843
+ },
1844
+ "dynamic" : {
1845
+ "nodetype" : "namednumber",
1846
+ "number" : "2"
1847
+ },
1848
+ },
1849
+ },
1850
+ "access" : "readwrite",
1851
+ "description" :
1852
+ """Method in which this entry row is created. The
1853
+ 'static (1)' indicates that this row is created
1854
+ through configuration. The 'dynamic (2)' indicates
1855
+ that the row is created as the result of group
1856
+ address updates received at this MARS.""",
1857
+ }, # column
1858
+ "marsServerMapRowStatus" : {
1859
+ "nodetype" : "column",
1860
+ "moduleName" : "IPATM-IPMC-MIB",
1861
+ "oid" : "1.3.6.1.6.3.17.2.4.1.3",
1862
+ "status" : "current",
1863
+ "syntax" : {
1864
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1865
+ },
1866
+ "access" : "readwrite",
1867
+ "description" :
1868
+ """The object is used to create, delete or modify a
1869
+ row in this table.
1870
+
1871
+ This object must not be set to 'active' until
1872
+ instances of all corresponding columns in the
1873
+ row of this table are appropriately configured.
1874
+
1875
+ It is possible for an SNMP management station
1876
+ to set the row to 'notInService' and modify
1877
+ the entry and then set it back to 'active'
1878
+ with the following exception. That is, rows
1879
+ for which the corresponding instance of
1880
+ marsServerMapRowType has a value of 'dynamic'
1881
+ can not be modified or deleted.""",
1882
+ }, # column
1883
+ "marsVcTable" : {
1884
+ "nodetype" : "table",
1885
+ "moduleName" : "IPATM-IPMC-MIB",
1886
+ "oid" : "1.3.6.1.6.3.17.2.5",
1887
+ "status" : "current",
1888
+ "description" :
1889
+ """This table contains information about open virtual circuits
1890
+ (VCs) that a MARS has. For point to point circuit, each
1891
+ entry represents a single VC connection between this MARS
1892
+ ATM address to another party's ATM address. In the case of
1893
+ point to multipoint connection where a ControlVc is attached
1894
+ with multiple leaf nodes, several entries are used to
1895
+ represent the relationship. An example of point to
1896
+ multi-point VC represented in a table is shown below.
1897
+
1898
+ MARS VPI/VCI MARS Addr Party Addr
1899
+ 1 0,1 m1 p1
1900
+ 1 0,1 m1 p2
1901
+ 1 0,1 m1 p3""",
1902
+ }, # table
1903
+ "marsVcEntry" : {
1904
+ "nodetype" : "row",
1905
+ "moduleName" : "IPATM-IPMC-MIB",
1906
+ "oid" : "1.3.6.1.6.3.17.2.5.1",
1907
+ "create" : "true",
1908
+ "status" : "current",
1909
+ "linkage" : [
1910
+ "marsIndex",
1911
+ "marsIfIndex",
1912
+ "marsVcVpi",
1913
+ "marsVcVci",
1914
+ "marsVcPartyAddr",
1915
+ ],
1916
+ "description" :
1917
+ """The objects contained in the entry are VC related attributes
1918
+ such as VC signalling type, control VC type, idle timer,
1919
+ negotiated MTU size, etc.""",
1920
+ }, # row
1921
+ "marsVcVpi" : {
1922
+ "nodetype" : "column",
1923
+ "moduleName" : "IPATM-IPMC-MIB",
1924
+ "oid" : "1.3.6.1.6.3.17.2.5.1.1",
1925
+ "status" : "current",
1926
+ "syntax" : {
1927
+ "type" : {
1928
+ "basetype" : "Integer32",
1929
+ "ranges" : [
1930
+ {
1931
+ "min" : "0",
1932
+ "max" : "4095"
1933
+ },
1934
+ ],
1935
+ "range" : {
1936
+ "min" : "0",
1937
+ "max" : "4095"
1938
+ },
1939
+ },
1940
+ },
1941
+ "access" : "noaccess",
1942
+ "description" :
1943
+ """The value of virtual path identifier (VPI). Since
1944
+ a VPI can be numbered 0, this sub-index can take
1945
+ a value of 0.""",
1946
+ }, # column
1947
+ "marsVcVci" : {
1948
+ "nodetype" : "column",
1949
+ "moduleName" : "IPATM-IPMC-MIB",
1950
+ "oid" : "1.3.6.1.6.3.17.2.5.1.2",
1951
+ "status" : "current",
1952
+ "syntax" : {
1953
+ "type" : {
1954
+ "basetype" : "Integer32",
1955
+ "ranges" : [
1956
+ {
1957
+ "min" : "0",
1958
+ "max" : "65535"
1959
+ },
1960
+ ],
1961
+ "range" : {
1962
+ "min" : "0",
1963
+ "max" : "65535"
1964
+ },
1965
+ },
1966
+ },
1967
+ "access" : "noaccess",
1968
+ "description" :
1969
+ """The value of virtual circuit identifier (VCI).
1970
+ Since a VCI can be numbered 0, this sub-index
1971
+ can take a value of 0.""",
1972
+ }, # column
1973
+ "marsVcPartyAddr" : {
1974
+ "nodetype" : "column",
1975
+ "moduleName" : "IPATM-IPMC-MIB",
1976
+ "oid" : "1.3.6.1.6.3.17.2.5.1.5",
1977
+ "status" : "current",
1978
+ "syntax" : {
1979
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmAddr"},
1980
+ },
1981
+ "access" : "noaccess",
1982
+ "description" :
1983
+ """An ATM party address in which this VC is linked. The
1984
+ party type is identified by the marsVcPartyAddrType.""",
1985
+ }, # column
1986
+ "marsVcPartyAddrType" : {
1987
+ "nodetype" : "column",
1988
+ "moduleName" : "IPATM-IPMC-MIB",
1989
+ "oid" : "1.3.6.1.6.3.17.2.5.1.6",
1990
+ "status" : "current",
1991
+ "syntax" : {
1992
+ "type" : {
1993
+ "basetype" : "Enumeration",
1994
+ "called" : {
1995
+ "nodetype" : "namednumber",
1996
+ "number" : "1"
1997
+ },
1998
+ "calling" : {
1999
+ "nodetype" : "namednumber",
2000
+ "number" : "2"
2001
+ },
2002
+ },
2003
+ },
2004
+ "access" : "readwrite",
2005
+ "description" :
2006
+ """The party type is associated with the party address. The
2007
+ 'called (1)' indicates that the party address is a
2008
+ destination address which implies that VC is originated
2009
+ from this MARS. The 'calling (2)' indicates the VC was
2010
+ initiated externally to this MARS. The party address is
2011
+ the source address.""",
2012
+ }, # column
2013
+ "marsVcType" : {
2014
+ "nodetype" : "column",
2015
+ "moduleName" : "IPATM-IPMC-MIB",
2016
+ "oid" : "1.3.6.1.6.3.17.2.5.1.7",
2017
+ "status" : "current",
2018
+ "syntax" : {
2019
+ "type" : {
2020
+ "basetype" : "Enumeration",
2021
+ "pvc" : {
2022
+ "nodetype" : "namednumber",
2023
+ "number" : "1"
2024
+ },
2025
+ "svc" : {
2026
+ "nodetype" : "namednumber",
2027
+ "number" : "2"
2028
+ },
2029
+ },
2030
+ },
2031
+ "access" : "readwrite",
2032
+ "description" :
2033
+ """Circuit Connection type: permanent virtual circuit or
2034
+ switched virtual circuit.""",
2035
+ }, # column
2036
+ "marsVcCtrlType" : {
2037
+ "nodetype" : "column",
2038
+ "moduleName" : "IPATM-IPMC-MIB",
2039
+ "oid" : "1.3.6.1.6.3.17.2.5.1.8",
2040
+ "status" : "current",
2041
+ "syntax" : {
2042
+ "type" : {
2043
+ "basetype" : "Enumeration",
2044
+ "pointToPointVC" : {
2045
+ "nodetype" : "namednumber",
2046
+ "number" : "1"
2047
+ },
2048
+ "clusterControlVC" : {
2049
+ "nodetype" : "namednumber",
2050
+ "number" : "2"
2051
+ },
2052
+ "serverControlVC" : {
2053
+ "nodetype" : "namednumber",
2054
+ "number" : "3"
2055
+ },
2056
+ },
2057
+ },
2058
+ "access" : "readwrite",
2059
+ "description" :
2060
+ """Control VC type used to specify a particular connection.
2061
+ pointToPointVC (1):
2062
+ used by the ATM endpoints (clients) or the MCS for
2063
+ registration and queries. This VC is set up from
2064
+ a MARS client and MCS to this MARS. It is a
2065
+ bi-directional VC.
2066
+ clusterControlVC (2):
2067
+ used by MARS to issue asynchronous updates to ATM
2068
+ an ATM client. This VC is established from the
2069
+ MARs to the ATM client.
2070
+ serverControlVC (3):
2071
+ used by MARS to issue asynchronous update to ATM
2072
+ multicast servers. This type of VC exists when at
2073
+ least a MCS is being used.""",
2074
+ }, # column
2075
+ "marsVcIdleTimer" : {
2076
+ "nodetype" : "column",
2077
+ "moduleName" : "IPATM-IPMC-MIB",
2078
+ "oid" : "1.3.6.1.6.3.17.2.5.1.9",
2079
+ "status" : "current",
2080
+ "syntax" : {
2081
+ "type" : {
2082
+ "basetype" : "Integer32",
2083
+ "ranges" : [
2084
+ {
2085
+ "min" : "1",
2086
+ "max" : "2147483647"
2087
+ },
2088
+ ],
2089
+ "range" : {
2090
+ "min" : "1",
2091
+ "max" : "2147483647"
2092
+ },
2093
+ },
2094
+ },
2095
+ "access" : "readwrite",
2096
+ "default" : "20",
2097
+ "units" : "minutes",
2098
+ "description" :
2099
+ """The idle timer associated with this VC. The minimum
2100
+ suggested value is 1 minute and the recommended default
2101
+ value is 20 minutes.""",
2102
+ }, # column
2103
+ "marsVcCmi" : {
2104
+ "nodetype" : "column",
2105
+ "moduleName" : "IPATM-IPMC-MIB",
2106
+ "oid" : "1.3.6.1.6.3.17.2.5.1.10",
2107
+ "status" : "current",
2108
+ "syntax" : {
2109
+ "type" : {
2110
+ "basetype" : "Integer32",
2111
+ "ranges" : [
2112
+ {
2113
+ "min" : "0",
2114
+ "max" : "65535"
2115
+ },
2116
+ ],
2117
+ "range" : {
2118
+ "min" : "0",
2119
+ "max" : "65535"
2120
+ },
2121
+ },
2122
+ },
2123
+ "access" : "readwrite",
2124
+ "description" :
2125
+ """Cluster member identifier (CMI) which uniquely identifies
2126
+ each endpoint attached to the cluster. This variable
2127
+ applies to each 'leaf node' of an outgoing control VC.""",
2128
+ }, # column
2129
+ "marsVcEncapsType" : {
2130
+ "nodetype" : "column",
2131
+ "moduleName" : "IPATM-IPMC-MIB",
2132
+ "oid" : "1.3.6.1.6.3.17.2.5.1.11",
2133
+ "status" : "current",
2134
+ "syntax" : {
2135
+ "type" : {
2136
+ "basetype" : "Enumeration",
2137
+ "other" : {
2138
+ "nodetype" : "namednumber",
2139
+ "number" : "1"
2140
+ },
2141
+ "llcSnap" : {
2142
+ "nodetype" : "namednumber",
2143
+ "number" : "2"
2144
+ },
2145
+ },
2146
+ },
2147
+ "access" : "readwrite",
2148
+ "description" :
2149
+ """The encapsulation type used when communicating over
2150
+ this VC.""",
2151
+ }, # column
2152
+ "marsVcNegotiatedMtu" : {
2153
+ "nodetype" : "column",
2154
+ "moduleName" : "IPATM-IPMC-MIB",
2155
+ "oid" : "1.3.6.1.6.3.17.2.5.1.12",
2156
+ "status" : "current",
2157
+ "syntax" : {
2158
+ "type" : {
2159
+ "basetype" : "Integer32",
2160
+ "ranges" : [
2161
+ {
2162
+ "min" : "1",
2163
+ "max" : "65535"
2164
+ },
2165
+ ],
2166
+ "range" : {
2167
+ "min" : "1",
2168
+ "max" : "65535"
2169
+ },
2170
+ },
2171
+ },
2172
+ "access" : "readwrite",
2173
+ "description" :
2174
+ """The negotiated MTU when communicating over this VC.""",
2175
+ }, # column
2176
+ "marsVcRowStatus" : {
2177
+ "nodetype" : "column",
2178
+ "moduleName" : "IPATM-IPMC-MIB",
2179
+ "oid" : "1.3.6.1.6.3.17.2.5.1.13",
2180
+ "status" : "current",
2181
+ "syntax" : {
2182
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
2183
+ },
2184
+ "access" : "readwrite",
2185
+ "description" :
2186
+ """The object is used to create, delete or modify a
2187
+ row in this table.
2188
+
2189
+ A row cannot be made 'active' until instances of
2190
+ all corresponding columns in the row of this table
2191
+ are appropriately configured.
2192
+
2193
+ While the marsVcIdleTimer in this conceptual
2194
+ row can be modified irrespective of the value
2195
+ of this object, all other objects in the row can
2196
+ not be modified when this object has a value
2197
+ of 'active'.
2198
+
2199
+ It is possible for an SNMP management station
2200
+ to set the row to 'notInService' and modify
2201
+ the entry and then set it back to 'active'
2202
+ with the following exception. That is, rows
2203
+ for which the corresponding instance of
2204
+ marsVcType has a value of 'svc' can not be
2205
+ modified or deleted.""",
2206
+ }, # column
2207
+ "marsRegClientTable" : {
2208
+ "nodetype" : "table",
2209
+ "moduleName" : "IPATM-IPMC-MIB",
2210
+ "oid" : "1.3.6.1.6.3.17.2.6",
2211
+ "status" : "current",
2212
+ "description" :
2213
+ """This table contains ATM identities of all the currently
2214
+ registered cluster members at a MARS. Each entry represents
2215
+ one set of ATM identities associated with one cluster member
2216
+ or the MARS client.""",
2217
+ }, # table
2218
+ "marsRegClientEntry" : {
2219
+ "nodetype" : "row",
2220
+ "moduleName" : "IPATM-IPMC-MIB",
2221
+ "oid" : "1.3.6.1.6.3.17.2.6.1",
2222
+ "status" : "current",
2223
+ "linkage" : [
2224
+ "marsIndex",
2225
+ "marsIfIndex",
2226
+ "marsRegClientCmi",
2227
+ ],
2228
+ "description" :
2229
+ """Each entry row contains attributes associated with one
2230
+ register cluster member.""",
2231
+ }, # row
2232
+ "marsRegClientCmi" : {
2233
+ "nodetype" : "column",
2234
+ "moduleName" : "IPATM-IPMC-MIB",
2235
+ "oid" : "1.3.6.1.6.3.17.2.6.1.1",
2236
+ "status" : "current",
2237
+ "syntax" : {
2238
+ "type" : {
2239
+ "basetype" : "Integer32",
2240
+ "ranges" : [
2241
+ {
2242
+ "min" : "0",
2243
+ "max" : "65535"
2244
+ },
2245
+ ],
2246
+ "range" : {
2247
+ "min" : "0",
2248
+ "max" : "65535"
2249
+ },
2250
+ },
2251
+ },
2252
+ "access" : "noaccess",
2253
+ "description" :
2254
+ """This cluster member identifier is used as an auxiliary index
2255
+ for the entry in this table.""",
2256
+ }, # column
2257
+ "marsRegClientAtmAddr" : {
2258
+ "nodetype" : "column",
2259
+ "moduleName" : "IPATM-IPMC-MIB",
2260
+ "oid" : "1.3.6.1.6.3.17.2.6.1.2",
2261
+ "status" : "current",
2262
+ "syntax" : {
2263
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmAddr"},
2264
+ },
2265
+ "access" : "readonly",
2266
+ "description" :
2267
+ """The registered client's ATM address.""",
2268
+ }, # column
2269
+ "marsRegMcsTable" : {
2270
+ "nodetype" : "table",
2271
+ "moduleName" : "IPATM-IPMC-MIB",
2272
+ "oid" : "1.3.6.1.6.3.17.2.7",
2273
+ "status" : "current",
2274
+ "description" :
2275
+ """This table contains ATM identities of all the currently
2276
+ registered MCSs at a MARS. Each entry represents one set
2277
+ of ATM identities associated with one MCS.""",
2278
+ }, # table
2279
+ "marsRegMcsEntry" : {
2280
+ "nodetype" : "row",
2281
+ "moduleName" : "IPATM-IPMC-MIB",
2282
+ "oid" : "1.3.6.1.6.3.17.2.7.1",
2283
+ "status" : "current",
2284
+ "linkage" : [
2285
+ "marsIndex",
2286
+ "marsIfIndex",
2287
+ "marsRegMcsAtmAddr",
2288
+ ],
2289
+ "description" :
2290
+ """Each entry row contains attributes associated with one
2291
+ registered MCS.""",
2292
+ }, # row
2293
+ "marsRegMcsAtmAddr" : {
2294
+ "nodetype" : "column",
2295
+ "moduleName" : "IPATM-IPMC-MIB",
2296
+ "oid" : "1.3.6.1.6.3.17.2.7.1.1",
2297
+ "status" : "current",
2298
+ "syntax" : {
2299
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmAddr"},
2300
+ },
2301
+ "access" : "readonly",
2302
+ "description" :
2303
+ """The registered MCS's ATM address.""",
2304
+ }, # column
2305
+ "marsStatTable" : {
2306
+ "nodetype" : "table",
2307
+ "moduleName" : "IPATM-IPMC-MIB",
2308
+ "oid" : "1.3.6.1.6.3.17.2.8",
2309
+ "status" : "current",
2310
+ "description" :
2311
+ """The table contains statistics collected at MARS.""",
2312
+ }, # table
2313
+ "marsStatEntry" : {
2314
+ "nodetype" : "row",
2315
+ "moduleName" : "IPATM-IPMC-MIB",
2316
+ "oid" : "1.3.6.1.6.3.17.2.8.1",
2317
+ "status" : "current",
2318
+ "linkage" : [
2319
+ "marsIndex",
2320
+ "marsIfIndex",
2321
+ ],
2322
+ "description" :
2323
+ """Each entry contains statistics collected at one MARS.""",
2324
+ }, # row
2325
+ "marsStatTxMultiMsgs" : {
2326
+ "nodetype" : "column",
2327
+ "moduleName" : "IPATM-IPMC-MIB",
2328
+ "oid" : "1.3.6.1.6.3.17.2.8.1.1",
2329
+ "status" : "current",
2330
+ "syntax" : {
2331
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2332
+ },
2333
+ "access" : "readonly",
2334
+ "description" :
2335
+ """Total number of MARS_MULTI transmitted by this MARS.""",
2336
+ }, # column
2337
+ "marsStatTxGrpLstRplyMsgs" : {
2338
+ "nodetype" : "column",
2339
+ "moduleName" : "IPATM-IPMC-MIB",
2340
+ "oid" : "1.3.6.1.6.3.17.2.8.1.2",
2341
+ "status" : "current",
2342
+ "syntax" : {
2343
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2344
+ },
2345
+ "access" : "readonly",
2346
+ "description" :
2347
+ """Total number of MARS_GROUPLIST_REPLY messages transmitted
2348
+ by this MARS.""",
2349
+ }, # column
2350
+ "marsStatTxRedirectMapMsgs" : {
2351
+ "nodetype" : "column",
2352
+ "moduleName" : "IPATM-IPMC-MIB",
2353
+ "oid" : "1.3.6.1.6.3.17.2.8.1.3",
2354
+ "status" : "current",
2355
+ "syntax" : {
2356
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2357
+ },
2358
+ "access" : "readonly",
2359
+ "description" :
2360
+ """Total number of MARS_REDIRECT_MAP messages transmitted by
2361
+ this MARS.""",
2362
+ }, # column
2363
+ "marsStatTxMigrateMsgs" : {
2364
+ "nodetype" : "column",
2365
+ "moduleName" : "IPATM-IPMC-MIB",
2366
+ "oid" : "1.3.6.1.6.3.17.2.8.1.4",
2367
+ "status" : "current",
2368
+ "syntax" : {
2369
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2370
+ },
2371
+ "access" : "readonly",
2372
+ "description" :
2373
+ """Total number of MARS_MIGRATE messages transmitted by
2374
+ this MARS.""",
2375
+ }, # column
2376
+ "marsStatTxNakMsgs" : {
2377
+ "nodetype" : "column",
2378
+ "moduleName" : "IPATM-IPMC-MIB",
2379
+ "oid" : "1.3.6.1.6.3.17.2.8.1.5",
2380
+ "status" : "current",
2381
+ "syntax" : {
2382
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2383
+ },
2384
+ "access" : "readonly",
2385
+ "description" :
2386
+ """Total number of MARS_NAK messages transmitted by this MARS.""",
2387
+ }, # column
2388
+ "marsStatTxJoinMsgs" : {
2389
+ "nodetype" : "column",
2390
+ "moduleName" : "IPATM-IPMC-MIB",
2391
+ "oid" : "1.3.6.1.6.3.17.2.8.1.6",
2392
+ "status" : "current",
2393
+ "syntax" : {
2394
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2395
+ },
2396
+ "access" : "readonly",
2397
+ "description" :
2398
+ """Total number of MARS_JOIN messages transmitted by this
2399
+ MARS.""",
2400
+ }, # column
2401
+ "marsStatTxLeaveMsgs" : {
2402
+ "nodetype" : "column",
2403
+ "moduleName" : "IPATM-IPMC-MIB",
2404
+ "oid" : "1.3.6.1.6.3.17.2.8.1.7",
2405
+ "status" : "current",
2406
+ "syntax" : {
2407
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2408
+ },
2409
+ "access" : "readonly",
2410
+ "description" :
2411
+ """Total number of MARS_LEAVE messages transmitted by this
2412
+ MARS.""",
2413
+ }, # column
2414
+ "marsStatTxSjoinMsgs" : {
2415
+ "nodetype" : "column",
2416
+ "moduleName" : "IPATM-IPMC-MIB",
2417
+ "oid" : "1.3.6.1.6.3.17.2.8.1.8",
2418
+ "status" : "current",
2419
+ "syntax" : {
2420
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2421
+ },
2422
+ "access" : "readonly",
2423
+ "description" :
2424
+ """Total number of MARS_SJOIN messages transmitted by this
2425
+ MARS.""",
2426
+ }, # column
2427
+ "marsStatTxSleaveMsgs" : {
2428
+ "nodetype" : "column",
2429
+ "moduleName" : "IPATM-IPMC-MIB",
2430
+ "oid" : "1.3.6.1.6.3.17.2.8.1.9",
2431
+ "status" : "current",
2432
+ "syntax" : {
2433
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2434
+ },
2435
+ "access" : "readonly",
2436
+ "description" :
2437
+ """Total number of MARS_SLEAVE messages transmitted by this
2438
+ MARS.""",
2439
+ }, # column
2440
+ "marsStatTxMservMsgs" : {
2441
+ "nodetype" : "column",
2442
+ "moduleName" : "IPATM-IPMC-MIB",
2443
+ "oid" : "1.3.6.1.6.3.17.2.8.1.10",
2444
+ "status" : "current",
2445
+ "syntax" : {
2446
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2447
+ },
2448
+ "access" : "readonly",
2449
+ "description" :
2450
+ """Total number of MARS_MSERV messages transmitted by this
2451
+ MARS.""",
2452
+ }, # column
2453
+ "marsStatTxUnservMsgs" : {
2454
+ "nodetype" : "column",
2455
+ "moduleName" : "IPATM-IPMC-MIB",
2456
+ "oid" : "1.3.6.1.6.3.17.2.8.1.11",
2457
+ "status" : "current",
2458
+ "syntax" : {
2459
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2460
+ },
2461
+ "access" : "readonly",
2462
+ "description" :
2463
+ """Total number of MARS_UNSERV messages transmitted by this
2464
+ MARS.""",
2465
+ }, # column
2466
+ "marsStatRxReqMsgs" : {
2467
+ "nodetype" : "column",
2468
+ "moduleName" : "IPATM-IPMC-MIB",
2469
+ "oid" : "1.3.6.1.6.3.17.2.8.1.12",
2470
+ "status" : "current",
2471
+ "syntax" : {
2472
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2473
+ },
2474
+ "access" : "readonly",
2475
+ "description" :
2476
+ """Total number of MARS_REQUEST messages received by this
2477
+ MARS.""",
2478
+ }, # column
2479
+ "marsStatRxGrpLstReqMsgs" : {
2480
+ "nodetype" : "column",
2481
+ "moduleName" : "IPATM-IPMC-MIB",
2482
+ "oid" : "1.3.6.1.6.3.17.2.8.1.13",
2483
+ "status" : "current",
2484
+ "syntax" : {
2485
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2486
+ },
2487
+ "access" : "readonly",
2488
+ "description" :
2489
+ """Total number of MARS_GROUPLIST_REQUEST messages received
2490
+ by this MARS.""",
2491
+ }, # column
2492
+ "marsStatRxJoinMsgs" : {
2493
+ "nodetype" : "column",
2494
+ "moduleName" : "IPATM-IPMC-MIB",
2495
+ "oid" : "1.3.6.1.6.3.17.2.8.1.14",
2496
+ "status" : "current",
2497
+ "syntax" : {
2498
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2499
+ },
2500
+ "access" : "readonly",
2501
+ "description" :
2502
+ """Total number of MARS_JOINS messages received by this MARS.""",
2503
+ }, # column
2504
+ "marsStatRxLeaveMsgs" : {
2505
+ "nodetype" : "column",
2506
+ "moduleName" : "IPATM-IPMC-MIB",
2507
+ "oid" : "1.3.6.1.6.3.17.2.8.1.15",
2508
+ "status" : "current",
2509
+ "syntax" : {
2510
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2511
+ },
2512
+ "access" : "readonly",
2513
+ "description" :
2514
+ """Total number of MARS_LEAVES messages received by this MARS.""",
2515
+ }, # column
2516
+ "marsStatRxMservMsgs" : {
2517
+ "nodetype" : "column",
2518
+ "moduleName" : "IPATM-IPMC-MIB",
2519
+ "oid" : "1.3.6.1.6.3.17.2.8.1.16",
2520
+ "status" : "current",
2521
+ "syntax" : {
2522
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2523
+ },
2524
+ "access" : "readonly",
2525
+ "description" :
2526
+ """Total number of MARS_MSERV messages received by this MARS.""",
2527
+ }, # column
2528
+ "marsStatRxUnservMsgs" : {
2529
+ "nodetype" : "column",
2530
+ "moduleName" : "IPATM-IPMC-MIB",
2531
+ "oid" : "1.3.6.1.6.3.17.2.8.1.17",
2532
+ "status" : "current",
2533
+ "syntax" : {
2534
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2535
+ },
2536
+ "access" : "readonly",
2537
+ "description" :
2538
+ """Total number of MARS_UNSERV messages received by this MARS.""",
2539
+ }, # column
2540
+ "marsStatRxBlkJoinMsgs" : {
2541
+ "nodetype" : "column",
2542
+ "moduleName" : "IPATM-IPMC-MIB",
2543
+ "oid" : "1.3.6.1.6.3.17.2.8.1.18",
2544
+ "status" : "current",
2545
+ "syntax" : {
2546
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2547
+ },
2548
+ "access" : "readonly",
2549
+ "description" :
2550
+ """Total number of block joins messages received by this MARS.""",
2551
+ }, # column
2552
+ "marsStatRegMemGroups" : {
2553
+ "nodetype" : "column",
2554
+ "moduleName" : "IPATM-IPMC-MIB",
2555
+ "oid" : "1.3.6.1.6.3.17.2.8.1.19",
2556
+ "status" : "current",
2557
+ "syntax" : {
2558
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2559
+ },
2560
+ "access" : "readonly",
2561
+ "description" :
2562
+ """Total number of IP multicast groups with 1 or more joined
2563
+ cluster members.""",
2564
+ }, # column
2565
+ "marsStatRegMcsGroups" : {
2566
+ "nodetype" : "column",
2567
+ "moduleName" : "IPATM-IPMC-MIB",
2568
+ "oid" : "1.3.6.1.6.3.17.2.8.1.20",
2569
+ "status" : "current",
2570
+ "syntax" : {
2571
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2572
+ },
2573
+ "access" : "readonly",
2574
+ "description" :
2575
+ """Total number of IP multicast groups with 1 or more joined
2576
+ MCSs.""",
2577
+ }, # column
2578
+ "marsMcsObjects" : {
2579
+ "nodetype" : "node",
2580
+ "moduleName" : "IPATM-IPMC-MIB",
2581
+ "oid" : "1.3.6.1.6.3.17.3",
2582
+ }, # node
2583
+ "marsMcsTable" : {
2584
+ "nodetype" : "table",
2585
+ "moduleName" : "IPATM-IPMC-MIB",
2586
+ "oid" : "1.3.6.1.6.3.17.3.1",
2587
+ "status" : "current",
2588
+ "description" :
2589
+ """The objects defined in this table are used for
2590
+ the management of a multicast server (MCS).""",
2591
+ }, # table
2592
+ "marsMcsEntry" : {
2593
+ "nodetype" : "row",
2594
+ "moduleName" : "IPATM-IPMC-MIB",
2595
+ "oid" : "1.3.6.1.6.3.17.3.1.1",
2596
+ "create" : "true",
2597
+ "status" : "current",
2598
+ "linkage" : [
2599
+ "marsMcsIndex",
2600
+ "marsMcsIfIndex",
2601
+ ],
2602
+ "description" :
2603
+ """Each entry contains a MCS and its associated
2604
+ attributes.""",
2605
+ }, # row
2606
+ "marsMcsIndex" : {
2607
+ "nodetype" : "column",
2608
+ "moduleName" : "IPATM-IPMC-MIB",
2609
+ "oid" : "1.3.6.1.6.3.17.3.1.1.1",
2610
+ "status" : "current",
2611
+ "syntax" : {
2612
+ "type" : {
2613
+ "basetype" : "Integer32",
2614
+ "ranges" : [
2615
+ {
2616
+ "min" : "1",
2617
+ "max" : "65535"
2618
+ },
2619
+ ],
2620
+ "range" : {
2621
+ "min" : "1",
2622
+ "max" : "65535"
2623
+ },
2624
+ },
2625
+ },
2626
+ "access" : "noaccess",
2627
+ "description" :
2628
+ """The auxiliary variable used to identify instances
2629
+ of the columnar objects in the MCS table.""",
2630
+ }, # column
2631
+ "marsMcsIfIndex" : {
2632
+ "nodetype" : "column",
2633
+ "moduleName" : "IPATM-IPMC-MIB",
2634
+ "oid" : "1.3.6.1.6.3.17.3.1.1.2",
2635
+ "status" : "current",
2636
+ "syntax" : {
2637
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
2638
+ },
2639
+ "access" : "noaccess",
2640
+ "description" :
2641
+ """The ifIndex of the interface that the MCS is
2642
+ associated with.""",
2643
+ }, # column
2644
+ "marsMcsAddr" : {
2645
+ "nodetype" : "column",
2646
+ "moduleName" : "IPATM-IPMC-MIB",
2647
+ "oid" : "1.3.6.1.6.3.17.3.1.1.3",
2648
+ "status" : "current",
2649
+ "syntax" : {
2650
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmAddr"},
2651
+ },
2652
+ "access" : "readwrite",
2653
+ "description" :
2654
+ """The ATM address associated with the MCS.""",
2655
+ }, # column
2656
+ "marsMcsDefaultMarsAddr" : {
2657
+ "nodetype" : "column",
2658
+ "moduleName" : "IPATM-IPMC-MIB",
2659
+ "oid" : "1.3.6.1.6.3.17.3.1.1.4",
2660
+ "status" : "current",
2661
+ "syntax" : {
2662
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmAddr"},
2663
+ },
2664
+ "access" : "readwrite",
2665
+ "description" :
2666
+ """The default MARS ATM address which is needed to
2667
+ setup the initial signalling path between a MCS
2668
+ and its associated MARS.""",
2669
+ }, # column
2670
+ "marsMcsRegistration" : {
2671
+ "nodetype" : "column",
2672
+ "moduleName" : "IPATM-IPMC-MIB",
2673
+ "oid" : "1.3.6.1.6.3.17.3.1.1.5",
2674
+ "status" : "current",
2675
+ "syntax" : {
2676
+ "type" : {
2677
+ "basetype" : "Enumeration",
2678
+ "notRegistered" : {
2679
+ "nodetype" : "namednumber",
2680
+ "number" : "1"
2681
+ },
2682
+ "registering" : {
2683
+ "nodetype" : "namednumber",
2684
+ "number" : "2"
2685
+ },
2686
+ "registered" : {
2687
+ "nodetype" : "namednumber",
2688
+ "number" : "3"
2689
+ },
2690
+ "reRegisteringFault" : {
2691
+ "nodetype" : "namednumber",
2692
+ "number" : "4"
2693
+ },
2694
+ "reRegisteringRedirMap" : {
2695
+ "nodetype" : "namednumber",
2696
+ "number" : "5"
2697
+ },
2698
+ },
2699
+ },
2700
+ "access" : "readwrite",
2701
+ "description" :
2702
+ """An indication with regards to the registration
2703
+ STATUS of this MCS. The registration codes of
2704
+ 'notRegistered (1)', 'registered (2)', and
2705
+ registered (3) are self-explanatory. The
2706
+ 'reRegisteringFault (4)' indicates the MCS is
2707
+ in the process of re-registering with a MARS due
2708
+ to some fault conditions. The 'reRegisteringRedMap
2709
+ (5)' status code shows that MCS is re-registering
2710
+ because it has received a MARS_REDIRECT_MAP message
2711
+ and was told to register with a shift MARS.""",
2712
+ }, # column
2713
+ "marsMcsSsn" : {
2714
+ "nodetype" : "column",
2715
+ "moduleName" : "IPATM-IPMC-MIB",
2716
+ "oid" : "1.3.6.1.6.3.17.3.1.1.6",
2717
+ "status" : "current",
2718
+ "syntax" : {
2719
+ "type" : { "module" :"", "name" : "Unsigned32"},
2720
+ },
2721
+ "access" : "readwrite",
2722
+ "description" :
2723
+ """The MCS own 32 bit Server Sequence Number. It
2724
+ is used to track the Mars sequence number.""",
2725
+ }, # column
2726
+ "marsMcsDefaultMtu" : {
2727
+ "nodetype" : "column",
2728
+ "moduleName" : "IPATM-IPMC-MIB",
2729
+ "oid" : "1.3.6.1.6.3.17.3.1.1.7",
2730
+ "status" : "current",
2731
+ "syntax" : {
2732
+ "type" : {
2733
+ "basetype" : "Integer32",
2734
+ "ranges" : [
2735
+ {
2736
+ "min" : "1",
2737
+ "max" : "65535"
2738
+ },
2739
+ ],
2740
+ "range" : {
2741
+ "min" : "1",
2742
+ "max" : "65535"
2743
+ },
2744
+ },
2745
+ },
2746
+ "access" : "readwrite",
2747
+ "default" : "9180",
2748
+ "description" :
2749
+ """The default maximum transmission unit (MTU) used
2750
+ for this cluster. Note that the actual size used
2751
+ for a VC between two members of the cluster may be
2752
+ negotiated during connection setup and may be
2753
+ different than this value.
2754
+ Default value = 9180 bytes.""",
2755
+ }, # column
2756
+ "marsMcsFailureTimer" : {
2757
+ "nodetype" : "column",
2758
+ "moduleName" : "IPATM-IPMC-MIB",
2759
+ "oid" : "1.3.6.1.6.3.17.3.1.1.8",
2760
+ "status" : "current",
2761
+ "syntax" : {
2762
+ "type" : {
2763
+ "basetype" : "Integer32",
2764
+ "ranges" : [
2765
+ {
2766
+ "min" : "1",
2767
+ "max" : "2147483647"
2768
+ },
2769
+ ],
2770
+ "range" : {
2771
+ "min" : "1",
2772
+ "max" : "2147483647"
2773
+ },
2774
+ },
2775
+ },
2776
+ "access" : "readwrite",
2777
+ "default" : "10",
2778
+ "units" : "seconds",
2779
+ "description" :
2780
+ """A timer used to flag the failure of last MARS_MULTI
2781
+ to arrive. Default value = 10 seconds (recommended).""",
2782
+ }, # column
2783
+ "marsMcsRetranDelayTimer" : {
2784
+ "nodetype" : "column",
2785
+ "moduleName" : "IPATM-IPMC-MIB",
2786
+ "oid" : "1.3.6.1.6.3.17.3.1.1.9",
2787
+ "status" : "current",
2788
+ "syntax" : {
2789
+ "type" : {
2790
+ "basetype" : "Integer32",
2791
+ "ranges" : [
2792
+ {
2793
+ "min" : "5",
2794
+ "max" : "10"
2795
+ },
2796
+ ],
2797
+ "range" : {
2798
+ "min" : "5",
2799
+ "max" : "10"
2800
+ },
2801
+ },
2802
+ },
2803
+ "access" : "readwrite",
2804
+ "units" : "seconds",
2805
+ "description" :
2806
+ """The delay timer for sending out new MARS_REQUEST
2807
+ for the group after the MCS learned that there
2808
+ is no other group in the cluster. The timer must
2809
+ be set between 5 and 10 seconds inclusive.""",
2810
+ }, # column
2811
+ "marsMcsRdmMulReqAddRetrTimer" : {
2812
+ "nodetype" : "column",
2813
+ "moduleName" : "IPATM-IPMC-MIB",
2814
+ "oid" : "1.3.6.1.6.3.17.3.1.1.10",
2815
+ "status" : "current",
2816
+ "syntax" : {
2817
+ "type" : {
2818
+ "basetype" : "Integer32",
2819
+ "ranges" : [
2820
+ {
2821
+ "min" : "5",
2822
+ "max" : "10"
2823
+ },
2824
+ ],
2825
+ "range" : {
2826
+ "min" : "5",
2827
+ "max" : "10"
2828
+ },
2829
+ },
2830
+ },
2831
+ "access" : "readwrite",
2832
+ "units" : "seconds",
2833
+ "description" :
2834
+ """The initial random L_MULTI_RQ/ADD retransmit timer
2835
+ which can be set between 5 and 10 seconds inclusive.""",
2836
+ }, # column
2837
+ "marsMcsRdmVcRevalidateTimer" : {
2838
+ "nodetype" : "column",
2839
+ "moduleName" : "IPATM-IPMC-MIB",
2840
+ "oid" : "1.3.6.1.6.3.17.3.1.1.11",
2841
+ "status" : "current",
2842
+ "syntax" : {
2843
+ "type" : {
2844
+ "basetype" : "Integer32",
2845
+ "ranges" : [
2846
+ {
2847
+ "min" : "1",
2848
+ "max" : "10"
2849
+ },
2850
+ ],
2851
+ "range" : {
2852
+ "min" : "1",
2853
+ "max" : "10"
2854
+ },
2855
+ },
2856
+ },
2857
+ "access" : "readwrite",
2858
+ "units" : "seconds",
2859
+ "description" :
2860
+ """The random time to set VC_revalidate flag. The
2861
+ timer value ranges between 1 and 10 seconds
2862
+ inclusive.""",
2863
+ }, # column
2864
+ "marsMcsRegisterRetrInterval" : {
2865
+ "nodetype" : "column",
2866
+ "moduleName" : "IPATM-IPMC-MIB",
2867
+ "oid" : "1.3.6.1.6.3.17.3.1.1.12",
2868
+ "status" : "current",
2869
+ "syntax" : {
2870
+ "type" : {
2871
+ "basetype" : "Integer32",
2872
+ "ranges" : [
2873
+ {
2874
+ "min" : "5",
2875
+ "max" : "2147483647"
2876
+ },
2877
+ ],
2878
+ "range" : {
2879
+ "min" : "5",
2880
+ "max" : "2147483647"
2881
+ },
2882
+ },
2883
+ },
2884
+ "access" : "readwrite",
2885
+ "default" : "10",
2886
+ "units" : "seconds",
2887
+ "description" :
2888
+ """MARS_MSERV/UNSERV retransmit interval. The minimum
2889
+ and recommended values are 5 and 10 seconds,
2890
+ respectively.""",
2891
+ }, # column
2892
+ "marsMcsRegisterRetrLimit" : {
2893
+ "nodetype" : "column",
2894
+ "moduleName" : "IPATM-IPMC-MIB",
2895
+ "oid" : "1.3.6.1.6.3.17.3.1.1.13",
2896
+ "status" : "current",
2897
+ "syntax" : {
2898
+ "type" : {
2899
+ "basetype" : "Integer32",
2900
+ "ranges" : [
2901
+ {
2902
+ "min" : "0",
2903
+ "max" : "5"
2904
+ },
2905
+ ],
2906
+ "range" : {
2907
+ "min" : "0",
2908
+ "max" : "5"
2909
+ },
2910
+ },
2911
+ },
2912
+ "access" : "readwrite",
2913
+ "description" :
2914
+ """MARS_MSERV/UNSERV retransmit limit. The maximum value
2915
+ is 5.""",
2916
+ }, # column
2917
+ "marsMcsRegWithMarsRdmTimer" : {
2918
+ "nodetype" : "column",
2919
+ "moduleName" : "IPATM-IPMC-MIB",
2920
+ "oid" : "1.3.6.1.6.3.17.3.1.1.14",
2921
+ "status" : "current",
2922
+ "syntax" : {
2923
+ "type" : {
2924
+ "basetype" : "Integer32",
2925
+ "ranges" : [
2926
+ {
2927
+ "min" : "1",
2928
+ "max" : "10"
2929
+ },
2930
+ ],
2931
+ "range" : {
2932
+ "min" : "1",
2933
+ "max" : "10"
2934
+ },
2935
+ },
2936
+ },
2937
+ "access" : "readwrite",
2938
+ "units" : "seconds",
2939
+ "description" :
2940
+ """Random time for a MCS to register with a MARS.""",
2941
+ }, # column
2942
+ "marsMcsForceWaitTimer" : {
2943
+ "nodetype" : "column",
2944
+ "moduleName" : "IPATM-IPMC-MIB",
2945
+ "oid" : "1.3.6.1.6.3.17.3.1.1.15",
2946
+ "status" : "current",
2947
+ "syntax" : {
2948
+ "type" : {
2949
+ "basetype" : "Integer32",
2950
+ "ranges" : [
2951
+ {
2952
+ "min" : "1",
2953
+ "max" : "2147483647"
2954
+ },
2955
+ ],
2956
+ "range" : {
2957
+ "min" : "1",
2958
+ "max" : "2147483647"
2959
+ },
2960
+ },
2961
+ },
2962
+ "access" : "readwrite",
2963
+ "units" : "minutes",
2964
+ "description" :
2965
+ """Force wait if MARS re-registration is looping.
2966
+ The minimum value is 1 minute.""",
2967
+ }, # column
2968
+ "marsMcsLmtToMissRedirMapTimer" : {
2969
+ "nodetype" : "column",
2970
+ "moduleName" : "IPATM-IPMC-MIB",
2971
+ "oid" : "1.3.6.1.6.3.17.3.1.1.16",
2972
+ "status" : "current",
2973
+ "syntax" : {
2974
+ "type" : {
2975
+ "basetype" : "Integer32",
2976
+ "ranges" : [
2977
+ {
2978
+ "min" : "1",
2979
+ "max" : "4"
2980
+ },
2981
+ ],
2982
+ "range" : {
2983
+ "min" : "1",
2984
+ "max" : "4"
2985
+ },
2986
+ },
2987
+ },
2988
+ "access" : "readwrite",
2989
+ "units" : "seconds",
2990
+ "description" :
2991
+ """Timer limit for MCS to miss MARS_REDIRECT_MAPS.""",
2992
+ }, # column
2993
+ "marsMcsIdleTimer" : {
2994
+ "nodetype" : "column",
2995
+ "moduleName" : "IPATM-IPMC-MIB",
2996
+ "oid" : "1.3.6.1.6.3.17.3.1.1.17",
2997
+ "status" : "current",
2998
+ "syntax" : {
2999
+ "type" : {
3000
+ "basetype" : "Integer32",
3001
+ "ranges" : [
3002
+ {
3003
+ "min" : "1",
3004
+ "max" : "2147483647"
3005
+ },
3006
+ ],
3007
+ "range" : {
3008
+ "min" : "1",
3009
+ "max" : "2147483647"
3010
+ },
3011
+ },
3012
+ },
3013
+ "access" : "readwrite",
3014
+ "default" : "20",
3015
+ "units" : "minutes",
3016
+ "description" :
3017
+ """The configurable inactivity timer associated with a
3018
+ MCS. When a VC is created at this MCS, it gets
3019
+ the idle timer value from this configurable timer.
3020
+ The minimum suggested value is 1 minute and the
3021
+ recommended default value is 20 minutes.""",
3022
+ }, # column
3023
+ "marsMcsRowStatus" : {
3024
+ "nodetype" : "column",
3025
+ "moduleName" : "IPATM-IPMC-MIB",
3026
+ "oid" : "1.3.6.1.6.3.17.3.1.1.18",
3027
+ "status" : "current",
3028
+ "syntax" : {
3029
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
3030
+ },
3031
+ "access" : "readwrite",
3032
+ "description" :
3033
+ """The object is used to create, delete or modify a
3034
+ row in this table.
3035
+
3036
+ A row cannot be made 'active' until instances of
3037
+ all corresponding columns in the row of this table
3038
+ are appropriately configured and until the agent
3039
+ has also created a corresponding row in the
3040
+ marsMcsStatTable.
3041
+
3042
+ When this object has a value of 'active', the
3043
+ following columnar objects can not be modified:
3044
+
3045
+ marsMcsDefaultMarsAddr,
3046
+ marsMcsSsn,
3047
+ marsMcsRegstration,
3048
+ marsMcsDefaultMtu
3049
+
3050
+ while other objects in this conceptual row can be
3051
+ modified irrespective of the value of this object.
3052
+ Deletion of this row is allowed regardless of
3053
+ whether or not a row in any associated tables
3054
+ (i.e., marsMcsVcTable) still exists or is in
3055
+ use. Once this row is deleted, it is recommended
3056
+ that the agent or the SNMP management station
3057
+ (if possible) through the set command deletes
3058
+ any stale rows that are associated with this
3059
+ row.""",
3060
+ }, # column
3061
+ "marsMcsMcGrpTable" : {
3062
+ "nodetype" : "table",
3063
+ "moduleName" : "IPATM-IPMC-MIB",
3064
+ "oid" : "1.3.6.1.6.3.17.3.2",
3065
+ "status" : "current",
3066
+ "description" :
3067
+ """This table contains a list of IP multicast group address
3068
+ blocks associated by a MARS MCS. The MCS uses the
3069
+ information contained in list to advertise its multicast
3070
+ group service to the MARS.
3071
+ Each row can be created or deleted via configuration.""",
3072
+ }, # table
3073
+ "marsMcsMcGrpEntry" : {
3074
+ "nodetype" : "row",
3075
+ "moduleName" : "IPATM-IPMC-MIB",
3076
+ "oid" : "1.3.6.1.6.3.17.3.2.1",
3077
+ "create" : "true",
3078
+ "status" : "current",
3079
+ "linkage" : [
3080
+ "marsMcsIndex",
3081
+ "marsMcsIfIndex",
3082
+ "marsMcsMcMinGrpAddr",
3083
+ "marsMcsMcMaxGrpAddr",
3084
+ ],
3085
+ "description" :
3086
+ """Each entry represents a consecutive block of multicast
3087
+ group addresses.""",
3088
+ }, # row
3089
+ "marsMcsMcMinGrpAddr" : {
3090
+ "nodetype" : "column",
3091
+ "moduleName" : "IPATM-IPMC-MIB",
3092
+ "oid" : "1.3.6.1.6.3.17.3.2.1.1",
3093
+ "status" : "current",
3094
+ "syntax" : {
3095
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
3096
+ },
3097
+ "access" : "noaccess",
3098
+ "description" :
3099
+ """Minimum multicast group address - the min and max
3100
+ multicast forms multi-group block. If the MinGrpAddr
3101
+ and MaxGrpAddr are the same, it indicates that this
3102
+ block contains a single group address. Since the
3103
+ block joins are no allowed by a MCS as implied in
3104
+ the RFC2022, the MinGrpAddr and MaxGrpAddress should
3105
+ be set to the same value at this time when an entry
3106
+ row is created.""",
3107
+ }, # column
3108
+ "marsMcsMcMaxGrpAddr" : {
3109
+ "nodetype" : "column",
3110
+ "moduleName" : "IPATM-IPMC-MIB",
3111
+ "oid" : "1.3.6.1.6.3.17.3.2.1.2",
3112
+ "status" : "current",
3113
+ "syntax" : {
3114
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
3115
+ },
3116
+ "access" : "noaccess",
3117
+ "description" :
3118
+ """Maximum multicast group address - the min and max
3119
+ multicast forms a multi-group block. If the
3120
+ MinGrpAddr and MaxGrpAddr are the same, it indicates
3121
+ that this block contains a single group address.
3122
+ Since the block joins are no allowed by a MCS as
3123
+ implied in the RFC2022, the MinGrpAddr and
3124
+ MaxGrpAddress should be set to the same value at
3125
+ this time when an entry row is created.""",
3126
+ }, # column
3127
+ "marsMcsMcGrpRowStatus" : {
3128
+ "nodetype" : "column",
3129
+ "moduleName" : "IPATM-IPMC-MIB",
3130
+ "oid" : "1.3.6.1.6.3.17.3.2.1.3",
3131
+ "status" : "current",
3132
+ "syntax" : {
3133
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
3134
+ },
3135
+ "access" : "readwrite",
3136
+ "description" :
3137
+ """The object is used to create or delete a row in this
3138
+ table.
3139
+
3140
+ Since other objects in this row are not-accessible
3141
+ 'index-objects', the value of this object has no
3142
+ effect on whether those objects in this conceptual
3143
+ row can be modified.""",
3144
+ }, # column
3145
+ "marsMcsBackupMarsTable" : {
3146
+ "nodetype" : "table",
3147
+ "moduleName" : "IPATM-IPMC-MIB",
3148
+ "oid" : "1.3.6.1.6.3.17.3.3",
3149
+ "status" : "current",
3150
+ "description" :
3151
+ """This table contains a list of backup MARS addresses that
3152
+ a MCS can make contact to in case of failure for
3153
+ connecting to the primary server. The list of addresses
3154
+ is in descending order of preference. It should be noted
3155
+ that the backup list provided by the MARS to the MCS
3156
+ via the MARS_REDIRECT_MAP message has a higher preference
3157
+ than addresses that are manually configured into the MCS.
3158
+ When such a list is received from the MARS, this information
3159
+ should be inserted at the top of the list.
3160
+ Each row can be created or deleted via configuration.""",
3161
+ }, # table
3162
+ "marsMcsBackupMarsEntry" : {
3163
+ "nodetype" : "row",
3164
+ "moduleName" : "IPATM-IPMC-MIB",
3165
+ "oid" : "1.3.6.1.6.3.17.3.3.1",
3166
+ "create" : "true",
3167
+ "status" : "current",
3168
+ "linkage" : [
3169
+ "marsMcsIndex",
3170
+ "marsMcsIfIndex",
3171
+ "marsMcsBackupMarsPriority",
3172
+ "marsMcsBackupMarsAddr",
3173
+ ],
3174
+ "description" :
3175
+ """Each entry represents an ATM address of a backup MARS.""",
3176
+ }, # row
3177
+ "marsMcsBackupMarsPriority" : {
3178
+ "nodetype" : "column",
3179
+ "moduleName" : "IPATM-IPMC-MIB",
3180
+ "oid" : "1.3.6.1.6.3.17.3.3.1.1",
3181
+ "status" : "current",
3182
+ "syntax" : {
3183
+ "type" : {
3184
+ "basetype" : "Unsigned32",
3185
+ "ranges" : [
3186
+ {
3187
+ "min" : "0",
3188
+ "max" : "65535"
3189
+ },
3190
+ ],
3191
+ "range" : {
3192
+ "min" : "0",
3193
+ "max" : "65535"
3194
+ },
3195
+ },
3196
+ },
3197
+ "access" : "noaccess",
3198
+ "description" :
3199
+ """The priority associated with a backup MARS. A lower
3200
+ priority value inidcates a higher preference.""",
3201
+ }, # column
3202
+ "marsMcsBackupMarsAddr" : {
3203
+ "nodetype" : "column",
3204
+ "moduleName" : "IPATM-IPMC-MIB",
3205
+ "oid" : "1.3.6.1.6.3.17.3.3.1.2",
3206
+ "status" : "current",
3207
+ "syntax" : {
3208
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmAddr"},
3209
+ },
3210
+ "access" : "noaccess",
3211
+ "description" :
3212
+ """The ATM address associated with a backup MARS.""",
3213
+ }, # column
3214
+ "marsMcsBackupMarsRowStatus" : {
3215
+ "nodetype" : "column",
3216
+ "moduleName" : "IPATM-IPMC-MIB",
3217
+ "oid" : "1.3.6.1.6.3.17.3.3.1.3",
3218
+ "status" : "current",
3219
+ "syntax" : {
3220
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
3221
+ },
3222
+ "access" : "readwrite",
3223
+ "description" :
3224
+ """The object is used to create or delete a row in this
3225
+ table.
3226
+
3227
+ Since other objects in this row are not-accessible
3228
+ 'index-objects', the value of this object has no
3229
+ effect on whether those objects in this conceptual
3230
+ row can be modified.""",
3231
+ }, # column
3232
+ "marsMcsVcTable" : {
3233
+ "nodetype" : "table",
3234
+ "moduleName" : "IPATM-IPMC-MIB",
3235
+ "oid" : "1.3.6.1.6.3.17.3.4",
3236
+ "status" : "current",
3237
+ "description" :
3238
+ """This table contains information about open virtual
3239
+ circuits (VCs) that a MCS has. For point to
3240
+ point circuit, each entry represents a single VC
3241
+ connection between this MCS ATM address to another
3242
+ party ATM address. In the case of point to
3243
+ multipoint connection where a single source address
3244
+ is associated with multiple destinations, several
3245
+ entries are used to represent the relationship. An
3246
+ example of point to multi-point VC represented in a
3247
+ table is shown below.
3248
+
3249
+ MCS VPI/VCI Grp Addr1/Addr2 Part Addr
3250
+ 1 0,1 g1,g2 p1
3251
+ 1 0,1 g1,g2 p2
3252
+ 1 0,1 g1,g2 p3""",
3253
+ }, # table
3254
+ "marsMcsVcEntry" : {
3255
+ "nodetype" : "row",
3256
+ "moduleName" : "IPATM-IPMC-MIB",
3257
+ "oid" : "1.3.6.1.6.3.17.3.4.1",
3258
+ "create" : "true",
3259
+ "status" : "current",
3260
+ "linkage" : [
3261
+ "marsMcsIndex",
3262
+ "marsMcsIfIndex",
3263
+ "marsMcsVcVpi",
3264
+ "marsMcsVcVci",
3265
+ "marsMcsVcMinGrpAddr",
3266
+ "marsMcsVcMaxGrpAddr",
3267
+ "marsMcsVcPartyAddr",
3268
+ ],
3269
+ "description" :
3270
+ """The objects contained in the entry are VC related
3271
+ attributes such as VC signalling type, control VC
3272
+ type, idle timer, negotiated MTU size, etc.""",
3273
+ }, # row
3274
+ "marsMcsVcVpi" : {
3275
+ "nodetype" : "column",
3276
+ "moduleName" : "IPATM-IPMC-MIB",
3277
+ "oid" : "1.3.6.1.6.3.17.3.4.1.1",
3278
+ "status" : "current",
3279
+ "syntax" : {
3280
+ "type" : {
3281
+ "basetype" : "Integer32",
3282
+ "ranges" : [
3283
+ {
3284
+ "min" : "0",
3285
+ "max" : "4095"
3286
+ },
3287
+ ],
3288
+ "range" : {
3289
+ "min" : "0",
3290
+ "max" : "4095"
3291
+ },
3292
+ },
3293
+ },
3294
+ "access" : "noaccess",
3295
+ "description" :
3296
+ """The value of virtual path identifier (VPI). Since
3297
+ a VPI can be numbered 0, this sub-index can take
3298
+ a value of 0.""",
3299
+ }, # column
3300
+ "marsMcsVcVci" : {
3301
+ "nodetype" : "column",
3302
+ "moduleName" : "IPATM-IPMC-MIB",
3303
+ "oid" : "1.3.6.1.6.3.17.3.4.1.2",
3304
+ "status" : "current",
3305
+ "syntax" : {
3306
+ "type" : {
3307
+ "basetype" : "Integer32",
3308
+ "ranges" : [
3309
+ {
3310
+ "min" : "0",
3311
+ "max" : "65535"
3312
+ },
3313
+ ],
3314
+ "range" : {
3315
+ "min" : "0",
3316
+ "max" : "65535"
3317
+ },
3318
+ },
3319
+ },
3320
+ "access" : "noaccess",
3321
+ "description" :
3322
+ """The value of virtual circuit identifier (VCI). Since
3323
+ a VCI can be numbered 0, this sub-index can take
3324
+ a value of 0.""",
3325
+ }, # column
3326
+ "marsMcsVcMinGrpAddr" : {
3327
+ "nodetype" : "column",
3328
+ "moduleName" : "IPATM-IPMC-MIB",
3329
+ "oid" : "1.3.6.1.6.3.17.3.4.1.3",
3330
+ "status" : "current",
3331
+ "syntax" : {
3332
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
3333
+ },
3334
+ "access" : "noaccess",
3335
+ "description" :
3336
+ """Minimum IP multicast group address - the min and
3337
+ max multicast forms a multi-group block which is
3338
+ associated with a VC. If the MinGrpAddr and
3339
+ MaxGrpAddr are the same, it indicates that the
3340
+ size of multi-group block is 1, a single IP group.""",
3341
+ }, # column
3342
+ "marsMcsVcMaxGrpAddr" : {
3343
+ "nodetype" : "column",
3344
+ "moduleName" : "IPATM-IPMC-MIB",
3345
+ "oid" : "1.3.6.1.6.3.17.3.4.1.4",
3346
+ "status" : "current",
3347
+ "syntax" : {
3348
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
3349
+ },
3350
+ "access" : "noaccess",
3351
+ "description" :
3352
+ """Maximum IP multicast group address - the min
3353
+ and max multicast forms a multi-group block
3354
+ which is associated with a VC. If the MinGrpAddr
3355
+ and MaxGrpAddr are the same, it indicates that the
3356
+ size of multi-group block is 1, a single IP group.""",
3357
+ }, # column
3358
+ "marsMcsVcPartyAddr" : {
3359
+ "nodetype" : "column",
3360
+ "moduleName" : "IPATM-IPMC-MIB",
3361
+ "oid" : "1.3.6.1.6.3.17.3.4.1.5",
3362
+ "status" : "current",
3363
+ "syntax" : {
3364
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmAddr"},
3365
+ },
3366
+ "access" : "noaccess",
3367
+ "description" :
3368
+ """An ATM party address in which this VC is linked.
3369
+ The party type is identified by the
3370
+ marsMcsVcPartyAddrType.""",
3371
+ }, # column
3372
+ "marsMcsVcPartyAddrType" : {
3373
+ "nodetype" : "column",
3374
+ "moduleName" : "IPATM-IPMC-MIB",
3375
+ "oid" : "1.3.6.1.6.3.17.3.4.1.6",
3376
+ "status" : "current",
3377
+ "syntax" : {
3378
+ "type" : {
3379
+ "basetype" : "Enumeration",
3380
+ "called" : {
3381
+ "nodetype" : "namednumber",
3382
+ "number" : "1"
3383
+ },
3384
+ "calling" : {
3385
+ "nodetype" : "namednumber",
3386
+ "number" : "2"
3387
+ },
3388
+ },
3389
+ },
3390
+ "access" : "readwrite",
3391
+ "description" :
3392
+ """The party type is associated with the party address.
3393
+ The called (1) indicates that the party address is
3394
+ a destination address which implies that VC is
3395
+ originated from this MCS. The calling (2) indicates
3396
+ the VC was initiated externally to this MCS. In this
3397
+ case, the party address is the source address.""",
3398
+ }, # column
3399
+ "marsMcsVcType" : {
3400
+ "nodetype" : "column",
3401
+ "moduleName" : "IPATM-IPMC-MIB",
3402
+ "oid" : "1.3.6.1.6.3.17.3.4.1.7",
3403
+ "status" : "current",
3404
+ "syntax" : {
3405
+ "type" : {
3406
+ "basetype" : "Enumeration",
3407
+ "pvc" : {
3408
+ "nodetype" : "namednumber",
3409
+ "number" : "1"
3410
+ },
3411
+ "svc" : {
3412
+ "nodetype" : "namednumber",
3413
+ "number" : "2"
3414
+ },
3415
+ },
3416
+ },
3417
+ "access" : "readwrite",
3418
+ "description" :
3419
+ """Circuit Connection type: permanent virtual circuit or
3420
+ switched virtual circuit.""",
3421
+ }, # column
3422
+ "marsMcsVcCtrlType" : {
3423
+ "nodetype" : "column",
3424
+ "moduleName" : "IPATM-IPMC-MIB",
3425
+ "oid" : "1.3.6.1.6.3.17.3.4.1.8",
3426
+ "status" : "current",
3427
+ "syntax" : {
3428
+ "type" : {
3429
+ "basetype" : "Enumeration",
3430
+ "pointToPointVC" : {
3431
+ "nodetype" : "namednumber",
3432
+ "number" : "1"
3433
+ },
3434
+ "serverControlVC" : {
3435
+ "nodetype" : "namednumber",
3436
+ "number" : "2"
3437
+ },
3438
+ "pointToMultiPointVC" : {
3439
+ "nodetype" : "namednumber",
3440
+ "number" : "3"
3441
+ },
3442
+ },
3443
+ },
3444
+ "access" : "readwrite",
3445
+ "description" :
3446
+ """Control VC type used to specify a particular connection.
3447
+ pointToPointVC (1):
3448
+ used by the ATM Clients for the registration and
3449
+ queries. This VC or the initial signalling path is
3450
+ set up from the source MCS to a MARS. It is
3451
+ bi-directional.
3452
+ serverControlVC (2):
3453
+ used by a MARS to issue asynchronous updates to an
3454
+ ATM Client. This VC is established from the MARS
3455
+ to the MCS.
3456
+ pointToMultiPointVC (3):
3457
+ used by the client to transfer multicast data
3458
+ packets from layer 3. This VC is established from
3459
+ this VC to a cluster member.""",
3460
+ }, # column
3461
+ "marsMcsVcIdleTimer" : {
3462
+ "nodetype" : "column",
3463
+ "moduleName" : "IPATM-IPMC-MIB",
3464
+ "oid" : "1.3.6.1.6.3.17.3.4.1.9",
3465
+ "status" : "current",
3466
+ "syntax" : {
3467
+ "type" : {
3468
+ "basetype" : "Integer32",
3469
+ "ranges" : [
3470
+ {
3471
+ "min" : "1",
3472
+ "max" : "2147483647"
3473
+ },
3474
+ ],
3475
+ "range" : {
3476
+ "min" : "1",
3477
+ "max" : "2147483647"
3478
+ },
3479
+ },
3480
+ },
3481
+ "access" : "readwrite",
3482
+ "default" : "20",
3483
+ "units" : "minutes",
3484
+ "description" :
3485
+ """The idle timer associated with this VC. The minimum
3486
+ suggested value is 1 minute and the recommended
3487
+ default value is 20 minutes.""",
3488
+ }, # column
3489
+ "marsMcsVcRevalidate" : {
3490
+ "nodetype" : "column",
3491
+ "moduleName" : "IPATM-IPMC-MIB",
3492
+ "oid" : "1.3.6.1.6.3.17.3.4.1.10",
3493
+ "status" : "current",
3494
+ "syntax" : {
3495
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
3496
+ },
3497
+ "access" : "readwrite",
3498
+ "description" :
3499
+ """A flag associated with an open and active multipoint
3500
+ VC. It is checked every time a packet is queued for
3501
+ transmission on that VC. The object has the value of
3502
+ true (1) if revalidate is required and the value
3503
+ false (2) otherwise.""",
3504
+ }, # column
3505
+ "marsMcsVcEncapsType" : {
3506
+ "nodetype" : "column",
3507
+ "moduleName" : "IPATM-IPMC-MIB",
3508
+ "oid" : "1.3.6.1.6.3.17.3.4.1.11",
3509
+ "status" : "current",
3510
+ "syntax" : {
3511
+ "type" : {
3512
+ "basetype" : "Enumeration",
3513
+ "other" : {
3514
+ "nodetype" : "namednumber",
3515
+ "number" : "1"
3516
+ },
3517
+ "llcSnap" : {
3518
+ "nodetype" : "namednumber",
3519
+ "number" : "2"
3520
+ },
3521
+ },
3522
+ },
3523
+ "access" : "readwrite",
3524
+ "description" :
3525
+ """The encapsulation type used when communicating over
3526
+ this VC.""",
3527
+ }, # column
3528
+ "marsMcsVcNegotiatedMtu" : {
3529
+ "nodetype" : "column",
3530
+ "moduleName" : "IPATM-IPMC-MIB",
3531
+ "oid" : "1.3.6.1.6.3.17.3.4.1.12",
3532
+ "status" : "current",
3533
+ "syntax" : {
3534
+ "type" : {
3535
+ "basetype" : "Integer32",
3536
+ "ranges" : [
3537
+ {
3538
+ "min" : "1",
3539
+ "max" : "65535"
3540
+ },
3541
+ ],
3542
+ "range" : {
3543
+ "min" : "1",
3544
+ "max" : "65535"
3545
+ },
3546
+ },
3547
+ },
3548
+ "access" : "readwrite",
3549
+ "description" :
3550
+ """The negotiated MTU when communicating over this VC.""",
3551
+ }, # column
3552
+ "marsMcsVcRowStatus" : {
3553
+ "nodetype" : "column",
3554
+ "moduleName" : "IPATM-IPMC-MIB",
3555
+ "oid" : "1.3.6.1.6.3.17.3.4.1.13",
3556
+ "status" : "current",
3557
+ "syntax" : {
3558
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
3559
+ },
3560
+ "access" : "readwrite",
3561
+ "description" :
3562
+ """The object is used to create, delete or modify a
3563
+ row in this table.
3564
+ A row cannot be made 'active' until instances of
3565
+ all corresponding columns in the row of this table
3566
+ are appropriately configured.
3567
+
3568
+ While objects: marsMcsVcIdleTimer and
3569
+ marsMcsVcRevalidate in this conceptual row can
3570
+ be modified irrespective of the value of this
3571
+ object, all other objects in the row can not be
3572
+ modified when this object has a value of 'active'.
3573
+
3574
+ It is possible for an SNMP management station
3575
+ to set the row to 'notInService' and modify
3576
+ the entry and then set it back to 'active'
3577
+ with the following exception. That is, rows
3578
+ for which the corresponding instance of
3579
+ marsMcsVcType has a value of 'svc' can not
3580
+ be modified or deleted.""",
3581
+ }, # column
3582
+ "marsMcsStatTable" : {
3583
+ "nodetype" : "table",
3584
+ "moduleName" : "IPATM-IPMC-MIB",
3585
+ "oid" : "1.3.6.1.6.3.17.3.5",
3586
+ "status" : "current",
3587
+ "description" :
3588
+ """The table contains statistics collected at MARS MCSs.""",
3589
+ }, # table
3590
+ "marsMcsStatEntry" : {
3591
+ "nodetype" : "row",
3592
+ "moduleName" : "IPATM-IPMC-MIB",
3593
+ "oid" : "1.3.6.1.6.3.17.3.5.1",
3594
+ "status" : "current",
3595
+ "linkage" : [
3596
+ "marsMcsIndex",
3597
+ "marsMcsIfIndex",
3598
+ ],
3599
+ "description" :
3600
+ """Each entry contains statistics collected at one
3601
+ MARS MCS.""",
3602
+ }, # row
3603
+ "marsMcsStatTxReqMsgs" : {
3604
+ "nodetype" : "column",
3605
+ "moduleName" : "IPATM-IPMC-MIB",
3606
+ "oid" : "1.3.6.1.6.3.17.3.5.1.1",
3607
+ "status" : "current",
3608
+ "syntax" : {
3609
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
3610
+ },
3611
+ "access" : "readonly",
3612
+ "description" :
3613
+ """Total number of MARS_REQUEST messages transmitted
3614
+ from this MCS.""",
3615
+ }, # column
3616
+ "marsMcsStatTxMservMsgs" : {
3617
+ "nodetype" : "column",
3618
+ "moduleName" : "IPATM-IPMC-MIB",
3619
+ "oid" : "1.3.6.1.6.3.17.3.5.1.2",
3620
+ "status" : "current",
3621
+ "syntax" : {
3622
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
3623
+ },
3624
+ "access" : "readonly",
3625
+ "description" :
3626
+ """Total number of MARS_MSERV messages transmitted from
3627
+ this MCS.""",
3628
+ }, # column
3629
+ "marsMcsStatTxUnservMsgs" : {
3630
+ "nodetype" : "column",
3631
+ "moduleName" : "IPATM-IPMC-MIB",
3632
+ "oid" : "1.3.6.1.6.3.17.3.5.1.3",
3633
+ "status" : "current",
3634
+ "syntax" : {
3635
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
3636
+ },
3637
+ "access" : "readonly",
3638
+ "description" :
3639
+ """Total number of MARS_UNSERV messages transmitted from
3640
+ this MCS.""",
3641
+ }, # column
3642
+ "marsMcsStatRxMultiMsgs" : {
3643
+ "nodetype" : "column",
3644
+ "moduleName" : "IPATM-IPMC-MIB",
3645
+ "oid" : "1.3.6.1.6.3.17.3.5.1.4",
3646
+ "status" : "current",
3647
+ "syntax" : {
3648
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
3649
+ },
3650
+ "access" : "readonly",
3651
+ "description" :
3652
+ """Total number of MARS_MULTI messages received by
3653
+ this MCS.""",
3654
+ }, # column
3655
+ "marsMcsStatRxSjoinMsgs" : {
3656
+ "nodetype" : "column",
3657
+ "moduleName" : "IPATM-IPMC-MIB",
3658
+ "oid" : "1.3.6.1.6.3.17.3.5.1.5",
3659
+ "status" : "current",
3660
+ "syntax" : {
3661
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
3662
+ },
3663
+ "access" : "readonly",
3664
+ "description" :
3665
+ """Total number of MARS_SJOIN messages received by
3666
+ this MCS.""",
3667
+ }, # column
3668
+ "marsMcsStatRxSleaveMsgs" : {
3669
+ "nodetype" : "column",
3670
+ "moduleName" : "IPATM-IPMC-MIB",
3671
+ "oid" : "1.3.6.1.6.3.17.3.5.1.6",
3672
+ "status" : "current",
3673
+ "syntax" : {
3674
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
3675
+ },
3676
+ "access" : "readonly",
3677
+ "description" :
3678
+ """Total number of MARS_SLEAVE messages received
3679
+ by this MCS.""",
3680
+ }, # column
3681
+ "marsMcsStatRxNakMsgs" : {
3682
+ "nodetype" : "column",
3683
+ "moduleName" : "IPATM-IPMC-MIB",
3684
+ "oid" : "1.3.6.1.6.3.17.3.5.1.7",
3685
+ "status" : "current",
3686
+ "syntax" : {
3687
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
3688
+ },
3689
+ "access" : "readonly",
3690
+ "description" :
3691
+ """Total number of MARS_NAK messages received
3692
+ by this MCS.""",
3693
+ }, # column
3694
+ "marsMcsStatRxMigrateMsgs" : {
3695
+ "nodetype" : "column",
3696
+ "moduleName" : "IPATM-IPMC-MIB",
3697
+ "oid" : "1.3.6.1.6.3.17.3.5.1.8",
3698
+ "status" : "current",
3699
+ "syntax" : {
3700
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
3701
+ },
3702
+ "access" : "readonly",
3703
+ "description" :
3704
+ """Total number of MARS_MIGRATE messages received
3705
+ by this MCS.""",
3706
+ }, # column
3707
+ "marsMcsStatFailMultiMsgs" : {
3708
+ "nodetype" : "column",
3709
+ "moduleName" : "IPATM-IPMC-MIB",
3710
+ "oid" : "1.3.6.1.6.3.17.3.5.1.9",
3711
+ "status" : "current",
3712
+ "syntax" : {
3713
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
3714
+ },
3715
+ "access" : "readonly",
3716
+ "description" :
3717
+ """Total number of timeouts occurred indicating
3718
+ failure of the last MARS_MULTI to arrive.""",
3719
+ }, # column
3720
+ "marsConformance" : {
3721
+ "nodetype" : "node",
3722
+ "moduleName" : "IPATM-IPMC-MIB",
3723
+ "oid" : "1.3.6.1.6.3.17.4",
3724
+ }, # node
3725
+ "marsClientConformance" : {
3726
+ "nodetype" : "node",
3727
+ "moduleName" : "IPATM-IPMC-MIB",
3728
+ "oid" : "1.3.6.1.6.3.17.4.1",
3729
+ }, # node
3730
+ "marsClientCompliances" : {
3731
+ "nodetype" : "node",
3732
+ "moduleName" : "IPATM-IPMC-MIB",
3733
+ "oid" : "1.3.6.1.6.3.17.4.1.1",
3734
+ }, # node
3735
+ "marsClientGroups" : {
3736
+ "nodetype" : "node",
3737
+ "moduleName" : "IPATM-IPMC-MIB",
3738
+ "oid" : "1.3.6.1.6.3.17.4.1.2",
3739
+ }, # node
3740
+ "marsServerConformance" : {
3741
+ "nodetype" : "node",
3742
+ "moduleName" : "IPATM-IPMC-MIB",
3743
+ "oid" : "1.3.6.1.6.3.17.4.2",
3744
+ }, # node
3745
+ "marsServerCompliances" : {
3746
+ "nodetype" : "node",
3747
+ "moduleName" : "IPATM-IPMC-MIB",
3748
+ "oid" : "1.3.6.1.6.3.17.4.2.1",
3749
+ }, # node
3750
+ "marsServerGroups" : {
3751
+ "nodetype" : "node",
3752
+ "moduleName" : "IPATM-IPMC-MIB",
3753
+ "oid" : "1.3.6.1.6.3.17.4.2.2",
3754
+ }, # node
3755
+ "marsMcsConformance" : {
3756
+ "nodetype" : "node",
3757
+ "moduleName" : "IPATM-IPMC-MIB",
3758
+ "oid" : "1.3.6.1.6.3.17.4.3",
3759
+ }, # node
3760
+ "marsMcsCompliances" : {
3761
+ "nodetype" : "node",
3762
+ "moduleName" : "IPATM-IPMC-MIB",
3763
+ "oid" : "1.3.6.1.6.3.17.4.3.1",
3764
+ }, # node
3765
+ "marsMcsGroups" : {
3766
+ "nodetype" : "node",
3767
+ "moduleName" : "IPATM-IPMC-MIB",
3768
+ "oid" : "1.3.6.1.6.3.17.4.3.2",
3769
+ }, # node
3770
+ }, # nodes
3771
+
3772
+ "notifications" : {
3773
+ "marsFaultTrap" : {
3774
+ "nodetype" : "notification",
3775
+ "moduleName" : "IPATM-IPMC-MIB",
3776
+ "oid" : "1.3.6.1.6.3.17.0.1",
3777
+ "status" : "current",
3778
+ "objects" : {
3779
+ "marsAddr" : {
3780
+ "nodetype" : "object",
3781
+ "module" : "IPATM-IPMC-MIB"
3782
+ },
3783
+ "marsServStatus" : {
3784
+ "nodetype" : "object",
3785
+ "module" : "IPATM-IPMC-MIB"
3786
+ },
3787
+ },
3788
+ "description" :
3789
+ """This trap/inform is sent to the manager whenever
3790
+ there is a fault condition occurred on a MARS.""",
3791
+ }, # notification
3792
+ }, # notifications
3793
+
3794
+ "groups" : {
3795
+ "marsClientGroup" : {
3796
+ "nodetype" : "group",
3797
+ "moduleName" : "IPATM-IPMC-MIB",
3798
+ "oid" : "1.3.6.1.6.3.17.4.1.2.1",
3799
+ "status" : "current",
3800
+ "members" : {
3801
+ "marsClientAddr" : {
3802
+ "nodetype" : "member",
3803
+ "module" : "IPATM-IPMC-MIB"
3804
+ },
3805
+ "marsClientDefaultMarsAddr" : {
3806
+ "nodetype" : "member",
3807
+ "module" : "IPATM-IPMC-MIB"
3808
+ },
3809
+ "marsClientHsn" : {
3810
+ "nodetype" : "member",
3811
+ "module" : "IPATM-IPMC-MIB"
3812
+ },
3813
+ "marsClientRegistration" : {
3814
+ "nodetype" : "member",
3815
+ "module" : "IPATM-IPMC-MIB"
3816
+ },
3817
+ "marsClientCmi" : {
3818
+ "nodetype" : "member",
3819
+ "module" : "IPATM-IPMC-MIB"
3820
+ },
3821
+ "marsClientDefaultMtu" : {
3822
+ "nodetype" : "member",
3823
+ "module" : "IPATM-IPMC-MIB"
3824
+ },
3825
+ "marsClientFailureTimer" : {
3826
+ "nodetype" : "member",
3827
+ "module" : "IPATM-IPMC-MIB"
3828
+ },
3829
+ "marsClientRetranDelayTimer" : {
3830
+ "nodetype" : "member",
3831
+ "module" : "IPATM-IPMC-MIB"
3832
+ },
3833
+ "marsClientRdmMulReqAddRetrTimer" : {
3834
+ "nodetype" : "member",
3835
+ "module" : "IPATM-IPMC-MIB"
3836
+ },
3837
+ "marsClientRdmVcRevalidateTimer" : {
3838
+ "nodetype" : "member",
3839
+ "module" : "IPATM-IPMC-MIB"
3840
+ },
3841
+ "marsClientJoinLeaveRetrInterval" : {
3842
+ "nodetype" : "member",
3843
+ "module" : "IPATM-IPMC-MIB"
3844
+ },
3845
+ "marsClientJoinLeaveRetrLimit" : {
3846
+ "nodetype" : "member",
3847
+ "module" : "IPATM-IPMC-MIB"
3848
+ },
3849
+ "marsClientRegWithMarsRdmTimer" : {
3850
+ "nodetype" : "member",
3851
+ "module" : "IPATM-IPMC-MIB"
3852
+ },
3853
+ "marsClientForceWaitTimer" : {
3854
+ "nodetype" : "member",
3855
+ "module" : "IPATM-IPMC-MIB"
3856
+ },
3857
+ "marsClientIdleTimer" : {
3858
+ "nodetype" : "member",
3859
+ "module" : "IPATM-IPMC-MIB"
3860
+ },
3861
+ "marsClientLmtToMissRedirMapTimer" : {
3862
+ "nodetype" : "member",
3863
+ "module" : "IPATM-IPMC-MIB"
3864
+ },
3865
+ "marsClientRowStatus" : {
3866
+ "nodetype" : "member",
3867
+ "module" : "IPATM-IPMC-MIB"
3868
+ },
3869
+ "marsClientMcGrpRowStatus" : {
3870
+ "nodetype" : "member",
3871
+ "module" : "IPATM-IPMC-MIB"
3872
+ },
3873
+ "marsClientBackupMarsRowStatus" : {
3874
+ "nodetype" : "member",
3875
+ "module" : "IPATM-IPMC-MIB"
3876
+ },
3877
+ "marsClientVcPartyAddrType" : {
3878
+ "nodetype" : "member",
3879
+ "module" : "IPATM-IPMC-MIB"
3880
+ },
3881
+ "marsClientVcType" : {
3882
+ "nodetype" : "member",
3883
+ "module" : "IPATM-IPMC-MIB"
3884
+ },
3885
+ "marsClientVcCtrlType" : {
3886
+ "nodetype" : "member",
3887
+ "module" : "IPATM-IPMC-MIB"
3888
+ },
3889
+ "marsClientVcIdleTimer" : {
3890
+ "nodetype" : "member",
3891
+ "module" : "IPATM-IPMC-MIB"
3892
+ },
3893
+ "marsClientVcRevalidate" : {
3894
+ "nodetype" : "member",
3895
+ "module" : "IPATM-IPMC-MIB"
3896
+ },
3897
+ "marsClientVcEncapsType" : {
3898
+ "nodetype" : "member",
3899
+ "module" : "IPATM-IPMC-MIB"
3900
+ },
3901
+ "marsClientVcNegotiatedMtu" : {
3902
+ "nodetype" : "member",
3903
+ "module" : "IPATM-IPMC-MIB"
3904
+ },
3905
+ "marsClientVcRowStatus" : {
3906
+ "nodetype" : "member",
3907
+ "module" : "IPATM-IPMC-MIB"
3908
+ },
3909
+ "marsClientStatTxReqMsgs" : {
3910
+ "nodetype" : "member",
3911
+ "module" : "IPATM-IPMC-MIB"
3912
+ },
3913
+ "marsClientStatTxJoinMsgs" : {
3914
+ "nodetype" : "member",
3915
+ "module" : "IPATM-IPMC-MIB"
3916
+ },
3917
+ "marsClientStatTxLeaveMsgs" : {
3918
+ "nodetype" : "member",
3919
+ "module" : "IPATM-IPMC-MIB"
3920
+ },
3921
+ "marsClientStatTxGrpLstReqMsgs" : {
3922
+ "nodetype" : "member",
3923
+ "module" : "IPATM-IPMC-MIB"
3924
+ },
3925
+ "marsClientStatRxJoinMsgs" : {
3926
+ "nodetype" : "member",
3927
+ "module" : "IPATM-IPMC-MIB"
3928
+ },
3929
+ "marsClientStatRxLeaveMsgs" : {
3930
+ "nodetype" : "member",
3931
+ "module" : "IPATM-IPMC-MIB"
3932
+ },
3933
+ "marsClientStatRxMultiMsgs" : {
3934
+ "nodetype" : "member",
3935
+ "module" : "IPATM-IPMC-MIB"
3936
+ },
3937
+ "marsClientStatRxNakMsgs" : {
3938
+ "nodetype" : "member",
3939
+ "module" : "IPATM-IPMC-MIB"
3940
+ },
3941
+ "marsClientStatRxGrpLstRplyMsgs" : {
3942
+ "nodetype" : "member",
3943
+ "module" : "IPATM-IPMC-MIB"
3944
+ },
3945
+ "marsClientStatRxMigrateMsgs" : {
3946
+ "nodetype" : "member",
3947
+ "module" : "IPATM-IPMC-MIB"
3948
+ },
3949
+ "marsClientStatFailMultiMsgs" : {
3950
+ "nodetype" : "member",
3951
+ "module" : "IPATM-IPMC-MIB"
3952
+ },
3953
+ }, # members
3954
+ "description" :
3955
+ """A collection of objects to be implemented in a MIB
3956
+ for the management of MARS clients.""",
3957
+ }, # group
3958
+ "marsServerGroup" : {
3959
+ "nodetype" : "group",
3960
+ "moduleName" : "IPATM-IPMC-MIB",
3961
+ "oid" : "1.3.6.1.6.3.17.4.2.2.1",
3962
+ "status" : "current",
3963
+ "members" : {
3964
+ "marsAddr" : {
3965
+ "nodetype" : "member",
3966
+ "module" : "IPATM-IPMC-MIB"
3967
+ },
3968
+ "marsLocal" : {
3969
+ "nodetype" : "member",
3970
+ "module" : "IPATM-IPMC-MIB"
3971
+ },
3972
+ "marsServStatus" : {
3973
+ "nodetype" : "member",
3974
+ "module" : "IPATM-IPMC-MIB"
3975
+ },
3976
+ "marsServType" : {
3977
+ "nodetype" : "member",
3978
+ "module" : "IPATM-IPMC-MIB"
3979
+ },
3980
+ "marsServPriority" : {
3981
+ "nodetype" : "member",
3982
+ "module" : "IPATM-IPMC-MIB"
3983
+ },
3984
+ "marsRedirMapMsgTimer" : {
3985
+ "nodetype" : "member",
3986
+ "module" : "IPATM-IPMC-MIB"
3987
+ },
3988
+ "marsCsn" : {
3989
+ "nodetype" : "member",
3990
+ "module" : "IPATM-IPMC-MIB"
3991
+ },
3992
+ "marsSsn" : {
3993
+ "nodetype" : "member",
3994
+ "module" : "IPATM-IPMC-MIB"
3995
+ },
3996
+ "marsRowStatus" : {
3997
+ "nodetype" : "member",
3998
+ "module" : "IPATM-IPMC-MIB"
3999
+ },
4000
+ "marsMcGrpAddrUsage" : {
4001
+ "nodetype" : "member",
4002
+ "module" : "IPATM-IPMC-MIB"
4003
+ },
4004
+ "marsMcGrpRxLayer3GrpSets" : {
4005
+ "nodetype" : "member",
4006
+ "module" : "IPATM-IPMC-MIB"
4007
+ },
4008
+ "marsMcGrpRxLayer3GrpResets" : {
4009
+ "nodetype" : "member",
4010
+ "module" : "IPATM-IPMC-MIB"
4011
+ },
4012
+ "marsMcGrpRowStatus" : {
4013
+ "nodetype" : "member",
4014
+ "module" : "IPATM-IPMC-MIB"
4015
+ },
4016
+ "marsHostMapRowType" : {
4017
+ "nodetype" : "member",
4018
+ "module" : "IPATM-IPMC-MIB"
4019
+ },
4020
+ "marsHostMapRowStatus" : {
4021
+ "nodetype" : "member",
4022
+ "module" : "IPATM-IPMC-MIB"
4023
+ },
4024
+ "marsServerMapRowType" : {
4025
+ "nodetype" : "member",
4026
+ "module" : "IPATM-IPMC-MIB"
4027
+ },
4028
+ "marsServerMapRowStatus" : {
4029
+ "nodetype" : "member",
4030
+ "module" : "IPATM-IPMC-MIB"
4031
+ },
4032
+ "marsVcPartyAddrType" : {
4033
+ "nodetype" : "member",
4034
+ "module" : "IPATM-IPMC-MIB"
4035
+ },
4036
+ "marsVcType" : {
4037
+ "nodetype" : "member",
4038
+ "module" : "IPATM-IPMC-MIB"
4039
+ },
4040
+ "marsVcCtrlType" : {
4041
+ "nodetype" : "member",
4042
+ "module" : "IPATM-IPMC-MIB"
4043
+ },
4044
+ "marsVcIdleTimer" : {
4045
+ "nodetype" : "member",
4046
+ "module" : "IPATM-IPMC-MIB"
4047
+ },
4048
+ "marsVcCmi" : {
4049
+ "nodetype" : "member",
4050
+ "module" : "IPATM-IPMC-MIB"
4051
+ },
4052
+ "marsVcEncapsType" : {
4053
+ "nodetype" : "member",
4054
+ "module" : "IPATM-IPMC-MIB"
4055
+ },
4056
+ "marsVcNegotiatedMtu" : {
4057
+ "nodetype" : "member",
4058
+ "module" : "IPATM-IPMC-MIB"
4059
+ },
4060
+ "marsVcRowStatus" : {
4061
+ "nodetype" : "member",
4062
+ "module" : "IPATM-IPMC-MIB"
4063
+ },
4064
+ "marsRegClientAtmAddr" : {
4065
+ "nodetype" : "member",
4066
+ "module" : "IPATM-IPMC-MIB"
4067
+ },
4068
+ "marsRegMcsAtmAddr" : {
4069
+ "nodetype" : "member",
4070
+ "module" : "IPATM-IPMC-MIB"
4071
+ },
4072
+ "marsStatTxMultiMsgs" : {
4073
+ "nodetype" : "member",
4074
+ "module" : "IPATM-IPMC-MIB"
4075
+ },
4076
+ "marsStatTxGrpLstRplyMsgs" : {
4077
+ "nodetype" : "member",
4078
+ "module" : "IPATM-IPMC-MIB"
4079
+ },
4080
+ "marsStatTxRedirectMapMsgs" : {
4081
+ "nodetype" : "member",
4082
+ "module" : "IPATM-IPMC-MIB"
4083
+ },
4084
+ "marsStatTxMigrateMsgs" : {
4085
+ "nodetype" : "member",
4086
+ "module" : "IPATM-IPMC-MIB"
4087
+ },
4088
+ "marsStatTxNakMsgs" : {
4089
+ "nodetype" : "member",
4090
+ "module" : "IPATM-IPMC-MIB"
4091
+ },
4092
+ "marsStatTxJoinMsgs" : {
4093
+ "nodetype" : "member",
4094
+ "module" : "IPATM-IPMC-MIB"
4095
+ },
4096
+ "marsStatTxLeaveMsgs" : {
4097
+ "nodetype" : "member",
4098
+ "module" : "IPATM-IPMC-MIB"
4099
+ },
4100
+ "marsStatTxSjoinMsgs" : {
4101
+ "nodetype" : "member",
4102
+ "module" : "IPATM-IPMC-MIB"
4103
+ },
4104
+ "marsStatTxSleaveMsgs" : {
4105
+ "nodetype" : "member",
4106
+ "module" : "IPATM-IPMC-MIB"
4107
+ },
4108
+ "marsStatTxMservMsgs" : {
4109
+ "nodetype" : "member",
4110
+ "module" : "IPATM-IPMC-MIB"
4111
+ },
4112
+ "marsStatTxUnservMsgs" : {
4113
+ "nodetype" : "member",
4114
+ "module" : "IPATM-IPMC-MIB"
4115
+ },
4116
+ "marsStatRxReqMsgs" : {
4117
+ "nodetype" : "member",
4118
+ "module" : "IPATM-IPMC-MIB"
4119
+ },
4120
+ "marsStatRxGrpLstReqMsgs" : {
4121
+ "nodetype" : "member",
4122
+ "module" : "IPATM-IPMC-MIB"
4123
+ },
4124
+ "marsStatRxJoinMsgs" : {
4125
+ "nodetype" : "member",
4126
+ "module" : "IPATM-IPMC-MIB"
4127
+ },
4128
+ "marsStatRxLeaveMsgs" : {
4129
+ "nodetype" : "member",
4130
+ "module" : "IPATM-IPMC-MIB"
4131
+ },
4132
+ "marsStatRxMservMsgs" : {
4133
+ "nodetype" : "member",
4134
+ "module" : "IPATM-IPMC-MIB"
4135
+ },
4136
+ "marsStatRxUnservMsgs" : {
4137
+ "nodetype" : "member",
4138
+ "module" : "IPATM-IPMC-MIB"
4139
+ },
4140
+ "marsStatRxBlkJoinMsgs" : {
4141
+ "nodetype" : "member",
4142
+ "module" : "IPATM-IPMC-MIB"
4143
+ },
4144
+ "marsStatRegMemGroups" : {
4145
+ "nodetype" : "member",
4146
+ "module" : "IPATM-IPMC-MIB"
4147
+ },
4148
+ "marsStatRegMcsGroups" : {
4149
+ "nodetype" : "member",
4150
+ "module" : "IPATM-IPMC-MIB"
4151
+ },
4152
+ }, # members
4153
+ "description" :
4154
+ """A collection of objects to be implemented in a MIB
4155
+ for the management of MARS servers.""",
4156
+ }, # group
4157
+ "marsServerEventGroup" : {
4158
+ "nodetype" : "group",
4159
+ "moduleName" : "IPATM-IPMC-MIB",
4160
+ "oid" : "1.3.6.1.6.3.17.4.2.2.2",
4161
+ "status" : "current",
4162
+ "members" : {
4163
+ "marsFaultTrap" : {
4164
+ "nodetype" : "member",
4165
+ "module" : "IPATM-IPMC-MIB"
4166
+ },
4167
+ }, # members
4168
+ "description" :
4169
+ """A collection of events that can be generated from
4170
+ a MARS server.""",
4171
+ }, # group
4172
+ "marsMcsGroup" : {
4173
+ "nodetype" : "group",
4174
+ "moduleName" : "IPATM-IPMC-MIB",
4175
+ "oid" : "1.3.6.1.6.3.17.4.3.2.1",
4176
+ "status" : "current",
4177
+ "members" : {
4178
+ "marsMcsAddr" : {
4179
+ "nodetype" : "member",
4180
+ "module" : "IPATM-IPMC-MIB"
4181
+ },
4182
+ "marsMcsDefaultMarsAddr" : {
4183
+ "nodetype" : "member",
4184
+ "module" : "IPATM-IPMC-MIB"
4185
+ },
4186
+ "marsMcsRegistration" : {
4187
+ "nodetype" : "member",
4188
+ "module" : "IPATM-IPMC-MIB"
4189
+ },
4190
+ "marsMcsSsn" : {
4191
+ "nodetype" : "member",
4192
+ "module" : "IPATM-IPMC-MIB"
4193
+ },
4194
+ "marsMcsDefaultMtu" : {
4195
+ "nodetype" : "member",
4196
+ "module" : "IPATM-IPMC-MIB"
4197
+ },
4198
+ "marsMcsFailureTimer" : {
4199
+ "nodetype" : "member",
4200
+ "module" : "IPATM-IPMC-MIB"
4201
+ },
4202
+ "marsMcsRetranDelayTimer" : {
4203
+ "nodetype" : "member",
4204
+ "module" : "IPATM-IPMC-MIB"
4205
+ },
4206
+ "marsMcsRdmMulReqAddRetrTimer" : {
4207
+ "nodetype" : "member",
4208
+ "module" : "IPATM-IPMC-MIB"
4209
+ },
4210
+ "marsMcsRdmVcRevalidateTimer" : {
4211
+ "nodetype" : "member",
4212
+ "module" : "IPATM-IPMC-MIB"
4213
+ },
4214
+ "marsMcsRegisterRetrInterval" : {
4215
+ "nodetype" : "member",
4216
+ "module" : "IPATM-IPMC-MIB"
4217
+ },
4218
+ "marsMcsRegisterRetrLimit" : {
4219
+ "nodetype" : "member",
4220
+ "module" : "IPATM-IPMC-MIB"
4221
+ },
4222
+ "marsMcsRegWithMarsRdmTimer" : {
4223
+ "nodetype" : "member",
4224
+ "module" : "IPATM-IPMC-MIB"
4225
+ },
4226
+ "marsMcsForceWaitTimer" : {
4227
+ "nodetype" : "member",
4228
+ "module" : "IPATM-IPMC-MIB"
4229
+ },
4230
+ "marsMcsIdleTimer" : {
4231
+ "nodetype" : "member",
4232
+ "module" : "IPATM-IPMC-MIB"
4233
+ },
4234
+ "marsMcsLmtToMissRedirMapTimer" : {
4235
+ "nodetype" : "member",
4236
+ "module" : "IPATM-IPMC-MIB"
4237
+ },
4238
+ "marsMcsRowStatus" : {
4239
+ "nodetype" : "member",
4240
+ "module" : "IPATM-IPMC-MIB"
4241
+ },
4242
+ "marsMcsMcGrpRowStatus" : {
4243
+ "nodetype" : "member",
4244
+ "module" : "IPATM-IPMC-MIB"
4245
+ },
4246
+ "marsMcsVcPartyAddrType" : {
4247
+ "nodetype" : "member",
4248
+ "module" : "IPATM-IPMC-MIB"
4249
+ },
4250
+ "marsMcsBackupMarsRowStatus" : {
4251
+ "nodetype" : "member",
4252
+ "module" : "IPATM-IPMC-MIB"
4253
+ },
4254
+ "marsMcsVcType" : {
4255
+ "nodetype" : "member",
4256
+ "module" : "IPATM-IPMC-MIB"
4257
+ },
4258
+ "marsMcsVcCtrlType" : {
4259
+ "nodetype" : "member",
4260
+ "module" : "IPATM-IPMC-MIB"
4261
+ },
4262
+ "marsMcsVcIdleTimer" : {
4263
+ "nodetype" : "member",
4264
+ "module" : "IPATM-IPMC-MIB"
4265
+ },
4266
+ "marsMcsVcRevalidate" : {
4267
+ "nodetype" : "member",
4268
+ "module" : "IPATM-IPMC-MIB"
4269
+ },
4270
+ "marsMcsVcEncapsType" : {
4271
+ "nodetype" : "member",
4272
+ "module" : "IPATM-IPMC-MIB"
4273
+ },
4274
+ "marsMcsVcNegotiatedMtu" : {
4275
+ "nodetype" : "member",
4276
+ "module" : "IPATM-IPMC-MIB"
4277
+ },
4278
+ "marsMcsVcRowStatus" : {
4279
+ "nodetype" : "member",
4280
+ "module" : "IPATM-IPMC-MIB"
4281
+ },
4282
+ "marsMcsStatTxReqMsgs" : {
4283
+ "nodetype" : "member",
4284
+ "module" : "IPATM-IPMC-MIB"
4285
+ },
4286
+ "marsMcsStatTxMservMsgs" : {
4287
+ "nodetype" : "member",
4288
+ "module" : "IPATM-IPMC-MIB"
4289
+ },
4290
+ "marsMcsStatTxUnservMsgs" : {
4291
+ "nodetype" : "member",
4292
+ "module" : "IPATM-IPMC-MIB"
4293
+ },
4294
+ "marsMcsStatRxMultiMsgs" : {
4295
+ "nodetype" : "member",
4296
+ "module" : "IPATM-IPMC-MIB"
4297
+ },
4298
+ "marsMcsStatRxSjoinMsgs" : {
4299
+ "nodetype" : "member",
4300
+ "module" : "IPATM-IPMC-MIB"
4301
+ },
4302
+ "marsMcsStatRxSleaveMsgs" : {
4303
+ "nodetype" : "member",
4304
+ "module" : "IPATM-IPMC-MIB"
4305
+ },
4306
+ "marsMcsStatRxNakMsgs" : {
4307
+ "nodetype" : "member",
4308
+ "module" : "IPATM-IPMC-MIB"
4309
+ },
4310
+ "marsMcsStatRxMigrateMsgs" : {
4311
+ "nodetype" : "member",
4312
+ "module" : "IPATM-IPMC-MIB"
4313
+ },
4314
+ "marsMcsStatFailMultiMsgs" : {
4315
+ "nodetype" : "member",
4316
+ "module" : "IPATM-IPMC-MIB"
4317
+ },
4318
+ }, # members
4319
+ "description" :
4320
+ """A collection of objects to be implemented in a MIB
4321
+ for the management of MARS multicast servers (MCS).""",
4322
+ }, # group
4323
+ }, # groups
4324
+
4325
+ "compliances" : {
4326
+ "marsClientCompliance" : {
4327
+ "nodetype" : "compliance",
4328
+ "moduleName" : "IPATM-IPMC-MIB",
4329
+ "oid" : "1.3.6.1.6.3.17.4.1.1.1",
4330
+ "status" : "current",
4331
+ "description" :
4332
+ """The compliance statement for entities that are required
4333
+ for the management of MARS clients.""",
4334
+ "requires" : {
4335
+ "marsClientGroup" : {
4336
+ "nodetype" : "mandatory",
4337
+ "module" : "IPATM-IPMC-MIB"
4338
+ },
4339
+ }, # requires
4340
+ "refinements" : {
4341
+ "marsClientAddr" : {
4342
+ "module" : "IPATM-IPMC-MIB",
4343
+ "access" : "readonly",
4344
+ "description" :
4345
+ """Write access is not required.""",
4346
+ },
4347
+ "marsClientDefaultMarsAddr" : {
4348
+ "module" : "IPATM-IPMC-MIB",
4349
+ "access" : "readonly",
4350
+ "description" :
4351
+ """Write access is not required.""",
4352
+ },
4353
+ "marsClientHsn" : {
4354
+ "module" : "IPATM-IPMC-MIB",
4355
+ "access" : "readonly",
4356
+ "description" :
4357
+ """Write access is not required.""",
4358
+ },
4359
+ "marsClientRegistration" : {
4360
+ "module" : "IPATM-IPMC-MIB",
4361
+ "access" : "readonly",
4362
+ "description" :
4363
+ """Write access is not required.""",
4364
+ },
4365
+ "marsClientCmi" : {
4366
+ "module" : "IPATM-IPMC-MIB",
4367
+ "access" : "readonly",
4368
+ "description" :
4369
+ """Write access is not required.""",
4370
+ },
4371
+ "marsClientDefaultMtu" : {
4372
+ "module" : "IPATM-IPMC-MIB",
4373
+ "access" : "readonly",
4374
+ "description" :
4375
+ """Write access is not required.""",
4376
+ },
4377
+ "marsClientFailureTimer" : {
4378
+ "module" : "IPATM-IPMC-MIB",
4379
+ "access" : "readonly",
4380
+ "description" :
4381
+ """Write access is not required.""",
4382
+ },
4383
+ "marsClientRetranDelayTimer" : {
4384
+ "module" : "IPATM-IPMC-MIB",
4385
+ "access" : "readonly",
4386
+ "description" :
4387
+ """Write access is not required.""",
4388
+ },
4389
+ "marsClientRdmMulReqAddRetrTimer" : {
4390
+ "module" : "IPATM-IPMC-MIB",
4391
+ "access" : "readonly",
4392
+ "description" :
4393
+ """Write access is not required.""",
4394
+ },
4395
+ "marsClientRdmVcRevalidateTimer" : {
4396
+ "module" : "IPATM-IPMC-MIB",
4397
+ "access" : "readonly",
4398
+ "description" :
4399
+ """Write access is not required.""",
4400
+ },
4401
+ "marsClientJoinLeaveRetrInterval" : {
4402
+ "module" : "IPATM-IPMC-MIB",
4403
+ "access" : "readonly",
4404
+ "description" :
4405
+ """Write access is not required.""",
4406
+ },
4407
+ "marsClientJoinLeaveRetrLimit" : {
4408
+ "module" : "IPATM-IPMC-MIB",
4409
+ "access" : "readonly",
4410
+ "description" :
4411
+ """Write access is not required.""",
4412
+ },
4413
+ "marsClientRegWithMarsRdmTimer" : {
4414
+ "module" : "IPATM-IPMC-MIB",
4415
+ "access" : "readonly",
4416
+ "description" :
4417
+ """Write access is not required.""",
4418
+ },
4419
+ "marsClientForceWaitTimer" : {
4420
+ "module" : "IPATM-IPMC-MIB",
4421
+ "access" : "readonly",
4422
+ "description" :
4423
+ """Write access is not required.""",
4424
+ },
4425
+ "marsClientLmtToMissRedirMapTimer" : {
4426
+ "module" : "IPATM-IPMC-MIB",
4427
+ "access" : "readonly",
4428
+ "description" :
4429
+ """Write access is not required.""",
4430
+ },
4431
+ "marsClientIdleTimer" : {
4432
+ "module" : "IPATM-IPMC-MIB",
4433
+ "access" : "readonly",
4434
+ "description" :
4435
+ """Write access is not required.""",
4436
+ },
4437
+ "marsClientRowStatus" : {
4438
+ "module" : "IPATM-IPMC-MIB",
4439
+ "access" : "readonly",
4440
+ "description" :
4441
+ """Write access is not required.""",
4442
+ },
4443
+ "marsClientMcGrpRowStatus" : {
4444
+ "module" : "IPATM-IPMC-MIB",
4445
+ "access" : "readonly",
4446
+ "description" :
4447
+ """Write access is not required.""",
4448
+ },
4449
+ "marsClientBackupMarsRowStatus" : {
4450
+ "module" : "IPATM-IPMC-MIB",
4451
+ "access" : "readonly",
4452
+ "description" :
4453
+ """Write access is not required.""",
4454
+ },
4455
+ "marsClientVcType" : {
4456
+ "module" : "IPATM-IPMC-MIB",
4457
+ "access" : "readonly",
4458
+ "description" :
4459
+ """Write access is not required.""",
4460
+ },
4461
+ "marsClientVcCtrlType" : {
4462
+ "module" : "IPATM-IPMC-MIB",
4463
+ "access" : "readonly",
4464
+ "description" :
4465
+ """Write access is not required.""",
4466
+ },
4467
+ "marsClientVcIdleTimer" : {
4468
+ "module" : "IPATM-IPMC-MIB",
4469
+ "access" : "readonly",
4470
+ "description" :
4471
+ """Write access is not required.""",
4472
+ },
4473
+ "marsClientVcRevalidate" : {
4474
+ "module" : "IPATM-IPMC-MIB",
4475
+ "access" : "readonly",
4476
+ "description" :
4477
+ """Write access is not required.""",
4478
+ },
4479
+ "marsClientVcEncapsType" : {
4480
+ "module" : "IPATM-IPMC-MIB",
4481
+ "access" : "readonly",
4482
+ "description" :
4483
+ """Write access is not required.""",
4484
+ },
4485
+ "marsClientVcNegotiatedMtu" : {
4486
+ "module" : "IPATM-IPMC-MIB",
4487
+ "access" : "readonly",
4488
+ "description" :
4489
+ """Write access is not required.""",
4490
+ },
4491
+ "marsClientVcRowStatus" : {
4492
+ "module" : "IPATM-IPMC-MIB",
4493
+ "access" : "readonly",
4494
+ "description" :
4495
+ """Write access is not required.""",
4496
+ },
4497
+ }, # refinements
4498
+
4499
+ }, # compliance
4500
+ "marsServerCompliance" : {
4501
+ "nodetype" : "compliance",
4502
+ "moduleName" : "IPATM-IPMC-MIB",
4503
+ "oid" : "1.3.6.1.6.3.17.4.2.1.1",
4504
+ "status" : "current",
4505
+ "description" :
4506
+ """The compliance statement for entities that are required
4507
+ for the management of MARS servers.""",
4508
+ "requires" : {
4509
+ "marsServerGroup" : {
4510
+ "nodetype" : "mandatory",
4511
+ "module" : "IPATM-IPMC-MIB"
4512
+ },
4513
+ "marsServerEventGroup" : {
4514
+ "nodetype" : "mandatory",
4515
+ "module" : "IPATM-IPMC-MIB"
4516
+ },
4517
+ }, # requires
4518
+ "refinements" : {
4519
+ "marsAddr" : {
4520
+ "module" : "IPATM-IPMC-MIB",
4521
+ "access" : "readonly",
4522
+ "description" :
4523
+ """Write access is not required.""",
4524
+ },
4525
+ "marsLocal" : {
4526
+ "module" : "IPATM-IPMC-MIB",
4527
+ "access" : "readonly",
4528
+ "description" :
4529
+ """Write access is not required.""",
4530
+ },
4531
+ "marsServStatus" : {
4532
+ "module" : "IPATM-IPMC-MIB",
4533
+ "access" : "readonly",
4534
+ "description" :
4535
+ """Write access is not required.""",
4536
+ },
4537
+ "marsServType" : {
4538
+ "module" : "IPATM-IPMC-MIB",
4539
+ "access" : "readonly",
4540
+ "description" :
4541
+ """Write access is not required.""",
4542
+ },
4543
+ "marsServPriority" : {
4544
+ "module" : "IPATM-IPMC-MIB",
4545
+ "access" : "readonly",
4546
+ "description" :
4547
+ """Write access is not required.""",
4548
+ },
4549
+ "marsRedirMapMsgTimer" : {
4550
+ "module" : "IPATM-IPMC-MIB",
4551
+ "access" : "readonly",
4552
+ "description" :
4553
+ """Write access is not required.""",
4554
+ },
4555
+ "marsCsn" : {
4556
+ "module" : "IPATM-IPMC-MIB",
4557
+ "access" : "readonly",
4558
+ "description" :
4559
+ """Write access is not required.""",
4560
+ },
4561
+ "marsSsn" : {
4562
+ "module" : "IPATM-IPMC-MIB",
4563
+ "access" : "readonly",
4564
+ "description" :
4565
+ """Write access is not required.""",
4566
+ },
4567
+ "marsRowStatus" : {
4568
+ "module" : "IPATM-IPMC-MIB",
4569
+ "access" : "readonly",
4570
+ "description" :
4571
+ """Write access is not required.""",
4572
+ },
4573
+ "marsMcGrpAddrUsage" : {
4574
+ "module" : "IPATM-IPMC-MIB",
4575
+ "access" : "readonly",
4576
+ "description" :
4577
+ """Write access is not required.""",
4578
+ },
4579
+ "marsMcGrpRowStatus" : {
4580
+ "module" : "IPATM-IPMC-MIB",
4581
+ "access" : "readonly",
4582
+ "description" :
4583
+ """Write access is not required.""",
4584
+ },
4585
+ "marsHostMapRowType" : {
4586
+ "module" : "IPATM-IPMC-MIB",
4587
+ "access" : "readonly",
4588
+ "description" :
4589
+ """Write access is not required.""",
4590
+ },
4591
+ "marsHostMapRowStatus" : {
4592
+ "module" : "IPATM-IPMC-MIB",
4593
+ "access" : "readonly",
4594
+ "description" :
4595
+ """Write access is not required.""",
4596
+ },
4597
+ "marsServerMapRowType" : {
4598
+ "module" : "IPATM-IPMC-MIB",
4599
+ "access" : "readonly",
4600
+ "description" :
4601
+ """Write access is not required.""",
4602
+ },
4603
+ "marsServerMapRowStatus" : {
4604
+ "module" : "IPATM-IPMC-MIB",
4605
+ "access" : "readonly",
4606
+ "description" :
4607
+ """Write access is not required.""",
4608
+ },
4609
+ "marsVcPartyAddrType" : {
4610
+ "module" : "IPATM-IPMC-MIB",
4611
+ "access" : "readonly",
4612
+ "description" :
4613
+ """Write access is not required.""",
4614
+ },
4615
+ "marsVcType" : {
4616
+ "module" : "IPATM-IPMC-MIB",
4617
+ "access" : "readonly",
4618
+ "description" :
4619
+ """Write access is not required.""",
4620
+ },
4621
+ "marsVcCtrlType" : {
4622
+ "module" : "IPATM-IPMC-MIB",
4623
+ "access" : "readonly",
4624
+ "description" :
4625
+ """Write access is not required.""",
4626
+ },
4627
+ "marsVcIdleTimer" : {
4628
+ "module" : "IPATM-IPMC-MIB",
4629
+ "access" : "readonly",
4630
+ "description" :
4631
+ """Write access is not required.""",
4632
+ },
4633
+ "marsVcCmi" : {
4634
+ "module" : "IPATM-IPMC-MIB",
4635
+ "access" : "readonly",
4636
+ "description" :
4637
+ """Write access is not required.""",
4638
+ },
4639
+ "marsVcEncapsType" : {
4640
+ "module" : "IPATM-IPMC-MIB",
4641
+ "access" : "readonly",
4642
+ "description" :
4643
+ """Write access is not required.""",
4644
+ },
4645
+ "marsVcNegotiatedMtu" : {
4646
+ "module" : "IPATM-IPMC-MIB",
4647
+ "access" : "readonly",
4648
+ "description" :
4649
+ """Write access is not required.""",
4650
+ },
4651
+ "marsVcRowStatus" : {
4652
+ "module" : "IPATM-IPMC-MIB",
4653
+ "access" : "readonly",
4654
+ "description" :
4655
+ """Write access is not required.""",
4656
+ },
4657
+ }, # refinements
4658
+
4659
+ }, # compliance
4660
+ "marsMcsCompliance" : {
4661
+ "nodetype" : "compliance",
4662
+ "moduleName" : "IPATM-IPMC-MIB",
4663
+ "oid" : "1.3.6.1.6.3.17.4.3.1.1",
4664
+ "status" : "current",
4665
+ "description" :
4666
+ """The compliance statement for entities that are required
4667
+ for the management of MARS multicast servers (MCS).""",
4668
+ "requires" : {
4669
+ "marsMcsGroup" : {
4670
+ "nodetype" : "mandatory",
4671
+ "module" : "IPATM-IPMC-MIB"
4672
+ },
4673
+ }, # requires
4674
+ "refinements" : {
4675
+ "marsMcsAddr" : {
4676
+ "module" : "IPATM-IPMC-MIB",
4677
+ "access" : "readonly",
4678
+ "description" :
4679
+ """Write access is not required.""",
4680
+ },
4681
+ "marsMcsDefaultMarsAddr" : {
4682
+ "module" : "IPATM-IPMC-MIB",
4683
+ "access" : "readonly",
4684
+ "description" :
4685
+ """Write access is not required.""",
4686
+ },
4687
+ "marsMcsRegistration" : {
4688
+ "module" : "IPATM-IPMC-MIB",
4689
+ "access" : "readonly",
4690
+ "description" :
4691
+ """Write access is not required.""",
4692
+ },
4693
+ "marsMcsSsn" : {
4694
+ "module" : "IPATM-IPMC-MIB",
4695
+ "access" : "readonly",
4696
+ "description" :
4697
+ """Write access is not required.""",
4698
+ },
4699
+ "marsMcsDefaultMtu" : {
4700
+ "module" : "IPATM-IPMC-MIB",
4701
+ "access" : "readonly",
4702
+ "description" :
4703
+ """Write access is not required.""",
4704
+ },
4705
+ "marsMcsFailureTimer" : {
4706
+ "module" : "IPATM-IPMC-MIB",
4707
+ "access" : "readonly",
4708
+ "description" :
4709
+ """Write access is not required.""",
4710
+ },
4711
+ "marsMcsRetranDelayTimer" : {
4712
+ "module" : "IPATM-IPMC-MIB",
4713
+ "access" : "readonly",
4714
+ "description" :
4715
+ """Write access is not required.""",
4716
+ },
4717
+ "marsMcsRdmMulReqAddRetrTimer" : {
4718
+ "module" : "IPATM-IPMC-MIB",
4719
+ "access" : "readonly",
4720
+ "description" :
4721
+ """Write access is not required.""",
4722
+ },
4723
+ "marsMcsRdmVcRevalidateTimer" : {
4724
+ "module" : "IPATM-IPMC-MIB",
4725
+ "access" : "readonly",
4726
+ "description" :
4727
+ """Write access is not required.""",
4728
+ },
4729
+ "marsMcsRegisterRetrInterval" : {
4730
+ "module" : "IPATM-IPMC-MIB",
4731
+ "access" : "readonly",
4732
+ "description" :
4733
+ """Write access is not required.""",
4734
+ },
4735
+ "marsMcsRegisterRetrLimit" : {
4736
+ "module" : "IPATM-IPMC-MIB",
4737
+ "access" : "readonly",
4738
+ "description" :
4739
+ """Write access is not required.""",
4740
+ },
4741
+ "marsMcsForceWaitTimer" : {
4742
+ "module" : "IPATM-IPMC-MIB",
4743
+ "access" : "readonly",
4744
+ "description" :
4745
+ """Write access is not required.""",
4746
+ },
4747
+ "marsMcsLmtToMissRedirMapTimer" : {
4748
+ "module" : "IPATM-IPMC-MIB",
4749
+ "access" : "readonly",
4750
+ "description" :
4751
+ """Write access is not required.""",
4752
+ },
4753
+ "marsMcsIdleTimer" : {
4754
+ "module" : "IPATM-IPMC-MIB",
4755
+ "access" : "readonly",
4756
+ "description" :
4757
+ """Write access is not required.""",
4758
+ },
4759
+ "marsMcsRowStatus" : {
4760
+ "module" : "IPATM-IPMC-MIB",
4761
+ "access" : "readonly",
4762
+ "description" :
4763
+ """Write access is not required.""",
4764
+ },
4765
+ "marsMcsMcGrpRowStatus" : {
4766
+ "module" : "IPATM-IPMC-MIB",
4767
+ "access" : "readonly",
4768
+ "description" :
4769
+ """Write access is not required.""",
4770
+ },
4771
+ "marsMcsBackupMarsRowStatus" : {
4772
+ "module" : "IPATM-IPMC-MIB",
4773
+ "access" : "readonly",
4774
+ "description" :
4775
+ """Write access is not required.""",
4776
+ },
4777
+ "marsMcsVcPartyAddrType" : {
4778
+ "module" : "IPATM-IPMC-MIB",
4779
+ "access" : "readonly",
4780
+ "description" :
4781
+ """Write access is not required.""",
4782
+ },
4783
+ "marsMcsVcType" : {
4784
+ "module" : "IPATM-IPMC-MIB",
4785
+ "access" : "readonly",
4786
+ "description" :
4787
+ """Write access is not required.""",
4788
+ },
4789
+ "marsMcsVcCtrlType" : {
4790
+ "module" : "IPATM-IPMC-MIB",
4791
+ "access" : "readonly",
4792
+ "description" :
4793
+ """Write access is not required.""",
4794
+ },
4795
+ "marsMcsVcIdleTimer" : {
4796
+ "module" : "IPATM-IPMC-MIB",
4797
+ "access" : "readonly",
4798
+ "description" :
4799
+ """Write access is not required.""",
4800
+ },
4801
+ "marsMcsVcRevalidate" : {
4802
+ "module" : "IPATM-IPMC-MIB",
4803
+ "access" : "readonly",
4804
+ "description" :
4805
+ """Write access is not required.""",
4806
+ },
4807
+ "marsMcsVcEncapsType" : {
4808
+ "module" : "IPATM-IPMC-MIB",
4809
+ "access" : "readonly",
4810
+ "description" :
4811
+ """Write access is not required.""",
4812
+ },
4813
+ "marsMcsVcNegotiatedMtu" : {
4814
+ "module" : "IPATM-IPMC-MIB",
4815
+ "access" : "readonly",
4816
+ "description" :
4817
+ """Write access is not required.""",
4818
+ },
4819
+ "marsMcsVcRowStatus" : {
4820
+ "module" : "IPATM-IPMC-MIB",
4821
+ "access" : "readonly",
4822
+ "description" :
4823
+ """Write access is not required.""",
4824
+ },
4825
+ }, # refinements
4826
+
4827
+ }, # compliance
4828
+ }, # compliances
4829
+
4830
+ }