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,4715 @@
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 ATM2-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/ATM2-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "ATM2-MIB",
11
+
12
+ "ATM2-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF AToMMIB Working Group""",
17
+ "contact" :
18
+ """AToMMIB WG
19
+ http://www.ietf.org/html.charters/atommib-charter.html
20
+ Editors:
21
+ Faye Ly
22
+ Postal: Pedestal Networks
23
+ 6503 Dumbarton Circle
24
+ Fremont, CA 94555
25
+ USA
26
+ Tel: +1 510 896 2908
27
+ E-Mail: faye@pedestalnetworks.com
28
+
29
+ Michael Noto
30
+ Postal: Cisco Systems
31
+ 170 W. Tasman Drive
32
+ San Jose, CA 95134-1706
33
+ USA
34
+
35
+ E-mail: mnoto@cisco.com
36
+
37
+ Andrew Smith
38
+ Postal: Consultant
39
+
40
+ E-Mail: ah_smith@acm.org
41
+
42
+ Ethan Mickey Spiegel
43
+ Postal: Cisco Systems
44
+ 170 W. Tasman Drive
45
+ San Jose, CA 95134-1706
46
+ USA
47
+ Tel: +1 408 526 6408
48
+ Fax: +1 408 526 6488
49
+ E-Mail: mspiegel@cisco.com
50
+
51
+ Kaj Tesink
52
+ Postal: Telcordia Technologies
53
+ 331 Newman Springs Road
54
+
55
+
56
+
57
+ Red Bank, NJ 07701
58
+ USA
59
+ Tel: +1 732 758 5254
60
+ E-mail: kaj@research.telcordia.com""",
61
+ "description" :
62
+ """Copyright (C) The Internet Society (2003). This version of
63
+ this MIB module is part of RFC 3606; see the RFC itself for
64
+ full legal notices.
65
+
66
+ This MIB Module is a supplement to the ATM-MIB
67
+ defined in RFC 2515.""",
68
+ "revisions" : (
69
+ {
70
+ "date" : "2003-09-23 00:00",
71
+ "description" :
72
+ """Initial version of this MIB, published as RFC 3606.""",
73
+ },
74
+ ),
75
+ "identity node" : "atm2MIB",
76
+ },
77
+
78
+ "imports" : (
79
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
80
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
81
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
82
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
83
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
84
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
85
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
86
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
87
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
88
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
89
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
90
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
91
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
92
+ {"module" : "IF-MIB", "name" : "InterfaceIndex"},
93
+ {"module" : "IF-MIB", "name" : "InterfaceIndexOrZero"},
94
+ {"module" : "IF-MIB", "name" : "ifIndex"},
95
+ {"module" : "ATM-MIB", "name" : "atmMIBObjects"},
96
+ {"module" : "ATM-MIB", "name" : "atmInterfaceConfEntry"},
97
+ {"module" : "ATM-MIB", "name" : "atmVplEntry"},
98
+ {"module" : "ATM-MIB", "name" : "atmVplVpi"},
99
+ {"module" : "ATM-MIB", "name" : "atmVclEntry"},
100
+ {"module" : "ATM-MIB", "name" : "atmVclVpi"},
101
+ {"module" : "ATM-MIB", "name" : "atmVclVci"},
102
+ {"module" : "ATM-MIB", "name" : "atmVpCrossConnectEntry"},
103
+ {"module" : "ATM-MIB", "name" : "atmVcCrossConnectEntry"},
104
+ {"module" : "ATM-TC-MIB", "name" : "AtmAddr"},
105
+ {"module" : "ATM-TC-MIB", "name" : "AtmSigDescrParamIndex"},
106
+ {"module" : "ATM-TC-MIB", "name" : "AtmInterfaceType"},
107
+ {"module" : "ATM-TC-MIB", "name" : "AtmIlmiNetworkPrefix"},
108
+ {"module" : "ATM-TC-MIB", "name" : "AtmVcIdentifier"},
109
+ {"module" : "ATM-TC-MIB", "name" : "AtmVpIdentifier"},
110
+ {"module" : "ATM-TC-MIB", "name" : "AtmTrafficDescrParamIndex"},
111
+ ),
112
+
113
+ "nodes" : {
114
+ "atm2MIB" : {
115
+ "nodetype" : "node",
116
+ "moduleName" : "ATM2-MIB",
117
+ "oid" : "1.3.6.1.2.1.37.1.14",
118
+ "status" : "current",
119
+ }, # node
120
+ "atm2MIBObjects" : {
121
+ "nodetype" : "node",
122
+ "moduleName" : "ATM2-MIB",
123
+ "oid" : "1.3.6.1.2.1.37.1.14.1",
124
+ }, # node
125
+ "atmSvcVpCrossConnectTable" : {
126
+ "nodetype" : "table",
127
+ "moduleName" : "ATM2-MIB",
128
+ "oid" : "1.3.6.1.2.1.37.1.14.1.1",
129
+ "status" : "current",
130
+ "description" :
131
+ """The ATM SVPC Cross-Connect table. A
132
+ bi-directional VP cross-connect between two
133
+ switched VPLs is modeled as one entry in this
134
+ table. A Soft PVPC cross-connect, between a
135
+ soft permanent VPL and a switched VPL, is
136
+ also modeled as one entry in this table.""",
137
+ }, # table
138
+ "atmSvcVpCrossConnectEntry" : {
139
+ "nodetype" : "row",
140
+ "moduleName" : "ATM2-MIB",
141
+ "oid" : "1.3.6.1.2.1.37.1.14.1.1.1",
142
+ "status" : "current",
143
+ "linkage" : [
144
+ "atmSvcVpCrossConnectIndex",
145
+ "atmSvcVpCrossConnectLowIfIndex",
146
+ "atmSvcVpCrossConnectLowVpi",
147
+ "atmSvcVpCrossConnectHighIfIndex",
148
+ "atmSvcVpCrossConnectHighVpi",
149
+ ],
150
+ "description" :
151
+ """An entry in the ATM SVPC Cross-Connect table.
152
+ This entry is used to model a bi-directional
153
+ ATM VP cross-connect between two VPLs.""",
154
+ }, # row
155
+ "atmSvcVpCrossConnectIndex" : {
156
+ "nodetype" : "column",
157
+ "moduleName" : "ATM2-MIB",
158
+ "oid" : "1.3.6.1.2.1.37.1.14.1.1.1.1",
159
+ "status" : "current",
160
+ "syntax" : {
161
+ "type" : {
162
+ "basetype" : "Integer32",
163
+ "ranges" : [
164
+ {
165
+ "min" : "1",
166
+ "max" : "2147483647"
167
+ },
168
+ ],
169
+ "range" : {
170
+ "min" : "1",
171
+ "max" : "2147483647"
172
+ },
173
+ },
174
+ },
175
+ "access" : "noaccess",
176
+ "description" :
177
+ """A unique value to identify this SVPC
178
+ cross-connect. For each VP associated
179
+ with this cross-connect, the agent reports
180
+ this cross-connect index value in the
181
+ atmVplCrossConnectIdentifer attribute of the
182
+
183
+
184
+
185
+ corresponding atmVplTable entries.""",
186
+ }, # column
187
+ "atmSvcVpCrossConnectLowIfIndex" : {
188
+ "nodetype" : "column",
189
+ "moduleName" : "ATM2-MIB",
190
+ "oid" : "1.3.6.1.2.1.37.1.14.1.1.1.2",
191
+ "status" : "current",
192
+ "syntax" : {
193
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
194
+ },
195
+ "access" : "noaccess",
196
+ "description" :
197
+ """The value of this object is equal to the
198
+ ifIndex value of the ATM interface port for this
199
+ SVPC cross-connect. The term low implies
200
+ that this ATM interface has the numerically lower
201
+ ifIndex value than the other ATM interface
202
+ identified in the same atmSvcVpCrossConnectEntry.""",
203
+ }, # column
204
+ "atmSvcVpCrossConnectLowVpi" : {
205
+ "nodetype" : "column",
206
+ "moduleName" : "ATM2-MIB",
207
+ "oid" : "1.3.6.1.2.1.37.1.14.1.1.1.3",
208
+ "status" : "current",
209
+ "syntax" : {
210
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVpIdentifier"},
211
+ },
212
+ "access" : "noaccess",
213
+ "description" :
214
+ """The value of this object is equal to the VPI
215
+ value associated with the SVPC cross-connect
216
+ at the ATM interface that is identified by
217
+ atmSvcVpCrossConnectLowIfIndex. The VPI value
218
+ cannot exceed the number supported by the
219
+ atmInterfaceCurrentMaxSvpcVpi at the low ATM interface
220
+ port.""",
221
+ }, # column
222
+ "atmSvcVpCrossConnectHighIfIndex" : {
223
+ "nodetype" : "column",
224
+ "moduleName" : "ATM2-MIB",
225
+ "oid" : "1.3.6.1.2.1.37.1.14.1.1.1.4",
226
+ "status" : "current",
227
+ "syntax" : {
228
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
229
+ },
230
+ "access" : "noaccess",
231
+ "description" :
232
+ """The value of this object is equal to the
233
+ ifIndex value of the ATM interface port for
234
+ this SVC VP cross-connect. The term high
235
+ implies that this ATM interface has the
236
+ numerically higher ifIndex value than the
237
+ other ATM interface identified in the same
238
+ atmSvcVpCrossConnectEntry.""",
239
+ }, # column
240
+ "atmSvcVpCrossConnectHighVpi" : {
241
+ "nodetype" : "column",
242
+ "moduleName" : "ATM2-MIB",
243
+ "oid" : "1.3.6.1.2.1.37.1.14.1.1.1.5",
244
+ "status" : "current",
245
+ "syntax" : {
246
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVpIdentifier"},
247
+ },
248
+ "access" : "noaccess",
249
+ "description" :
250
+ """The value of this object is equal to the VPI
251
+ value associated with the SVPC cross-connect
252
+ at the ATM interface that is identified by
253
+ atmSvcVpCrossConnectHighIfIndex. The VPI value
254
+ cannot exceed the number supported by the
255
+ atmInterfaceCurrentMaxSvpcVpi at the high ATM interface
256
+ port.""",
257
+ }, # column
258
+ "atmSvcVpCrossConnectCreationTime" : {
259
+ "nodetype" : "column",
260
+ "moduleName" : "ATM2-MIB",
261
+ "oid" : "1.3.6.1.2.1.37.1.14.1.1.1.6",
262
+ "status" : "current",
263
+ "syntax" : {
264
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
265
+ },
266
+ "access" : "readonly",
267
+ "description" :
268
+ """The value of the sysUpTime object
269
+ at the time this bi-directional SVPC
270
+ cross-connect was created. If the current
271
+ state was entered prior to the last
272
+ re-initialization of the agent, then this
273
+ object contains a zero value.""",
274
+ }, # column
275
+ "atmSvcVpCrossConnectRowStatus" : {
276
+ "nodetype" : "column",
277
+ "moduleName" : "ATM2-MIB",
278
+ "oid" : "1.3.6.1.2.1.37.1.14.1.1.1.7",
279
+ "status" : "current",
280
+ "syntax" : {
281
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
282
+ },
283
+ "access" : "readwrite",
284
+ "description" :
285
+ """This object is used to delete rows in the
286
+ atmSvcVpCrossConnectTable.""",
287
+ }, # column
288
+ "atmSvcVcCrossConnectTable" : {
289
+ "nodetype" : "table",
290
+ "moduleName" : "ATM2-MIB",
291
+ "oid" : "1.3.6.1.2.1.37.1.14.1.2",
292
+ "status" : "current",
293
+ "description" :
294
+ """The ATM SVCC Cross-Connect table. A
295
+ bi-directional VC cross-connect between two
296
+ switched VCLs is modeled as one entry in
297
+ this table. A Soft PVCC cross-connect,
298
+ between a soft permanent VCL and a switched
299
+ VCL, is also modeled as one entry in this
300
+ table.""",
301
+ }, # table
302
+ "atmSvcVcCrossConnectEntry" : {
303
+ "nodetype" : "row",
304
+ "moduleName" : "ATM2-MIB",
305
+ "oid" : "1.3.6.1.2.1.37.1.14.1.2.1",
306
+ "status" : "current",
307
+ "linkage" : [
308
+ "atmSvcVcCrossConnectIndex",
309
+ "atmSvcVcCrossConnectLowIfIndex",
310
+ "atmSvcVcCrossConnectLowVpi",
311
+ "atmSvcVcCrossConnectLowVci",
312
+ "atmSvcVcCrossConnectHighIfIndex",
313
+ "atmSvcVcCrossConnectHighVpi",
314
+ "atmSvcVcCrossConnectHighVci",
315
+ ],
316
+ "description" :
317
+ """An entry in the ATM SVCC Cross-Connect table.
318
+ This entry is used to model a bi-directional ATM
319
+ VC cross-connect between two VCLs.""",
320
+ }, # row
321
+ "atmSvcVcCrossConnectIndex" : {
322
+ "nodetype" : "column",
323
+ "moduleName" : "ATM2-MIB",
324
+ "oid" : "1.3.6.1.2.1.37.1.14.1.2.1.1",
325
+ "status" : "current",
326
+ "syntax" : {
327
+ "type" : {
328
+ "basetype" : "Integer32",
329
+ "ranges" : [
330
+ {
331
+ "min" : "1",
332
+ "max" : "2147483647"
333
+ },
334
+ ],
335
+ "range" : {
336
+ "min" : "1",
337
+ "max" : "2147483647"
338
+ },
339
+ },
340
+ },
341
+ "access" : "noaccess",
342
+ "description" :
343
+ """A unique value to identify this SVCC cross-connect.
344
+ For each VP associated with this cross-connect, the
345
+ agent reports this cross-connect index value in the
346
+ atmVclCrossConnectIdentifier attribute of the
347
+ corresponding atmVplTable entries.""",
348
+ }, # column
349
+ "atmSvcVcCrossConnectLowIfIndex" : {
350
+ "nodetype" : "column",
351
+ "moduleName" : "ATM2-MIB",
352
+ "oid" : "1.3.6.1.2.1.37.1.14.1.2.1.2",
353
+ "status" : "current",
354
+ "syntax" : {
355
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
356
+ },
357
+ "access" : "noaccess",
358
+ "description" :
359
+ """The value of this object is equal to the
360
+ ifIndex value of the ATM interface port for this
361
+
362
+
363
+
364
+ SVCC cross-connect. The term low implies that
365
+ this ATM interface has the numerically lower
366
+ ifIndex value than the other ATM interface
367
+ identified in the same atmSvcVcCrossConnectEntry.""",
368
+ }, # column
369
+ "atmSvcVcCrossConnectLowVpi" : {
370
+ "nodetype" : "column",
371
+ "moduleName" : "ATM2-MIB",
372
+ "oid" : "1.3.6.1.2.1.37.1.14.1.2.1.3",
373
+ "status" : "current",
374
+ "syntax" : {
375
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVpIdentifier"},
376
+ },
377
+ "access" : "noaccess",
378
+ "description" :
379
+ """The value of this object is equal to the VPI
380
+ value associated with the SVCC cross-connect
381
+ at the ATM interface that is identified by
382
+ atmSvcVcCrossConnectLowIfIndex. The VPI value
383
+ cannot exceed the number supported by the
384
+ atmInterfaceCurrentMaxSvccVpi at the low ATM interface
385
+ port.""",
386
+ }, # column
387
+ "atmSvcVcCrossConnectLowVci" : {
388
+ "nodetype" : "column",
389
+ "moduleName" : "ATM2-MIB",
390
+ "oid" : "1.3.6.1.2.1.37.1.14.1.2.1.4",
391
+ "status" : "current",
392
+ "syntax" : {
393
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVcIdentifier"},
394
+ },
395
+ "access" : "noaccess",
396
+ "description" :
397
+ """The value of this object is equal to the VCI
398
+ value associated with the SVCC cross-connect
399
+ at the ATM interface that is identified by
400
+ atmSvcVcCrossConnectLowIfIndex. The VCI value
401
+ cannot exceed the number supported by the
402
+ atmInterfaceCurrentMaxSvccVci at the low ATM interface
403
+ port.""",
404
+ }, # column
405
+ "atmSvcVcCrossConnectHighIfIndex" : {
406
+ "nodetype" : "column",
407
+ "moduleName" : "ATM2-MIB",
408
+ "oid" : "1.3.6.1.2.1.37.1.14.1.2.1.5",
409
+ "status" : "current",
410
+ "syntax" : {
411
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
412
+ },
413
+ "access" : "noaccess",
414
+ "description" :
415
+ """The value of this object is equal to the
416
+ ifIndex value for the ATM interface port for
417
+ this SVCC cross-connect. The term high implies
418
+ that this ATM interface has the numerically
419
+ higher ifIndex value than the other ATM interface
420
+ identified in the same atmSvcVcCrossConnectEntry.""",
421
+ }, # column
422
+ "atmSvcVcCrossConnectHighVpi" : {
423
+ "nodetype" : "column",
424
+ "moduleName" : "ATM2-MIB",
425
+ "oid" : "1.3.6.1.2.1.37.1.14.1.2.1.6",
426
+ "status" : "current",
427
+ "syntax" : {
428
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVpIdentifier"},
429
+ },
430
+ "access" : "noaccess",
431
+ "description" :
432
+ """The value of this object is equal to the VPI
433
+ value associated with the SVCC cross-connect
434
+ at the ATM interface that is identified by
435
+ atmSvcVcCrossConnectHighIfIndex. The VPI value
436
+ cannot exceed the number supported by the
437
+ atmInterfaceCurrentMaxSvccVpi at the high ATM interface
438
+ port.""",
439
+ }, # column
440
+ "atmSvcVcCrossConnectHighVci" : {
441
+ "nodetype" : "column",
442
+ "moduleName" : "ATM2-MIB",
443
+ "oid" : "1.3.6.1.2.1.37.1.14.1.2.1.7",
444
+ "status" : "current",
445
+ "syntax" : {
446
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVcIdentifier"},
447
+ },
448
+ "access" : "noaccess",
449
+ "description" :
450
+ """The value of this object is equal to the VCI
451
+ value associated with the SVCC cross-connect
452
+ at the ATM interface that is identified by
453
+ atmSvcVcCrossConnectHighIfIndex. The VCI value
454
+ cannot exceed the number supported by the
455
+ atmInterfaceMaxVciBits at the high ATM interface
456
+ port.""",
457
+ }, # column
458
+ "atmSvcVcCrossConnectCreationTime" : {
459
+ "nodetype" : "column",
460
+ "moduleName" : "ATM2-MIB",
461
+ "oid" : "1.3.6.1.2.1.37.1.14.1.2.1.8",
462
+ "status" : "current",
463
+ "syntax" : {
464
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
465
+ },
466
+ "access" : "readonly",
467
+ "description" :
468
+ """The value of the sysUpTime object
469
+ at the time this bi-directional SVCC
470
+ cross-connect was created. If the current
471
+ state was entered prior to the last
472
+ re-initialization of the agent, then this
473
+ object contains a zero value.""",
474
+ }, # column
475
+ "atmSvcVcCrossConnectRowStatus" : {
476
+ "nodetype" : "column",
477
+ "moduleName" : "ATM2-MIB",
478
+ "oid" : "1.3.6.1.2.1.37.1.14.1.2.1.9",
479
+ "status" : "current",
480
+ "syntax" : {
481
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
482
+ },
483
+ "access" : "readwrite",
484
+ "description" :
485
+ """This object is used to delete rows in the
486
+ atmSvcVcCrossConnectTable.""",
487
+ }, # column
488
+ "atmSigStatTable" : {
489
+ "nodetype" : "table",
490
+ "moduleName" : "ATM2-MIB",
491
+ "oid" : "1.3.6.1.2.1.37.1.14.1.3",
492
+ "status" : "current",
493
+ "description" :
494
+ """This table contains ATM interface signalling
495
+ statistics, one entry per ATM signalling
496
+ interface.""",
497
+ }, # table
498
+ "atmSigStatEntry" : {
499
+ "nodetype" : "row",
500
+ "moduleName" : "ATM2-MIB",
501
+ "oid" : "1.3.6.1.2.1.37.1.14.1.3.1",
502
+ "status" : "current",
503
+ "linkage" : [
504
+ "ifIndex",
505
+ ],
506
+ "description" :
507
+ """This list contains signalling statistics variables.""",
508
+ }, # row
509
+ "atmSigSSCOPConEvents" : {
510
+ "nodetype" : "column",
511
+ "moduleName" : "ATM2-MIB",
512
+ "oid" : "1.3.6.1.2.1.37.1.14.1.3.1.1",
513
+ "status" : "current",
514
+ "syntax" : {
515
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
516
+ },
517
+ "access" : "readonly",
518
+ "description" :
519
+ """SSCOP Connection Events Counter. This counter counts
520
+ the sum of the following errors:
521
+
522
+ 1) SSCOP Connection Disconnect Counter
523
+
524
+ The abnormal occurrence of this event is
525
+ characterized by the expiry of Timer_NO_RESPONSE.
526
+ (This event is communicated to the layer management
527
+ with MAA-ERROR code P. See ITU-T Q.2110.)
528
+
529
+ 2) SSCOP Connection Initiation Failure
530
+
531
+ This condition indicates the inability to establish
532
+ an SSCOP connection. This event occurs whenever the
533
+ number of expiries of the connection control timer
534
+ (Timer_CC) equals or exceeds the MaxCC, or upon
535
+ receipt of a connection reject message BGREJ PDU.
536
+ (This event is communicated to layer management with
537
+ MAA-ERROR code O. See ITU-T Q.2110.)
538
+
539
+ 3) SSCOP Connection Re-Establ/Resynch
540
+
541
+ This event occurs upon receipt of a BGN PDU or
542
+ RS PDU.""",
543
+ "reference" :
544
+ """ITU-T Recommendation Q.2110, Broadband
545
+ Integrated Services Digital Network
546
+ (B-ISDN) - ATM Adaptation Layer - Service
547
+ Specific Connection Oriented Protocol (SSCOP)
548
+ Specification, July 1994.""",
549
+ }, # column
550
+ "atmSigSSCOPErrdPdus" : {
551
+ "nodetype" : "column",
552
+ "moduleName" : "ATM2-MIB",
553
+ "oid" : "1.3.6.1.2.1.37.1.14.1.3.1.2",
554
+ "status" : "current",
555
+ "syntax" : {
556
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
557
+ },
558
+ "access" : "readonly",
559
+ "description" :
560
+ """SSCOP Errored PDUs Counter. This counter counts the
561
+ sum of the following errors:
562
+
563
+ 1) Invalid PDUs.
564
+ These are defined in SSCOP and consist of PDUs
565
+ with an incorrect length (MAA-ERROR code U), an
566
+ undefined PDU type code, or that are not 32-bit
567
+ aligned.
568
+
569
+ 2) PDUs that result in MAA-ERROR codes and are
570
+
571
+
572
+
573
+ discarded.
574
+
575
+ See MAA-ERROR codes A-D, F-M, and Q-T defined in
576
+ ITU-T Q.2110.""",
577
+ "reference" :
578
+ """ITU-T Recommendation Q.2110, Broadband
579
+ Integrated Services Digital Network
580
+ (B-ISDN) - ATM Adaptation Layer - Service
581
+ Specific Connection Oriented Protocol (SSCOP)
582
+ Specification, July 1994.""",
583
+ }, # column
584
+ "atmSigDetectSetupAttempts" : {
585
+ "nodetype" : "column",
586
+ "moduleName" : "ATM2-MIB",
587
+ "oid" : "1.3.6.1.2.1.37.1.14.1.3.1.3",
588
+ "status" : "current",
589
+ "syntax" : {
590
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
591
+ },
592
+ "access" : "readonly",
593
+ "description" :
594
+ """Call Setup Attempts Counter. This counter counts
595
+ the number of call setup attempts (both successful
596
+ and unsuccessful) detected on this interface.""",
597
+ }, # column
598
+ "atmSigEmitSetupAttempts" : {
599
+ "nodetype" : "column",
600
+ "moduleName" : "ATM2-MIB",
601
+ "oid" : "1.3.6.1.2.1.37.1.14.1.3.1.4",
602
+ "status" : "current",
603
+ "syntax" : {
604
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
605
+ },
606
+ "access" : "readonly",
607
+ "description" :
608
+ """Call Setup Attempts Counter. This counter counts
609
+ the number of call setup attempts (both successful
610
+ and unsuccessful) transmitted on this interface.""",
611
+ }, # column
612
+ "atmSigDetectUnavailRoutes" : {
613
+ "nodetype" : "column",
614
+ "moduleName" : "ATM2-MIB",
615
+ "oid" : "1.3.6.1.2.1.37.1.14.1.3.1.5",
616
+ "status" : "current",
617
+ "syntax" : {
618
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
619
+ },
620
+ "access" : "readonly",
621
+ "description" :
622
+ """Number of Route Unavailability detected on this interface.
623
+ This counter is incremented when a RELEASE, RELEASE COMPLETE
624
+ (only when not preceded by a RELEASE message for the same
625
+ call), ADD PARTY REJECT, or STATUS message that
626
+ contains one of the following cause code values is
627
+ received (Note: These cause values
628
+ apply to both UNI3.0 and UNI3.1):
629
+
630
+ Cause Value Meaning
631
+
632
+
633
+
634
+
635
+
636
+ 1 unallocated (unassigned) number
637
+ 2 no route to specified transit network
638
+ 3 no route to destination
639
+
640
+ NOTE: For this counter, RELEASE COMPLETE
641
+ messages that are a reply to a previous RELEASE
642
+ message and contain the same cause value, are
643
+ redundant (for counting purposes) and should not
644
+ be counted.""",
645
+ }, # column
646
+ "atmSigEmitUnavailRoutes" : {
647
+ "nodetype" : "column",
648
+ "moduleName" : "ATM2-MIB",
649
+ "oid" : "1.3.6.1.2.1.37.1.14.1.3.1.6",
650
+ "status" : "current",
651
+ "syntax" : {
652
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
653
+ },
654
+ "access" : "readonly",
655
+ "description" :
656
+ """Number of Route Unavailability transmitted from this
657
+ interface. This counter is incremented when a RELEASE,
658
+ RELEASE COMPLETE (only when not preceded by a RELEASE
659
+ message for the same call), ADD PARTY REJECT, or
660
+ STATUS message that contains one of the following cause
661
+ code values is transmitted (Note: These cause values apply
662
+ to both UNI3.0 and UNI3.1):
663
+
664
+ Cause Value Meaning
665
+
666
+ 1 unallocated (unassigned) number
667
+ 2 no route to specified transit network
668
+ 3 no route to destination
669
+
670
+ NOTE: For this counter, RELEASE COMPLETE
671
+ messages that are a reply to a previous RELEASE
672
+ message and contain the same cause value, are
673
+ redundant (for counting purposes) and should not
674
+ be counted.""",
675
+ }, # column
676
+ "atmSigDetectUnavailResrcs" : {
677
+ "nodetype" : "column",
678
+ "moduleName" : "ATM2-MIB",
679
+ "oid" : "1.3.6.1.2.1.37.1.14.1.3.1.7",
680
+ "status" : "current",
681
+ "syntax" : {
682
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
683
+ },
684
+ "access" : "readonly",
685
+ "description" :
686
+ """Number of Resource Unavailability detected on this
687
+ interface. This counter is incremented when a RELEASE,
688
+ RELEASE COMPLETE (only when not preceded by a RELEASE
689
+ message for the same call), ADD PARTY REJECT, or
690
+ STATUS message that contains one of the following
691
+
692
+
693
+
694
+ cause code values is received (Note: These cause
695
+ values apply to both UNI3.0 and UNI3.1 unless
696
+ otherwise stated):
697
+
698
+ Cause Value Meaning
699
+
700
+ 35 requested VPCI/VCI not available
701
+ 37 user cell rate not available (UNI3.1
702
+ only)
703
+ 38 network out of order
704
+ 41 temporary failure
705
+ 45 no VPCI/VCI available
706
+ 47 resource unavailable, unspecified
707
+ 49 Quality of Service unavailable
708
+ 51 user cell rate not available (UNI3.0
709
+ only)
710
+ 58 bearer capability not presently
711
+ available
712
+ 63 Service or option not available,
713
+ unspecified
714
+ 92 too many pending add party requests
715
+
716
+ NOTE: For this counter, RELEASE COMPLETE
717
+ messages that are a reply to a previous RELEASE
718
+ message and contain the same cause value, are
719
+ redundant (for counting purposes) and should not
720
+ be counted.""",
721
+ }, # column
722
+ "atmSigEmitUnavailResrcs" : {
723
+ "nodetype" : "column",
724
+ "moduleName" : "ATM2-MIB",
725
+ "oid" : "1.3.6.1.2.1.37.1.14.1.3.1.8",
726
+ "status" : "current",
727
+ "syntax" : {
728
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
729
+ },
730
+ "access" : "readonly",
731
+ "description" :
732
+ """Number of Resource Unavailability transmitted from this
733
+ interface. This counter is incremented when a RELEASE,
734
+ RELEASE COMPLETE (only when not preceded by a RELEASE message
735
+ for the same call), ADD PARTY REJECT, or STATUS message that
736
+ contains one of the following cause code values is transmitted
737
+ (Note: These cause values apply to both UNI3.0 and UNI3.1
738
+ unless otherwise stated):
739
+
740
+ Cause Value Meaning
741
+
742
+ 35 requested VPCI/VCI not available
743
+ 37 user cell rate not available (UNI3.1
744
+ only)
745
+ 38 network out of order
746
+
747
+
748
+
749
+ 41 temporary failure
750
+ 45 no VPCI/VCI available
751
+ 47 resource unavailable, unspecified
752
+ 49 Quality of Service unavailable
753
+ 51 user cell rate not available (UNI3.0
754
+ only)
755
+ 58 bearer capability not presently
756
+ available
757
+ 63 Service or option not available,
758
+ unspecified
759
+ 92 too many pending add party requests
760
+
761
+ NOTE: For this counter, RELEASE COMPLETE messages that are a
762
+ reply to a previous RELEASE message and contain the same cause
763
+ value, are redundant (for counting purposes) and should not be
764
+ counted.""",
765
+ }, # column
766
+ "atmSigDetectCldPtyEvents" : {
767
+ "nodetype" : "column",
768
+ "moduleName" : "ATM2-MIB",
769
+ "oid" : "1.3.6.1.2.1.37.1.14.1.3.1.9",
770
+ "status" : "current",
771
+ "syntax" : {
772
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
773
+ },
774
+ "access" : "readonly",
775
+ "description" :
776
+ """Number of Called Party Responsible For Unsuccessful Call
777
+ detected on this interface. This counter is incremented when a
778
+ RELEASE, RELEASE COMPLETE (only when not preceded by a RELEASE
779
+ message for the same call), ADD PARTY REJECT, or STATUS message
780
+ that contains one of the following cause code values is
781
+ received (Note: These cause values apply to both UNI3.0 and
782
+ UNI3.1):
783
+
784
+ Cause Value Meaning
785
+
786
+ 17 user busy
787
+ 18 no user responding
788
+ 21 call rejected
789
+ 22 number changed
790
+ 23 user rejects all calls with calling
791
+ line identification restriction (CLIR)
792
+ 27 destination out of order
793
+ 31 normal, unspecified
794
+ 88 incompatible destination
795
+
796
+
797
+ NOTE: For this counter, RELEASE COMPLETE messages that are a
798
+ reply to a previous RELEASE message and contain the same cause
799
+ value, are redundant (for counting purposes) and should not be
800
+
801
+
802
+
803
+ counted.
804
+
805
+ Note: Cause Value #30 'response to STATUS ENQUIRY' was not
806
+ included in this memo since it did not apply to a hard
807
+ failure.""",
808
+ }, # column
809
+ "atmSigEmitCldPtyEvents" : {
810
+ "nodetype" : "column",
811
+ "moduleName" : "ATM2-MIB",
812
+ "oid" : "1.3.6.1.2.1.37.1.14.1.3.1.10",
813
+ "status" : "current",
814
+ "syntax" : {
815
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
816
+ },
817
+ "access" : "readonly",
818
+ "description" :
819
+ """Number of Called Party Responsible For Unsuccessful Call
820
+ transmitted from this interface. This counter is incremented
821
+ when a RELEASE, RELEASE COMPLETE (only when not preceded by a
822
+ RELEASE message for the same call), ADD PARTY REJECT, or STATUS
823
+ message that contains one of the following cause code values is
824
+ transmitted (Note: These cause values apply to both UNI3.0 and
825
+ UNI3.1):
826
+
827
+ Cause Value Meaning
828
+
829
+ 17 user busy
830
+ 18 no user responding
831
+ 21 call rejected
832
+ 22 number changed
833
+ 23 user rejects all calls with calling
834
+ line identification restriction (CLIR)
835
+ 27 destination out of order
836
+ 31 normal, unspecified
837
+ 88 incompatible destination
838
+
839
+ NOTE: For this counter, RELEASE COMPLETE messages that are a
840
+ reply to a previous RELEASE message and contain the same cause
841
+ value, are redundant (for counting purposes) and should not be
842
+ counted.
843
+
844
+ Note: Cause Value #30 'response to STATUS ENQUIRY' was not
845
+ included in this memo since it did not apply to a hard failure.""",
846
+ }, # column
847
+ "atmSigDetectMsgErrors" : {
848
+ "nodetype" : "column",
849
+ "moduleName" : "ATM2-MIB",
850
+ "oid" : "1.3.6.1.2.1.37.1.14.1.3.1.11",
851
+ "status" : "current",
852
+ "syntax" : {
853
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
854
+ },
855
+ "access" : "readonly",
856
+ "description" :
857
+ """Number of Incorrect Messages detected on this interface. The
858
+ Incorrect Messages Counter reflects any sort of incorrect
859
+ information in a message. This includes:
860
+
861
+ - RELEASE, RELEASE COMPLETE, ADD PARTY REJECT,
862
+ and STATUS messages transmitted, that contain any of
863
+ the Cause values listed below.
864
+
865
+ - Ignored messages. These messages are dropped
866
+ because the message was so damaged that it could
867
+ not be further processed. A list of dropped
868
+ messages is compiled below:
869
+
870
+ 1. Message with invalid protocol discriminator
871
+
872
+ 2. Message with errors in the call reference I.E.
873
+ - Bits 5-8 of the first octet not equal to
874
+ '0000'
875
+ - Bits 1-4 of the first octet indicating a
876
+ length other than 3 octets
877
+ - RELEASE COMPLETE message received with a
878
+ call reference that does not relate to a
879
+ call active or in progress
880
+ - SETUP message received with call reference
881
+ flag incorrectly set to 1
882
+ - SETUP message received with a call
883
+ reference for a call that is already
884
+ active or in progress.
885
+
886
+ 3. Message too short
887
+
888
+ The following cause values are monitored by this counter (Note:
889
+ These cause values apply to both UNI3.0 and UNI3.1 unless
890
+ otherwise stated):
891
+
892
+ Cause Value Meaning
893
+
894
+ 10 VPCI/VCI unacceptable (UNI3.0 only)
895
+ 36 VPCI/VCI assignment failure (UNI3.1 only)
896
+ 81 invalid call reference value
897
+ 82 identified channel does not exist
898
+ 89 invalid endpoint reference
899
+ 96 mandatory information element is missing
900
+ 97 message type non-existent or not
901
+ implemented
902
+ 99 information element non-existent or not
903
+ implemented
904
+
905
+
906
+
907
+ 100 invalid information element contents
908
+ 101 message not compatible with call state
909
+ 104 incorrect message length
910
+ 111 protocol error, unspecified
911
+
912
+ NOTE: For this counter, RELEASE COMPLETE messages that are
913
+ a reply to a previous RELEASE message and contain the same
914
+ cause value, are redundant (for counting purposes) and
915
+ should not be counted.""",
916
+ }, # column
917
+ "atmSigEmitMsgErrors" : {
918
+ "nodetype" : "column",
919
+ "moduleName" : "ATM2-MIB",
920
+ "oid" : "1.3.6.1.2.1.37.1.14.1.3.1.12",
921
+ "status" : "current",
922
+ "syntax" : {
923
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
924
+ },
925
+ "access" : "readonly",
926
+ "description" :
927
+ """Number of Incorrect Messages transmitted on this interface.
928
+ The Incorrect Messages Counter reflects any sort of incorrect
929
+ information in a message. This includes:
930
+
931
+ - RELEASE, RELEASE COMPLETE, ADD PARTY REJECT,
932
+ and STATUS messages transmitted or
933
+ received, that contain any of the Cause values
934
+ listed below.
935
+
936
+ - Ignored messages. These messages are dropped
937
+ because the message was so damaged that it could
938
+ not be further processed. A list of dropped
939
+ messages is compiled below:
940
+
941
+ 1. Message with invalid protocol discriminator
942
+
943
+ 2. Message with errors in the call reference I.E.
944
+ - Bits 5-8 of the first octet not equal to
945
+ '0000'
946
+ - Bits 1-4 of the first octet indicating a
947
+ length other than 3 octets
948
+ - RELEASE COMPLETE message received with a
949
+ call reference that does not relate to a
950
+ call active or in progress
951
+ - SETUP message received with call reference
952
+ flag incorrectly set to 1
953
+ - SETUP message received with a call
954
+ reference for a call that is already
955
+ active or in progress.
956
+
957
+ 3. Message too short
958
+
959
+
960
+
961
+ The following cause values are monitored by this counter
962
+ (Note: These cause values apply to both UNI3.0 and UNI3.1
963
+ unless otherwise stated):
964
+
965
+ Cause Value Meaning
966
+
967
+ 10 VPCI/VCI unacceptable (UNI3.0 only)
968
+ 36 VPCI/VCI assignment failure (UNI3.1 only)
969
+ 81 invalid call reference value
970
+ 82 identified channel does not exist
971
+ 89 invalid endpoint reference
972
+ 96 mandatory information element is missing
973
+ 97 message type non-existent or not
974
+ implemented
975
+ 99 information element non-existent or not
976
+ implemented
977
+ 100 invalid information element contents
978
+ 101 message not compatible with call state
979
+ 104 incorrect message length
980
+ 111 protocol error, unspecified
981
+
982
+ NOTE: For this counter, RELEASE COMPLETE messages that are
983
+ a reply to a previous RELEASE message and contain the same
984
+ cause value, are redundant (for counting purposes) and
985
+ should not be counted.""",
986
+ }, # column
987
+ "atmSigDetectClgPtyEvents" : {
988
+ "nodetype" : "column",
989
+ "moduleName" : "ATM2-MIB",
990
+ "oid" : "1.3.6.1.2.1.37.1.14.1.3.1.13",
991
+ "status" : "current",
992
+ "syntax" : {
993
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
994
+ },
995
+ "access" : "readonly",
996
+ "description" :
997
+ """Number of Calling Party Events detected on this interface.
998
+ This counter monitors error events that occur due to the
999
+ originating user doing something wrong. This counter is
1000
+ incremented when a RELEASE, RELEASE COMPLETE (only when not
1001
+ preceded by a RELEASE message for the same call), ADD PARTY
1002
+ REJECT, or STATUS message that contains one of the following
1003
+ cause code values is received (Note: These cause values
1004
+ apply to both UNI3.0 and UNI3.1):
1005
+
1006
+ Cause Value Meaning
1007
+
1008
+ 28 invalid number format (address incomplete)
1009
+ 43 access information discarded
1010
+ 57 bearer capability not authorized
1011
+ 65 bearer capability not implemented
1012
+
1013
+
1014
+
1015
+ 73 unsupported combination of traffic
1016
+ parameters
1017
+ 78 AAL parameters cannot be supported (UNI3.1
1018
+ only)
1019
+ 91 invalid transit network selection
1020
+ 93 AAL parameters cannot be supported (UNI3.0
1021
+ only)
1022
+
1023
+ NOTE: For this counter, RELEASE COMPLETE messages that
1024
+ are a reply to a previous RELEASE message and contain
1025
+ the same cause value, are redundant (for counting purposes)
1026
+ and should not be counted.""",
1027
+ }, # column
1028
+ "atmSigEmitClgPtyEvents" : {
1029
+ "nodetype" : "column",
1030
+ "moduleName" : "ATM2-MIB",
1031
+ "oid" : "1.3.6.1.2.1.37.1.14.1.3.1.14",
1032
+ "status" : "current",
1033
+ "syntax" : {
1034
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1035
+ },
1036
+ "access" : "readonly",
1037
+ "description" :
1038
+ """Number of Calling Party Events transmitted from this interface.
1039
+ This counter monitors error events that occur due to the
1040
+ originating user doing something wrong. This counter is
1041
+ incremented when a RELEASE, RELEASE COMPLETE (only when not
1042
+ preceded by a RELEASE message for the same call), ADD PARTY
1043
+ REJECT, or STATUS message that contains one of the following
1044
+ cause code values is transmitted (Note: These cause values
1045
+ apply to both UNI3.0 and UNI3.1):
1046
+
1047
+ Cause Value Meaning
1048
+
1049
+ 28 invalid number format (address incomplete)
1050
+ 43 access information discarded
1051
+ 57 bearer capability not authorized
1052
+ 65 bearer capability not implemented
1053
+ 73 unsupported combination of traffic
1054
+ parameters
1055
+ 78 AAL parameters cannot be supported (UNI3.1
1056
+ only)
1057
+ 91 invalid transit network selection
1058
+ 93 AAL parameters cannot be supported (UNI3.0
1059
+ only)
1060
+
1061
+ NOTE: For this counter, RELEASE COMPLETE messages that are
1062
+ a reply to a previous RELEASE message and contain the same
1063
+ cause value, are redundant (for counting purposes) and
1064
+ should not be counted.""",
1065
+ }, # column
1066
+ "atmSigDetectTimerExpireds" : {
1067
+ "nodetype" : "column",
1068
+ "moduleName" : "ATM2-MIB",
1069
+ "oid" : "1.3.6.1.2.1.37.1.14.1.3.1.15",
1070
+ "status" : "current",
1071
+ "syntax" : {
1072
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1073
+ },
1074
+ "access" : "readonly",
1075
+ "description" :
1076
+ """Number of Timer Expiries detected on this interface. The Timer
1077
+ Expiries Counter provides a count of network timer expiries, and
1078
+ to some extent, host or switch timer expiries. The conditions
1079
+ for incrementing this counter are:
1080
+
1081
+ - Expiry of any network timer
1082
+
1083
+ - Receipt of a RELEASE or RELEASE COMPLETE
1084
+ message with Cause #102, 'recovery on
1085
+ timer expiry'.
1086
+
1087
+ NOTE: For this counter, RELEASE COMPLETE messages that are
1088
+ a reply to a previous RELEASE message and contain the same
1089
+ cause value, are redundant (for counting purposes) and
1090
+ should not be counted.""",
1091
+ }, # column
1092
+ "atmSigEmitTimerExpireds" : {
1093
+ "nodetype" : "column",
1094
+ "moduleName" : "ATM2-MIB",
1095
+ "oid" : "1.3.6.1.2.1.37.1.14.1.3.1.16",
1096
+ "status" : "current",
1097
+ "syntax" : {
1098
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1099
+ },
1100
+ "access" : "readonly",
1101
+ "description" :
1102
+ """Number of Timer Expiries transmitted from this interface.
1103
+ The Timer Expiries Counter provides a count of network timer
1104
+ expiries, and to some extent, host or switch timer expiries.
1105
+ The conditions for incrementing this counter are:
1106
+
1107
+ - Expiry of any network timer
1108
+
1109
+ - Receipt of a RELEASE or RELEASE COMPLETE
1110
+ message with Cause #102, 'recovery on
1111
+ timer expiry'.
1112
+
1113
+ NOTE: For this counter, RELEASE COMPLETE messages that are a
1114
+ reply to a previous RELEASE message and contain the same cause
1115
+ value, are redundant (for counting purposes) and should not be
1116
+ counted.""",
1117
+ }, # column
1118
+ "atmSigDetectRestarts" : {
1119
+ "nodetype" : "column",
1120
+ "moduleName" : "ATM2-MIB",
1121
+ "oid" : "1.3.6.1.2.1.37.1.14.1.3.1.17",
1122
+ "status" : "current",
1123
+ "syntax" : {
1124
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1125
+ },
1126
+ "access" : "readonly",
1127
+ "description" :
1128
+ """Number of Restart Activity errors detected on this interface.
1129
+ The Restart Activity Counter provides a count of host, switch,
1130
+ or network restart activity. This counter is incremented when
1131
+ receiving a RESTART message.""",
1132
+ }, # column
1133
+ "atmSigEmitRestarts" : {
1134
+ "nodetype" : "column",
1135
+ "moduleName" : "ATM2-MIB",
1136
+ "oid" : "1.3.6.1.2.1.37.1.14.1.3.1.18",
1137
+ "status" : "current",
1138
+ "syntax" : {
1139
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1140
+ },
1141
+ "access" : "readonly",
1142
+ "description" :
1143
+ """Number of Restart Activity errors transmitted from this
1144
+ interface. The Restart Activity Counter provides a count of
1145
+ host, switch, or network restart activity. This counter is
1146
+ incremented when transmitting a RESTART message.""",
1147
+ }, # column
1148
+ "atmSigInEstabls" : {
1149
+ "nodetype" : "column",
1150
+ "moduleName" : "ATM2-MIB",
1151
+ "oid" : "1.3.6.1.2.1.37.1.14.1.3.1.19",
1152
+ "status" : "current",
1153
+ "syntax" : {
1154
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1155
+ },
1156
+ "access" : "readonly",
1157
+ "description" :
1158
+ """Number of SVCs established at this signalling entity for
1159
+ incoming connections.""",
1160
+ }, # column
1161
+ "atmSigOutEstabls" : {
1162
+ "nodetype" : "column",
1163
+ "moduleName" : "ATM2-MIB",
1164
+ "oid" : "1.3.6.1.2.1.37.1.14.1.3.1.20",
1165
+ "status" : "current",
1166
+ "syntax" : {
1167
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1168
+ },
1169
+ "access" : "readonly",
1170
+ "description" :
1171
+ """Number of SVCs established at this signalling entity for
1172
+ outgoing connections.""",
1173
+ }, # column
1174
+ "atmSigSupportTable" : {
1175
+ "nodetype" : "table",
1176
+ "moduleName" : "ATM2-MIB",
1177
+ "oid" : "1.3.6.1.2.1.37.1.14.1.4",
1178
+ "status" : "current",
1179
+ "description" :
1180
+ """This table contains ATM local interface configuration
1181
+ parameters, one entry per ATM signalling interface.""",
1182
+ }, # table
1183
+ "atmSigSupportEntry" : {
1184
+ "nodetype" : "row",
1185
+ "moduleName" : "ATM2-MIB",
1186
+ "oid" : "1.3.6.1.2.1.37.1.14.1.4.1",
1187
+ "status" : "current",
1188
+ "linkage" : [
1189
+ "ifIndex",
1190
+ ],
1191
+ "description" :
1192
+ """This list contains signalling configuration parameters
1193
+ and state variables.""",
1194
+ }, # row
1195
+ "atmSigSupportClgPtyNumDel" : {
1196
+ "nodetype" : "column",
1197
+ "moduleName" : "ATM2-MIB",
1198
+ "oid" : "1.3.6.1.2.1.37.1.14.1.4.1.1",
1199
+ "status" : "current",
1200
+ "syntax" : {
1201
+ "type" : {
1202
+ "basetype" : "Enumeration",
1203
+ "enabled" : {
1204
+ "nodetype" : "namednumber",
1205
+ "number" : "1"
1206
+ },
1207
+ "disabled" : {
1208
+ "nodetype" : "namednumber",
1209
+ "number" : "2"
1210
+ },
1211
+ },
1212
+ },
1213
+ "access" : "readwrite",
1214
+ "description" :
1215
+ """This object indicates whether the Calling Party Number
1216
+ Information Element is transferred to the called party
1217
+ address. The value of this object can be:
1218
+
1219
+ - enabled(1) This Information Element is transferred
1220
+ to the called party
1221
+
1222
+ - disabled(2) This Information Element is NOT
1223
+ transferred to the called party.""",
1224
+ }, # column
1225
+ "atmSigSupportClgPtySubAddr" : {
1226
+ "nodetype" : "column",
1227
+ "moduleName" : "ATM2-MIB",
1228
+ "oid" : "1.3.6.1.2.1.37.1.14.1.4.1.2",
1229
+ "status" : "current",
1230
+ "syntax" : {
1231
+ "type" : {
1232
+ "basetype" : "Enumeration",
1233
+ "enabled" : {
1234
+ "nodetype" : "namednumber",
1235
+ "number" : "1"
1236
+ },
1237
+ "disabled" : {
1238
+ "nodetype" : "namednumber",
1239
+ "number" : "2"
1240
+ },
1241
+ },
1242
+ },
1243
+ "access" : "readwrite",
1244
+ "description" :
1245
+ """This object indicates whether to accept and transfer the Calling
1246
+ Party Subaddress Information Element from the calling party to
1247
+ the called party. Calling party subaddress information shall
1248
+ only be transferred to the called party if calling party number
1249
+ delivery is enabled (i.e., atmSigSupportClgPtyNumDel =
1250
+ 'enabled(1)'. The value of this object can be:
1251
+
1252
+ - enabled(1) This Information Element is transferred
1253
+ to the called party
1254
+
1255
+ - disabled(2) This Information Element is NOT
1256
+ transferred to the called party.""",
1257
+ }, # column
1258
+ "atmSigSupportCldPtySubAddr" : {
1259
+ "nodetype" : "column",
1260
+ "moduleName" : "ATM2-MIB",
1261
+ "oid" : "1.3.6.1.2.1.37.1.14.1.4.1.3",
1262
+ "status" : "current",
1263
+ "syntax" : {
1264
+ "type" : {
1265
+ "basetype" : "Enumeration",
1266
+ "enabled" : {
1267
+ "nodetype" : "namednumber",
1268
+ "number" : "1"
1269
+ },
1270
+ "disabled" : {
1271
+ "nodetype" : "namednumber",
1272
+ "number" : "2"
1273
+ },
1274
+ },
1275
+ },
1276
+ "access" : "readwrite",
1277
+ "description" :
1278
+ """This object indicates whether to accept, transfer, and deliver
1279
+ the Called Party Subaddress Information Element from the calling
1280
+ party to the called party. The value of this object can be:
1281
+
1282
+ - enabled(1) This Information Element is transferred
1283
+ to the called party
1284
+
1285
+ - disabled(2) This Information Element is NOT
1286
+ transferred to the called party.""",
1287
+ }, # column
1288
+ "atmSigSupportHiLyrInfo" : {
1289
+ "nodetype" : "column",
1290
+ "moduleName" : "ATM2-MIB",
1291
+ "oid" : "1.3.6.1.2.1.37.1.14.1.4.1.4",
1292
+ "status" : "current",
1293
+ "syntax" : {
1294
+ "type" : {
1295
+ "basetype" : "Enumeration",
1296
+ "enabled" : {
1297
+ "nodetype" : "namednumber",
1298
+ "number" : "1"
1299
+ },
1300
+ "disabled" : {
1301
+ "nodetype" : "namednumber",
1302
+ "number" : "2"
1303
+ },
1304
+ },
1305
+ },
1306
+ "access" : "readwrite",
1307
+ "description" :
1308
+ """This object indicates whether to accept, transfer, and deliver
1309
+ the Broadband High Layer Information Element from the calling
1310
+ party to the called party. The value of this object can be:
1311
+
1312
+ - enabled(1) This Information Element is transferred
1313
+ to the called party
1314
+
1315
+
1316
+
1317
+
1318
+ - disabled(2) This Information Element is NOT
1319
+ transferred to the called party.""",
1320
+ }, # column
1321
+ "atmSigSupportLoLyrInfo" : {
1322
+ "nodetype" : "column",
1323
+ "moduleName" : "ATM2-MIB",
1324
+ "oid" : "1.3.6.1.2.1.37.1.14.1.4.1.5",
1325
+ "status" : "current",
1326
+ "syntax" : {
1327
+ "type" : {
1328
+ "basetype" : "Enumeration",
1329
+ "enabled" : {
1330
+ "nodetype" : "namednumber",
1331
+ "number" : "1"
1332
+ },
1333
+ "disabled" : {
1334
+ "nodetype" : "namednumber",
1335
+ "number" : "2"
1336
+ },
1337
+ },
1338
+ },
1339
+ "access" : "readwrite",
1340
+ "description" :
1341
+ """This object indicates whether to accept, transfer, and deliver
1342
+ the Broadband Low Layer Information Element from the calling
1343
+ party to the called party. The value of this object can be:
1344
+
1345
+ - enabled(1) This Information Element is transferred
1346
+ to the called party
1347
+
1348
+ - disabled(2) This Information Element is NOT
1349
+ transferred to the called party.""",
1350
+ }, # column
1351
+ "atmSigSupportBlliRepeatInd" : {
1352
+ "nodetype" : "column",
1353
+ "moduleName" : "ATM2-MIB",
1354
+ "oid" : "1.3.6.1.2.1.37.1.14.1.4.1.6",
1355
+ "status" : "current",
1356
+ "syntax" : {
1357
+ "type" : {
1358
+ "basetype" : "Enumeration",
1359
+ "enabled" : {
1360
+ "nodetype" : "namednumber",
1361
+ "number" : "1"
1362
+ },
1363
+ "disabled" : {
1364
+ "nodetype" : "namednumber",
1365
+ "number" : "2"
1366
+ },
1367
+ },
1368
+ },
1369
+ "access" : "readwrite",
1370
+ "description" :
1371
+ """This object indicates whether to accept, transfer, and deliver
1372
+ the Broadband Repeat Indicator with two or three instances of
1373
+ the Broadband Low Layer Information Element for low layer
1374
+ information selection from the calling party to the called
1375
+ party. This object's value should always be disabled(2) if
1376
+ the value of atmSigSupportLolyrInfo is disabled(2).
1377
+
1378
+ The value of this object can be:
1379
+
1380
+ - enabled(1) This Information Element is transferred
1381
+ to the called party
1382
+
1383
+ - disabled(2) This Information Element is NOT
1384
+ transferred to the called party.""",
1385
+ }, # column
1386
+ "atmSigSupportAALInfo" : {
1387
+ "nodetype" : "column",
1388
+ "moduleName" : "ATM2-MIB",
1389
+ "oid" : "1.3.6.1.2.1.37.1.14.1.4.1.7",
1390
+ "status" : "current",
1391
+ "syntax" : {
1392
+ "type" : {
1393
+ "basetype" : "Enumeration",
1394
+ "enabled" : {
1395
+ "nodetype" : "namednumber",
1396
+ "number" : "1"
1397
+ },
1398
+ "disabled" : {
1399
+ "nodetype" : "namednumber",
1400
+ "number" : "2"
1401
+ },
1402
+ },
1403
+ },
1404
+ "access" : "readwrite",
1405
+ "description" :
1406
+ """This object indicates whether to accept, transfer, and deliver
1407
+ the ATM Adaptation Layer Parameters Information Element from the
1408
+ calling party to the called party. The value of this object can
1409
+ be:
1410
+
1411
+ - enabled(1) This Information Element is transferred
1412
+ to the called party
1413
+
1414
+ - disabled(2) This Information Element is NOT
1415
+ transferred to the called party.""",
1416
+ }, # column
1417
+ "atmSigSupportPrefCarrier" : {
1418
+ "nodetype" : "column",
1419
+ "moduleName" : "ATM2-MIB",
1420
+ "oid" : "1.3.6.1.2.1.37.1.14.1.4.1.8",
1421
+ "status" : "current",
1422
+ "syntax" : {
1423
+ "type" : {
1424
+ "basetype" : "OctetString",
1425
+ "ranges" : [
1426
+ {
1427
+ "min" : "0",
1428
+ "max" : "0"
1429
+ },
1430
+ {
1431
+ "min" : "4",
1432
+ "max" : "4"
1433
+ },
1434
+ ],
1435
+ "range" : {
1436
+ "min" : "0",
1437
+ "max" : "4"
1438
+ },
1439
+ },
1440
+ },
1441
+ "access" : "readwrite",
1442
+ "description" :
1443
+ """This parameter identifies the carrier to which intercarrier
1444
+ calls originated from this interface are routed when transit
1445
+ network selection information is not provided by the calling
1446
+ party. If a Carrier Identification Code (CIC) is used the
1447
+ parameter shall contain the CIC. For three-digit CICs, the first
1448
+ octet shall be '0' and the CIC is contained in the three
1449
+ following octets. If the preferred carrier feature is not
1450
+ supported the value is a zero-length string.""",
1451
+ }, # column
1452
+ "atmSigDescrParamTable" : {
1453
+ "nodetype" : "table",
1454
+ "moduleName" : "ATM2-MIB",
1455
+ "oid" : "1.3.6.1.2.1.37.1.14.1.5",
1456
+ "status" : "current",
1457
+ "description" :
1458
+ """A table contains signalling capabilities of VCLs except the
1459
+ Traffic Descriptor. Traffic descriptors are described in
1460
+ the atmTrafficDescrParamTable.""",
1461
+ "reference" :
1462
+ """ATM User-Network Interface Specification, Version 3.1 (UNI
1463
+ 3.1), September 1994, Section 5.4.5 Variable Length
1464
+ Information Elements.""",
1465
+ }, # table
1466
+ "atmSigDescrParamEntry" : {
1467
+ "nodetype" : "row",
1468
+ "moduleName" : "ATM2-MIB",
1469
+ "oid" : "1.3.6.1.2.1.37.1.14.1.5.1",
1470
+ "create" : "true",
1471
+ "status" : "current",
1472
+ "linkage" : [
1473
+ "atmSigDescrParamIndex",
1474
+ ],
1475
+ "description" :
1476
+ """Each entry in this table represents a
1477
+ set of signalling capabilities that can
1478
+ be applied to a VCL. There is no requirement
1479
+ for unique entries, except that the index must
1480
+ be unique.""",
1481
+ }, # row
1482
+ "atmSigDescrParamIndex" : {
1483
+ "nodetype" : "column",
1484
+ "moduleName" : "ATM2-MIB",
1485
+ "oid" : "1.3.6.1.2.1.37.1.14.1.5.1.1",
1486
+ "status" : "current",
1487
+ "syntax" : {
1488
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmSigDescrParamIndex"},
1489
+ },
1490
+ "access" : "noaccess",
1491
+ "description" :
1492
+ """The value of this object is used by the
1493
+ atmVclGenSigDescrIndex object in the atmVclGenTable to
1494
+ identify a row in this table.""",
1495
+ }, # column
1496
+ "atmSigDescrParamAalType" : {
1497
+ "nodetype" : "column",
1498
+ "moduleName" : "ATM2-MIB",
1499
+ "oid" : "1.3.6.1.2.1.37.1.14.1.5.1.2",
1500
+ "status" : "current",
1501
+ "syntax" : {
1502
+ "type" : {
1503
+ "basetype" : "Enumeration",
1504
+ "other" : {
1505
+ "nodetype" : "namednumber",
1506
+ "number" : "1"
1507
+ },
1508
+ "aal1" : {
1509
+ "nodetype" : "namednumber",
1510
+ "number" : "2"
1511
+ },
1512
+ "aal34" : {
1513
+ "nodetype" : "namednumber",
1514
+ "number" : "3"
1515
+ },
1516
+ "aal5" : {
1517
+ "nodetype" : "namednumber",
1518
+ "number" : "4"
1519
+ },
1520
+ "userDefined" : {
1521
+ "nodetype" : "namednumber",
1522
+ "number" : "5"
1523
+ },
1524
+ "aal2" : {
1525
+ "nodetype" : "namednumber",
1526
+ "number" : "6"
1527
+ },
1528
+ },
1529
+ },
1530
+ "access" : "readwrite",
1531
+ "default" : "other",
1532
+ "description" :
1533
+ """The AAL type. The value of this object is set to other(1)
1534
+ when not defined.""",
1535
+ }, # column
1536
+ "atmSigDescrParamAalSscsType" : {
1537
+ "nodetype" : "column",
1538
+ "moduleName" : "ATM2-MIB",
1539
+ "oid" : "1.3.6.1.2.1.37.1.14.1.5.1.3",
1540
+ "status" : "current",
1541
+ "syntax" : {
1542
+ "type" : {
1543
+ "basetype" : "Enumeration",
1544
+ "other" : {
1545
+ "nodetype" : "namednumber",
1546
+ "number" : "1"
1547
+ },
1548
+ "assured" : {
1549
+ "nodetype" : "namednumber",
1550
+ "number" : "2"
1551
+ },
1552
+ "nonassured" : {
1553
+ "nodetype" : "namednumber",
1554
+ "number" : "3"
1555
+ },
1556
+ "frameRelay" : {
1557
+ "nodetype" : "namednumber",
1558
+ "number" : "4"
1559
+ },
1560
+ "null" : {
1561
+ "nodetype" : "namednumber",
1562
+ "number" : "5"
1563
+ },
1564
+ },
1565
+ },
1566
+ "access" : "readwrite",
1567
+ "default" : "other",
1568
+ "description" :
1569
+ """The SSCS type used by this entry.""",
1570
+ }, # column
1571
+ "atmSigDescrParamBhliType" : {
1572
+ "nodetype" : "column",
1573
+ "moduleName" : "ATM2-MIB",
1574
+ "oid" : "1.3.6.1.2.1.37.1.14.1.5.1.4",
1575
+ "status" : "current",
1576
+ "syntax" : {
1577
+ "type" : {
1578
+ "basetype" : "Enumeration",
1579
+ "other" : {
1580
+ "nodetype" : "namednumber",
1581
+ "number" : "1"
1582
+ },
1583
+ "iso" : {
1584
+ "nodetype" : "namednumber",
1585
+ "number" : "2"
1586
+ },
1587
+ "user" : {
1588
+ "nodetype" : "namednumber",
1589
+ "number" : "3"
1590
+ },
1591
+ "hiProfile" : {
1592
+ "nodetype" : "namednumber",
1593
+ "number" : "4"
1594
+ },
1595
+ "vendorSpecific" : {
1596
+ "nodetype" : "namednumber",
1597
+ "number" : "5"
1598
+ },
1599
+ },
1600
+ },
1601
+ "access" : "readwrite",
1602
+ "default" : "other",
1603
+ "description" :
1604
+ """The Broadband high layer type.""",
1605
+ }, # column
1606
+ "atmSigDescrParamBhliInfo" : {
1607
+ "nodetype" : "column",
1608
+ "moduleName" : "ATM2-MIB",
1609
+ "oid" : "1.3.6.1.2.1.37.1.14.1.5.1.5",
1610
+ "status" : "current",
1611
+ "syntax" : {
1612
+ "type" : {
1613
+ "basetype" : "OctetString",
1614
+ "ranges" : [
1615
+ {
1616
+ "min" : "0",
1617
+ "max" : "8"
1618
+ },
1619
+ ],
1620
+ "range" : {
1621
+ "min" : "0",
1622
+ "max" : "8"
1623
+ },
1624
+ },
1625
+ },
1626
+ "access" : "readwrite",
1627
+ "default" : "",
1628
+ "description" :
1629
+ """The Broadband high layer information. When
1630
+ atmSigDescrParamBhliType is set to iso(2), the value of this
1631
+ object is a zero length string. When
1632
+ atmSigDescrParamBhliType is set to user(3), the value of
1633
+ this object is an octet string with length ranging from 0 to
1634
+ 8. When atmSigDescrParamBhliType is set to hiProfile(4),
1635
+ the value of this object is a length of 4 octet string
1636
+ containing user to user profile identifier. When
1637
+ atmSigDescrParamBhliType is set to vendorSpecific(5), the
1638
+ value of this object is a length of 7 octet string, where
1639
+ the most significant 3 octets consist of a globally-
1640
+ administered OUI, and the least significant 4 octets are the
1641
+ vender administered application OUI.""",
1642
+ }, # column
1643
+ "atmSigDescrParamBbcConnConf" : {
1644
+ "nodetype" : "column",
1645
+ "moduleName" : "ATM2-MIB",
1646
+ "oid" : "1.3.6.1.2.1.37.1.14.1.5.1.6",
1647
+ "status" : "current",
1648
+ "syntax" : {
1649
+ "type" : {
1650
+ "basetype" : "Enumeration",
1651
+ "ptp" : {
1652
+ "nodetype" : "namednumber",
1653
+ "number" : "1"
1654
+ },
1655
+ "ptmp" : {
1656
+ "nodetype" : "namednumber",
1657
+ "number" : "2"
1658
+ },
1659
+ },
1660
+ },
1661
+ "access" : "readwrite",
1662
+ "default" : "ptp",
1663
+ "description" :
1664
+ """The Broadband bearer capability user plane connection
1665
+ configuration parameter.""",
1666
+ }, # column
1667
+ "atmSigDescrParamBlliLayer2" : {
1668
+ "nodetype" : "column",
1669
+ "moduleName" : "ATM2-MIB",
1670
+ "oid" : "1.3.6.1.2.1.37.1.14.1.5.1.7",
1671
+ "status" : "current",
1672
+ "syntax" : {
1673
+ "type" : {
1674
+ "basetype" : "Enumeration",
1675
+ "other" : {
1676
+ "nodetype" : "namednumber",
1677
+ "number" : "1"
1678
+ },
1679
+ "iso1745" : {
1680
+ "nodetype" : "namednumber",
1681
+ "number" : "2"
1682
+ },
1683
+ "q921" : {
1684
+ "nodetype" : "namednumber",
1685
+ "number" : "3"
1686
+ },
1687
+ "x25linklayer" : {
1688
+ "nodetype" : "namednumber",
1689
+ "number" : "4"
1690
+ },
1691
+ "x25multilink" : {
1692
+ "nodetype" : "namednumber",
1693
+ "number" : "5"
1694
+ },
1695
+ "lapb" : {
1696
+ "nodetype" : "namednumber",
1697
+ "number" : "6"
1698
+ },
1699
+ "hdlcArm" : {
1700
+ "nodetype" : "namednumber",
1701
+ "number" : "7"
1702
+ },
1703
+ "hdlcNrm" : {
1704
+ "nodetype" : "namednumber",
1705
+ "number" : "8"
1706
+ },
1707
+ "hdlcAbm" : {
1708
+ "nodetype" : "namednumber",
1709
+ "number" : "9"
1710
+ },
1711
+ "iso88022" : {
1712
+ "nodetype" : "namednumber",
1713
+ "number" : "10"
1714
+ },
1715
+ "x75slp" : {
1716
+ "nodetype" : "namednumber",
1717
+ "number" : "11"
1718
+ },
1719
+ "q922" : {
1720
+ "nodetype" : "namednumber",
1721
+ "number" : "12"
1722
+ },
1723
+ "userDef" : {
1724
+ "nodetype" : "namednumber",
1725
+ "number" : "13"
1726
+ },
1727
+ "iso7776" : {
1728
+ "nodetype" : "namednumber",
1729
+ "number" : "14"
1730
+ },
1731
+ },
1732
+ },
1733
+ "access" : "readwrite",
1734
+ "default" : "other",
1735
+ "description" :
1736
+ """The Broadband low layer information, protocol type of layer
1737
+ 2. The value of this object is other(1) if layer 2 protocol
1738
+ is not used.""",
1739
+ }, # column
1740
+ "atmSigDescrParamBlliLayer3" : {
1741
+ "nodetype" : "column",
1742
+ "moduleName" : "ATM2-MIB",
1743
+ "oid" : "1.3.6.1.2.1.37.1.14.1.5.1.8",
1744
+ "status" : "current",
1745
+ "syntax" : {
1746
+ "type" : {
1747
+ "basetype" : "Enumeration",
1748
+ "other" : {
1749
+ "nodetype" : "namednumber",
1750
+ "number" : "1"
1751
+ },
1752
+ "x25pkt" : {
1753
+ "nodetype" : "namednumber",
1754
+ "number" : "2"
1755
+ },
1756
+ "isoiec8208" : {
1757
+ "nodetype" : "namednumber",
1758
+ "number" : "3"
1759
+ },
1760
+ "x223iso8878" : {
1761
+ "nodetype" : "namednumber",
1762
+ "number" : "4"
1763
+ },
1764
+ "isoiec8473" : {
1765
+ "nodetype" : "namednumber",
1766
+ "number" : "5"
1767
+ },
1768
+ "t70" : {
1769
+ "nodetype" : "namednumber",
1770
+ "number" : "6"
1771
+ },
1772
+ "tr9577" : {
1773
+ "nodetype" : "namednumber",
1774
+ "number" : "7"
1775
+ },
1776
+ "userDef" : {
1777
+ "nodetype" : "namednumber",
1778
+ "number" : "8"
1779
+ },
1780
+ },
1781
+ },
1782
+ "access" : "readwrite",
1783
+ "default" : "other",
1784
+ "description" :
1785
+ """The Broadband low layer information, protocol type of layer
1786
+
1787
+
1788
+
1789
+ 3. The value of this object is other(1) if layer 3 protocol
1790
+ is not used.""",
1791
+ }, # column
1792
+ "atmSigDescrParamBlliPktSize" : {
1793
+ "nodetype" : "column",
1794
+ "moduleName" : "ATM2-MIB",
1795
+ "oid" : "1.3.6.1.2.1.37.1.14.1.5.1.9",
1796
+ "status" : "current",
1797
+ "syntax" : {
1798
+ "type" : {
1799
+ "basetype" : "Enumeration",
1800
+ "other" : {
1801
+ "nodetype" : "namednumber",
1802
+ "number" : "1"
1803
+ },
1804
+ "s16" : {
1805
+ "nodetype" : "namednumber",
1806
+ "number" : "2"
1807
+ },
1808
+ "s32" : {
1809
+ "nodetype" : "namednumber",
1810
+ "number" : "3"
1811
+ },
1812
+ "s64" : {
1813
+ "nodetype" : "namednumber",
1814
+ "number" : "4"
1815
+ },
1816
+ "s128" : {
1817
+ "nodetype" : "namednumber",
1818
+ "number" : "5"
1819
+ },
1820
+ "s256" : {
1821
+ "nodetype" : "namednumber",
1822
+ "number" : "6"
1823
+ },
1824
+ "s512" : {
1825
+ "nodetype" : "namednumber",
1826
+ "number" : "7"
1827
+ },
1828
+ "s1024" : {
1829
+ "nodetype" : "namednumber",
1830
+ "number" : "8"
1831
+ },
1832
+ "s2048" : {
1833
+ "nodetype" : "namednumber",
1834
+ "number" : "9"
1835
+ },
1836
+ "s4096" : {
1837
+ "nodetype" : "namednumber",
1838
+ "number" : "10"
1839
+ },
1840
+ },
1841
+ },
1842
+ "access" : "readwrite",
1843
+ "default" : "other",
1844
+ "description" :
1845
+ """The default packet size defined in B-LLI.""",
1846
+ }, # column
1847
+ "atmSigDescrParamBlliSnapId" : {
1848
+ "nodetype" : "column",
1849
+ "moduleName" : "ATM2-MIB",
1850
+ "oid" : "1.3.6.1.2.1.37.1.14.1.5.1.10",
1851
+ "status" : "current",
1852
+ "syntax" : {
1853
+ "type" : {
1854
+ "basetype" : "Enumeration",
1855
+ "other" : {
1856
+ "nodetype" : "namednumber",
1857
+ "number" : "1"
1858
+ },
1859
+ "true" : {
1860
+ "nodetype" : "namednumber",
1861
+ "number" : "2"
1862
+ },
1863
+ "false" : {
1864
+ "nodetype" : "namednumber",
1865
+ "number" : "3"
1866
+ },
1867
+ },
1868
+ },
1869
+ "access" : "readwrite",
1870
+ "default" : "other",
1871
+ "description" :
1872
+ """The SNAP ID used for Broadband low layer protocol layer 3.
1873
+ The value of this object is other(1) if
1874
+ atmSigDescrParamBlliLayer3 is set to other(1).""",
1875
+ }, # column
1876
+ "atmSigDescrParamBlliOuiPid" : {
1877
+ "nodetype" : "column",
1878
+ "moduleName" : "ATM2-MIB",
1879
+ "oid" : "1.3.6.1.2.1.37.1.14.1.5.1.11",
1880
+ "status" : "current",
1881
+ "syntax" : {
1882
+ "type" : {
1883
+ "basetype" : "OctetString",
1884
+ "ranges" : [
1885
+ {
1886
+ "min" : "0",
1887
+ "max" : "0"
1888
+ },
1889
+ {
1890
+ "min" : "5",
1891
+ "max" : "5"
1892
+ },
1893
+ ],
1894
+ "range" : {
1895
+ "min" : "0",
1896
+ "max" : "5"
1897
+ },
1898
+ },
1899
+ },
1900
+ "access" : "readwrite",
1901
+ "default" : "",
1902
+ "description" :
1903
+ """The OUI/PID encoding for Broadband low layer protocol layer
1904
+ 3. The value of this object is a zero length string if
1905
+ atmSigDescrParamBlliLayer3 is set to other(1). When used,
1906
+ it is always 5 octets with the most significant octet as the
1907
+ OUI Octet 1 and the least significant octet as the PID Octet
1908
+ 2.""",
1909
+ }, # column
1910
+ "atmSigDescrParamRowStatus" : {
1911
+ "nodetype" : "column",
1912
+ "moduleName" : "ATM2-MIB",
1913
+ "oid" : "1.3.6.1.2.1.37.1.14.1.5.1.12",
1914
+ "status" : "current",
1915
+ "syntax" : {
1916
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1917
+ },
1918
+ "access" : "readwrite",
1919
+ "description" :
1920
+ """This object is used to create and delete rows in the
1921
+ atmSigDescrParamTable.""",
1922
+ }, # column
1923
+ "atmIfRegisteredAddrTable" : {
1924
+ "nodetype" : "table",
1925
+ "moduleName" : "ATM2-MIB",
1926
+ "oid" : "1.3.6.1.2.1.37.1.14.1.6",
1927
+ "status" : "current",
1928
+ "description" :
1929
+ """This table contains a list of ATM addresses that can be used for
1930
+ calls to and from a given interface by a switch or service. The
1931
+ ATM addresses are either registered by the endsystem via ILMI or
1932
+ statically configured. This table does not expose PNNI
1933
+ reachability information. ILMI registered addresses cannot be
1934
+ deleted using this table. This table only applies to switches
1935
+ and network services.""",
1936
+ }, # table
1937
+ "atmIfRegisteredAddrEntry" : {
1938
+ "nodetype" : "row",
1939
+ "moduleName" : "ATM2-MIB",
1940
+ "oid" : "1.3.6.1.2.1.37.1.14.1.6.1",
1941
+ "create" : "true",
1942
+ "status" : "current",
1943
+ "linkage" : [
1944
+ "ifIndex",
1945
+ "atmIfRegAddrAddress",
1946
+ ],
1947
+ "description" :
1948
+ """An entry in the ATM Interface Registered Address table.""",
1949
+ }, # row
1950
+ "atmIfRegAddrAddress" : {
1951
+ "nodetype" : "column",
1952
+ "moduleName" : "ATM2-MIB",
1953
+ "oid" : "1.3.6.1.2.1.37.1.14.1.6.1.1",
1954
+ "status" : "current",
1955
+ "syntax" : {
1956
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmAddr"},
1957
+ },
1958
+ "access" : "noaccess",
1959
+ "description" :
1960
+ """An address registered for a given switch or service interface.""",
1961
+ }, # column
1962
+ "atmIfRegAddrAddressSource" : {
1963
+ "nodetype" : "column",
1964
+ "moduleName" : "ATM2-MIB",
1965
+ "oid" : "1.3.6.1.2.1.37.1.14.1.6.1.2",
1966
+ "status" : "current",
1967
+ "syntax" : {
1968
+ "type" : {
1969
+ "basetype" : "Enumeration",
1970
+ "other" : {
1971
+ "nodetype" : "namednumber",
1972
+ "number" : "1"
1973
+ },
1974
+ "static" : {
1975
+ "nodetype" : "namednumber",
1976
+ "number" : "2"
1977
+ },
1978
+ "dynamic" : {
1979
+ "nodetype" : "namednumber",
1980
+ "number" : "3"
1981
+ },
1982
+ },
1983
+ },
1984
+ "access" : "readonly",
1985
+ "description" :
1986
+ """The type of address source for a given ATM Address. The value
1987
+ dynamic(3) is indicated when ILMI is used.""",
1988
+ }, # column
1989
+ "atmIfRegAddrOrgScope" : {
1990
+ "nodetype" : "column",
1991
+ "moduleName" : "ATM2-MIB",
1992
+ "oid" : "1.3.6.1.2.1.37.1.14.1.6.1.3",
1993
+ "status" : "current",
1994
+ "syntax" : {
1995
+ "type" : {
1996
+ "basetype" : "Enumeration",
1997
+ "localNetwork" : {
1998
+ "nodetype" : "namednumber",
1999
+ "number" : "1"
2000
+ },
2001
+ "localNetworkPlusOne" : {
2002
+ "nodetype" : "namednumber",
2003
+ "number" : "2"
2004
+ },
2005
+ "localNetworkPlusTwo" : {
2006
+ "nodetype" : "namednumber",
2007
+ "number" : "3"
2008
+ },
2009
+ "siteMinusOne" : {
2010
+ "nodetype" : "namednumber",
2011
+ "number" : "4"
2012
+ },
2013
+ "intraSite" : {
2014
+ "nodetype" : "namednumber",
2015
+ "number" : "5"
2016
+ },
2017
+ "sitePlusOne" : {
2018
+ "nodetype" : "namednumber",
2019
+ "number" : "6"
2020
+ },
2021
+ "organizationMinusOne" : {
2022
+ "nodetype" : "namednumber",
2023
+ "number" : "7"
2024
+ },
2025
+ "intraOrganization" : {
2026
+ "nodetype" : "namednumber",
2027
+ "number" : "8"
2028
+ },
2029
+ "organizationPlusOne" : {
2030
+ "nodetype" : "namednumber",
2031
+ "number" : "9"
2032
+ },
2033
+ "communityMinusOne" : {
2034
+ "nodetype" : "namednumber",
2035
+ "number" : "10"
2036
+ },
2037
+ "intraCommunity" : {
2038
+ "nodetype" : "namednumber",
2039
+ "number" : "11"
2040
+ },
2041
+ "communityPlusOne" : {
2042
+ "nodetype" : "namednumber",
2043
+ "number" : "12"
2044
+ },
2045
+ "regional" : {
2046
+ "nodetype" : "namednumber",
2047
+ "number" : "13"
2048
+ },
2049
+ "interRegional" : {
2050
+ "nodetype" : "namednumber",
2051
+ "number" : "14"
2052
+ },
2053
+ "global" : {
2054
+ "nodetype" : "namednumber",
2055
+ "number" : "15"
2056
+ },
2057
+ },
2058
+ },
2059
+ "access" : "readwrite",
2060
+ "description" :
2061
+ """This object indicates the organizational scope for
2062
+ the referenced address. The information of the
2063
+ referenced address shall not be distributed outside
2064
+ the indicated scope. Refer to Annex 5.3 of ATM
2065
+ Forum UNI Signalling 4.0 for guidelines regarding
2066
+ the use of organizational scopes.
2067
+
2068
+ This value cannot be configured for ILMI-registered
2069
+ addresses.
2070
+
2071
+ The default values for organizational scope are
2072
+ localNetwork(1) for ATM group addresses, and
2073
+ global(15) for individual addresses.""",
2074
+ }, # column
2075
+ "atmIfRegAddrRowStatus" : {
2076
+ "nodetype" : "column",
2077
+ "moduleName" : "ATM2-MIB",
2078
+ "oid" : "1.3.6.1.2.1.37.1.14.1.6.1.4",
2079
+ "status" : "current",
2080
+ "syntax" : {
2081
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
2082
+ },
2083
+ "access" : "readwrite",
2084
+ "description" :
2085
+ """This object is used to create and delete rows in the
2086
+ atmIfRegisteredAddrTable. Rows created dynamically (e.g., ILMI-
2087
+ registered addresses) cannot be deleted using this object.""",
2088
+ }, # column
2089
+ "atmVclAddrTable" : {
2090
+ "nodetype" : "table",
2091
+ "moduleName" : "ATM2-MIB",
2092
+ "oid" : "1.3.6.1.2.1.37.1.14.1.7",
2093
+ "status" : "current",
2094
+ "description" :
2095
+ """This table provides a mapping between the atmVclTable and
2096
+ the ATM called party/calling party address. This table can
2097
+ be used to retrieve the calling party and called party ATM
2098
+ address pair for a given VCL. Note that there can be more
2099
+ than one pair of calling party and called party ATM
2100
+ addresses for a VCL in a point to multi-point call.""",
2101
+ }, # table
2102
+ "atmVclAddrEntry" : {
2103
+ "nodetype" : "row",
2104
+ "moduleName" : "ATM2-MIB",
2105
+ "oid" : "1.3.6.1.2.1.37.1.14.1.7.1",
2106
+ "create" : "true",
2107
+ "status" : "current",
2108
+ "linkage" : [
2109
+ "ifIndex",
2110
+ "atmVclVpi",
2111
+ "atmVclVci",
2112
+ "atmVclAddrAddr",
2113
+ ],
2114
+ "description" :
2115
+ """Each entry in this table represents a binding between a VCL
2116
+ and an ATM address associated with this call. This ATM
2117
+
2118
+
2119
+
2120
+ address can be either the called party address or the
2121
+ calling party address. There can be more than one pair of
2122
+ calling/called party ATM addresses associated with the VCL
2123
+ entry for point to multi-point calls. Objects
2124
+ atmVclAddrType, and atmVclAddrRowStatus are
2125
+ required during row creation.""",
2126
+ }, # row
2127
+ "atmVclAddrAddr" : {
2128
+ "nodetype" : "column",
2129
+ "moduleName" : "ATM2-MIB",
2130
+ "oid" : "1.3.6.1.2.1.37.1.14.1.7.1.1",
2131
+ "status" : "current",
2132
+ "syntax" : {
2133
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmAddr"},
2134
+ },
2135
+ "access" : "noaccess",
2136
+ "description" :
2137
+ """An ATM address on one end of the VCL. For SVCs, the agent
2138
+ supplies the value of this object at creation time. For PVC
2139
+ VCL, the manager can supply the value of this object during
2140
+ or after the PVC VCL creation.""",
2141
+ }, # column
2142
+ "atmVclAddrType" : {
2143
+ "nodetype" : "column",
2144
+ "moduleName" : "ATM2-MIB",
2145
+ "oid" : "1.3.6.1.2.1.37.1.14.1.7.1.2",
2146
+ "status" : "current",
2147
+ "syntax" : {
2148
+ "type" : {
2149
+ "basetype" : "Enumeration",
2150
+ "callingParty" : {
2151
+ "nodetype" : "namednumber",
2152
+ "number" : "1"
2153
+ },
2154
+ "calledParty" : {
2155
+ "nodetype" : "namednumber",
2156
+ "number" : "2"
2157
+ },
2158
+ },
2159
+ },
2160
+ "access" : "readwrite",
2161
+ "description" :
2162
+ """The type of ATM Address represented by the object
2163
+ atmVclAddrAddr. Choices are either the calling party ATM
2164
+ address or the called party ATM address.""",
2165
+ }, # column
2166
+ "atmVclAddrRowStatus" : {
2167
+ "nodetype" : "column",
2168
+ "moduleName" : "ATM2-MIB",
2169
+ "oid" : "1.3.6.1.2.1.37.1.14.1.7.1.3",
2170
+ "status" : "current",
2171
+ "syntax" : {
2172
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
2173
+ },
2174
+ "access" : "readwrite",
2175
+ "description" :
2176
+ """This object is used to create or destroy an
2177
+ entry from this table. Note that the manager entity
2178
+
2179
+
2180
+
2181
+ can only destroy the PVC VCLs.""",
2182
+ }, # column
2183
+ "atmAddrVclTable" : {
2184
+ "nodetype" : "table",
2185
+ "moduleName" : "ATM2-MIB",
2186
+ "oid" : "1.3.6.1.2.1.37.1.14.1.8",
2187
+ "status" : "current",
2188
+ "description" :
2189
+ """This table provides an alternative way to retrieve the
2190
+ atmVclTable. This table can be used to retrieve the
2191
+ indexing to the atmVclTable by an ATM address.""",
2192
+ }, # table
2193
+ "atmAddrVclEntry" : {
2194
+ "nodetype" : "row",
2195
+ "moduleName" : "ATM2-MIB",
2196
+ "oid" : "1.3.6.1.2.1.37.1.14.1.8.1",
2197
+ "status" : "current",
2198
+ "linkage" : [
2199
+ "atmVclAddrAddr",
2200
+ "atmAddrVclAtmIfIndex",
2201
+ "atmAddrVclVpi",
2202
+ "atmAddrVclVci",
2203
+ ],
2204
+ "description" :
2205
+ """Each entry in this table represents an entry in the
2206
+ atmVclTable of the ATM-MIB by its ATM address. The ATM
2207
+ address is either the calling or called party ATM address
2208
+ of the call. Entries in this table are read only.
2209
+ They show up when entries are created in the
2210
+ atmVclAddrTable.""",
2211
+ "reference" :
2212
+ """Tesink, K., Editor, Definitions of Managed Objects
2213
+ for ATM Management, RFC 2515, Bell Communications
2214
+ Research, February, 1999.""",
2215
+ }, # row
2216
+ "atmAddrVclAtmIfIndex" : {
2217
+ "nodetype" : "column",
2218
+ "moduleName" : "ATM2-MIB",
2219
+ "oid" : "1.3.6.1.2.1.37.1.14.1.8.1.1",
2220
+ "status" : "current",
2221
+ "syntax" : {
2222
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
2223
+ },
2224
+ "access" : "noaccess",
2225
+ "description" :
2226
+ """The interface index of the ATM interface to which this
2227
+ VCL pertains. This object combined with the
2228
+ atmAddrVclVpi and atmAddrVclVci objects serves as an
2229
+ index to the atmVclTable.""",
2230
+ }, # column
2231
+ "atmAddrVclVpi" : {
2232
+ "nodetype" : "column",
2233
+ "moduleName" : "ATM2-MIB",
2234
+ "oid" : "1.3.6.1.2.1.37.1.14.1.8.1.2",
2235
+ "status" : "current",
2236
+ "syntax" : {
2237
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVpIdentifier"},
2238
+ },
2239
+ "access" : "noaccess",
2240
+ "description" :
2241
+ """The VPI value of the VCL. This object combined with the
2242
+ atmAddrVclAtmIfIndex and atmAddrVclVci objects serves as
2243
+ an index to the atmVclTable.""",
2244
+ }, # column
2245
+ "atmAddrVclVci" : {
2246
+ "nodetype" : "column",
2247
+ "moduleName" : "ATM2-MIB",
2248
+ "oid" : "1.3.6.1.2.1.37.1.14.1.8.1.3",
2249
+ "status" : "current",
2250
+ "syntax" : {
2251
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVcIdentifier"},
2252
+ },
2253
+ "access" : "noaccess",
2254
+ "description" :
2255
+ """The VCI value of the VCL. This object combined with the
2256
+ atmAddrVclAtmIfIndex and atmAddrVclVpi objects serves as
2257
+ an index to the atmVclTable.""",
2258
+ }, # column
2259
+ "atmAddrVclAddrType" : {
2260
+ "nodetype" : "column",
2261
+ "moduleName" : "ATM2-MIB",
2262
+ "oid" : "1.3.6.1.2.1.37.1.14.1.8.1.4",
2263
+ "status" : "current",
2264
+ "syntax" : {
2265
+ "type" : {
2266
+ "basetype" : "Enumeration",
2267
+ "callingParty" : {
2268
+ "nodetype" : "namednumber",
2269
+ "number" : "1"
2270
+ },
2271
+ "calledParty" : {
2272
+ "nodetype" : "namednumber",
2273
+ "number" : "2"
2274
+ },
2275
+ },
2276
+ },
2277
+ "access" : "readonly",
2278
+ "description" :
2279
+ """The type of ATM Address represented by the object
2280
+ atmVclAddrAddr. Choices are either calling party address
2281
+ or called party address.""",
2282
+ }, # column
2283
+ "atmVplStatTable" : {
2284
+ "nodetype" : "table",
2285
+ "moduleName" : "ATM2-MIB",
2286
+ "oid" : "1.3.6.1.2.1.37.1.14.1.9",
2287
+ "status" : "current",
2288
+ "description" :
2289
+ """This table contains all statistics counters per VPL. It is
2290
+ used to monitor the usage of the VPL in terms of incoming
2291
+ cells and outgoing cells.""",
2292
+ }, # table
2293
+ "atmVplStatEntry" : {
2294
+ "nodetype" : "row",
2295
+ "moduleName" : "ATM2-MIB",
2296
+ "oid" : "1.3.6.1.2.1.37.1.14.1.9.1",
2297
+ "status" : "current",
2298
+ "linkage" : [
2299
+ "ifIndex",
2300
+ "atmVplVpi",
2301
+ ],
2302
+ "description" :
2303
+ """Each entry in this table represents a VPL.""",
2304
+ }, # row
2305
+ "atmVplStatTotalCellIns" : {
2306
+ "nodetype" : "column",
2307
+ "moduleName" : "ATM2-MIB",
2308
+ "oid" : "1.3.6.1.2.1.37.1.14.1.9.1.1",
2309
+ "status" : "current",
2310
+ "syntax" : {
2311
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2312
+ },
2313
+ "access" : "readonly",
2314
+ "description" :
2315
+ """The total number of valid ATM cells received by this VPL
2316
+ including both CLP=0 and CLP=1 cells. The cells are
2317
+ counted prior to the application of the traffic policing.""",
2318
+ }, # column
2319
+ "atmVplStatClp0CellIns" : {
2320
+ "nodetype" : "column",
2321
+ "moduleName" : "ATM2-MIB",
2322
+ "oid" : "1.3.6.1.2.1.37.1.14.1.9.1.2",
2323
+ "status" : "current",
2324
+ "syntax" : {
2325
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2326
+ },
2327
+ "access" : "readonly",
2328
+ "description" :
2329
+ """The number of valid ATM cells received by this VPL with
2330
+ CLP=0. The cells are counted prior to the application of
2331
+ the traffic policing.""",
2332
+ }, # column
2333
+ "atmVplStatTotalDiscards" : {
2334
+ "nodetype" : "column",
2335
+ "moduleName" : "ATM2-MIB",
2336
+ "oid" : "1.3.6.1.2.1.37.1.14.1.9.1.3",
2337
+ "status" : "current",
2338
+ "syntax" : {
2339
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2340
+ },
2341
+ "access" : "readonly",
2342
+ "description" :
2343
+ """The total number of valid ATM cells discarded by the
2344
+ traffic policing entity. This includes cells originally
2345
+ received with CLP=0 and CLP=1.""",
2346
+ }, # column
2347
+ "atmVplStatClp0Discards" : {
2348
+ "nodetype" : "column",
2349
+ "moduleName" : "ATM2-MIB",
2350
+ "oid" : "1.3.6.1.2.1.37.1.14.1.9.1.4",
2351
+ "status" : "current",
2352
+ "syntax" : {
2353
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2354
+ },
2355
+ "access" : "readonly",
2356
+ "description" :
2357
+ """The total number of valid ATM cells received with CLP=0 and
2358
+ discarded by the traffic policing entity.""",
2359
+ }, # column
2360
+ "atmVplStatTotalCellOuts" : {
2361
+ "nodetype" : "column",
2362
+ "moduleName" : "ATM2-MIB",
2363
+ "oid" : "1.3.6.1.2.1.37.1.14.1.9.1.5",
2364
+ "status" : "current",
2365
+ "syntax" : {
2366
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2367
+ },
2368
+ "access" : "readonly",
2369
+ "description" :
2370
+ """The total number of valid ATM cells transmitted by this
2371
+ VPL. This includes both CLP=0 and CLP=1 cells.""",
2372
+ }, # column
2373
+ "atmVplStatClp0CellOuts" : {
2374
+ "nodetype" : "column",
2375
+ "moduleName" : "ATM2-MIB",
2376
+ "oid" : "1.3.6.1.2.1.37.1.14.1.9.1.6",
2377
+ "status" : "current",
2378
+ "syntax" : {
2379
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2380
+ },
2381
+ "access" : "readonly",
2382
+ "description" :
2383
+ """The total number of valid ATM cells transmitted with CLP=0
2384
+ by this VPL.""",
2385
+ }, # column
2386
+ "atmVplStatClp0Tagged" : {
2387
+ "nodetype" : "column",
2388
+ "moduleName" : "ATM2-MIB",
2389
+ "oid" : "1.3.6.1.2.1.37.1.14.1.9.1.7",
2390
+ "status" : "current",
2391
+ "syntax" : {
2392
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2393
+ },
2394
+ "access" : "readonly",
2395
+ "description" :
2396
+ """The total number of valid ATM cells tagged by the traffic
2397
+ policing entity from CLP=0 to CLP=1.""",
2398
+ }, # column
2399
+ "atmVplLogicalPortTable" : {
2400
+ "nodetype" : "table",
2401
+ "moduleName" : "ATM2-MIB",
2402
+ "oid" : "1.3.6.1.2.1.37.1.14.1.10",
2403
+ "status" : "current",
2404
+ "description" :
2405
+ """Indicates whether the VPL is an ATM Logical Port interface
2406
+ (ifType=80).""",
2407
+ }, # table
2408
+ "atmVplLogicalPortEntry" : {
2409
+ "nodetype" : "row",
2410
+ "moduleName" : "ATM2-MIB",
2411
+ "oid" : "1.3.6.1.2.1.37.1.14.1.10.1",
2412
+ "create" : "true",
2413
+ "status" : "current",
2414
+ "linkage" : [
2415
+ { "ATM-MIB" : {
2416
+ "indexkind" : "augments",
2417
+ "relatedNode" : "atmVplEntry",
2418
+ }},
2419
+ ],
2420
+ "description" :
2421
+ """An entry with information about the ATM Logical Port
2422
+ interface.""",
2423
+ }, # row
2424
+ "atmVplLogicalPortDef" : {
2425
+ "nodetype" : "column",
2426
+ "moduleName" : "ATM2-MIB",
2427
+ "oid" : "1.3.6.1.2.1.37.1.14.1.10.1.1",
2428
+ "status" : "current",
2429
+ "syntax" : {
2430
+ "type" : {
2431
+ "basetype" : "Enumeration",
2432
+ "notLogicalIf" : {
2433
+ "nodetype" : "namednumber",
2434
+ "number" : "1"
2435
+ },
2436
+ "isLogicalIf" : {
2437
+ "nodetype" : "namednumber",
2438
+ "number" : "2"
2439
+ },
2440
+ },
2441
+ },
2442
+ "access" : "readwrite",
2443
+ "default" : "notLogicalIf",
2444
+ "description" :
2445
+ """Indicates whether the VPC at this VPL interface is an ATM
2446
+ Logical Port interface.""",
2447
+ }, # column
2448
+ "atmVplLogicalPortIndex" : {
2449
+ "nodetype" : "column",
2450
+ "moduleName" : "ATM2-MIB",
2451
+ "oid" : "1.3.6.1.2.1.37.1.14.1.10.1.2",
2452
+ "status" : "current",
2453
+ "syntax" : {
2454
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndexOrZero"},
2455
+ },
2456
+ "access" : "readonly",
2457
+ "description" :
2458
+ """The ifTable index of the ATM logical port interface
2459
+ associated with this VPL. The distinguished value of zero
2460
+ indicates that the agent has not (yet) assigned such an
2461
+ ifTable Index. The zero value must be assigned by the agent
2462
+ if the value of atmVplLogicalPortDef is set to notLogicalIf,
2463
+ or if the VPL row is not active.""",
2464
+ }, # column
2465
+ "atmVclStatTable" : {
2466
+ "nodetype" : "table",
2467
+ "moduleName" : "ATM2-MIB",
2468
+ "oid" : "1.3.6.1.2.1.37.1.14.1.11",
2469
+ "status" : "current",
2470
+ "description" :
2471
+ """This table contains all statistics counters per VCL. It is
2472
+ used to monitor the usage of the VCL in terms of incoming
2473
+ cells and outgoing cells.""",
2474
+ }, # table
2475
+ "atmVclStatEntry" : {
2476
+ "nodetype" : "row",
2477
+ "moduleName" : "ATM2-MIB",
2478
+ "oid" : "1.3.6.1.2.1.37.1.14.1.11.1",
2479
+ "status" : "current",
2480
+ "linkage" : [
2481
+ "ifIndex",
2482
+ "atmVclVpi",
2483
+ "atmVclVci",
2484
+ ],
2485
+ "description" :
2486
+ """Each entry in this table represents a VCL.""",
2487
+ }, # row
2488
+ "atmVclStatTotalCellIns" : {
2489
+ "nodetype" : "column",
2490
+ "moduleName" : "ATM2-MIB",
2491
+ "oid" : "1.3.6.1.2.1.37.1.14.1.11.1.1",
2492
+ "status" : "current",
2493
+ "syntax" : {
2494
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2495
+ },
2496
+ "access" : "readonly",
2497
+ "description" :
2498
+ """The total number of valid ATM cells received by this VCL
2499
+ including both CLP=0 and CLP=1 cells. The cells are counted
2500
+ prior to the application of the traffic policing.""",
2501
+ }, # column
2502
+ "atmVclStatClp0CellIns" : {
2503
+ "nodetype" : "column",
2504
+ "moduleName" : "ATM2-MIB",
2505
+ "oid" : "1.3.6.1.2.1.37.1.14.1.11.1.2",
2506
+ "status" : "current",
2507
+ "syntax" : {
2508
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2509
+ },
2510
+ "access" : "readonly",
2511
+ "description" :
2512
+ """The number of valid ATM cells received by this VCL with
2513
+ CLP=0. The cells are counted prior to the application of
2514
+ the traffic policing.""",
2515
+ }, # column
2516
+ "atmVclStatTotalDiscards" : {
2517
+ "nodetype" : "column",
2518
+ "moduleName" : "ATM2-MIB",
2519
+ "oid" : "1.3.6.1.2.1.37.1.14.1.11.1.3",
2520
+ "status" : "current",
2521
+ "syntax" : {
2522
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2523
+ },
2524
+ "access" : "readonly",
2525
+ "description" :
2526
+ """The total number of valid ATM cells discarded by the
2527
+ traffic policing entity. This includes cells originally
2528
+ received with CLP=0 and CLP=1.""",
2529
+ }, # column
2530
+ "atmVclStatClp0Discards" : {
2531
+ "nodetype" : "column",
2532
+ "moduleName" : "ATM2-MIB",
2533
+ "oid" : "1.3.6.1.2.1.37.1.14.1.11.1.4",
2534
+ "status" : "current",
2535
+ "syntax" : {
2536
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2537
+ },
2538
+ "access" : "readonly",
2539
+ "description" :
2540
+ """The total number of valid ATM cells received with CLP=0
2541
+ and discarded by the traffic policing entity.""",
2542
+ }, # column
2543
+ "atmVclStatTotalCellOuts" : {
2544
+ "nodetype" : "column",
2545
+ "moduleName" : "ATM2-MIB",
2546
+ "oid" : "1.3.6.1.2.1.37.1.14.1.11.1.5",
2547
+ "status" : "current",
2548
+ "syntax" : {
2549
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2550
+ },
2551
+ "access" : "readonly",
2552
+ "description" :
2553
+ """The total number of valid ATM cells transmitted by this
2554
+ VCL. This includes both CLP=0 and CLP=1 cells.""",
2555
+ }, # column
2556
+ "atmVclStatClp0CellOuts" : {
2557
+ "nodetype" : "column",
2558
+ "moduleName" : "ATM2-MIB",
2559
+ "oid" : "1.3.6.1.2.1.37.1.14.1.11.1.6",
2560
+ "status" : "current",
2561
+ "syntax" : {
2562
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2563
+ },
2564
+ "access" : "readonly",
2565
+ "description" :
2566
+ """The total number of valid ATM cells transmitted with CLP=0
2567
+ by this VCL.""",
2568
+ }, # column
2569
+ "atmVclStatClp0Tagged" : {
2570
+ "nodetype" : "column",
2571
+ "moduleName" : "ATM2-MIB",
2572
+ "oid" : "1.3.6.1.2.1.37.1.14.1.11.1.7",
2573
+ "status" : "current",
2574
+ "syntax" : {
2575
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2576
+ },
2577
+ "access" : "readonly",
2578
+ "description" :
2579
+ """The total number of valid ATM cells tagged by the traffic
2580
+ policing entity from CLP=0 to CLP=1.""",
2581
+ }, # column
2582
+ "atmAal5VclStatTable" : {
2583
+ "nodetype" : "table",
2584
+ "moduleName" : "ATM2-MIB",
2585
+ "oid" : "1.3.6.1.2.1.37.1.14.1.12",
2586
+ "status" : "current",
2587
+ "description" :
2588
+ """This table provides a collection of objects providing AAL5
2589
+ configuration and performance statistics of a VCL.""",
2590
+ }, # table
2591
+ "atmAal5VclStatEntry" : {
2592
+ "nodetype" : "row",
2593
+ "moduleName" : "ATM2-MIB",
2594
+ "oid" : "1.3.6.1.2.1.37.1.14.1.12.1",
2595
+ "status" : "current",
2596
+ "linkage" : [
2597
+ "ifIndex",
2598
+ "atmVclVpi",
2599
+ "atmVclVci",
2600
+ ],
2601
+ "description" :
2602
+ """Each entry in this table represents an AAL5 VCL, and
2603
+ is indexed by ifIndex values of AAL5 interfaces and
2604
+ the associated VPI/VCI values.""",
2605
+ }, # row
2606
+ "atmAal5VclInPkts" : {
2607
+ "nodetype" : "column",
2608
+ "moduleName" : "ATM2-MIB",
2609
+ "oid" : "1.3.6.1.2.1.37.1.14.1.12.1.1",
2610
+ "status" : "current",
2611
+ "syntax" : {
2612
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2613
+ },
2614
+ "access" : "readonly",
2615
+ "description" :
2616
+ """The number of AAL5 CPCS PDUs received on the AAL5 VCC at
2617
+ the interface identified by the ifIndex.""",
2618
+ }, # column
2619
+ "atmAal5VclOutPkts" : {
2620
+ "nodetype" : "column",
2621
+ "moduleName" : "ATM2-MIB",
2622
+ "oid" : "1.3.6.1.2.1.37.1.14.1.12.1.2",
2623
+ "status" : "current",
2624
+ "syntax" : {
2625
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2626
+ },
2627
+ "access" : "readonly",
2628
+ "description" :
2629
+ """The number of AAL5 CPCS PDUs transmitted on the AAL5 VCC
2630
+ at the interface identified by the ifIndex.""",
2631
+ }, # column
2632
+ "atmAal5VclInOctets" : {
2633
+ "nodetype" : "column",
2634
+ "moduleName" : "ATM2-MIB",
2635
+ "oid" : "1.3.6.1.2.1.37.1.14.1.12.1.3",
2636
+ "status" : "current",
2637
+ "syntax" : {
2638
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2639
+ },
2640
+ "access" : "readonly",
2641
+ "description" :
2642
+ """The number of octets contained in AAL5 CPCS PDUs received
2643
+ on the AAL5 VCC at the interface identified by the ifIndex.""",
2644
+ }, # column
2645
+ "atmAal5VclOutOctets" : {
2646
+ "nodetype" : "column",
2647
+ "moduleName" : "ATM2-MIB",
2648
+ "oid" : "1.3.6.1.2.1.37.1.14.1.12.1.4",
2649
+ "status" : "current",
2650
+ "syntax" : {
2651
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2652
+ },
2653
+ "access" : "readonly",
2654
+ "description" :
2655
+ """The number of octets contained in AAL5 CPCS PDUs
2656
+ transmitted on the AAL5 VCC at the interface identified by
2657
+ the ifIndex.""",
2658
+ }, # column
2659
+ "atmVclGenTable" : {
2660
+ "nodetype" : "table",
2661
+ "moduleName" : "ATM2-MIB",
2662
+ "oid" : "1.3.6.1.2.1.37.1.14.1.13",
2663
+ "status" : "current",
2664
+ "description" :
2665
+ """General Information for each VC.""",
2666
+ }, # table
2667
+ "atmVclGenEntry" : {
2668
+ "nodetype" : "row",
2669
+ "moduleName" : "ATM2-MIB",
2670
+ "oid" : "1.3.6.1.2.1.37.1.14.1.13.1",
2671
+ "create" : "true",
2672
+ "status" : "current",
2673
+ "linkage" : [
2674
+ { "ATM-MIB" : {
2675
+ "indexkind" : "augments",
2676
+ "relatedNode" : "atmVclEntry",
2677
+ }},
2678
+ ],
2679
+ "description" :
2680
+ """An entry with general information about the ATM VC.""",
2681
+ }, # row
2682
+ "atmVclGenSigDescrIndex" : {
2683
+ "nodetype" : "column",
2684
+ "moduleName" : "ATM2-MIB",
2685
+ "oid" : "1.3.6.1.2.1.37.1.14.1.13.1.1",
2686
+ "status" : "current",
2687
+ "syntax" : {
2688
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmSigDescrParamIndex"},
2689
+ },
2690
+ "access" : "readwrite",
2691
+ "description" :
2692
+ """The value of this object identifies the row in the ATM
2693
+ Signalling Descriptor Parameter Table which applies to this
2694
+ VCL.""",
2695
+ }, # column
2696
+ "atmInterfaceExtTable" : {
2697
+ "nodetype" : "table",
2698
+ "moduleName" : "ATM2-MIB",
2699
+ "oid" : "1.3.6.1.2.1.37.1.14.1.14",
2700
+ "status" : "current",
2701
+ "description" :
2702
+ """This table contains ATM interface configuration and monitoring
2703
+ information not defined in the atmInterfaceConfTable from the
2704
+ ATM-MIB. This includes the type of connection setup procedures,
2705
+ ILMI information, and information on the VPI/VCI range.""",
2706
+ "reference" :
2707
+ """Tesink, K., Editor, Definitions of Managed Objects
2708
+ for ATM Management, RFC 2515, Bell Communications
2709
+ Research, February, 1999.""",
2710
+ }, # table
2711
+ "atmInterfaceExtEntry" : {
2712
+ "nodetype" : "row",
2713
+ "moduleName" : "ATM2-MIB",
2714
+ "oid" : "1.3.6.1.2.1.37.1.14.1.14.1",
2715
+ "status" : "current",
2716
+ "linkage" : [
2717
+ { "ATM-MIB" : {
2718
+ "indexkind" : "augments",
2719
+ "relatedNode" : "atmInterfaceConfEntry",
2720
+ }},
2721
+ ],
2722
+ "description" :
2723
+ """An entry extends the atmInterfaceConfEntry defined in the ATM-
2724
+ MIB. Each entry corresponds to an ATM interface.""",
2725
+ "reference" :
2726
+ """Tesink, K., Editor, Definitions of Managed Objects
2727
+ for ATM Management, RFC 2515, Bell Communications
2728
+ Research, February, 1999.""",
2729
+ }, # row
2730
+ "atmIntfConfigType" : {
2731
+ "nodetype" : "column",
2732
+ "moduleName" : "ATM2-MIB",
2733
+ "oid" : "1.3.6.1.2.1.37.1.14.1.14.1.1",
2734
+ "status" : "current",
2735
+ "syntax" : {
2736
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmInterfaceType"},
2737
+ },
2738
+ "access" : "readwrite",
2739
+ "default" : "autoConfig",
2740
+ "description" :
2741
+ """The type of connection setup procedures configured for the ATM
2742
+ interface. Setting this variable to a value of 'other' is not
2743
+ allowed.""",
2744
+ }, # column
2745
+ "atmIntfActualType" : {
2746
+ "nodetype" : "column",
2747
+ "moduleName" : "ATM2-MIB",
2748
+ "oid" : "1.3.6.1.2.1.37.1.14.1.14.1.2",
2749
+ "status" : "current",
2750
+ "syntax" : {
2751
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmInterfaceType"},
2752
+ },
2753
+ "access" : "readonly",
2754
+ "description" :
2755
+ """The type of connection setup procedures currently being used on
2756
+ the interface. This may reflect a manually configured value for
2757
+ the interface type, or may be determined by other means such as
2758
+ auto-configuration. A value of `autoConfig' indicates that
2759
+ auto-configuration was requested but has not yet been completed.""",
2760
+ }, # column
2761
+ "atmIntfConfigSide" : {
2762
+ "nodetype" : "column",
2763
+ "moduleName" : "ATM2-MIB",
2764
+ "oid" : "1.3.6.1.2.1.37.1.14.1.14.1.3",
2765
+ "status" : "current",
2766
+ "syntax" : {
2767
+ "type" : {
2768
+ "basetype" : "Enumeration",
2769
+ "other" : {
2770
+ "nodetype" : "namednumber",
2771
+ "number" : "1"
2772
+ },
2773
+ "user" : {
2774
+ "nodetype" : "namednumber",
2775
+ "number" : "2"
2776
+ },
2777
+ "network" : {
2778
+ "nodetype" : "namednumber",
2779
+ "number" : "3"
2780
+ },
2781
+ },
2782
+ },
2783
+ "access" : "readwrite",
2784
+ "description" :
2785
+ """The configured role of the managed entity as one side of the ATM
2786
+ interface. This value does not apply when the object
2787
+ atmIntfConfigType is set to `autoConfig', `atmfPnni1Dot0', or
2788
+ `atmfBici2Dot0'.""",
2789
+ }, # column
2790
+ "atmIntfActualSide" : {
2791
+ "nodetype" : "column",
2792
+ "moduleName" : "ATM2-MIB",
2793
+ "oid" : "1.3.6.1.2.1.37.1.14.1.14.1.4",
2794
+ "status" : "current",
2795
+ "syntax" : {
2796
+ "type" : {
2797
+ "basetype" : "Enumeration",
2798
+ "other" : {
2799
+ "nodetype" : "namednumber",
2800
+ "number" : "1"
2801
+ },
2802
+ "user" : {
2803
+ "nodetype" : "namednumber",
2804
+ "number" : "2"
2805
+ },
2806
+ "network" : {
2807
+ "nodetype" : "namednumber",
2808
+ "number" : "3"
2809
+ },
2810
+ "symmetric" : {
2811
+ "nodetype" : "namednumber",
2812
+ "number" : "4"
2813
+ },
2814
+ },
2815
+ },
2816
+ "access" : "readonly",
2817
+ "description" :
2818
+ """The current role used by the managed entity to represent one
2819
+ side of the ATM interface.""",
2820
+ }, # column
2821
+ "atmIntfIlmiAdminStatus" : {
2822
+ "nodetype" : "column",
2823
+ "moduleName" : "ATM2-MIB",
2824
+ "oid" : "1.3.6.1.2.1.37.1.14.1.14.1.5",
2825
+ "status" : "current",
2826
+ "syntax" : {
2827
+ "type" : {
2828
+ "basetype" : "Bits",
2829
+ "ilmi" : {
2830
+ "nodetype" : "namednumber",
2831
+ "number" : "0"
2832
+ },
2833
+ "ilmiAddressRegistration" : {
2834
+ "nodetype" : "namednumber",
2835
+ "number" : "1"
2836
+ },
2837
+ "ilmiConnectivity" : {
2838
+ "nodetype" : "namednumber",
2839
+ "number" : "2"
2840
+ },
2841
+ "ilmiPvcPvpMgmt" : {
2842
+ "nodetype" : "namednumber",
2843
+ "number" : "3"
2844
+ },
2845
+ "ilmiSigVccParamNegotiation" : {
2846
+ "nodetype" : "namednumber",
2847
+ "number" : "4"
2848
+ },
2849
+ },
2850
+ },
2851
+ "access" : "readwrite",
2852
+ "description" :
2853
+ """Indicates which components of ILMI are administratively enabled
2854
+ on this interface. If the 'ilmi' bit is not set, then no ILMI
2855
+ components are operational. ILMI components other than auto-
2856
+ configuration that are not represented in the value have their
2857
+ administrative status determined according to the 'ilmi' bit.
2858
+ The ILMI auto-configuration component is enabled/disabled by the
2859
+ atmIntfConfigType object.""",
2860
+ }, # column
2861
+ "atmIntfIlmiOperStatus" : {
2862
+ "nodetype" : "column",
2863
+ "moduleName" : "ATM2-MIB",
2864
+ "oid" : "1.3.6.1.2.1.37.1.14.1.14.1.6",
2865
+ "status" : "current",
2866
+ "syntax" : {
2867
+ "type" : {
2868
+ "basetype" : "Bits",
2869
+ "ilmi" : {
2870
+ "nodetype" : "namednumber",
2871
+ "number" : "0"
2872
+ },
2873
+ "ilmiAddressRegistration" : {
2874
+ "nodetype" : "namednumber",
2875
+ "number" : "1"
2876
+ },
2877
+ "ilmiConnectivity" : {
2878
+ "nodetype" : "namednumber",
2879
+ "number" : "2"
2880
+ },
2881
+ "ilmiPvcPvpMgmt" : {
2882
+ "nodetype" : "namednumber",
2883
+ "number" : "3"
2884
+ },
2885
+ "ilmiSigVccParamNegotiation" : {
2886
+ "nodetype" : "namednumber",
2887
+ "number" : "4"
2888
+ },
2889
+ },
2890
+ },
2891
+ "access" : "readonly",
2892
+ "description" :
2893
+ """Indicates which components of ILMI are operational on this
2894
+ interface.""",
2895
+ }, # column
2896
+ "atmIntfIlmiFsmState" : {
2897
+ "nodetype" : "column",
2898
+ "moduleName" : "ATM2-MIB",
2899
+ "oid" : "1.3.6.1.2.1.37.1.14.1.14.1.7",
2900
+ "status" : "current",
2901
+ "syntax" : {
2902
+ "type" : {
2903
+ "basetype" : "Enumeration",
2904
+ "stopped" : {
2905
+ "nodetype" : "namednumber",
2906
+ "number" : "1"
2907
+ },
2908
+ "linkFailing" : {
2909
+ "nodetype" : "namednumber",
2910
+ "number" : "2"
2911
+ },
2912
+ "establishing" : {
2913
+ "nodetype" : "namednumber",
2914
+ "number" : "3"
2915
+ },
2916
+ "configuring" : {
2917
+ "nodetype" : "namednumber",
2918
+ "number" : "4"
2919
+ },
2920
+ "retrievingNetworkPrefixes" : {
2921
+ "nodetype" : "namednumber",
2922
+ "number" : "5"
2923
+ },
2924
+ "registeringNetworkPrefixes" : {
2925
+ "nodetype" : "namednumber",
2926
+ "number" : "6"
2927
+ },
2928
+ "retrievingAddresses" : {
2929
+ "nodetype" : "namednumber",
2930
+ "number" : "7"
2931
+ },
2932
+ "registeringAddresses" : {
2933
+ "nodetype" : "namednumber",
2934
+ "number" : "8"
2935
+ },
2936
+ "verifying" : {
2937
+ "nodetype" : "namednumber",
2938
+ "number" : "9"
2939
+ },
2940
+ },
2941
+ },
2942
+ "access" : "readonly",
2943
+ "description" :
2944
+ """Indicates the state of the ILMI Finite State Machine associated
2945
+ with this interface.""",
2946
+ "reference" :
2947
+ """ATM Forum, Integrated Local Management Interface
2948
+ (ILMI) Specification, Version 4.0, af-ilmi-0065.000,
2949
+ September 1996, Appendix 1""",
2950
+ }, # column
2951
+ "atmIntfIlmiEstablishConPollIntvl" : {
2952
+ "nodetype" : "column",
2953
+ "moduleName" : "ATM2-MIB",
2954
+ "oid" : "1.3.6.1.2.1.37.1.14.1.14.1.8",
2955
+ "status" : "current",
2956
+ "syntax" : {
2957
+ "type" : {
2958
+ "basetype" : "Integer32",
2959
+ "ranges" : [
2960
+ {
2961
+ "min" : "1",
2962
+ "max" : "65535"
2963
+ },
2964
+ ],
2965
+ "range" : {
2966
+ "min" : "1",
2967
+ "max" : "65535"
2968
+ },
2969
+ },
2970
+ },
2971
+ "access" : "readwrite",
2972
+ "default" : "1",
2973
+ "units" : "seconds",
2974
+ "description" :
2975
+ """The amount of time S between successive transmissions of ILMI
2976
+ messages on this interface for the purpose of detecting
2977
+ establishment of ILMI connectivity.""",
2978
+ "reference" :
2979
+ """ATM Forum, Integrated Local Management Interface
2980
+ (ILMI) Specification, Version 4.0, af-ilmi-0065.000,
2981
+ September 1996, Section 8.3.1""",
2982
+ }, # column
2983
+ "atmIntfIlmiCheckConPollIntvl" : {
2984
+ "nodetype" : "column",
2985
+ "moduleName" : "ATM2-MIB",
2986
+ "oid" : "1.3.6.1.2.1.37.1.14.1.14.1.9",
2987
+ "status" : "current",
2988
+ "syntax" : {
2989
+ "type" : {
2990
+ "basetype" : "Integer32",
2991
+ "ranges" : [
2992
+ {
2993
+ "min" : "0",
2994
+ "max" : "65535"
2995
+ },
2996
+ ],
2997
+ "range" : {
2998
+ "min" : "0",
2999
+ "max" : "65535"
3000
+ },
3001
+ },
3002
+ },
3003
+ "access" : "readwrite",
3004
+ "default" : "5",
3005
+ "units" : "seconds",
3006
+ "description" :
3007
+ """The amount of time T between successive transmissions of ILMI
3008
+ messages on this interface for the purpose of detecting loss of
3009
+ ILMI connectivity. The distinguished value zero disables ILMI
3010
+ connectivity procedures on this interface.""",
3011
+ "reference" :
3012
+ """ATM Forum, Integrated Local Management Interface
3013
+ (ILMI) Specification, Version 4.0, af-ilmi-0065.000,
3014
+ September 1996, Section 8.3.1""",
3015
+ }, # column
3016
+ "atmIntfIlmiConPollInactFactor" : {
3017
+ "nodetype" : "column",
3018
+ "moduleName" : "ATM2-MIB",
3019
+ "oid" : "1.3.6.1.2.1.37.1.14.1.14.1.10",
3020
+ "status" : "current",
3021
+ "syntax" : {
3022
+ "type" : {
3023
+ "basetype" : "Integer32",
3024
+ "ranges" : [
3025
+ {
3026
+ "min" : "0",
3027
+ "max" : "65535"
3028
+ },
3029
+ ],
3030
+ "range" : {
3031
+ "min" : "0",
3032
+ "max" : "65535"
3033
+ },
3034
+ },
3035
+ },
3036
+ "access" : "readwrite",
3037
+ "default" : "4",
3038
+ "description" :
3039
+ """The number K of consecutive polls on this interface for which no
3040
+ ILMI response message is received before ILMI connectivity is
3041
+ declared lost.""",
3042
+ "reference" :
3043
+ """ATM Forum, Integrated Local Management Interface
3044
+ (ILMI) Specification, Version 4.0, af-ilmi-0065.000,
3045
+ September 1996, Section 8.3.1""",
3046
+ }, # column
3047
+ "atmIntfIlmiPublicPrivateIndctr" : {
3048
+ "nodetype" : "column",
3049
+ "moduleName" : "ATM2-MIB",
3050
+ "oid" : "1.3.6.1.2.1.37.1.14.1.14.1.11",
3051
+ "status" : "current",
3052
+ "syntax" : {
3053
+ "type" : {
3054
+ "basetype" : "Enumeration",
3055
+ "other" : {
3056
+ "nodetype" : "namednumber",
3057
+ "number" : "1"
3058
+ },
3059
+ "public" : {
3060
+ "nodetype" : "namednumber",
3061
+ "number" : "2"
3062
+ },
3063
+ "private" : {
3064
+ "nodetype" : "namednumber",
3065
+ "number" : "3"
3066
+ },
3067
+ },
3068
+ },
3069
+ "access" : "readwrite",
3070
+ "default" : "private",
3071
+ "description" :
3072
+ """Specifies whether this end of the interface is advertised in
3073
+ ILMI as a device of the `public' or `private' type.""",
3074
+ }, # column
3075
+ "atmInterfaceConfMaxSvpcVpi" : {
3076
+ "nodetype" : "column",
3077
+ "moduleName" : "ATM2-MIB",
3078
+ "oid" : "1.3.6.1.2.1.37.1.14.1.14.1.12",
3079
+ "status" : "current",
3080
+ "syntax" : {
3081
+ "type" : {
3082
+ "basetype" : "Integer32",
3083
+ "ranges" : [
3084
+ {
3085
+ "min" : "0",
3086
+ "max" : "4095"
3087
+ },
3088
+ ],
3089
+ "range" : {
3090
+ "min" : "0",
3091
+ "max" : "4095"
3092
+ },
3093
+ },
3094
+ },
3095
+ "access" : "readwrite",
3096
+ "description" :
3097
+ """The maximum VPI that the signalling stack on the ATM interface
3098
+ is configured to support for allocation to switched virtual path
3099
+ connections.""",
3100
+ }, # column
3101
+ "atmInterfaceCurrentMaxSvpcVpi" : {
3102
+ "nodetype" : "column",
3103
+ "moduleName" : "ATM2-MIB",
3104
+ "oid" : "1.3.6.1.2.1.37.1.14.1.14.1.13",
3105
+ "status" : "current",
3106
+ "syntax" : {
3107
+ "type" : {
3108
+ "basetype" : "Integer32",
3109
+ "ranges" : [
3110
+ {
3111
+ "min" : "0",
3112
+ "max" : "4095"
3113
+ },
3114
+ ],
3115
+ "range" : {
3116
+ "min" : "0",
3117
+ "max" : "4095"
3118
+ },
3119
+ },
3120
+ },
3121
+ "access" : "readonly",
3122
+ "description" :
3123
+ """The maximum VPI that the signalling stack on the ATM interface
3124
+ may currently allocate to switched virtual path connections.
3125
+ This value is the minimum of atmInterfaceConfMaxSvpcVpi, and the
3126
+ atmInterfaceMaxSvpcVpi of the interface's UNI/NNI peer.
3127
+
3128
+ If the interface does not negotiate with its peer to determine
3129
+ the maximum VPI that can be allocated to SVPCs on the interface,
3130
+ then the value of this object must equal
3131
+ atmInterfaceConfMaxSvpcVpi. """,
3132
+ }, # column
3133
+ "atmInterfaceConfMaxSvccVpi" : {
3134
+ "nodetype" : "column",
3135
+ "moduleName" : "ATM2-MIB",
3136
+ "oid" : "1.3.6.1.2.1.37.1.14.1.14.1.14",
3137
+ "status" : "current",
3138
+ "syntax" : {
3139
+ "type" : {
3140
+ "basetype" : "Integer32",
3141
+ "ranges" : [
3142
+ {
3143
+ "min" : "0",
3144
+ "max" : "4095"
3145
+ },
3146
+ ],
3147
+ "range" : {
3148
+ "min" : "0",
3149
+ "max" : "4095"
3150
+ },
3151
+ },
3152
+ },
3153
+ "access" : "readwrite",
3154
+ "description" :
3155
+ """The maximum VPI that the signalling stack on the ATM interface
3156
+ is configured to support for allocation to switched virtual
3157
+ channel connections.""",
3158
+ }, # column
3159
+ "atmInterfaceCurrentMaxSvccVpi" : {
3160
+ "nodetype" : "column",
3161
+ "moduleName" : "ATM2-MIB",
3162
+ "oid" : "1.3.6.1.2.1.37.1.14.1.14.1.15",
3163
+ "status" : "current",
3164
+ "syntax" : {
3165
+ "type" : {
3166
+ "basetype" : "Integer32",
3167
+ "ranges" : [
3168
+ {
3169
+ "min" : "0",
3170
+ "max" : "4095"
3171
+ },
3172
+ ],
3173
+ "range" : {
3174
+ "min" : "0",
3175
+ "max" : "4095"
3176
+ },
3177
+ },
3178
+ },
3179
+ "access" : "readonly",
3180
+ "description" :
3181
+ """The maximum VPI that the signalling stack on the ATM interface
3182
+ may currently allocate to switched virtual channel connections.
3183
+ This value is the minimum of atmInterfaceConfMaxSvccVpi, and the
3184
+ atmInterfaceConfMaxSvccVpi of the interface's UNI/NNI peer.
3185
+
3186
+ If the interface does not negotiate with its peer to determine
3187
+ the maximum VPI that can be allocated to SVCCs on the interface,
3188
+ then the value of this object must equal
3189
+ atmInterfaceConfMaxSvccVpi.""",
3190
+ }, # column
3191
+ "atmInterfaceConfMinSvccVci" : {
3192
+ "nodetype" : "column",
3193
+ "moduleName" : "ATM2-MIB",
3194
+ "oid" : "1.3.6.1.2.1.37.1.14.1.14.1.16",
3195
+ "status" : "current",
3196
+ "syntax" : {
3197
+ "type" : {
3198
+ "basetype" : "Integer32",
3199
+ "ranges" : [
3200
+ {
3201
+ "min" : "0",
3202
+ "max" : "65535"
3203
+ },
3204
+ ],
3205
+ "range" : {
3206
+ "min" : "0",
3207
+ "max" : "65535"
3208
+ },
3209
+ },
3210
+ },
3211
+ "access" : "readwrite",
3212
+ "description" :
3213
+ """The minimum VCI that the signalling stack on the ATM interface
3214
+ is configured to support for allocation to switched virtual
3215
+ channel connections.""",
3216
+ }, # column
3217
+ "atmInterfaceCurrentMinSvccVci" : {
3218
+ "nodetype" : "column",
3219
+ "moduleName" : "ATM2-MIB",
3220
+ "oid" : "1.3.6.1.2.1.37.1.14.1.14.1.17",
3221
+ "status" : "current",
3222
+ "syntax" : {
3223
+ "type" : {
3224
+ "basetype" : "Integer32",
3225
+ "ranges" : [
3226
+ {
3227
+ "min" : "0",
3228
+ "max" : "65535"
3229
+ },
3230
+ ],
3231
+ "range" : {
3232
+ "min" : "0",
3233
+ "max" : "65535"
3234
+ },
3235
+ },
3236
+ },
3237
+ "access" : "readonly",
3238
+ "description" :
3239
+ """The minimum VCI that the signalling stack on the ATM interface
3240
+ may currently allocate to switched virtual channel connections.
3241
+ This value is the maximum of atmInterfaceConfMinSvccVci, and the
3242
+ atmInterfaceConfMinSvccVci of the interface's UNI/NNI peer.
3243
+ If the interface does not negotiate with its peer to determine
3244
+ the minimum VCI that can be allocated to SVCCs on the interface,
3245
+ then the value of this object must equal
3246
+ atmInterfaceConfMinSvccVci.""",
3247
+ }, # column
3248
+ "atmIntfSigVccRxTrafficDescrIndex" : {
3249
+ "nodetype" : "column",
3250
+ "moduleName" : "ATM2-MIB",
3251
+ "oid" : "1.3.6.1.2.1.37.1.14.1.14.1.18",
3252
+ "status" : "current",
3253
+ "syntax" : {
3254
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmTrafficDescrParamIndex"},
3255
+ },
3256
+ "access" : "readwrite",
3257
+ "description" :
3258
+ """This object identifies the row in the atmTrafficDescrParamTable
3259
+ used during ILMI auto-configuration to specify the advertised
3260
+ signalling VCC traffic parameters for the receive direction.
3261
+ The traffic descriptor resulting from ILMI auto-configuration of
3262
+ the signalling VCC is indicated in the atmVclTable.""",
3263
+ }, # column
3264
+ "atmIntfSigVccTxTrafficDescrIndex" : {
3265
+ "nodetype" : "column",
3266
+ "moduleName" : "ATM2-MIB",
3267
+ "oid" : "1.3.6.1.2.1.37.1.14.1.14.1.19",
3268
+ "status" : "current",
3269
+ "syntax" : {
3270
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmTrafficDescrParamIndex"},
3271
+ },
3272
+ "access" : "readwrite",
3273
+ "description" :
3274
+ """This object identifies the row in the atmTrafficDescrParamTable
3275
+ used during ILMI auto-configuration to specify the advertised
3276
+ signalling VCC traffic parameters for the transmit direction.
3277
+ The traffic descriptor resulting from ILMI auto-configuration of
3278
+ the signalling VCC is indicated in the atmVclTable.""",
3279
+ }, # column
3280
+ "atmIntfPvcFailures" : {
3281
+ "nodetype" : "column",
3282
+ "moduleName" : "ATM2-MIB",
3283
+ "oid" : "1.3.6.1.2.1.37.1.14.1.14.1.20",
3284
+ "status" : "current",
3285
+ "syntax" : {
3286
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
3287
+ },
3288
+ "access" : "readonly",
3289
+ "description" :
3290
+ """The number of times the operational status of a PVPL or PVCL on
3291
+ this interface has gone down.""",
3292
+ }, # column
3293
+ "atmIntfCurrentlyFailingPVpls" : {
3294
+ "nodetype" : "column",
3295
+ "moduleName" : "ATM2-MIB",
3296
+ "oid" : "1.3.6.1.2.1.37.1.14.1.14.1.21",
3297
+ "status" : "current",
3298
+ "syntax" : {
3299
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
3300
+ },
3301
+ "access" : "readonly",
3302
+ "description" :
3303
+ """The current number of VPLs on this interface for which there is
3304
+ an active row in the atmVplTable having an atmVplConnKind value
3305
+ of `pvc' and an atmVplOperStatus with a value other than `up'.""",
3306
+ }, # column
3307
+ "atmIntfCurrentlyFailingPVcls" : {
3308
+ "nodetype" : "column",
3309
+ "moduleName" : "ATM2-MIB",
3310
+ "oid" : "1.3.6.1.2.1.37.1.14.1.14.1.22",
3311
+ "status" : "current",
3312
+ "syntax" : {
3313
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
3314
+ },
3315
+ "access" : "readonly",
3316
+ "description" :
3317
+ """The current number of VCLs on this interface for which there is
3318
+ an active row in the atmVclTable having an atmVclConnKind value
3319
+ of `pvc' and an atmVclOperStatus with a value other than `up'.""",
3320
+ }, # column
3321
+ "atmIntfPvcFailuresTrapEnable" : {
3322
+ "nodetype" : "column",
3323
+ "moduleName" : "ATM2-MIB",
3324
+ "oid" : "1.3.6.1.2.1.37.1.14.1.14.1.23",
3325
+ "status" : "current",
3326
+ "syntax" : {
3327
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
3328
+ },
3329
+ "access" : "readwrite",
3330
+ "default" : "false",
3331
+ "description" :
3332
+ """Allows the generation of traps in response to PVCL or PVPL
3333
+ failures on this interface.""",
3334
+ }, # column
3335
+ "atmIntfPvcNotificationInterval" : {
3336
+ "nodetype" : "column",
3337
+ "moduleName" : "ATM2-MIB",
3338
+ "oid" : "1.3.6.1.2.1.37.1.14.1.14.1.24",
3339
+ "status" : "current",
3340
+ "syntax" : {
3341
+ "type" : {
3342
+ "basetype" : "Integer32",
3343
+ "ranges" : [
3344
+ {
3345
+ "min" : "1",
3346
+ "max" : "3600"
3347
+ },
3348
+ ],
3349
+ "range" : {
3350
+ "min" : "1",
3351
+ "max" : "3600"
3352
+ },
3353
+ },
3354
+ },
3355
+ "access" : "readwrite",
3356
+ "default" : "30",
3357
+ "units" : "seconds",
3358
+ "description" :
3359
+ """The minimum interval between the sending of
3360
+ atmIntfPvcFailuresTrap notifications for this interface.""",
3361
+ }, # column
3362
+ "atmIntfLeafSetupFailures" : {
3363
+ "nodetype" : "column",
3364
+ "moduleName" : "ATM2-MIB",
3365
+ "oid" : "1.3.6.1.2.1.37.1.14.1.14.1.25",
3366
+ "status" : "current",
3367
+ "syntax" : {
3368
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
3369
+ },
3370
+ "access" : "readonly",
3371
+ "description" :
3372
+ """Number of setup failures. For root, this is the number of
3373
+ rejected setup requests and for leaf, this is the number of setup
3374
+ failure received.""",
3375
+ }, # column
3376
+ "atmIntfLeafSetupRequests" : {
3377
+ "nodetype" : "column",
3378
+ "moduleName" : "ATM2-MIB",
3379
+ "oid" : "1.3.6.1.2.1.37.1.14.1.14.1.26",
3380
+ "status" : "current",
3381
+ "syntax" : {
3382
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
3383
+ },
3384
+ "access" : "readonly",
3385
+ "description" :
3386
+ """Number of setup requests. For root, this includes both incoming
3387
+ setup request and root intiated setup requests.""",
3388
+ }, # column
3389
+ "atmIlmiSrvcRegTable" : {
3390
+ "nodetype" : "table",
3391
+ "moduleName" : "ATM2-MIB",
3392
+ "oid" : "1.3.6.1.2.1.37.1.14.1.15",
3393
+ "status" : "current",
3394
+ "description" :
3395
+ """This table contains a list of all the ATM network services known
3396
+ by this device.
3397
+
3398
+ The characteristics of these services are made available through
3399
+ the ILMI, using the ILMI general-purpose service registry MIB.
3400
+ These services may be made available to all ATM interfaces
3401
+ (atmIlmiSrvcRegIndex = 0) or to some specific ATM interfaces only
3402
+ (atmIlmiSrvcRegIndex = ATM interface index).""",
3403
+ }, # table
3404
+ "atmIlmiSrvcRegEntry" : {
3405
+ "nodetype" : "row",
3406
+ "moduleName" : "ATM2-MIB",
3407
+ "oid" : "1.3.6.1.2.1.37.1.14.1.15.1",
3408
+ "create" : "true",
3409
+ "status" : "current",
3410
+ "linkage" : [
3411
+ "atmIlmiSrvcRegIndex",
3412
+ "atmIlmiSrvcRegServiceID",
3413
+ "atmIlmiSrvcRegAddressIndex",
3414
+ ],
3415
+ "description" :
3416
+ """Information about a single service provider that is available to
3417
+ the user-side of an adjacent device through the ILMI.
3418
+
3419
+ Implementors need to be aware that if the size of the
3420
+ atmIlmiSrvcRegServiceID exceeds 112 sub-identifiers then OIDs of
3421
+
3422
+
3423
+
3424
+ column instances in this table will have more than 128 sub-
3425
+ identifiers and cannot be accessed using SNMPv1, SNMPv2, or
3426
+ SNMPv3.""",
3427
+ }, # row
3428
+ "atmIlmiSrvcRegIndex" : {
3429
+ "nodetype" : "column",
3430
+ "moduleName" : "ATM2-MIB",
3431
+ "oid" : "1.3.6.1.2.1.37.1.14.1.15.1.1",
3432
+ "status" : "current",
3433
+ "syntax" : {
3434
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndexOrZero"},
3435
+ },
3436
+ "access" : "noaccess",
3437
+ "description" :
3438
+ """The ATM interface where the service defined in this entry can be
3439
+ made available to an ATM device attached to this interface.
3440
+
3441
+ The value of 0 has a special meaning: when an ATM service is
3442
+ defined in an entry whose atmIlmiSrvcRegIndex is zero, the ATM
3443
+ service is available to ATM devices connected to any ATM
3444
+ interface. (default value(s)).
3445
+
3446
+ When the user-side of an adjacent device queries the content of
3447
+ the ILMI service registry MIB (using the ILMI protocol), the
3448
+ local network-side responds with the ATM services defined in
3449
+ atmIlmiSrvcRegTable entries, provided that these entries are
3450
+ indexed by:
3451
+
3452
+ - the corresponding ifIndex value (atmIlmiSrvcRegIndex
3453
+ equal to the ifIndex of the interface to which the
3454
+ adjacent device is connected) - zero (atmIlmiSrvcRegIndex=0).""",
3455
+ }, # column
3456
+ "atmIlmiSrvcRegServiceID" : {
3457
+ "nodetype" : "column",
3458
+ "moduleName" : "ATM2-MIB",
3459
+ "oid" : "1.3.6.1.2.1.37.1.14.1.15.1.2",
3460
+ "status" : "current",
3461
+ "syntax" : {
3462
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
3463
+ },
3464
+ "access" : "noaccess",
3465
+ "description" :
3466
+ """This is the service identifier which uniquely identifies the
3467
+
3468
+
3469
+
3470
+ type of service at the address provided in the table. The object
3471
+ identifiers for the LAN Emulation Configuration Server (LECS) and
3472
+ the ATM Name Server (ANS) are defined in the ATM Forum ILMI
3473
+ Service Registry MIB. The object identifiers for the ATMARP
3474
+ Server, the Multicast Address Resolution Server (MARS), and the
3475
+ NHRP Server (NHS) are defined in RFC 2601, RFC 2602, and RFC
3476
+ 2603, respectively.""",
3477
+ }, # column
3478
+ "atmIlmiSrvcRegAddressIndex" : {
3479
+ "nodetype" : "column",
3480
+ "moduleName" : "ATM2-MIB",
3481
+ "oid" : "1.3.6.1.2.1.37.1.14.1.15.1.3",
3482
+ "status" : "current",
3483
+ "syntax" : {
3484
+ "type" : {
3485
+ "basetype" : "Integer32",
3486
+ "ranges" : [
3487
+ {
3488
+ "min" : "1",
3489
+ "max" : "2147483647"
3490
+ },
3491
+ ],
3492
+ "range" : {
3493
+ "min" : "1",
3494
+ "max" : "2147483647"
3495
+ },
3496
+ },
3497
+ },
3498
+ "access" : "noaccess",
3499
+ "description" :
3500
+ """An arbitrary integer to differentiate multiple rows containing
3501
+ different ATM addresses for the same service on the same
3502
+ interface. This number need NOT be the same as the corresponding
3503
+ ILMI atmfSrvcRegAddressIndex MIB object.""",
3504
+ }, # column
3505
+ "atmIlmiSrvcRegATMAddress" : {
3506
+ "nodetype" : "column",
3507
+ "moduleName" : "ATM2-MIB",
3508
+ "oid" : "1.3.6.1.2.1.37.1.14.1.15.1.4",
3509
+ "status" : "current",
3510
+ "syntax" : {
3511
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmAddr"},
3512
+ },
3513
+ "access" : "readwrite",
3514
+ "description" :
3515
+ """This is the full address of the service. The user-side of the
3516
+ adjacent device may use this address to establish a connection
3517
+ with the service.""",
3518
+ }, # column
3519
+ "atmIlmiSrvcRegParm1" : {
3520
+ "nodetype" : "column",
3521
+ "moduleName" : "ATM2-MIB",
3522
+ "oid" : "1.3.6.1.2.1.37.1.14.1.15.1.5",
3523
+ "status" : "current",
3524
+ "syntax" : {
3525
+ "type" : {
3526
+ "basetype" : "OctetString",
3527
+ "ranges" : [
3528
+ {
3529
+ "min" : "1",
3530
+ "max" : "255"
3531
+ },
3532
+ ],
3533
+ "range" : {
3534
+ "min" : "1",
3535
+ "max" : "255"
3536
+ },
3537
+ },
3538
+ },
3539
+ "access" : "readwrite",
3540
+ "description" :
3541
+ """An octet string used according to the value of
3542
+ atmIlmiSrvcRegServiceID.""",
3543
+ }, # column
3544
+ "atmIlmiSrvcRegRowStatus" : {
3545
+ "nodetype" : "column",
3546
+ "moduleName" : "ATM2-MIB",
3547
+ "oid" : "1.3.6.1.2.1.37.1.14.1.15.1.6",
3548
+ "status" : "current",
3549
+ "syntax" : {
3550
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
3551
+ },
3552
+ "access" : "readwrite",
3553
+ "description" :
3554
+ """This object is used to create or destroy an entry from this
3555
+ table.""",
3556
+ }, # column
3557
+ "atmIlmiNetworkPrefixTable" : {
3558
+ "nodetype" : "table",
3559
+ "moduleName" : "ATM2-MIB",
3560
+ "oid" : "1.3.6.1.2.1.37.1.14.1.16",
3561
+ "status" : "current",
3562
+ "description" :
3563
+ """A table specifying per-interface network prefix(es) supplied by
3564
+ the network side of the UNI during ILMI address registration.
3565
+ When no network prefixes are specified for a particular
3566
+ interface, one or more network prefixes based on the switch
3567
+ address(es) may be used for ILMI address registration.""",
3568
+ }, # table
3569
+ "atmIlmiNetworkPrefixEntry" : {
3570
+ "nodetype" : "row",
3571
+ "moduleName" : "ATM2-MIB",
3572
+ "oid" : "1.3.6.1.2.1.37.1.14.1.16.1",
3573
+ "create" : "true",
3574
+ "status" : "current",
3575
+ "linkage" : [
3576
+ "ifIndex",
3577
+ "atmIlmiNetPrefixPrefix",
3578
+ ],
3579
+ "description" :
3580
+ """Information about a single network prefix supplied by the
3581
+ network side of the UNI during ILMI address registration. Note
3582
+ that the index variable atmIlmiNetPrefixPrefix is a variable-
3583
+ length string, and as such the rule for variable-length strings
3584
+ in section 7.7 of RFC 2578 applies.""",
3585
+ }, # row
3586
+ "atmIlmiNetPrefixPrefix" : {
3587
+ "nodetype" : "column",
3588
+ "moduleName" : "ATM2-MIB",
3589
+ "oid" : "1.3.6.1.2.1.37.1.14.1.16.1.1",
3590
+ "status" : "current",
3591
+ "syntax" : {
3592
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmIlmiNetworkPrefix"},
3593
+ },
3594
+ "access" : "noaccess",
3595
+ "description" :
3596
+ """The network prefix specified for use in ILMI address
3597
+ registration.""",
3598
+ }, # column
3599
+ "atmIlmiNetPrefixRowStatus" : {
3600
+ "nodetype" : "column",
3601
+ "moduleName" : "ATM2-MIB",
3602
+ "oid" : "1.3.6.1.2.1.37.1.14.1.16.1.2",
3603
+ "status" : "current",
3604
+ "syntax" : {
3605
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
3606
+ },
3607
+ "access" : "readwrite",
3608
+ "description" :
3609
+ """Used to create, delete, activate and de-activate network
3610
+ prefixes used in ILMI address registration.""",
3611
+ }, # column
3612
+ "atmSwitchAddressTable" : {
3613
+ "nodetype" : "table",
3614
+ "moduleName" : "ATM2-MIB",
3615
+ "oid" : "1.3.6.1.2.1.37.1.14.1.17",
3616
+ "status" : "current",
3617
+ "description" :
3618
+ """This table contains one or more ATM endsystem addresses on a
3619
+ per-switch basis. These addresses are used to identify the
3620
+ switch. When no ILMI network prefixes are configured for certain
3621
+ interfaces, network prefixes based on the switch address(es) may
3622
+ be used for ILMI address registration.""",
3623
+ }, # table
3624
+ "atmSwitchAddressEntry" : {
3625
+ "nodetype" : "row",
3626
+ "moduleName" : "ATM2-MIB",
3627
+ "oid" : "1.3.6.1.2.1.37.1.14.1.17.1",
3628
+ "create" : "true",
3629
+ "status" : "current",
3630
+ "linkage" : [
3631
+ "atmSwitchAddressIndex",
3632
+ ],
3633
+ "description" :
3634
+ """An entry in the ATM Switch Address table.""",
3635
+ }, # row
3636
+ "atmSwitchAddressIndex" : {
3637
+ "nodetype" : "column",
3638
+ "moduleName" : "ATM2-MIB",
3639
+ "oid" : "1.3.6.1.2.1.37.1.14.1.17.1.1",
3640
+ "status" : "current",
3641
+ "syntax" : {
3642
+ "type" : {
3643
+ "basetype" : "Integer32",
3644
+ "ranges" : [
3645
+ {
3646
+ "min" : "1",
3647
+ "max" : "65535"
3648
+ },
3649
+ ],
3650
+ "range" : {
3651
+ "min" : "1",
3652
+ "max" : "65535"
3653
+ },
3654
+ },
3655
+ },
3656
+ "access" : "noaccess",
3657
+ "description" :
3658
+ """An arbitrary index used to enumerate the ATM endsystem addresses
3659
+ for this switch.""",
3660
+ }, # column
3661
+ "atmSwitchAddressAddress" : {
3662
+ "nodetype" : "column",
3663
+ "moduleName" : "ATM2-MIB",
3664
+ "oid" : "1.3.6.1.2.1.37.1.14.1.17.1.2",
3665
+ "status" : "current",
3666
+ "syntax" : {
3667
+ "type" : {
3668
+ "basetype" : "OctetString",
3669
+ "ranges" : [
3670
+ {
3671
+ "min" : "13",
3672
+ "max" : "13"
3673
+ },
3674
+ {
3675
+ "min" : "20",
3676
+ "max" : "20"
3677
+ },
3678
+ ],
3679
+ "range" : {
3680
+ "min" : "13",
3681
+ "max" : "20"
3682
+ },
3683
+ },
3684
+ },
3685
+ "access" : "readwrite",
3686
+ "description" :
3687
+ """An ATM endsystem address or address prefix used to identify this
3688
+ switch. When no ESI or SEL field is specified, the switch may
3689
+ generate the ESI and SEL fields automatically to obtain a
3690
+ complete 20-byte ATM endsystem address.""",
3691
+ }, # column
3692
+ "atmSwitchAddressRowStatus" : {
3693
+ "nodetype" : "column",
3694
+ "moduleName" : "ATM2-MIB",
3695
+ "oid" : "1.3.6.1.2.1.37.1.14.1.17.1.3",
3696
+ "status" : "current",
3697
+ "syntax" : {
3698
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
3699
+ },
3700
+ "access" : "readwrite",
3701
+ "description" :
3702
+ """Used to create, delete, activate, and de-activate addresses used
3703
+ to identify this switch.""",
3704
+ }, # column
3705
+ "atmVpCrossConnectXTable" : {
3706
+ "nodetype" : "table",
3707
+ "moduleName" : "ATM2-MIB",
3708
+ "oid" : "1.3.6.1.2.1.37.1.14.1.18",
3709
+ "status" : "current",
3710
+ "description" :
3711
+ """This table contains one row per VP Cross-Connect represented in
3712
+ the atmVpCrossConnectTable.""",
3713
+ }, # table
3714
+ "atmVpCrossConnectXEntry" : {
3715
+ "nodetype" : "row",
3716
+ "moduleName" : "ATM2-MIB",
3717
+ "oid" : "1.3.6.1.2.1.37.1.14.1.18.1",
3718
+ "create" : "true",
3719
+ "status" : "current",
3720
+ "linkage" : [
3721
+ { "ATM-MIB" : {
3722
+ "indexkind" : "augments",
3723
+ "relatedNode" : "atmVpCrossConnectEntry",
3724
+ }},
3725
+ ],
3726
+ "description" :
3727
+ """Information about a particular ATM VP Cross-Connect.
3728
+ Each entry provides an two objects that name the Cross-Connect.
3729
+ One is assigned by the Service User and the other by the Service
3730
+ Provider.""",
3731
+ }, # row
3732
+ "atmVpCrossConnectUserName" : {
3733
+ "nodetype" : "column",
3734
+ "moduleName" : "ATM2-MIB",
3735
+ "oid" : "1.3.6.1.2.1.37.1.14.1.18.1.1",
3736
+ "status" : "current",
3737
+ "syntax" : {
3738
+ "type" : {
3739
+ "basetype" : "OctetString",
3740
+ "parent module" : {
3741
+ "name" : "SNMP-FRAMEWORK-MIB",
3742
+ "type" : "SnmpAdminString",
3743
+ },
3744
+ "ranges" : [
3745
+ {
3746
+ "min" : "0",
3747
+ "max" : "255"
3748
+ },
3749
+ ],
3750
+ "range" : {
3751
+ "min" : "0",
3752
+ "max" : "255"
3753
+ },
3754
+ },
3755
+ },
3756
+ "access" : "readwrite",
3757
+ "description" :
3758
+ """This is a service user assigned textual representation of a VPC
3759
+ PVC.""",
3760
+ }, # column
3761
+ "atmVpCrossConnectProviderName" : {
3762
+ "nodetype" : "column",
3763
+ "moduleName" : "ATM2-MIB",
3764
+ "oid" : "1.3.6.1.2.1.37.1.14.1.18.1.2",
3765
+ "status" : "current",
3766
+ "syntax" : {
3767
+ "type" : {
3768
+ "basetype" : "OctetString",
3769
+ "parent module" : {
3770
+ "name" : "SNMP-FRAMEWORK-MIB",
3771
+ "type" : "SnmpAdminString",
3772
+ },
3773
+ "ranges" : [
3774
+ {
3775
+ "min" : "0",
3776
+ "max" : "255"
3777
+ },
3778
+ ],
3779
+ "range" : {
3780
+ "min" : "0",
3781
+ "max" : "255"
3782
+ },
3783
+ },
3784
+ },
3785
+ "access" : "readonly",
3786
+ "description" :
3787
+ """This is a system supplied textual representation of VPC PVC. It
3788
+ is assigned by the service provider.""",
3789
+ }, # column
3790
+ "atmVcCrossConnectXTable" : {
3791
+ "nodetype" : "table",
3792
+ "moduleName" : "ATM2-MIB",
3793
+ "oid" : "1.3.6.1.2.1.37.1.14.1.19",
3794
+ "status" : "current",
3795
+ "description" :
3796
+ """This table contains one row per VC Cross-Connect represented in
3797
+ the atmVcCrossConnectTable.""",
3798
+ }, # table
3799
+ "atmVcCrossConnectXEntry" : {
3800
+ "nodetype" : "row",
3801
+ "moduleName" : "ATM2-MIB",
3802
+ "oid" : "1.3.6.1.2.1.37.1.14.1.19.1",
3803
+ "create" : "true",
3804
+ "status" : "current",
3805
+ "linkage" : [
3806
+ { "ATM-MIB" : {
3807
+ "indexkind" : "augments",
3808
+ "relatedNode" : "atmVcCrossConnectEntry",
3809
+ }},
3810
+ ],
3811
+ "description" :
3812
+ """Information about a particular ATM VC Cross-Connect.
3813
+ Each entry provides an two objects that name the Cross-Connect.
3814
+ One is assigned by the Service User and the other by the Service
3815
+ Provider.""",
3816
+ }, # row
3817
+ "atmVcCrossConnectUserName" : {
3818
+ "nodetype" : "column",
3819
+ "moduleName" : "ATM2-MIB",
3820
+ "oid" : "1.3.6.1.2.1.37.1.14.1.19.1.1",
3821
+ "status" : "current",
3822
+ "syntax" : {
3823
+ "type" : {
3824
+ "basetype" : "OctetString",
3825
+ "parent module" : {
3826
+ "name" : "SNMP-FRAMEWORK-MIB",
3827
+ "type" : "SnmpAdminString",
3828
+ },
3829
+ "ranges" : [
3830
+ {
3831
+ "min" : "0",
3832
+ "max" : "255"
3833
+ },
3834
+ ],
3835
+ "range" : {
3836
+ "min" : "0",
3837
+ "max" : "255"
3838
+ },
3839
+ },
3840
+ },
3841
+ "access" : "readwrite",
3842
+ "description" :
3843
+ """This is a service user assigned textual representation of a VCC
3844
+
3845
+
3846
+
3847
+ PVC.""",
3848
+ }, # column
3849
+ "atmVcCrossConnectProviderName" : {
3850
+ "nodetype" : "column",
3851
+ "moduleName" : "ATM2-MIB",
3852
+ "oid" : "1.3.6.1.2.1.37.1.14.1.19.1.2",
3853
+ "status" : "current",
3854
+ "syntax" : {
3855
+ "type" : {
3856
+ "basetype" : "OctetString",
3857
+ "parent module" : {
3858
+ "name" : "SNMP-FRAMEWORK-MIB",
3859
+ "type" : "SnmpAdminString",
3860
+ },
3861
+ "ranges" : [
3862
+ {
3863
+ "min" : "0",
3864
+ "max" : "255"
3865
+ },
3866
+ ],
3867
+ "range" : {
3868
+ "min" : "0",
3869
+ "max" : "255"
3870
+ },
3871
+ },
3872
+ },
3873
+ "access" : "readonly",
3874
+ "description" :
3875
+ """This is a system supplied textual representation of VCC PVC. It
3876
+ is assigned by the service provider.""",
3877
+ }, # column
3878
+ "atmCurrentlyFailingPVplTable" : {
3879
+ "nodetype" : "table",
3880
+ "moduleName" : "ATM2-MIB",
3881
+ "oid" : "1.3.6.1.2.1.37.1.14.1.20",
3882
+ "status" : "current",
3883
+ "description" :
3884
+ """A table indicating all VPLs for which there is an active row in
3885
+ the atmVplTable having an atmVplConnKind value of `pvc' and an
3886
+ atmVplOperStatus with a value other than `up'.""",
3887
+ }, # table
3888
+ "atmCurrentlyFailingPVplEntry" : {
3889
+ "nodetype" : "row",
3890
+ "moduleName" : "ATM2-MIB",
3891
+ "oid" : "1.3.6.1.2.1.37.1.14.1.20.1",
3892
+ "status" : "current",
3893
+ "linkage" : [
3894
+ "ifIndex",
3895
+ "atmVplVpi",
3896
+ ],
3897
+ "description" :
3898
+ """Each entry in this table represents a VPL for which the
3899
+ atmVplRowStatus is `active', the atmVplConnKind is `pvc', and the
3900
+ atmVplOperStatus is other than `up'.""",
3901
+ }, # row
3902
+ "atmCurrentlyFailingPVplTimeStamp" : {
3903
+ "nodetype" : "column",
3904
+ "moduleName" : "ATM2-MIB",
3905
+ "oid" : "1.3.6.1.2.1.37.1.14.1.20.1.1",
3906
+ "status" : "current",
3907
+ "syntax" : {
3908
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
3909
+ },
3910
+ "access" : "readonly",
3911
+ "description" :
3912
+ """The time at which this PVPL began to fail.""",
3913
+ }, # column
3914
+ "atmCurrentlyFailingPVclTable" : {
3915
+ "nodetype" : "table",
3916
+ "moduleName" : "ATM2-MIB",
3917
+ "oid" : "1.3.6.1.2.1.37.1.14.1.21",
3918
+ "status" : "current",
3919
+ "description" :
3920
+ """A table indicating all VCLs for which there is an active row in
3921
+ the atmVclTable having an atmVclConnKind value of `pvc' and an
3922
+ atmVclOperStatus with a value other than `up'.""",
3923
+ }, # table
3924
+ "atmCurrentlyFailingPVclEntry" : {
3925
+ "nodetype" : "row",
3926
+ "moduleName" : "ATM2-MIB",
3927
+ "oid" : "1.3.6.1.2.1.37.1.14.1.21.1",
3928
+ "status" : "current",
3929
+ "linkage" : [
3930
+ "ifIndex",
3931
+ "atmVclVpi",
3932
+ "atmVclVci",
3933
+ ],
3934
+ "description" :
3935
+ """Each entry in this table represents a VCL for which the
3936
+ atmVclRowStatus is `active', the atmVclConnKind is `pvc', and the
3937
+ atmVclOperStatus is other than `up'.""",
3938
+ }, # row
3939
+ "atmCurrentlyFailingPVclTimeStamp" : {
3940
+ "nodetype" : "column",
3941
+ "moduleName" : "ATM2-MIB",
3942
+ "oid" : "1.3.6.1.2.1.37.1.14.1.21.1.1",
3943
+ "status" : "current",
3944
+ "syntax" : {
3945
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
3946
+ },
3947
+ "access" : "readonly",
3948
+ "description" :
3949
+ """The time at which this PVCL began to fail.""",
3950
+ }, # column
3951
+ "atm2MIBTraps" : {
3952
+ "nodetype" : "node",
3953
+ "moduleName" : "ATM2-MIB",
3954
+ "oid" : "1.3.6.1.2.1.37.1.14.2",
3955
+ }, # node
3956
+ "atmPvcTraps" : {
3957
+ "nodetype" : "node",
3958
+ "moduleName" : "ATM2-MIB",
3959
+ "oid" : "1.3.6.1.2.1.37.1.14.2.1",
3960
+ }, # node
3961
+ "atmPvcTrapsPrefix" : {
3962
+ "nodetype" : "node",
3963
+ "moduleName" : "ATM2-MIB",
3964
+ "oid" : "1.3.6.1.2.1.37.1.14.2.1.0",
3965
+ }, # node
3966
+ "atm2MIBConformance" : {
3967
+ "nodetype" : "node",
3968
+ "moduleName" : "ATM2-MIB",
3969
+ "oid" : "1.3.6.1.2.1.37.1.14.3",
3970
+ }, # node
3971
+ "atm2MIBGroups" : {
3972
+ "nodetype" : "node",
3973
+ "moduleName" : "ATM2-MIB",
3974
+ "oid" : "1.3.6.1.2.1.37.1.14.3.1",
3975
+ }, # node
3976
+ "atm2MIBCompliances" : {
3977
+ "nodetype" : "node",
3978
+ "moduleName" : "ATM2-MIB",
3979
+ "oid" : "1.3.6.1.2.1.37.1.14.3.2",
3980
+ }, # node
3981
+ }, # nodes
3982
+
3983
+ "notifications" : {
3984
+ "atmIntfPvcFailuresTrap" : {
3985
+ "nodetype" : "notification",
3986
+ "moduleName" : "ATM2-MIB",
3987
+ "oid" : "1.3.6.1.2.1.37.1.14.2.1.0.1",
3988
+ "status" : "current",
3989
+ "objects" : {
3990
+ "ifIndex" : {
3991
+ "nodetype" : "object",
3992
+ "module" : "IF-MIB"
3993
+ },
3994
+ "atmIntfPvcFailures" : {
3995
+ "nodetype" : "object",
3996
+ "module" : "ATM2-MIB"
3997
+ },
3998
+ "atmIntfCurrentlyFailingPVpls" : {
3999
+ "nodetype" : "object",
4000
+ "module" : "ATM2-MIB"
4001
+ },
4002
+ "atmIntfCurrentlyFailingPVcls" : {
4003
+ "nodetype" : "object",
4004
+ "module" : "ATM2-MIB"
4005
+ },
4006
+ },
4007
+ "description" :
4008
+ """A notification indicating that one or more PVPLs or PVCLs on
4009
+ this interface has failed since the last atmPvcFailuresTrap was
4010
+ sent. If this trap has not been sent for the last
4011
+ atmIntfPvcNotificationInterval, then it will be sent on the next
4012
+ increment of atmIntfPvcFailures.""",
4013
+ }, # notification
4014
+ }, # notifications
4015
+
4016
+ "groups" : {
4017
+ "atmCommonGroup" : {
4018
+ "nodetype" : "group",
4019
+ "moduleName" : "ATM2-MIB",
4020
+ "oid" : "1.3.6.1.2.1.37.1.14.3.1.1",
4021
+ "status" : "current",
4022
+ "members" : {
4023
+ "atmSigSSCOPConEvents" : {
4024
+ "nodetype" : "member",
4025
+ "module" : "ATM2-MIB"
4026
+ },
4027
+ "atmSigSSCOPErrdPdus" : {
4028
+ "nodetype" : "member",
4029
+ "module" : "ATM2-MIB"
4030
+ },
4031
+ "atmSigDetectSetupAttempts" : {
4032
+ "nodetype" : "member",
4033
+ "module" : "ATM2-MIB"
4034
+ },
4035
+ "atmSigEmitSetupAttempts" : {
4036
+ "nodetype" : "member",
4037
+ "module" : "ATM2-MIB"
4038
+ },
4039
+ "atmSigDetectUnavailRoutes" : {
4040
+ "nodetype" : "member",
4041
+ "module" : "ATM2-MIB"
4042
+ },
4043
+ "atmSigEmitUnavailRoutes" : {
4044
+ "nodetype" : "member",
4045
+ "module" : "ATM2-MIB"
4046
+ },
4047
+ "atmSigDetectUnavailResrcs" : {
4048
+ "nodetype" : "member",
4049
+ "module" : "ATM2-MIB"
4050
+ },
4051
+ "atmSigEmitUnavailResrcs" : {
4052
+ "nodetype" : "member",
4053
+ "module" : "ATM2-MIB"
4054
+ },
4055
+ "atmSigDetectCldPtyEvents" : {
4056
+ "nodetype" : "member",
4057
+ "module" : "ATM2-MIB"
4058
+ },
4059
+ "atmSigEmitCldPtyEvents" : {
4060
+ "nodetype" : "member",
4061
+ "module" : "ATM2-MIB"
4062
+ },
4063
+ "atmSigDetectMsgErrors" : {
4064
+ "nodetype" : "member",
4065
+ "module" : "ATM2-MIB"
4066
+ },
4067
+ "atmSigEmitMsgErrors" : {
4068
+ "nodetype" : "member",
4069
+ "module" : "ATM2-MIB"
4070
+ },
4071
+ "atmSigDetectClgPtyEvents" : {
4072
+ "nodetype" : "member",
4073
+ "module" : "ATM2-MIB"
4074
+ },
4075
+ "atmSigEmitClgPtyEvents" : {
4076
+ "nodetype" : "member",
4077
+ "module" : "ATM2-MIB"
4078
+ },
4079
+ "atmSigDetectTimerExpireds" : {
4080
+ "nodetype" : "member",
4081
+ "module" : "ATM2-MIB"
4082
+ },
4083
+ "atmSigEmitTimerExpireds" : {
4084
+ "nodetype" : "member",
4085
+ "module" : "ATM2-MIB"
4086
+ },
4087
+ "atmSigDetectRestarts" : {
4088
+ "nodetype" : "member",
4089
+ "module" : "ATM2-MIB"
4090
+ },
4091
+ "atmSigEmitRestarts" : {
4092
+ "nodetype" : "member",
4093
+ "module" : "ATM2-MIB"
4094
+ },
4095
+ "atmSigInEstabls" : {
4096
+ "nodetype" : "member",
4097
+ "module" : "ATM2-MIB"
4098
+ },
4099
+ "atmSigOutEstabls" : {
4100
+ "nodetype" : "member",
4101
+ "module" : "ATM2-MIB"
4102
+ },
4103
+ "atmVplLogicalPortDef" : {
4104
+ "nodetype" : "member",
4105
+ "module" : "ATM2-MIB"
4106
+ },
4107
+ "atmVplLogicalPortIndex" : {
4108
+ "nodetype" : "member",
4109
+ "module" : "ATM2-MIB"
4110
+ },
4111
+ "atmInterfaceConfMaxSvpcVpi" : {
4112
+ "nodetype" : "member",
4113
+ "module" : "ATM2-MIB"
4114
+ },
4115
+ "atmInterfaceCurrentMaxSvpcVpi" : {
4116
+ "nodetype" : "member",
4117
+ "module" : "ATM2-MIB"
4118
+ },
4119
+ "atmInterfaceConfMaxSvccVpi" : {
4120
+ "nodetype" : "member",
4121
+ "module" : "ATM2-MIB"
4122
+ },
4123
+ "atmInterfaceCurrentMaxSvccVpi" : {
4124
+ "nodetype" : "member",
4125
+ "module" : "ATM2-MIB"
4126
+ },
4127
+ "atmInterfaceConfMinSvccVci" : {
4128
+ "nodetype" : "member",
4129
+ "module" : "ATM2-MIB"
4130
+ },
4131
+ "atmInterfaceCurrentMinSvccVci" : {
4132
+ "nodetype" : "member",
4133
+ "module" : "ATM2-MIB"
4134
+ },
4135
+ "atmIntfSigVccRxTrafficDescrIndex" : {
4136
+ "nodetype" : "member",
4137
+ "module" : "ATM2-MIB"
4138
+ },
4139
+ "atmIntfSigVccTxTrafficDescrIndex" : {
4140
+ "nodetype" : "member",
4141
+ "module" : "ATM2-MIB"
4142
+ },
4143
+ "atmIntfPvcFailures" : {
4144
+ "nodetype" : "member",
4145
+ "module" : "ATM2-MIB"
4146
+ },
4147
+ "atmIntfCurrentlyFailingPVpls" : {
4148
+ "nodetype" : "member",
4149
+ "module" : "ATM2-MIB"
4150
+ },
4151
+ "atmIntfCurrentlyFailingPVcls" : {
4152
+ "nodetype" : "member",
4153
+ "module" : "ATM2-MIB"
4154
+ },
4155
+ "atmIntfPvcNotificationInterval" : {
4156
+ "nodetype" : "member",
4157
+ "module" : "ATM2-MIB"
4158
+ },
4159
+ "atmIntfPvcFailuresTrapEnable" : {
4160
+ "nodetype" : "member",
4161
+ "module" : "ATM2-MIB"
4162
+ },
4163
+ "atmIntfLeafSetupFailures" : {
4164
+ "nodetype" : "member",
4165
+ "module" : "ATM2-MIB"
4166
+ },
4167
+ "atmIntfLeafSetupRequests" : {
4168
+ "nodetype" : "member",
4169
+ "module" : "ATM2-MIB"
4170
+ },
4171
+ "atmIntfConfigType" : {
4172
+ "nodetype" : "member",
4173
+ "module" : "ATM2-MIB"
4174
+ },
4175
+ "atmIntfActualType" : {
4176
+ "nodetype" : "member",
4177
+ "module" : "ATM2-MIB"
4178
+ },
4179
+ "atmIntfConfigSide" : {
4180
+ "nodetype" : "member",
4181
+ "module" : "ATM2-MIB"
4182
+ },
4183
+ "atmIntfActualSide" : {
4184
+ "nodetype" : "member",
4185
+ "module" : "ATM2-MIB"
4186
+ },
4187
+ "atmIntfIlmiAdminStatus" : {
4188
+ "nodetype" : "member",
4189
+ "module" : "ATM2-MIB"
4190
+ },
4191
+ "atmIntfIlmiOperStatus" : {
4192
+ "nodetype" : "member",
4193
+ "module" : "ATM2-MIB"
4194
+ },
4195
+ "atmIntfIlmiFsmState" : {
4196
+ "nodetype" : "member",
4197
+ "module" : "ATM2-MIB"
4198
+ },
4199
+ "atmIntfIlmiEstablishConPollIntvl" : {
4200
+ "nodetype" : "member",
4201
+ "module" : "ATM2-MIB"
4202
+ },
4203
+ "atmIntfIlmiCheckConPollIntvl" : {
4204
+ "nodetype" : "member",
4205
+ "module" : "ATM2-MIB"
4206
+ },
4207
+ "atmIntfIlmiConPollInactFactor" : {
4208
+ "nodetype" : "member",
4209
+ "module" : "ATM2-MIB"
4210
+ },
4211
+ "atmIntfIlmiPublicPrivateIndctr" : {
4212
+ "nodetype" : "member",
4213
+ "module" : "ATM2-MIB"
4214
+ },
4215
+ "atmCurrentlyFailingPVplTimeStamp" : {
4216
+ "nodetype" : "member",
4217
+ "module" : "ATM2-MIB"
4218
+ },
4219
+ "atmCurrentlyFailingPVclTimeStamp" : {
4220
+ "nodetype" : "member",
4221
+ "module" : "ATM2-MIB"
4222
+ },
4223
+ }, # members
4224
+ "description" :
4225
+ """A collection of objects providing information
4226
+ for a Switch/Service/Host that implements
4227
+ ATM interfaces.""",
4228
+ }, # group
4229
+ "atmCommonStatsGroup" : {
4230
+ "nodetype" : "group",
4231
+ "moduleName" : "ATM2-MIB",
4232
+ "oid" : "1.3.6.1.2.1.37.1.14.3.1.2",
4233
+ "status" : "current",
4234
+ "members" : {
4235
+ "atmVclStatTotalCellIns" : {
4236
+ "nodetype" : "member",
4237
+ "module" : "ATM2-MIB"
4238
+ },
4239
+ "atmVclStatClp0CellIns" : {
4240
+ "nodetype" : "member",
4241
+ "module" : "ATM2-MIB"
4242
+ },
4243
+ "atmVclStatTotalDiscards" : {
4244
+ "nodetype" : "member",
4245
+ "module" : "ATM2-MIB"
4246
+ },
4247
+ "atmVclStatClp0Discards" : {
4248
+ "nodetype" : "member",
4249
+ "module" : "ATM2-MIB"
4250
+ },
4251
+ "atmVclStatTotalCellOuts" : {
4252
+ "nodetype" : "member",
4253
+ "module" : "ATM2-MIB"
4254
+ },
4255
+ "atmVclStatClp0CellOuts" : {
4256
+ "nodetype" : "member",
4257
+ "module" : "ATM2-MIB"
4258
+ },
4259
+ "atmVclStatClp0Tagged" : {
4260
+ "nodetype" : "member",
4261
+ "module" : "ATM2-MIB"
4262
+ },
4263
+ "atmVplStatTotalCellIns" : {
4264
+ "nodetype" : "member",
4265
+ "module" : "ATM2-MIB"
4266
+ },
4267
+ "atmVplStatClp0CellIns" : {
4268
+ "nodetype" : "member",
4269
+ "module" : "ATM2-MIB"
4270
+ },
4271
+ "atmVplStatTotalDiscards" : {
4272
+ "nodetype" : "member",
4273
+ "module" : "ATM2-MIB"
4274
+ },
4275
+ "atmVplStatClp0Discards" : {
4276
+ "nodetype" : "member",
4277
+ "module" : "ATM2-MIB"
4278
+ },
4279
+ "atmVplStatTotalCellOuts" : {
4280
+ "nodetype" : "member",
4281
+ "module" : "ATM2-MIB"
4282
+ },
4283
+ "atmVplStatClp0CellOuts" : {
4284
+ "nodetype" : "member",
4285
+ "module" : "ATM2-MIB"
4286
+ },
4287
+ "atmVplStatClp0Tagged" : {
4288
+ "nodetype" : "member",
4289
+ "module" : "ATM2-MIB"
4290
+ },
4291
+ }, # members
4292
+ "description" :
4293
+ """A collection of objects providing information
4294
+
4295
+
4296
+
4297
+ for a Switch/Service/Host that implements
4298
+ ATM VCL and VPL Statistics""",
4299
+ }, # group
4300
+ "atmSwitchServcGroup" : {
4301
+ "nodetype" : "group",
4302
+ "moduleName" : "ATM2-MIB",
4303
+ "oid" : "1.3.6.1.2.1.37.1.14.3.1.3",
4304
+ "status" : "current",
4305
+ "members" : {
4306
+ "atmIlmiSrvcRegATMAddress" : {
4307
+ "nodetype" : "member",
4308
+ "module" : "ATM2-MIB"
4309
+ },
4310
+ "atmIlmiSrvcRegParm1" : {
4311
+ "nodetype" : "member",
4312
+ "module" : "ATM2-MIB"
4313
+ },
4314
+ "atmIlmiSrvcRegRowStatus" : {
4315
+ "nodetype" : "member",
4316
+ "module" : "ATM2-MIB"
4317
+ },
4318
+ "atmIlmiNetPrefixRowStatus" : {
4319
+ "nodetype" : "member",
4320
+ "module" : "ATM2-MIB"
4321
+ },
4322
+ "atmSvcVpCrossConnectCreationTime" : {
4323
+ "nodetype" : "member",
4324
+ "module" : "ATM2-MIB"
4325
+ },
4326
+ "atmSvcVpCrossConnectRowStatus" : {
4327
+ "nodetype" : "member",
4328
+ "module" : "ATM2-MIB"
4329
+ },
4330
+ "atmSvcVcCrossConnectCreationTime" : {
4331
+ "nodetype" : "member",
4332
+ "module" : "ATM2-MIB"
4333
+ },
4334
+ "atmSvcVcCrossConnectRowStatus" : {
4335
+ "nodetype" : "member",
4336
+ "module" : "ATM2-MIB"
4337
+ },
4338
+ "atmIfRegAddrAddressSource" : {
4339
+ "nodetype" : "member",
4340
+ "module" : "ATM2-MIB"
4341
+ },
4342
+ "atmIfRegAddrOrgScope" : {
4343
+ "nodetype" : "member",
4344
+ "module" : "ATM2-MIB"
4345
+ },
4346
+ "atmIfRegAddrRowStatus" : {
4347
+ "nodetype" : "member",
4348
+ "module" : "ATM2-MIB"
4349
+ },
4350
+ }, # members
4351
+ "description" :
4352
+ """A collection of objects providing information
4353
+ for a Switch/Service that implements ATM interfaces.""",
4354
+ }, # group
4355
+ "atmSwitchServcSigGroup" : {
4356
+ "nodetype" : "group",
4357
+ "moduleName" : "ATM2-MIB",
4358
+ "oid" : "1.3.6.1.2.1.37.1.14.3.1.4",
4359
+ "status" : "current",
4360
+ "members" : {
4361
+ "atmSigSupportClgPtyNumDel" : {
4362
+ "nodetype" : "member",
4363
+ "module" : "ATM2-MIB"
4364
+ },
4365
+ "atmSigSupportClgPtySubAddr" : {
4366
+ "nodetype" : "member",
4367
+ "module" : "ATM2-MIB"
4368
+ },
4369
+ "atmSigSupportCldPtySubAddr" : {
4370
+ "nodetype" : "member",
4371
+ "module" : "ATM2-MIB"
4372
+ },
4373
+ "atmSigSupportHiLyrInfo" : {
4374
+ "nodetype" : "member",
4375
+ "module" : "ATM2-MIB"
4376
+ },
4377
+ "atmSigSupportLoLyrInfo" : {
4378
+ "nodetype" : "member",
4379
+ "module" : "ATM2-MIB"
4380
+ },
4381
+ "atmSigSupportBlliRepeatInd" : {
4382
+ "nodetype" : "member",
4383
+ "module" : "ATM2-MIB"
4384
+ },
4385
+ "atmSigSupportAALInfo" : {
4386
+ "nodetype" : "member",
4387
+ "module" : "ATM2-MIB"
4388
+ },
4389
+ "atmSigSupportPrefCarrier" : {
4390
+ "nodetype" : "member",
4391
+ "module" : "ATM2-MIB"
4392
+ },
4393
+ }, # members
4394
+ "description" :
4395
+ """A collection of objects providing information
4396
+ for a Switch/Service that implements ATM signalling.""",
4397
+ }, # group
4398
+ "atmSwitchServcNotifGroup" : {
4399
+ "nodetype" : "group",
4400
+ "moduleName" : "ATM2-MIB",
4401
+ "oid" : "1.3.6.1.2.1.37.1.14.3.1.5",
4402
+ "status" : "current",
4403
+ "members" : {
4404
+ "atmIntfPvcFailuresTrap" : {
4405
+ "nodetype" : "member",
4406
+ "module" : "ATM2-MIB"
4407
+ },
4408
+ }, # members
4409
+ "description" :
4410
+ """A collection of notifications providing information
4411
+ for a Switch/Service that implements ATM interfaces.""",
4412
+ }, # group
4413
+ "atmSwitchGroup" : {
4414
+ "nodetype" : "group",
4415
+ "moduleName" : "ATM2-MIB",
4416
+ "oid" : "1.3.6.1.2.1.37.1.14.3.1.6",
4417
+ "status" : "current",
4418
+ "members" : {
4419
+ "atmSwitchAddressAddress" : {
4420
+ "nodetype" : "member",
4421
+ "module" : "ATM2-MIB"
4422
+ },
4423
+ "atmSwitchAddressRowStatus" : {
4424
+ "nodetype" : "member",
4425
+ "module" : "ATM2-MIB"
4426
+ },
4427
+ }, # members
4428
+ "description" :
4429
+ """A collection of objects providing information
4430
+ for an ATM switch.""",
4431
+ }, # group
4432
+ "atmServcGroup" : {
4433
+ "nodetype" : "group",
4434
+ "moduleName" : "ATM2-MIB",
4435
+ "oid" : "1.3.6.1.2.1.37.1.14.3.1.7",
4436
+ "status" : "current",
4437
+ "members" : {
4438
+ "atmVpCrossConnectUserName" : {
4439
+ "nodetype" : "member",
4440
+ "module" : "ATM2-MIB"
4441
+ },
4442
+ "atmVpCrossConnectProviderName" : {
4443
+ "nodetype" : "member",
4444
+ "module" : "ATM2-MIB"
4445
+ },
4446
+ "atmVcCrossConnectUserName" : {
4447
+ "nodetype" : "member",
4448
+ "module" : "ATM2-MIB"
4449
+ },
4450
+ "atmVcCrossConnectProviderName" : {
4451
+ "nodetype" : "member",
4452
+ "module" : "ATM2-MIB"
4453
+ },
4454
+ }, # members
4455
+ "description" :
4456
+ """A collection of objects providing information
4457
+ for an ATM Network Service.""",
4458
+ }, # group
4459
+ "atmHostGroup" : {
4460
+ "nodetype" : "group",
4461
+ "moduleName" : "ATM2-MIB",
4462
+ "oid" : "1.3.6.1.2.1.37.1.14.3.1.8",
4463
+ "status" : "current",
4464
+ "members" : {
4465
+ "atmAal5VclInPkts" : {
4466
+ "nodetype" : "member",
4467
+ "module" : "ATM2-MIB"
4468
+ },
4469
+ "atmAal5VclOutPkts" : {
4470
+ "nodetype" : "member",
4471
+ "module" : "ATM2-MIB"
4472
+ },
4473
+ "atmAal5VclInOctets" : {
4474
+ "nodetype" : "member",
4475
+ "module" : "ATM2-MIB"
4476
+ },
4477
+ "atmAal5VclOutOctets" : {
4478
+ "nodetype" : "member",
4479
+ "module" : "ATM2-MIB"
4480
+ },
4481
+ "atmVclAddrType" : {
4482
+ "nodetype" : "member",
4483
+ "module" : "ATM2-MIB"
4484
+ },
4485
+ "atmVclAddrRowStatus" : {
4486
+ "nodetype" : "member",
4487
+ "module" : "ATM2-MIB"
4488
+ },
4489
+ "atmAddrVclAddrType" : {
4490
+ "nodetype" : "member",
4491
+ "module" : "ATM2-MIB"
4492
+ },
4493
+ "atmVclGenSigDescrIndex" : {
4494
+ "nodetype" : "member",
4495
+ "module" : "ATM2-MIB"
4496
+ },
4497
+ }, # members
4498
+ "description" :
4499
+ """A collection of objects providing information
4500
+ for a Host that implements ATM interfaces.""",
4501
+ }, # group
4502
+ "atmHostSigDescrGroup" : {
4503
+ "nodetype" : "group",
4504
+ "moduleName" : "ATM2-MIB",
4505
+ "oid" : "1.3.6.1.2.1.37.1.14.3.1.9",
4506
+ "status" : "current",
4507
+ "members" : {
4508
+ "atmSigDescrParamAalType" : {
4509
+ "nodetype" : "member",
4510
+ "module" : "ATM2-MIB"
4511
+ },
4512
+ "atmSigDescrParamAalSscsType" : {
4513
+ "nodetype" : "member",
4514
+ "module" : "ATM2-MIB"
4515
+ },
4516
+ "atmSigDescrParamBhliType" : {
4517
+ "nodetype" : "member",
4518
+ "module" : "ATM2-MIB"
4519
+ },
4520
+ "atmSigDescrParamBhliInfo" : {
4521
+ "nodetype" : "member",
4522
+ "module" : "ATM2-MIB"
4523
+ },
4524
+ "atmSigDescrParamBbcConnConf" : {
4525
+ "nodetype" : "member",
4526
+ "module" : "ATM2-MIB"
4527
+ },
4528
+ "atmSigDescrParamBlliLayer2" : {
4529
+ "nodetype" : "member",
4530
+ "module" : "ATM2-MIB"
4531
+ },
4532
+ "atmSigDescrParamBlliLayer3" : {
4533
+ "nodetype" : "member",
4534
+ "module" : "ATM2-MIB"
4535
+ },
4536
+ "atmSigDescrParamBlliPktSize" : {
4537
+ "nodetype" : "member",
4538
+ "module" : "ATM2-MIB"
4539
+ },
4540
+ "atmSigDescrParamBlliSnapId" : {
4541
+ "nodetype" : "member",
4542
+ "module" : "ATM2-MIB"
4543
+ },
4544
+ "atmSigDescrParamBlliOuiPid" : {
4545
+ "nodetype" : "member",
4546
+ "module" : "ATM2-MIB"
4547
+ },
4548
+ "atmSigDescrParamRowStatus" : {
4549
+ "nodetype" : "member",
4550
+ "module" : "ATM2-MIB"
4551
+ },
4552
+ }, # members
4553
+ "description" :
4554
+ """A collection of objects providing information
4555
+ for a Host that implements ATM interfaces.""",
4556
+ }, # group
4557
+ }, # groups
4558
+
4559
+ "compliances" : {
4560
+ "atm2MIBCompliance" : {
4561
+ "nodetype" : "compliance",
4562
+ "moduleName" : "ATM2-MIB",
4563
+ "oid" : "1.3.6.1.2.1.37.1.14.3.2.1",
4564
+ "status" : "current",
4565
+ "description" :
4566
+ """The compliance statement for SNMP entities which represent ATM
4567
+ interfaces. The compliance statements are used to determine
4568
+ if a particular group or object applies to hosts,
4569
+ networks/switches, or both. The Common group is defined as
4570
+ applicable to all three.""",
4571
+ "requires" : {
4572
+ "atmCommonGroup" : {
4573
+ "nodetype" : "mandatory",
4574
+ "module" : "ATM2-MIB"
4575
+ },
4576
+ "atmCommonStatsGroup" : {
4577
+ "nodetype" : "optional",
4578
+ "module" : "ATM2-MIB",
4579
+ "description" :
4580
+ """This group is mandatory for systems that are supporting
4581
+ per-VPC or per-VCC counters.""",
4582
+ },
4583
+ "atmSwitchServcGroup" : {
4584
+ "nodetype" : "optional",
4585
+ "module" : "ATM2-MIB",
4586
+ "description" :
4587
+ """This group is mandatory for a Switch/Service that implements
4588
+ ATM interfaces.""",
4589
+ },
4590
+ "atmSwitchServcSigGroup" : {
4591
+ "nodetype" : "optional",
4592
+ "module" : "ATM2-MIB",
4593
+ "description" :
4594
+ """This group's write access is not required.""",
4595
+ },
4596
+ "atmSwitchServcNotifGroup" : {
4597
+ "nodetype" : "optional",
4598
+ "module" : "ATM2-MIB",
4599
+ "description" :
4600
+ """This group is optional for systems implementing support for
4601
+ an ATM Switch or an ATM Network Service.""",
4602
+ },
4603
+ "atmSwitchGroup" : {
4604
+ "nodetype" : "optional",
4605
+ "module" : "ATM2-MIB",
4606
+ "description" :
4607
+ """This group is optional for a switch that implements ATM
4608
+ interfaces.""",
4609
+ },
4610
+ "atmServcGroup" : {
4611
+ "nodetype" : "optional",
4612
+ "module" : "ATM2-MIB",
4613
+ "description" :
4614
+ """This group is mandatory for systems implementing support for
4615
+ an ATM Network Service.""",
4616
+ },
4617
+ "atmHostGroup" : {
4618
+ "nodetype" : "optional",
4619
+ "module" : "ATM2-MIB",
4620
+ "description" :
4621
+ """This group is mandatory for a Host that implements ATM
4622
+ interfaces.""",
4623
+ },
4624
+ "atmHostSigDescrGroup" : {
4625
+ "nodetype" : "optional",
4626
+ "module" : "ATM2-MIB",
4627
+ "description" :
4628
+ """This group is mandatory for a Host that implements ATM
4629
+ interfaces. Write access is not required for this group.""",
4630
+ },
4631
+ }, # requires
4632
+ "refinements" : {
4633
+ "atmVplLogicalPortDef" : {
4634
+ "module" : "ATM2-MIB",
4635
+ "access" : "readonly",
4636
+ "description" :
4637
+ """This object is mandatory for systems support ATM Logical
4638
+ Port interfaces.""",
4639
+ },
4640
+ "atmIntfSigVccRxTrafficDescrIndex" : {
4641
+ "module" : "ATM2-MIB",
4642
+ "description" :
4643
+ """This object is mandatory for systems that support negotiation
4644
+ of signalling VCC traffic parameters through ILMI.""",
4645
+ },
4646
+ "atmIntfSigVccTxTrafficDescrIndex" : {
4647
+ "module" : "ATM2-MIB",
4648
+ "description" :
4649
+ """This object is mandatory for systems that support negotiation
4650
+ of signalling VCC traffic parameters through ILMI.""",
4651
+ },
4652
+ "atmCurrentlyFailingPVplTimeStamp" : {
4653
+ "module" : "ATM2-MIB",
4654
+ "description" :
4655
+ """This object is optional.""",
4656
+ },
4657
+ "atmCurrentlyFailingPVclTimeStamp" : {
4658
+ "module" : "ATM2-MIB",
4659
+ "description" :
4660
+ """This object is optional.""",
4661
+ },
4662
+ "atmIntfLeafSetupFailures" : {
4663
+ "module" : "ATM2-MIB",
4664
+ "description" :
4665
+ """This object is optional.""",
4666
+ },
4667
+ "atmIntfLeafSetupRequests" : {
4668
+ "module" : "ATM2-MIB",
4669
+ "description" :
4670
+ """This object is optional.""",
4671
+ },
4672
+ "atmIfRegAddrRowStatus" : {
4673
+ "module" : "ATM2-MIB",
4674
+ "access" : "readonly",
4675
+ "description" :
4676
+ """Write access is not required, and only one of the six
4677
+ enumerated values for the RowStatus textual convention need
4678
+ be supported, specifically: active(1).""",
4679
+ },
4680
+ "atmSvcVpCrossConnectRowStatus" : {
4681
+ "module" : "ATM2-MIB",
4682
+ "access" : "readonly",
4683
+ "description" :
4684
+ """Write access is not required, and only one of the six
4685
+ enumerated values for the RowStatus textual convention need
4686
+ be supported, specifically: active(1)""",
4687
+ },
4688
+ "atmSvcVcCrossConnectRowStatus" : {
4689
+ "module" : "ATM2-MIB",
4690
+ "access" : "readonly",
4691
+ "description" :
4692
+ """Write access is not required, and only one of the six
4693
+ enumerated values for the RowStatus textual convention need
4694
+ be supported, specifically: active(1)""",
4695
+ },
4696
+ "atmVclAddrType" : {
4697
+ "module" : "ATM2-MIB",
4698
+ "access" : "readonly",
4699
+ "description" :
4700
+ """Write access is not required.""",
4701
+ },
4702
+ "atmVclAddrRowStatus" : {
4703
+ "module" : "ATM2-MIB",
4704
+ "access" : "readonly",
4705
+ "description" :
4706
+ """Write access is not required, and only one of the six
4707
+ enumerated values for the RowStatus textual convention need
4708
+ be supported, specifically: active(1).""",
4709
+ },
4710
+ }, # refinements
4711
+
4712
+ }, # compliance
4713
+ }, # compliances
4714
+
4715
+ }