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,4104 @@
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 ATM-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/ATM-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "ATM-MIB",
11
+
12
+ "ATM-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF AToM MIB Working Group""",
17
+ "contact" :
18
+ """ Kaj Tesink
19
+ Postal: Bellcore
20
+ 331 Newman Springs Road
21
+ Red Bank, NJ 07701
22
+ Tel: 732-758-5254
23
+ Fax: 732-758-2269
24
+ E-mail: kaj@bellcore.com""",
25
+ "description" :
26
+ """This is the MIB Module for ATM and AAL5-related
27
+ objects for managing ATM interfaces, ATM virtual
28
+ links, ATM cross-connects, AAL5 entities, and
29
+ and AAL5 connections.""",
30
+ "revisions" : (
31
+ {
32
+ "date" : "1998-10-19 12:00",
33
+ "description" :
34
+ """The initial revision of this module was published
35
+ as RFC 1695. Key revisions include:
36
+ o Textual Conventions and OBJECT IDENTITIES have
37
+ been moved to a separate MIB module.
38
+ o Applicability of objects to PVCs, SVCs and Soft
39
+ PVCs has been clarified.
40
+ o DEFVAL clauses have been added.
41
+ o The relationship of ifIndex values with different
42
+ layers and sublayers related to ATM has been
43
+ clarified.
44
+ o atmTrafficQosClass has been deprecated
45
+ and replaced with atmServiceCategory.
46
+ o atmInterfaceCurrentMaxVpiBits and
47
+ atmInterfaceCurrentMaxVciBits have been added with
48
+ a description on their relationship with other
49
+ objects.
50
+ o atmInterfaceAddressType and atmInterfaceAdminAddress
51
+ have been deprecated and replaced by
52
+ atmInterfaceSubscrAddress.
53
+ o atmInterfaceTCAlarmState has been clarified.
54
+ o atmTrafficDescrParamIndexNext has been introduced
55
+ in order to provide a manager a free
56
+ atmTrafficDescrParamIndex value.
57
+ o The atmTrafficFrameDiscard capability has been added.
58
+ o A connection topology type (atmVpl/VclCastType) and
59
+ a call control type (atmVpl/VclConnKind) have been
60
+ added.
61
+ o aal2 has been added to atmVccAalType.""",
62
+ },
63
+ {
64
+ "date" : "1994-06-07 22:45",
65
+ "description" :
66
+ """The RFC1695 version of this MIB module.""",
67
+ },
68
+ ),
69
+ "identity node" : "atmMIB",
70
+ },
71
+
72
+ "imports" : (
73
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
74
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
75
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
76
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
77
+ {"module" : "SNMPv2-SMI", "name" : "IpAddress"},
78
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
79
+ {"module" : "SNMPv2-TC", "name" : "DisplayString"},
80
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
81
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
82
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
83
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
84
+ {"module" : "IF-MIB", "name" : "InterfaceIndex"},
85
+ {"module" : "IF-MIB", "name" : "ifIndex"},
86
+ {"module" : "ATM-TC-MIB", "name" : "AtmAddr"},
87
+ {"module" : "ATM-TC-MIB", "name" : "AtmConnKind"},
88
+ {"module" : "ATM-TC-MIB", "name" : "AtmConnCastType"},
89
+ {"module" : "ATM-TC-MIB", "name" : "AtmServiceCategory"},
90
+ {"module" : "ATM-TC-MIB", "name" : "AtmTrafficDescrParamIndex"},
91
+ {"module" : "ATM-TC-MIB", "name" : "AtmVpIdentifier"},
92
+ {"module" : "ATM-TC-MIB", "name" : "AtmVcIdentifier"},
93
+ {"module" : "ATM-TC-MIB", "name" : "AtmVorXAdminStatus"},
94
+ {"module" : "ATM-TC-MIB", "name" : "AtmVorXLastChange"},
95
+ {"module" : "ATM-TC-MIB", "name" : "AtmVorXOperStatus"},
96
+ {"module" : "ATM-TC-MIB", "name" : "atmNoClpNoScr"},
97
+ ),
98
+
99
+ "nodes" : {
100
+ "atmMIB" : {
101
+ "nodetype" : "node",
102
+ "moduleName" : "ATM-MIB",
103
+ "oid" : "1.3.6.1.2.1.37",
104
+ "status" : "current",
105
+ }, # node
106
+ "atmMIBObjects" : {
107
+ "nodetype" : "node",
108
+ "moduleName" : "ATM-MIB",
109
+ "oid" : "1.3.6.1.2.1.37.1",
110
+ }, # node
111
+ "atmInterfaceConfTable" : {
112
+ "nodetype" : "table",
113
+ "moduleName" : "ATM-MIB",
114
+ "oid" : "1.3.6.1.2.1.37.1.2",
115
+ "status" : "current",
116
+ "description" :
117
+ """This table contains ATM local interface
118
+ configuration parameters, one entry per ATM
119
+ interface port.""",
120
+ }, # table
121
+ "atmInterfaceConfEntry" : {
122
+ "nodetype" : "row",
123
+ "moduleName" : "ATM-MIB",
124
+ "oid" : "1.3.6.1.2.1.37.1.2.1",
125
+ "status" : "current",
126
+ "linkage" : [
127
+ "ifIndex",
128
+ ],
129
+ "description" :
130
+ """This list contains ATM interface configuration
131
+ parameters and state variables and is indexed
132
+ by ifIndex values of ATM interfaces.""",
133
+ }, # row
134
+ "atmInterfaceMaxVpcs" : {
135
+ "nodetype" : "column",
136
+ "moduleName" : "ATM-MIB",
137
+ "oid" : "1.3.6.1.2.1.37.1.2.1.1",
138
+ "status" : "current",
139
+ "syntax" : {
140
+ "type" : {
141
+ "basetype" : "Integer32",
142
+ "ranges" : [
143
+ {
144
+ "min" : "0",
145
+ "max" : "4096"
146
+ },
147
+ ],
148
+ "range" : {
149
+ "min" : "0",
150
+ "max" : "4096"
151
+ },
152
+ },
153
+ },
154
+ "access" : "readwrite",
155
+ "description" :
156
+ """The maximum number of VPCs (PVPCs and SVPCs)
157
+ supported at this ATM interface. At the ATM UNI,
158
+ the maximum number of VPCs (PVPCs and SVPCs)
159
+ ranges from 0 to 256 only.""",
160
+ }, # column
161
+ "atmInterfaceMaxVccs" : {
162
+ "nodetype" : "column",
163
+ "moduleName" : "ATM-MIB",
164
+ "oid" : "1.3.6.1.2.1.37.1.2.1.2",
165
+ "status" : "current",
166
+ "syntax" : {
167
+ "type" : {
168
+ "basetype" : "Integer32",
169
+ "ranges" : [
170
+ {
171
+ "min" : "0",
172
+ "max" : "65536"
173
+ },
174
+ ],
175
+ "range" : {
176
+ "min" : "0",
177
+ "max" : "65536"
178
+ },
179
+ },
180
+ },
181
+ "access" : "readwrite",
182
+ "description" :
183
+ """The maximum number of VCCs (PVCCs and SVCCs)
184
+ supported at this ATM interface.""",
185
+ }, # column
186
+ "atmInterfaceConfVpcs" : {
187
+ "nodetype" : "column",
188
+ "moduleName" : "ATM-MIB",
189
+ "oid" : "1.3.6.1.2.1.37.1.2.1.3",
190
+ "status" : "current",
191
+ "syntax" : {
192
+ "type" : {
193
+ "basetype" : "Integer32",
194
+ "ranges" : [
195
+ {
196
+ "min" : "0",
197
+ "max" : "4096"
198
+ },
199
+ ],
200
+ "range" : {
201
+ "min" : "0",
202
+ "max" : "4096"
203
+ },
204
+ },
205
+ },
206
+ "access" : "readonly",
207
+ "description" :
208
+ """The number of VPCs (PVPC, Soft PVPC and SVPC)
209
+ currently in use at this ATM interface. It includes
210
+ the number of PVPCs and Soft PVPCs that are configured
211
+ at the interface, plus the number of SVPCs
212
+ that are currently established at the
213
+ interface.
214
+
215
+ At the ATM UNI, the configured number of
216
+ VPCs (PVPCs and SVPCs) can range from
217
+ 0 to 256 only.""",
218
+ }, # column
219
+ "atmInterfaceConfVccs" : {
220
+ "nodetype" : "column",
221
+ "moduleName" : "ATM-MIB",
222
+ "oid" : "1.3.6.1.2.1.37.1.2.1.4",
223
+ "status" : "current",
224
+ "syntax" : {
225
+ "type" : {
226
+ "basetype" : "Integer32",
227
+ "ranges" : [
228
+ {
229
+ "min" : "0",
230
+ "max" : "65536"
231
+ },
232
+ ],
233
+ "range" : {
234
+ "min" : "0",
235
+ "max" : "65536"
236
+ },
237
+ },
238
+ },
239
+ "access" : "readonly",
240
+ "description" :
241
+ """The number of VCCs (PVCC, Soft PVCC and SVCC)
242
+ currently in use at this ATM interface. It includes
243
+ the number of PVCCs and Soft PVCCs that are configured
244
+ at the interface, plus the number of SVCCs
245
+ that are currently established at the
246
+ interface.""",
247
+ }, # column
248
+ "atmInterfaceMaxActiveVpiBits" : {
249
+ "nodetype" : "column",
250
+ "moduleName" : "ATM-MIB",
251
+ "oid" : "1.3.6.1.2.1.37.1.2.1.5",
252
+ "status" : "current",
253
+ "syntax" : {
254
+ "type" : {
255
+ "basetype" : "Integer32",
256
+ "ranges" : [
257
+ {
258
+ "min" : "0",
259
+ "max" : "12"
260
+ },
261
+ ],
262
+ "range" : {
263
+ "min" : "0",
264
+ "max" : "12"
265
+ },
266
+ },
267
+ },
268
+ "access" : "readwrite",
269
+ "description" :
270
+ """The maximum number of active VPI bits
271
+ configured for use at the ATM interface.
272
+ At the ATM UNI, the maximum number of active
273
+ VPI bits configured for use ranges from
274
+ 0 to 8 only.""",
275
+ }, # column
276
+ "atmInterfaceMaxActiveVciBits" : {
277
+ "nodetype" : "column",
278
+ "moduleName" : "ATM-MIB",
279
+ "oid" : "1.3.6.1.2.1.37.1.2.1.6",
280
+ "status" : "current",
281
+ "syntax" : {
282
+ "type" : {
283
+ "basetype" : "Integer32",
284
+ "ranges" : [
285
+ {
286
+ "min" : "0",
287
+ "max" : "16"
288
+ },
289
+ ],
290
+ "range" : {
291
+ "min" : "0",
292
+ "max" : "16"
293
+ },
294
+ },
295
+ },
296
+ "access" : "readwrite",
297
+ "description" :
298
+ """The maximum number of active VCI bits
299
+ configured for use at this ATM interface.""",
300
+ }, # column
301
+ "atmInterfaceIlmiVpi" : {
302
+ "nodetype" : "column",
303
+ "moduleName" : "ATM-MIB",
304
+ "oid" : "1.3.6.1.2.1.37.1.2.1.7",
305
+ "status" : "current",
306
+ "syntax" : {
307
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVpIdentifier"},
308
+ },
309
+ "access" : "readwrite",
310
+ "default" : "0",
311
+ "description" :
312
+ """The VPI value of the VCC supporting
313
+ the ILMI at this ATM interface. If the values of
314
+ atmInterfaceIlmiVpi and atmInterfaceIlmiVci are
315
+ both equal to zero then the ILMI is not
316
+ supported at this ATM interface.""",
317
+ }, # column
318
+ "atmInterfaceIlmiVci" : {
319
+ "nodetype" : "column",
320
+ "moduleName" : "ATM-MIB",
321
+ "oid" : "1.3.6.1.2.1.37.1.2.1.8",
322
+ "status" : "current",
323
+ "syntax" : {
324
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVcIdentifier"},
325
+ },
326
+ "access" : "readwrite",
327
+ "default" : "16",
328
+ "description" :
329
+ """The VCI value of the VCC supporting
330
+ the ILMI at this ATM interface. If the values of
331
+ atmInterfaceIlmiVpi and atmInterfaceIlmiVci are
332
+ both equal to zero then the ILMI is not
333
+ supported at this ATM interface.""",
334
+ }, # column
335
+ "atmInterfaceAddressType" : {
336
+ "nodetype" : "column",
337
+ "moduleName" : "ATM-MIB",
338
+ "oid" : "1.3.6.1.2.1.37.1.2.1.9",
339
+ "status" : "deprecated",
340
+ "syntax" : {
341
+ "type" : {
342
+ "basetype" : "Enumeration",
343
+ "private" : {
344
+ "nodetype" : "namednumber",
345
+ "number" : "1"
346
+ },
347
+ "nsapE164" : {
348
+ "nodetype" : "namednumber",
349
+ "number" : "2"
350
+ },
351
+ "nativeE164" : {
352
+ "nodetype" : "namednumber",
353
+ "number" : "3"
354
+ },
355
+ "other" : {
356
+ "nodetype" : "namednumber",
357
+ "number" : "4"
358
+ },
359
+ },
360
+ },
361
+ "access" : "readonly",
362
+ "description" :
363
+ """The type of primary ATM address configured
364
+ for use at this ATM interface.""",
365
+ }, # column
366
+ "atmInterfaceAdminAddress" : {
367
+ "nodetype" : "column",
368
+ "moduleName" : "ATM-MIB",
369
+ "oid" : "1.3.6.1.2.1.37.1.2.1.10",
370
+ "status" : "deprecated",
371
+ "syntax" : {
372
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmAddr"},
373
+ },
374
+ "access" : "readonly",
375
+ "description" :
376
+ """The primary address assigned for administrative purposes,
377
+ for example, an address associated with the
378
+ service provider side of a public network UNI
379
+ (thus, the value of this address corresponds
380
+ with the value of ifPhysAddress at the host side).
381
+ If this interface has no assigned administrative
382
+ address, or when the address used for
383
+ administrative purposes is the same as that used
384
+ for ifPhysAddress, then this is an octet string of
385
+ zero length.""",
386
+ }, # column
387
+ "atmInterfaceMyNeighborIpAddress" : {
388
+ "nodetype" : "column",
389
+ "moduleName" : "ATM-MIB",
390
+ "oid" : "1.3.6.1.2.1.37.1.2.1.11",
391
+ "status" : "current",
392
+ "syntax" : {
393
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
394
+ },
395
+ "access" : "readwrite",
396
+ "description" :
397
+ """The IP address of the neighbor system connected to
398
+ the far end of this interface, to which a Network
399
+ Management Station can send SNMP messages, as IP
400
+ datagrams sent to UDP port 161, in order to access
401
+ network management information concerning the
402
+ operation of that system. Note that the value
403
+ of this object may be obtained in different ways,
404
+ e.g., by manual configuration, or through ILMI
405
+ interaction with the neighbor system.""",
406
+ }, # column
407
+ "atmInterfaceMyNeighborIfName" : {
408
+ "nodetype" : "column",
409
+ "moduleName" : "ATM-MIB",
410
+ "oid" : "1.3.6.1.2.1.37.1.2.1.12",
411
+ "status" : "current",
412
+ "syntax" : {
413
+ "type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
414
+ },
415
+ "access" : "readwrite",
416
+ "description" :
417
+ """The textual name of the interface on the neighbor
418
+ system on the far end of this interface, and to
419
+ which this interface connects. If the neighbor
420
+ system is manageable through SNMP and supports
421
+ the object ifName, the value of this object must
422
+ be identical with that of ifName for the ifEntry
423
+ of the lowest level physical interface
424
+ for this port. If this interface does not have a
425
+ textual name, the value of this object is a zero
426
+ length string. Note that the value of this object
427
+ may be obtained in different ways, e.g., by manual
428
+ configuration, or through ILMI interaction with
429
+ the neighbor system.""",
430
+ }, # column
431
+ "atmInterfaceCurrentMaxVpiBits" : {
432
+ "nodetype" : "column",
433
+ "moduleName" : "ATM-MIB",
434
+ "oid" : "1.3.6.1.2.1.37.1.2.1.13",
435
+ "status" : "current",
436
+ "syntax" : {
437
+ "type" : {
438
+ "basetype" : "Integer32",
439
+ "ranges" : [
440
+ {
441
+ "min" : "0",
442
+ "max" : "12"
443
+ },
444
+ ],
445
+ "range" : {
446
+ "min" : "0",
447
+ "max" : "12"
448
+ },
449
+ },
450
+ },
451
+ "access" : "readonly",
452
+ "description" :
453
+ """The maximum number of VPI Bits that may
454
+ currently be used at this ATM interface.
455
+ The value is the minimum of
456
+ atmInterfaceMaxActiveVpiBits, and the
457
+ atmInterfaceMaxActiveVpiBits of the interface's
458
+ UNI/NNI peer.
459
+
460
+ If the interface does not negotiate with
461
+ its peer to determine the number of VPI Bits
462
+ that can be used on the interface, then the
463
+ value of this object must equal
464
+ atmInterfaceMaxActiveVpiBits.""",
465
+ }, # column
466
+ "atmInterfaceCurrentMaxVciBits" : {
467
+ "nodetype" : "column",
468
+ "moduleName" : "ATM-MIB",
469
+ "oid" : "1.3.6.1.2.1.37.1.2.1.14",
470
+ "status" : "current",
471
+ "syntax" : {
472
+ "type" : {
473
+ "basetype" : "Integer32",
474
+ "ranges" : [
475
+ {
476
+ "min" : "0",
477
+ "max" : "16"
478
+ },
479
+ ],
480
+ "range" : {
481
+ "min" : "0",
482
+ "max" : "16"
483
+ },
484
+ },
485
+ },
486
+ "access" : "readonly",
487
+ "description" :
488
+ """The maximum number of VCI Bits that may
489
+ currently be used at this ATM interface.
490
+ The value is the minimum of
491
+ atmInterfaceMaxActiveVciBits, and the
492
+ atmInterfaceMaxActiveVciBits of the interface's
493
+ UNI/NNI peer.
494
+
495
+ If the interface does not negotiate with
496
+ its peer to determine the number of VCI Bits
497
+ that can be used on the interface, then the
498
+ value of this object must equal
499
+ atmInterfaceMaxActiveVciBits.""",
500
+ }, # column
501
+ "atmInterfaceSubscrAddress" : {
502
+ "nodetype" : "column",
503
+ "moduleName" : "ATM-MIB",
504
+ "oid" : "1.3.6.1.2.1.37.1.2.1.15",
505
+ "status" : "current",
506
+ "syntax" : {
507
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmAddr"},
508
+ },
509
+ "access" : "readwrite",
510
+ "description" :
511
+ """The identifier assigned by a service provider
512
+ to the network side of a public network UNI.
513
+ If this interface has no assigned service provider
514
+ address, or for other interfaces this is an octet string
515
+ of zero length.""",
516
+ }, # column
517
+ "atmInterfaceDs3PlcpTable" : {
518
+ "nodetype" : "table",
519
+ "moduleName" : "ATM-MIB",
520
+ "oid" : "1.3.6.1.2.1.37.1.3",
521
+ "status" : "current",
522
+ "description" :
523
+ """This table contains ATM interface DS3 PLCP
524
+ parameters and state variables, one entry per
525
+ ATM interface port.""",
526
+ }, # table
527
+ "atmInterfaceDs3PlcpEntry" : {
528
+ "nodetype" : "row",
529
+ "moduleName" : "ATM-MIB",
530
+ "oid" : "1.3.6.1.2.1.37.1.3.1",
531
+ "status" : "current",
532
+ "linkage" : [
533
+ "ifIndex",
534
+ ],
535
+ "description" :
536
+ """This list contains DS3 PLCP parameters and
537
+ state variables at the ATM interface and is
538
+ indexed by the ifIndex value of the ATM interface.""",
539
+ }, # row
540
+ "atmInterfaceDs3PlcpSEFSs" : {
541
+ "nodetype" : "column",
542
+ "moduleName" : "ATM-MIB",
543
+ "oid" : "1.3.6.1.2.1.37.1.3.1.1",
544
+ "status" : "current",
545
+ "syntax" : {
546
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
547
+ },
548
+ "access" : "readonly",
549
+ "description" :
550
+ """The number of DS3 PLCP Severely Errored Framing
551
+ Seconds (SEFS). Each SEFS represents a
552
+ one-second interval which contains
553
+ one or more SEF events.""",
554
+ }, # column
555
+ "atmInterfaceDs3PlcpAlarmState" : {
556
+ "nodetype" : "column",
557
+ "moduleName" : "ATM-MIB",
558
+ "oid" : "1.3.6.1.2.1.37.1.3.1.2",
559
+ "status" : "current",
560
+ "syntax" : {
561
+ "type" : {
562
+ "basetype" : "Enumeration",
563
+ "noAlarm" : {
564
+ "nodetype" : "namednumber",
565
+ "number" : "1"
566
+ },
567
+ "receivedFarEndAlarm" : {
568
+ "nodetype" : "namednumber",
569
+ "number" : "2"
570
+ },
571
+ "incomingLOF" : {
572
+ "nodetype" : "namednumber",
573
+ "number" : "3"
574
+ },
575
+ },
576
+ },
577
+ "access" : "readonly",
578
+ "description" :
579
+ """This variable indicates if there is an
580
+ alarm present for the DS3 PLCP. The value
581
+ receivedFarEndAlarm means that the DS3 PLCP
582
+ has received an incoming Yellow
583
+ Signal, the value incomingLOF means that
584
+ the DS3 PLCP has declared a loss of frame (LOF)
585
+ failure condition, and the value noAlarm
586
+ means that there are no alarms present.
587
+ Transition from the failure to the no alarm state
588
+ occurs when no defects (e.g., LOF) are received
589
+ for more than 10 seconds.""",
590
+ }, # column
591
+ "atmInterfaceDs3PlcpUASs" : {
592
+ "nodetype" : "column",
593
+ "moduleName" : "ATM-MIB",
594
+ "oid" : "1.3.6.1.2.1.37.1.3.1.3",
595
+ "status" : "current",
596
+ "syntax" : {
597
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
598
+ },
599
+ "access" : "readonly",
600
+ "description" :
601
+ """The counter associated with the number of
602
+ Unavailable Seconds encountered by the PLCP.""",
603
+ }, # column
604
+ "atmInterfaceTCTable" : {
605
+ "nodetype" : "table",
606
+ "moduleName" : "ATM-MIB",
607
+ "oid" : "1.3.6.1.2.1.37.1.4",
608
+ "status" : "current",
609
+ "description" :
610
+ """This table contains ATM interface TC
611
+ Sublayer parameters and state variables,
612
+ one entry per ATM interface port.""",
613
+ }, # table
614
+ "atmInterfaceTCEntry" : {
615
+ "nodetype" : "row",
616
+ "moduleName" : "ATM-MIB",
617
+ "oid" : "1.3.6.1.2.1.37.1.4.1",
618
+ "status" : "current",
619
+ "linkage" : [
620
+ "ifIndex",
621
+ ],
622
+ "description" :
623
+ """This list contains TC Sublayer parameters
624
+ and state variables at the ATM interface and is
625
+ indexed by the ifIndex value of the ATM interface.""",
626
+ }, # row
627
+ "atmInterfaceOCDEvents" : {
628
+ "nodetype" : "column",
629
+ "moduleName" : "ATM-MIB",
630
+ "oid" : "1.3.6.1.2.1.37.1.4.1.1",
631
+ "status" : "current",
632
+ "syntax" : {
633
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
634
+ },
635
+ "access" : "readonly",
636
+ "description" :
637
+ """The number of times the Out of Cell
638
+ Delineation (OCD) events occur. If seven
639
+ consecutive ATM cells have Header Error
640
+ Control (HEC) violations, an OCD event occurs.
641
+ A high number of OCD events may indicate a
642
+ problem with the TC Sublayer.""",
643
+ }, # column
644
+ "atmInterfaceTCAlarmState" : {
645
+ "nodetype" : "column",
646
+ "moduleName" : "ATM-MIB",
647
+ "oid" : "1.3.6.1.2.1.37.1.4.1.2",
648
+ "status" : "current",
649
+ "syntax" : {
650
+ "type" : {
651
+ "basetype" : "Enumeration",
652
+ "noAlarm" : {
653
+ "nodetype" : "namednumber",
654
+ "number" : "1"
655
+ },
656
+ "lcdFailure" : {
657
+ "nodetype" : "namednumber",
658
+ "number" : "2"
659
+ },
660
+ },
661
+ },
662
+ "access" : "readonly",
663
+ "description" :
664
+ """This variable indicates if there is an
665
+ alarm present for the TC Sublayer. The value
666
+ lcdFailure(2) indicates that the TC Sublayer
667
+ is currently in the Loss of Cell Delineation
668
+ (LCD) defect maintenance state. The value
669
+ noAlarm(1) indicates that the TC Sublayer
670
+ is currently not in the LCD defect
671
+ maintenance state.""",
672
+ }, # column
673
+ "atmTrafficDescrParamTable" : {
674
+ "nodetype" : "table",
675
+ "moduleName" : "ATM-MIB",
676
+ "oid" : "1.3.6.1.2.1.37.1.5",
677
+ "status" : "current",
678
+ "description" :
679
+ """This table contains information on ATM traffic
680
+ descriptor type and the associated parameters.""",
681
+ }, # table
682
+ "atmTrafficDescrParamEntry" : {
683
+ "nodetype" : "row",
684
+ "moduleName" : "ATM-MIB",
685
+ "oid" : "1.3.6.1.2.1.37.1.5.1",
686
+ "create" : "true",
687
+ "status" : "current",
688
+ "linkage" : [
689
+ "atmTrafficDescrParamIndex",
690
+ ],
691
+ "description" :
692
+ """This list contains ATM traffic descriptor
693
+ type and the associated parameters.""",
694
+ }, # row
695
+ "atmTrafficDescrParamIndex" : {
696
+ "nodetype" : "column",
697
+ "moduleName" : "ATM-MIB",
698
+ "oid" : "1.3.6.1.2.1.37.1.5.1.1",
699
+ "status" : "current",
700
+ "syntax" : {
701
+ "type" : {
702
+ "basetype" : "Integer32",
703
+ "parent module" : {
704
+ "name" : "ATM-TC-MIB",
705
+ "type" : "AtmTrafficDescrParamIndex",
706
+ },
707
+ "ranges" : [
708
+ {
709
+ "min" : "1",
710
+ "max" : "2147483647"
711
+ },
712
+ ],
713
+ "range" : {
714
+ "min" : "1",
715
+ "max" : "2147483647"
716
+ },
717
+ },
718
+ },
719
+ "access" : "noaccess",
720
+ "description" :
721
+ """This object is used by the virtual link
722
+ table (i.e., VPL or VCL table)
723
+ to identify the row of this table.
724
+ When creating a new row in the table
725
+ the value of this index may be obtained
726
+ by retrieving the value of
727
+ atmTrafficDescrParamIndexNext.""",
728
+ }, # column
729
+ "atmTrafficDescrType" : {
730
+ "nodetype" : "column",
731
+ "moduleName" : "ATM-MIB",
732
+ "oid" : "1.3.6.1.2.1.37.1.5.1.2",
733
+ "status" : "current",
734
+ "syntax" : {
735
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
736
+ },
737
+ "access" : "readwrite",
738
+ "default" : "1.3.6.1.2.1.37.1.1.2",
739
+ "description" :
740
+ """The value of this object identifies the type
741
+ of ATM traffic descriptor.
742
+ The type may indicate no traffic descriptor or
743
+ traffic descriptor with one or more parameters.
744
+ These parameters are specified as a parameter
745
+ vector, in the corresponding instances of the
746
+ objects:
747
+ atmTrafficDescrParam1
748
+ atmTrafficDescrParam2
749
+ atmTrafficDescrParam3
750
+ atmTrafficDescrParam4
751
+ atmTrafficDescrParam5.""",
752
+ }, # column
753
+ "atmTrafficDescrParam1" : {
754
+ "nodetype" : "column",
755
+ "moduleName" : "ATM-MIB",
756
+ "oid" : "1.3.6.1.2.1.37.1.5.1.3",
757
+ "status" : "current",
758
+ "syntax" : {
759
+ "type" : { "module" :"", "name" : "Integer32"},
760
+ },
761
+ "access" : "readwrite",
762
+ "default" : "0",
763
+ "description" :
764
+ """The first parameter of the ATM traffic descriptor
765
+ used according to the value of
766
+ atmTrafficDescrType.""",
767
+ }, # column
768
+ "atmTrafficDescrParam2" : {
769
+ "nodetype" : "column",
770
+ "moduleName" : "ATM-MIB",
771
+ "oid" : "1.3.6.1.2.1.37.1.5.1.4",
772
+ "status" : "current",
773
+ "syntax" : {
774
+ "type" : { "module" :"", "name" : "Integer32"},
775
+ },
776
+ "access" : "readwrite",
777
+ "default" : "0",
778
+ "description" :
779
+ """The second parameter of the ATM traffic descriptor
780
+ used according to the value of
781
+ atmTrafficDescrType.""",
782
+ }, # column
783
+ "atmTrafficDescrParam3" : {
784
+ "nodetype" : "column",
785
+ "moduleName" : "ATM-MIB",
786
+ "oid" : "1.3.6.1.2.1.37.1.5.1.5",
787
+ "status" : "current",
788
+ "syntax" : {
789
+ "type" : { "module" :"", "name" : "Integer32"},
790
+ },
791
+ "access" : "readwrite",
792
+ "default" : "0",
793
+ "description" :
794
+ """The third parameter of the ATM traffic descriptor
795
+ used according to the value of
796
+ atmTrafficDescrType.""",
797
+ }, # column
798
+ "atmTrafficDescrParam4" : {
799
+ "nodetype" : "column",
800
+ "moduleName" : "ATM-MIB",
801
+ "oid" : "1.3.6.1.2.1.37.1.5.1.6",
802
+ "status" : "current",
803
+ "syntax" : {
804
+ "type" : { "module" :"", "name" : "Integer32"},
805
+ },
806
+ "access" : "readwrite",
807
+ "default" : "0",
808
+ "description" :
809
+ """The fourth parameter of the ATM traffic descriptor
810
+ used according to the value of
811
+ atmTrafficDescrType.""",
812
+ }, # column
813
+ "atmTrafficDescrParam5" : {
814
+ "nodetype" : "column",
815
+ "moduleName" : "ATM-MIB",
816
+ "oid" : "1.3.6.1.2.1.37.1.5.1.7",
817
+ "status" : "current",
818
+ "syntax" : {
819
+ "type" : { "module" :"", "name" : "Integer32"},
820
+ },
821
+ "access" : "readwrite",
822
+ "default" : "0",
823
+ "description" :
824
+ """The fifth parameter of the ATM traffic descriptor
825
+ used according to the value of
826
+ atmTrafficDescrType.""",
827
+ }, # column
828
+ "atmTrafficQoSClass" : {
829
+ "nodetype" : "column",
830
+ "moduleName" : "ATM-MIB",
831
+ "oid" : "1.3.6.1.2.1.37.1.5.1.8",
832
+ "status" : "deprecated",
833
+ "syntax" : {
834
+ "type" : {
835
+ "basetype" : "Integer32",
836
+ "ranges" : [
837
+ {
838
+ "min" : "0",
839
+ "max" : "255"
840
+ },
841
+ ],
842
+ "range" : {
843
+ "min" : "0",
844
+ "max" : "255"
845
+ },
846
+ },
847
+ },
848
+ "access" : "readwrite",
849
+ "default" : "0",
850
+ "description" :
851
+ """The value of this object identifies the QoS Class.
852
+ Four Service classes have been
853
+ specified in the ATM Forum UNI Specification:
854
+ Service Class A: Constant bit rate video and
855
+ Circuit emulation
856
+ Service Class B: Variable bit rate video/audio
857
+ Service Class C: Connection-oriented data
858
+ Service Class D: Connectionless data
859
+ Four QoS classes numbered 1, 2, 3, and 4 have
860
+ been specified with the aim to support service
861
+ classes A, B, C, and D respectively.
862
+ An unspecified QoS Class numbered `0' is used
863
+ for best effort traffic.""",
864
+ }, # column
865
+ "atmTrafficDescrRowStatus" : {
866
+ "nodetype" : "column",
867
+ "moduleName" : "ATM-MIB",
868
+ "oid" : "1.3.6.1.2.1.37.1.5.1.9",
869
+ "status" : "current",
870
+ "syntax" : {
871
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
872
+ },
873
+ "access" : "readwrite",
874
+ "default" : "active",
875
+ "description" :
876
+ """This object is used to create
877
+ a new row or modify or delete an
878
+ existing row in this table.""",
879
+ }, # column
880
+ "atmServiceCategory" : {
881
+ "nodetype" : "column",
882
+ "moduleName" : "ATM-MIB",
883
+ "oid" : "1.3.6.1.2.1.37.1.5.1.10",
884
+ "status" : "current",
885
+ "syntax" : {
886
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmServiceCategory"},
887
+ },
888
+ "access" : "readwrite",
889
+ "default" : "ubr",
890
+ "description" :
891
+ """The ATM service category.""",
892
+ }, # column
893
+ "atmTrafficFrameDiscard" : {
894
+ "nodetype" : "column",
895
+ "moduleName" : "ATM-MIB",
896
+ "oid" : "1.3.6.1.2.1.37.1.5.1.11",
897
+ "status" : "current",
898
+ "syntax" : {
899
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
900
+ },
901
+ "access" : "readwrite",
902
+ "default" : "true",
903
+ "description" :
904
+ """If set to 'true', this object indicates that the network
905
+ is requested to treat data for this connection, in the
906
+ given direction, as frames (e.g. AAL5 CPCS_PDU's) rather
907
+ than as individual cells. While the precise
908
+ implementation is network-specific, this treatment may
909
+ for example involve discarding entire frames during
910
+ congestion, rather than a few cells from many frames.""",
911
+ }, # column
912
+ "atmVplTable" : {
913
+ "nodetype" : "table",
914
+ "moduleName" : "ATM-MIB",
915
+ "oid" : "1.3.6.1.2.1.37.1.6",
916
+ "status" : "current",
917
+ "description" :
918
+ """The Virtual Path Link (VPL) table. A
919
+ bi-directional VPL is modeled as one entry
920
+ in this table. This table can be used for
921
+ PVCs, SVCs and Soft PVCs.
922
+ Entries are not present in this table for
923
+ the VPIs used by entries in the atmVclTable.""",
924
+ }, # table
925
+ "atmVplEntry" : {
926
+ "nodetype" : "row",
927
+ "moduleName" : "ATM-MIB",
928
+ "oid" : "1.3.6.1.2.1.37.1.6.1",
929
+ "create" : "true",
930
+ "status" : "current",
931
+ "linkage" : [
932
+ "ifIndex",
933
+ "atmVplVpi",
934
+ ],
935
+ "description" :
936
+ """An entry in the VPL table. This entry is
937
+ used to model a bi-directional VPL.
938
+ To create a VPL at an ATM interface,
939
+ either of the following procedures are used:
940
+
941
+ Negotiated VPL establishment
942
+
943
+ (1) The management application creates
944
+ a VPL entry in the atmVplTable
945
+ by setting atmVplRowStatus to createAndWait(5).
946
+ This may fail for the following reasons:
947
+ - The selected VPI value is unavailable,
948
+ - The selected VPI value is in use.
949
+ Otherwise, the agent creates a row and
950
+ reserves the VPI value on that port.
951
+
952
+ (2) The manager selects an existing row(s) in the
953
+ atmTrafficDescrParamTable,
954
+ thereby, selecting a set of self-consistent
955
+ ATM traffic parameters and the service category
956
+ for receive and transmit directions of the VPL.
957
+
958
+ (2a) If no suitable row(s) in the
959
+ atmTrafficDescrParamTable exists,
960
+ the manager must create a new row(s)
961
+ in that table.
962
+
963
+ (2b) The manager characterizes the VPL's traffic
964
+ parameters through setting the
965
+ atmVplReceiveTrafficDescrIndex and the
966
+ atmVplTransmitTrafficDescrIndex values
967
+ in the VPL table, which point to the rows
968
+ containing desired ATM traffic parameter values
969
+ in the atmTrafficDescrParamTable. The agent
970
+ will check the availability of resources and
971
+ may refuse the request.
972
+ If the transmit and receive service categories
973
+ are inconsistent, the agent should refuse the
974
+ request.
975
+
976
+ (3) The manager activates the VPL by setting the
977
+ the atmVplRowStatus to active(1).
978
+ If this set is successful, the agent has
979
+ reserved the resources to satisfy the requested
980
+ traffic parameter values and the service category
981
+ for that VPL.
982
+
983
+ (4) If the VPL terminates a VPC in the ATM host
984
+ or switch, the manager turns on the
985
+ atmVplAdminStatus to up(1) to turn the VPL
986
+ traffic flow on. Otherwise, the
987
+ atmVpCrossConnectTable must be used
988
+ to cross-connect the VPL to another VPL(s)
989
+ in an ATM switch or network.
990
+
991
+ One-Shot VPL Establishment
992
+
993
+ A VPL may also be established in one step by a
994
+ set-request with all necessary VPL parameter
995
+ values and atmVplRowStatus set to createAndGo(4).
996
+
997
+ In contrast to the negotiated VPL establishment
998
+ which allows for detailed error checking
999
+ (i.e., set errors are explicitly linked to
1000
+ particular resource acquisition failures),
1001
+ the one-shot VPL establishment
1002
+ performs the setup on one operation but
1003
+ does not have the advantage of step-wise
1004
+ error checking.
1005
+
1006
+ VPL Retirement
1007
+
1008
+ A VPL is released by setting atmVplRowStatus to
1009
+ destroy(6), and the agent may release all
1010
+ associated resources.""",
1011
+ }, # row
1012
+ "atmVplVpi" : {
1013
+ "nodetype" : "column",
1014
+ "moduleName" : "ATM-MIB",
1015
+ "oid" : "1.3.6.1.2.1.37.1.6.1.1",
1016
+ "status" : "current",
1017
+ "syntax" : {
1018
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVpIdentifier"},
1019
+ },
1020
+ "access" : "noaccess",
1021
+ "description" :
1022
+ """The VPI value of the VPL.""",
1023
+ }, # column
1024
+ "atmVplAdminStatus" : {
1025
+ "nodetype" : "column",
1026
+ "moduleName" : "ATM-MIB",
1027
+ "oid" : "1.3.6.1.2.1.37.1.6.1.2",
1028
+ "status" : "current",
1029
+ "syntax" : {
1030
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVorXAdminStatus"},
1031
+ },
1032
+ "access" : "readwrite",
1033
+ "default" : "down",
1034
+ "description" :
1035
+ """This object is instanciated only for a VPL
1036
+ which terminates a VPC (i.e., one which is
1037
+ NOT cross-connected to other VPLs).
1038
+ Its value specifies the desired
1039
+ administrative state of the VPL.""",
1040
+ }, # column
1041
+ "atmVplOperStatus" : {
1042
+ "nodetype" : "column",
1043
+ "moduleName" : "ATM-MIB",
1044
+ "oid" : "1.3.6.1.2.1.37.1.6.1.3",
1045
+ "status" : "current",
1046
+ "syntax" : {
1047
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVorXOperStatus"},
1048
+ },
1049
+ "access" : "readonly",
1050
+ "description" :
1051
+ """The current operational status of the VPL.""",
1052
+ }, # column
1053
+ "atmVplLastChange" : {
1054
+ "nodetype" : "column",
1055
+ "moduleName" : "ATM-MIB",
1056
+ "oid" : "1.3.6.1.2.1.37.1.6.1.4",
1057
+ "status" : "current",
1058
+ "syntax" : {
1059
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVorXLastChange"},
1060
+ },
1061
+ "access" : "readonly",
1062
+ "description" :
1063
+ """The value of sysUpTime at the time this
1064
+ VPL entered its current operational state.""",
1065
+ }, # column
1066
+ "atmVplReceiveTrafficDescrIndex" : {
1067
+ "nodetype" : "column",
1068
+ "moduleName" : "ATM-MIB",
1069
+ "oid" : "1.3.6.1.2.1.37.1.6.1.5",
1070
+ "status" : "current",
1071
+ "syntax" : {
1072
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmTrafficDescrParamIndex"},
1073
+ },
1074
+ "access" : "readwrite",
1075
+ "default" : "0",
1076
+ "description" :
1077
+ """The value of this object identifies the row
1078
+ in the atmTrafficDescrParamTable which
1079
+ applies to the receive direction of the VPL.""",
1080
+ }, # column
1081
+ "atmVplTransmitTrafficDescrIndex" : {
1082
+ "nodetype" : "column",
1083
+ "moduleName" : "ATM-MIB",
1084
+ "oid" : "1.3.6.1.2.1.37.1.6.1.6",
1085
+ "status" : "current",
1086
+ "syntax" : {
1087
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmTrafficDescrParamIndex"},
1088
+ },
1089
+ "access" : "readwrite",
1090
+ "default" : "0",
1091
+ "description" :
1092
+ """The value of this object identifies the row
1093
+ in the atmTrafficDescrParamTable which
1094
+ applies to the transmit direction of the VPL.""",
1095
+ }, # column
1096
+ "atmVplCrossConnectIdentifier" : {
1097
+ "nodetype" : "column",
1098
+ "moduleName" : "ATM-MIB",
1099
+ "oid" : "1.3.6.1.2.1.37.1.6.1.7",
1100
+ "status" : "current",
1101
+ "syntax" : {
1102
+ "type" : {
1103
+ "basetype" : "Integer32",
1104
+ "ranges" : [
1105
+ {
1106
+ "min" : "0",
1107
+ "max" : "2147483647"
1108
+ },
1109
+ ],
1110
+ "range" : {
1111
+ "min" : "0",
1112
+ "max" : "2147483647"
1113
+ },
1114
+ },
1115
+ },
1116
+ "access" : "readonly",
1117
+ "description" :
1118
+ """This object is instantiated only for a VPL
1119
+ which is cross-connected to other VPLs
1120
+ that belong to the same VPC. All such
1121
+ associated VPLs have the same value of this
1122
+ object, and all their cross-connections are
1123
+ identified either by entries that are indexed
1124
+ by the same value of atmVpCrossConnectIndex in
1125
+ the atmVpCrossConnectTable of this MIB module or by
1126
+ the same value of the cross-connect index in
1127
+ the cross-connect table for SVCs and Soft PVCs
1128
+ (defined in a separate MIB module).
1129
+ At no time should entries in these respective
1130
+ cross-connect tables exist simultaneously
1131
+ with the same cross-connect index value.
1132
+ The value of this object is initialized by the
1133
+ agent after the associated entries in the
1134
+ atmVpCrossConnectTable have been created.""",
1135
+ }, # column
1136
+ "atmVplRowStatus" : {
1137
+ "nodetype" : "column",
1138
+ "moduleName" : "ATM-MIB",
1139
+ "oid" : "1.3.6.1.2.1.37.1.6.1.8",
1140
+ "status" : "current",
1141
+ "syntax" : {
1142
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1143
+ },
1144
+ "access" : "readwrite",
1145
+ "default" : "createAndWait",
1146
+ "description" :
1147
+ """This object is used to create, delete
1148
+ or modify a row in this table.
1149
+ To create a new VCL, this object is
1150
+ initially set to 'createAndWait' or
1151
+ 'createAndGo'. This object should not be
1152
+ set to 'active' unless the following columnar
1153
+ objects have been set to their desired value
1154
+ in this row:
1155
+ atmVplReceiveTrafficDescrIndex and
1156
+ atmVplTransmitTrafficDescrIndex.
1157
+ The DESCRIPTION of atmVplEntry provides
1158
+ further guidance to row treatment in this table.""",
1159
+ }, # column
1160
+ "atmVplCastType" : {
1161
+ "nodetype" : "column",
1162
+ "moduleName" : "ATM-MIB",
1163
+ "oid" : "1.3.6.1.2.1.37.1.6.1.9",
1164
+ "status" : "current",
1165
+ "syntax" : {
1166
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmConnCastType"},
1167
+ },
1168
+ "access" : "readwrite",
1169
+ "default" : "p2p",
1170
+ "description" :
1171
+ """The connection topology type.""",
1172
+ }, # column
1173
+ "atmVplConnKind" : {
1174
+ "nodetype" : "column",
1175
+ "moduleName" : "ATM-MIB",
1176
+ "oid" : "1.3.6.1.2.1.37.1.6.1.10",
1177
+ "status" : "current",
1178
+ "syntax" : {
1179
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmConnKind"},
1180
+ },
1181
+ "access" : "readwrite",
1182
+ "default" : "pvc",
1183
+ "description" :
1184
+ """The use of call control.""",
1185
+ }, # column
1186
+ "atmVclTable" : {
1187
+ "nodetype" : "table",
1188
+ "moduleName" : "ATM-MIB",
1189
+ "oid" : "1.3.6.1.2.1.37.1.7",
1190
+ "status" : "current",
1191
+ "description" :
1192
+ """The Virtual Channel Link (VCL) table. A
1193
+ bi-directional VCL is modeled as one entry
1194
+ in this table. This table can be used for
1195
+ PVCs, SVCs and Soft PVCs.""",
1196
+ }, # table
1197
+ "atmVclEntry" : {
1198
+ "nodetype" : "row",
1199
+ "moduleName" : "ATM-MIB",
1200
+ "oid" : "1.3.6.1.2.1.37.1.7.1",
1201
+ "create" : "true",
1202
+ "status" : "current",
1203
+ "linkage" : [
1204
+ "ifIndex",
1205
+ "atmVclVpi",
1206
+ "atmVclVci",
1207
+ ],
1208
+ "description" :
1209
+ """An entry in the VCL table. This entry is
1210
+ used to model a bi-directional VCL.
1211
+ To create a VCL at an ATM interface,
1212
+ either of the following procedures are used:
1213
+
1214
+ Negotiated VCL establishment
1215
+
1216
+ (1) The management application creates
1217
+ a VCL entry in the atmVclTable
1218
+ by setting atmVclRowStatus to createAndWait(5).
1219
+ This may fail for the following reasons:
1220
+ - The selected VPI/VCI values are unavailable,
1221
+ - The selected VPI/VCI values are in use.
1222
+ Otherwise, the agent creates a row and
1223
+ reserves the VPI/VCI values on that port.
1224
+
1225
+ (2) The manager selects an existing row(s) in the
1226
+ atmTrafficDescrParamTable,
1227
+ thereby, selecting a set of self-consistent
1228
+ ATM traffic parameters and the service category
1229
+ for receive and transmit directions of the VCL.
1230
+ (2a) If no suitable row(s) in the
1231
+ atmTrafficDescrParamTable exists,
1232
+ the manager must create a new row(s)
1233
+ in that table.
1234
+
1235
+ (2b) The manager characterizes the VCL's traffic
1236
+ parameters through setting the
1237
+ atmVclReceiveTrafficDescrIndex and the
1238
+ atmVclTransmitTrafficDescrIndex values
1239
+ in the VCL table, which point to the rows
1240
+ containing desired ATM traffic parameter values
1241
+ in the atmTrafficDescrParamTable. The agent
1242
+ will check the availability of resources and
1243
+ may refuse the request.
1244
+ If the transmit and receive service categories
1245
+ are inconsistent, the agent should refuse the
1246
+ request.
1247
+
1248
+ (3) The manager activates the VCL by setting the
1249
+ the atmVclRowStatus to active(1) (for
1250
+ requirements on this activation see the
1251
+ description of atmVclRowStatus).
1252
+ If this set is successful, the agent has
1253
+ reserved the resources to satisfy the requested
1254
+ traffic parameter values and the service category
1255
+ for that VCL.
1256
+ (4) If the VCL terminates a VCC in the ATM host
1257
+ or switch, the manager turns on the
1258
+ atmVclAdminStatus to up(1) to turn the VCL
1259
+ traffic flow on. Otherwise, the
1260
+ atmVcCrossConnectTable must be used
1261
+ to cross-connect the VCL to another VCL(s)
1262
+ in an ATM switch or network.
1263
+
1264
+ One-Shot VCL Establishment
1265
+
1266
+ A VCL may also be established in one step by a
1267
+ set-request with all necessary VCL parameter
1268
+ values and atmVclRowStatus set to createAndGo(4).
1269
+
1270
+ In contrast to the negotiated VCL establishment
1271
+ which allows for detailed error checking
1272
+ (i.e., set errors are explicitly linked to
1273
+ particular resource acquisition failures),
1274
+ the one-shot VCL establishment
1275
+ performs the setup on one operation but
1276
+ does not have the advantage of step-wise
1277
+ error checking.
1278
+ VCL Retirement
1279
+
1280
+ A VCL is released by setting atmVclRowStatus to
1281
+ destroy(6), and the agent may release all
1282
+ associated resources.""",
1283
+ }, # row
1284
+ "atmVclVpi" : {
1285
+ "nodetype" : "column",
1286
+ "moduleName" : "ATM-MIB",
1287
+ "oid" : "1.3.6.1.2.1.37.1.7.1.1",
1288
+ "status" : "current",
1289
+ "syntax" : {
1290
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVpIdentifier"},
1291
+ },
1292
+ "access" : "noaccess",
1293
+ "description" :
1294
+ """The VPI value of the VCL.""",
1295
+ }, # column
1296
+ "atmVclVci" : {
1297
+ "nodetype" : "column",
1298
+ "moduleName" : "ATM-MIB",
1299
+ "oid" : "1.3.6.1.2.1.37.1.7.1.2",
1300
+ "status" : "current",
1301
+ "syntax" : {
1302
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVcIdentifier"},
1303
+ },
1304
+ "access" : "noaccess",
1305
+ "description" :
1306
+ """The VCI value of the VCL.""",
1307
+ }, # column
1308
+ "atmVclAdminStatus" : {
1309
+ "nodetype" : "column",
1310
+ "moduleName" : "ATM-MIB",
1311
+ "oid" : "1.3.6.1.2.1.37.1.7.1.3",
1312
+ "status" : "current",
1313
+ "syntax" : {
1314
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVorXAdminStatus"},
1315
+ },
1316
+ "access" : "readwrite",
1317
+ "default" : "down",
1318
+ "description" :
1319
+ """This object is instanciated only for a VCL which
1320
+ terminates a VCC (i.e., one which is NOT
1321
+ cross-connected to other VCLs). Its value
1322
+ specifies the desired administrative state of
1323
+ the VCL.""",
1324
+ }, # column
1325
+ "atmVclOperStatus" : {
1326
+ "nodetype" : "column",
1327
+ "moduleName" : "ATM-MIB",
1328
+ "oid" : "1.3.6.1.2.1.37.1.7.1.4",
1329
+ "status" : "current",
1330
+ "syntax" : {
1331
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVorXOperStatus"},
1332
+ },
1333
+ "access" : "readonly",
1334
+ "description" :
1335
+ """The current operational status of the VCL.""",
1336
+ }, # column
1337
+ "atmVclLastChange" : {
1338
+ "nodetype" : "column",
1339
+ "moduleName" : "ATM-MIB",
1340
+ "oid" : "1.3.6.1.2.1.37.1.7.1.5",
1341
+ "status" : "current",
1342
+ "syntax" : {
1343
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVorXLastChange"},
1344
+ },
1345
+ "access" : "readonly",
1346
+ "description" :
1347
+ """The value of sysUpTime at the time this VCL
1348
+ entered its current operational state.""",
1349
+ }, # column
1350
+ "atmVclReceiveTrafficDescrIndex" : {
1351
+ "nodetype" : "column",
1352
+ "moduleName" : "ATM-MIB",
1353
+ "oid" : "1.3.6.1.2.1.37.1.7.1.6",
1354
+ "status" : "current",
1355
+ "syntax" : {
1356
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmTrafficDescrParamIndex"},
1357
+ },
1358
+ "access" : "readwrite",
1359
+ "default" : "0",
1360
+ "description" :
1361
+ """The value of this object identifies the row
1362
+ in the ATM Traffic Descriptor Table which
1363
+ applies to the receive direction of this VCL.""",
1364
+ }, # column
1365
+ "atmVclTransmitTrafficDescrIndex" : {
1366
+ "nodetype" : "column",
1367
+ "moduleName" : "ATM-MIB",
1368
+ "oid" : "1.3.6.1.2.1.37.1.7.1.7",
1369
+ "status" : "current",
1370
+ "syntax" : {
1371
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmTrafficDescrParamIndex"},
1372
+ },
1373
+ "access" : "readwrite",
1374
+ "default" : "0",
1375
+ "description" :
1376
+ """The value of this object identifies the row
1377
+ of the ATM Traffic Descriptor Table which applies
1378
+ to the transmit direction of this VCL.""",
1379
+ }, # column
1380
+ "atmVccAalType" : {
1381
+ "nodetype" : "column",
1382
+ "moduleName" : "ATM-MIB",
1383
+ "oid" : "1.3.6.1.2.1.37.1.7.1.8",
1384
+ "status" : "current",
1385
+ "syntax" : {
1386
+ "type" : {
1387
+ "basetype" : "Enumeration",
1388
+ "aal1" : {
1389
+ "nodetype" : "namednumber",
1390
+ "number" : "1"
1391
+ },
1392
+ "aal34" : {
1393
+ "nodetype" : "namednumber",
1394
+ "number" : "2"
1395
+ },
1396
+ "aal5" : {
1397
+ "nodetype" : "namednumber",
1398
+ "number" : "3"
1399
+ },
1400
+ "other" : {
1401
+ "nodetype" : "namednumber",
1402
+ "number" : "4"
1403
+ },
1404
+ "unknown" : {
1405
+ "nodetype" : "namednumber",
1406
+ "number" : "5"
1407
+ },
1408
+ "aal2" : {
1409
+ "nodetype" : "namednumber",
1410
+ "number" : "6"
1411
+ },
1412
+ },
1413
+ },
1414
+ "access" : "readwrite",
1415
+ "default" : "aal5",
1416
+ "description" :
1417
+ """An instance of this object only exists when the
1418
+ local VCL end-point is also the VCC end-point,
1419
+ and AAL is in use.
1420
+ The type of AAL used on this VCC.
1421
+ The AAL type includes AAL1, AAL2, AAL3/4,
1422
+ and AAL5. The other(4) may be user-defined
1423
+ AAL type. The unknown type indicates that
1424
+ the AAL type cannot be determined.""",
1425
+ }, # column
1426
+ "atmVccAal5CpcsTransmitSduSize" : {
1427
+ "nodetype" : "column",
1428
+ "moduleName" : "ATM-MIB",
1429
+ "oid" : "1.3.6.1.2.1.37.1.7.1.9",
1430
+ "status" : "current",
1431
+ "syntax" : {
1432
+ "type" : {
1433
+ "basetype" : "Integer32",
1434
+ "ranges" : [
1435
+ {
1436
+ "min" : "1",
1437
+ "max" : "65535"
1438
+ },
1439
+ ],
1440
+ "range" : {
1441
+ "min" : "1",
1442
+ "max" : "65535"
1443
+ },
1444
+ },
1445
+ },
1446
+ "access" : "readwrite",
1447
+ "default" : "9188",
1448
+ "description" :
1449
+ """An instance of this object only exists when the
1450
+ local VCL end-point is also the VCC end-point,
1451
+ and AAL5 is in use.
1452
+ The maximum AAL5 CPCS SDU size in octets that is
1453
+ supported on the transmit direction of this VCC.""",
1454
+ }, # column
1455
+ "atmVccAal5CpcsReceiveSduSize" : {
1456
+ "nodetype" : "column",
1457
+ "moduleName" : "ATM-MIB",
1458
+ "oid" : "1.3.6.1.2.1.37.1.7.1.10",
1459
+ "status" : "current",
1460
+ "syntax" : {
1461
+ "type" : {
1462
+ "basetype" : "Integer32",
1463
+ "ranges" : [
1464
+ {
1465
+ "min" : "1",
1466
+ "max" : "65535"
1467
+ },
1468
+ ],
1469
+ "range" : {
1470
+ "min" : "1",
1471
+ "max" : "65535"
1472
+ },
1473
+ },
1474
+ },
1475
+ "access" : "readwrite",
1476
+ "default" : "9188",
1477
+ "description" :
1478
+ """An instance of this object only exists when the
1479
+ local VCL end-point is also the VCC end-point,
1480
+ and AAL5 is in use.
1481
+ The maximum AAL5 CPCS SDU size in octets that is
1482
+ supported on the receive direction of this VCC.""",
1483
+ }, # column
1484
+ "atmVccAal5EncapsType" : {
1485
+ "nodetype" : "column",
1486
+ "moduleName" : "ATM-MIB",
1487
+ "oid" : "1.3.6.1.2.1.37.1.7.1.11",
1488
+ "status" : "current",
1489
+ "syntax" : {
1490
+ "type" : {
1491
+ "basetype" : "Enumeration",
1492
+ "vcMultiplexRoutedProtocol" : {
1493
+ "nodetype" : "namednumber",
1494
+ "number" : "1"
1495
+ },
1496
+ "vcMultiplexBridgedProtocol8023" : {
1497
+ "nodetype" : "namednumber",
1498
+ "number" : "2"
1499
+ },
1500
+ "vcMultiplexBridgedProtocol8025" : {
1501
+ "nodetype" : "namednumber",
1502
+ "number" : "3"
1503
+ },
1504
+ "vcMultiplexBridgedProtocol8026" : {
1505
+ "nodetype" : "namednumber",
1506
+ "number" : "4"
1507
+ },
1508
+ "vcMultiplexLANemulation8023" : {
1509
+ "nodetype" : "namednumber",
1510
+ "number" : "5"
1511
+ },
1512
+ "vcMultiplexLANemulation8025" : {
1513
+ "nodetype" : "namednumber",
1514
+ "number" : "6"
1515
+ },
1516
+ "llcEncapsulation" : {
1517
+ "nodetype" : "namednumber",
1518
+ "number" : "7"
1519
+ },
1520
+ "multiprotocolFrameRelaySscs" : {
1521
+ "nodetype" : "namednumber",
1522
+ "number" : "8"
1523
+ },
1524
+ "other" : {
1525
+ "nodetype" : "namednumber",
1526
+ "number" : "9"
1527
+ },
1528
+ "unknown" : {
1529
+ "nodetype" : "namednumber",
1530
+ "number" : "10"
1531
+ },
1532
+ },
1533
+ },
1534
+ "access" : "readwrite",
1535
+ "default" : "llcEncapsulation",
1536
+ "description" :
1537
+ """An instance of this object only exists when the
1538
+ local VCL end-point is also the VCC end-point,
1539
+ and AAL5 is in use.
1540
+ The type of data encapsulation used over
1541
+ the AAL5 SSCS layer. The definitions reference
1542
+ RFC 1483 Multiprotocol Encapsulation
1543
+ over ATM AAL5 and to the ATM Forum
1544
+ LAN Emulation specification.""",
1545
+ }, # column
1546
+ "atmVclCrossConnectIdentifier" : {
1547
+ "nodetype" : "column",
1548
+ "moduleName" : "ATM-MIB",
1549
+ "oid" : "1.3.6.1.2.1.37.1.7.1.12",
1550
+ "status" : "current",
1551
+ "syntax" : {
1552
+ "type" : {
1553
+ "basetype" : "Integer32",
1554
+ "ranges" : [
1555
+ {
1556
+ "min" : "0",
1557
+ "max" : "2147483647"
1558
+ },
1559
+ ],
1560
+ "range" : {
1561
+ "min" : "0",
1562
+ "max" : "2147483647"
1563
+ },
1564
+ },
1565
+ },
1566
+ "access" : "readonly",
1567
+ "description" :
1568
+ """This object is instantiated only for a VCL
1569
+ which is cross-connected to other VCLs
1570
+ that belong to the same VCC. All such
1571
+ associated VCLs have the same value of this
1572
+ object, and all their cross-connections are
1573
+ identified either by entries that are indexed
1574
+ by the same value of atmVcCrossConnectIndex in
1575
+ the atmVcCrossConnectTable of this MIB module or by
1576
+ the same value of the cross-connect index in
1577
+ the cross-connect table for SVCs and Soft PVCs
1578
+ (defined in a separate MIB module).
1579
+
1580
+ At no time should entries in these respective
1581
+ cross-connect tables exist simultaneously
1582
+ with the same cross-connect index value.
1583
+ The value of this object is initialized by the
1584
+ agent after the associated entries in the
1585
+ atmVcCrossConnectTable have been created.""",
1586
+ }, # column
1587
+ "atmVclRowStatus" : {
1588
+ "nodetype" : "column",
1589
+ "moduleName" : "ATM-MIB",
1590
+ "oid" : "1.3.6.1.2.1.37.1.7.1.13",
1591
+ "status" : "current",
1592
+ "syntax" : {
1593
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1594
+ },
1595
+ "access" : "readwrite",
1596
+ "default" : "createAndWait",
1597
+ "description" :
1598
+ """This object is used to create, delete or
1599
+ modify a row in this table. To create
1600
+ a new VCL, this object is initially set
1601
+ to 'createAndWait' or 'createAndGo'.
1602
+ This object should not be
1603
+ set to 'active' unless the following columnar
1604
+ objects have been set to their desired value
1605
+ in this row:
1606
+ atmVclReceiveTrafficDescrIndex,
1607
+ atmVclTransmitTrafficDescrIndex.
1608
+ In addition, if the local VCL end-point
1609
+ is also the VCC end-point:
1610
+ atmVccAalType.
1611
+ In addition, for AAL5 connections only:
1612
+ atmVccAal5CpcsTransmitSduSize,
1613
+ atmVccAal5CpcsReceiveSduSize, and
1614
+ atmVccAal5EncapsType. (The existence
1615
+ of these objects imply the AAL connection type.).
1616
+ The DESCRIPTION of atmVclEntry provides
1617
+ further guidance to row treatment in this table.""",
1618
+ }, # column
1619
+ "atmVclCastType" : {
1620
+ "nodetype" : "column",
1621
+ "moduleName" : "ATM-MIB",
1622
+ "oid" : "1.3.6.1.2.1.37.1.7.1.14",
1623
+ "status" : "current",
1624
+ "syntax" : {
1625
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmConnCastType"},
1626
+ },
1627
+ "access" : "readwrite",
1628
+ "default" : "p2p",
1629
+ "description" :
1630
+ """The connection topology type.""",
1631
+ }, # column
1632
+ "atmVclConnKind" : {
1633
+ "nodetype" : "column",
1634
+ "moduleName" : "ATM-MIB",
1635
+ "oid" : "1.3.6.1.2.1.37.1.7.1.15",
1636
+ "status" : "current",
1637
+ "syntax" : {
1638
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmConnKind"},
1639
+ },
1640
+ "access" : "readwrite",
1641
+ "default" : "pvc",
1642
+ "description" :
1643
+ """The use of call control.""",
1644
+ }, # column
1645
+ "atmVpCrossConnectIndexNext" : {
1646
+ "nodetype" : "scalar",
1647
+ "moduleName" : "ATM-MIB",
1648
+ "oid" : "1.3.6.1.2.1.37.1.8",
1649
+ "status" : "current",
1650
+ "syntax" : {
1651
+ "type" : {
1652
+ "basetype" : "Integer32",
1653
+ "ranges" : [
1654
+ {
1655
+ "min" : "0",
1656
+ "max" : "2147483647"
1657
+ },
1658
+ ],
1659
+ "range" : {
1660
+ "min" : "0",
1661
+ "max" : "2147483647"
1662
+ },
1663
+ },
1664
+ },
1665
+ "access" : "readonly",
1666
+ "description" :
1667
+ """This object contains an appropriate value to
1668
+ be used for atmVpCrossConnectIndex when creating
1669
+ entries in the atmVpCrossConnectTable. The value
1670
+ 0 indicates that no unassigned entries are
1671
+ available. To obtain the atmVpCrossConnectIndex
1672
+ value for a new entry, the manager issues a
1673
+ management protocol retrieval operation to obtain
1674
+ the current value of this object. After each
1675
+ retrieval, the agent should modify the value to
1676
+ the next unassigned index.
1677
+ After a manager retrieves a value the agent will
1678
+ determine through its local policy when this index
1679
+ value will be made available for reuse.""",
1680
+ }, # scalar
1681
+ "atmVpCrossConnectTable" : {
1682
+ "nodetype" : "table",
1683
+ "moduleName" : "ATM-MIB",
1684
+ "oid" : "1.3.6.1.2.1.37.1.9",
1685
+ "status" : "current",
1686
+ "description" :
1687
+ """The ATM VP Cross Connect table for PVCs.
1688
+ An entry in this table models two
1689
+ cross-connected VPLs.
1690
+ Each VPL must have its atmConnKind set
1691
+ to pvc(1).""",
1692
+ }, # table
1693
+ "atmVpCrossConnectEntry" : {
1694
+ "nodetype" : "row",
1695
+ "moduleName" : "ATM-MIB",
1696
+ "oid" : "1.3.6.1.2.1.37.1.9.1",
1697
+ "create" : "true",
1698
+ "status" : "current",
1699
+ "linkage" : [
1700
+ "atmVpCrossConnectIndex",
1701
+ "atmVpCrossConnectLowIfIndex",
1702
+ "atmVpCrossConnectLowVpi",
1703
+ "atmVpCrossConnectHighIfIndex",
1704
+ "atmVpCrossConnectHighVpi",
1705
+ ],
1706
+ "description" :
1707
+ """An entry in the ATM VP Cross Connect table.
1708
+ This entry is used to model a bi-directional
1709
+ ATM VP cross-connect which cross-connects
1710
+ two VPLs.
1711
+
1712
+ Step-wise Procedures to set up a VP Cross-connect
1713
+
1714
+ Once the entries in the atmVplTable are created,
1715
+ the following procedures are used
1716
+ to cross-connect the VPLs together.
1717
+
1718
+ (1) The manager obtains a unique
1719
+ atmVpCrossConnectIndex by reading the
1720
+ atmVpCrossConnectIndexNext object.
1721
+
1722
+ (2) Next, the manager creates a set of one
1723
+ or more rows in the ATM VP Cross Connect
1724
+ Table, one for each cross-connection between
1725
+ two VPLs. Each row is indexed by the ATM
1726
+ interface port numbers and VPI values of the
1727
+ two ends of that cross-connection.
1728
+ This set of rows specifies the topology of the
1729
+ VPC cross-connect and is identified by a single
1730
+ value of atmVpCrossConnectIndex.
1731
+
1732
+ Negotiated VP Cross-Connect Establishment
1733
+
1734
+ (2a) The manager creates a row in this table by
1735
+ setting atmVpCrossConnectRowStatus to
1736
+ createAndWait(5). The agent checks the
1737
+ requested topology and the mutual sanity of
1738
+ the ATM traffic parameters and
1739
+ service categories, i.e., the row creation
1740
+ fails if:
1741
+ - the requested topology is incompatible with
1742
+ associated values of atmVplCastType,
1743
+ - the requested topology is not supported
1744
+ by the agent,
1745
+ - the traffic/service category parameter values
1746
+ associated with the requested row are
1747
+ incompatible with those of already existing
1748
+ rows for this VP cross-connect.
1749
+ [For example, for setting up
1750
+ a point-to-point VP cross-connect, the
1751
+ ATM traffic parameters in the receive direction
1752
+ of a VPL at the low end of the cross-connect
1753
+ must equal to the traffic parameters in the
1754
+ transmit direction of the other VPL at the
1755
+ high end of the cross-connect,
1756
+ otherwise, the row creation fails.]
1757
+ The agent also checks for internal errors
1758
+ in building the cross-connect.
1759
+
1760
+ The atmVpCrossConnectIndex values in the
1761
+ corresponding atmVplTable rows are filled
1762
+ in by the agent at this point.
1763
+
1764
+ (2b) The manager promotes the row in the
1765
+ atmVpCrossConnectTable by setting
1766
+ atmVpCrossConnectRowStatus to active(1). If
1767
+ this set is successful, the agent has reserved
1768
+ the resources specified by the ATM traffic
1769
+ parameter and Service category values
1770
+ for each direction of the VP cross-connect
1771
+ in an ATM switch or network.
1772
+
1773
+ (3) The manager sets the
1774
+ atmVpCrossConnectAdminStatus to up(1) in all
1775
+ rows of this VP cross-connect to turn the
1776
+ traffic flow on.
1777
+
1778
+
1779
+ One-Shot VP Cross-Connect Establishment
1780
+
1781
+ A VP cross-connect may also be established in
1782
+ one step by a set-request with all necessary
1783
+ parameter values and atmVpCrossConnectRowStatus
1784
+ set to createAndGo(4).
1785
+
1786
+ In contrast to the negotiated VP cross-connect
1787
+ establishment which allows for detailed error
1788
+ checking (i.e., set errors are explicitly linked
1789
+ to particular resource acquisition failures),
1790
+ the one-shot VP cross-connect establishment
1791
+ performs the setup on one operation but does not
1792
+ have the advantage of step-wise error checking.
1793
+
1794
+ VP Cross-Connect Retirement
1795
+
1796
+ A VP cross-connect identified by a particular
1797
+ value of atmVpCrossConnectIndex is released by:
1798
+
1799
+ (1) Setting atmVpCrossConnectRowStatus of all
1800
+ rows identified by this value of
1801
+ atmVpCrossConnectIndex to destroy(6).
1802
+ The agent may release all
1803
+ associated resources, and the
1804
+ atmVpCrossConnectIndex values in the
1805
+ corresponding atmVplTable row are removed.
1806
+ Note that a situation when only a subset of
1807
+ the associated rows are deleted corresponds
1808
+ to a VP topology change.
1809
+
1810
+ (2) After deletion of the appropriate
1811
+ atmVpCrossConnectEntries, the manager may
1812
+ set atmVplRowStatus to destroy(6) the
1813
+ associated VPLs. The agent releases
1814
+ the resources and removes the associated
1815
+ rows in the atmVplTable.
1816
+
1817
+ VP Cross-connect Reconfiguration
1818
+
1819
+ At the discretion of the agent, a VP
1820
+ cross-connect may be reconfigured by
1821
+ adding and/or deleting leafs to/from
1822
+ the VP topology as per the VP cross-connect
1823
+ establishment/retirement procedures.
1824
+ Reconfiguration of traffic/service category parameter
1825
+ values requires release of the VP cross-connect
1826
+ before those parameter values may by changed
1827
+ for individual VPLs.""",
1828
+ }, # row
1829
+ "atmVpCrossConnectIndex" : {
1830
+ "nodetype" : "column",
1831
+ "moduleName" : "ATM-MIB",
1832
+ "oid" : "1.3.6.1.2.1.37.1.9.1.1",
1833
+ "status" : "current",
1834
+ "syntax" : {
1835
+ "type" : {
1836
+ "basetype" : "Integer32",
1837
+ "ranges" : [
1838
+ {
1839
+ "min" : "1",
1840
+ "max" : "2147483647"
1841
+ },
1842
+ ],
1843
+ "range" : {
1844
+ "min" : "1",
1845
+ "max" : "2147483647"
1846
+ },
1847
+ },
1848
+ },
1849
+ "access" : "noaccess",
1850
+ "description" :
1851
+ """A unique value to identify this VP cross-connect.
1852
+ For each VPL associated with this cross-connect,
1853
+ the agent reports this cross-connect index value
1854
+ in the atmVplCrossConnectIdentifier attribute of
1855
+ the corresponding atmVplTable entries.""",
1856
+ }, # column
1857
+ "atmVpCrossConnectLowIfIndex" : {
1858
+ "nodetype" : "column",
1859
+ "moduleName" : "ATM-MIB",
1860
+ "oid" : "1.3.6.1.2.1.37.1.9.1.2",
1861
+ "status" : "current",
1862
+ "syntax" : {
1863
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
1864
+ },
1865
+ "access" : "noaccess",
1866
+ "description" :
1867
+ """The ifIndex value of the ATM interface for
1868
+ this VP cross-connect. The term low implies
1869
+ that this ATM interface has the numerically lower
1870
+ ifIndex value than the other ATM interface
1871
+ identified in the same atmVpCrossConnectEntry.""",
1872
+ }, # column
1873
+ "atmVpCrossConnectLowVpi" : {
1874
+ "nodetype" : "column",
1875
+ "moduleName" : "ATM-MIB",
1876
+ "oid" : "1.3.6.1.2.1.37.1.9.1.3",
1877
+ "status" : "current",
1878
+ "syntax" : {
1879
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVpIdentifier"},
1880
+ },
1881
+ "access" : "noaccess",
1882
+ "description" :
1883
+ """The VPI value at the ATM interface
1884
+ associated with the VP cross-connect that is
1885
+ identified by atmVpCrossConnectLowIfIndex.""",
1886
+ }, # column
1887
+ "atmVpCrossConnectHighIfIndex" : {
1888
+ "nodetype" : "column",
1889
+ "moduleName" : "ATM-MIB",
1890
+ "oid" : "1.3.6.1.2.1.37.1.9.1.4",
1891
+ "status" : "current",
1892
+ "syntax" : {
1893
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
1894
+ },
1895
+ "access" : "noaccess",
1896
+ "description" :
1897
+ """The ifIndex value of the ATM interface for
1898
+ this VP cross-connect. The term high implies that
1899
+ this ATM interface has the numerically higher
1900
+ ifIndex value than the other ATM interface
1901
+ identified in the same atmVpCrossConnectEntry.""",
1902
+ }, # column
1903
+ "atmVpCrossConnectHighVpi" : {
1904
+ "nodetype" : "column",
1905
+ "moduleName" : "ATM-MIB",
1906
+ "oid" : "1.3.6.1.2.1.37.1.9.1.5",
1907
+ "status" : "current",
1908
+ "syntax" : {
1909
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVpIdentifier"},
1910
+ },
1911
+ "access" : "noaccess",
1912
+ "description" :
1913
+ """The VPI value at the ATM interface
1914
+ associated with the VP cross-connect that is
1915
+ identified by atmVpCrossConnectHighIfIndex.""",
1916
+ }, # column
1917
+ "atmVpCrossConnectAdminStatus" : {
1918
+ "nodetype" : "column",
1919
+ "moduleName" : "ATM-MIB",
1920
+ "oid" : "1.3.6.1.2.1.37.1.9.1.6",
1921
+ "status" : "current",
1922
+ "syntax" : {
1923
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVorXAdminStatus"},
1924
+ },
1925
+ "access" : "readwrite",
1926
+ "default" : "down",
1927
+ "description" :
1928
+ """The desired administrative status of this
1929
+ bi-directional VP cross-connect.""",
1930
+ }, # column
1931
+ "atmVpCrossConnectL2HOperStatus" : {
1932
+ "nodetype" : "column",
1933
+ "moduleName" : "ATM-MIB",
1934
+ "oid" : "1.3.6.1.2.1.37.1.9.1.7",
1935
+ "status" : "current",
1936
+ "syntax" : {
1937
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVorXOperStatus"},
1938
+ },
1939
+ "access" : "readonly",
1940
+ "description" :
1941
+ """The operational status of the VP cross-connect
1942
+ in one direction; (i.e., from the low to
1943
+ high direction).""",
1944
+ }, # column
1945
+ "atmVpCrossConnectH2LOperStatus" : {
1946
+ "nodetype" : "column",
1947
+ "moduleName" : "ATM-MIB",
1948
+ "oid" : "1.3.6.1.2.1.37.1.9.1.8",
1949
+ "status" : "current",
1950
+ "syntax" : {
1951
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVorXOperStatus"},
1952
+ },
1953
+ "access" : "readonly",
1954
+ "description" :
1955
+ """The operational status of the VP cross-connect
1956
+ in one direction; (i.e., from the high to
1957
+ low direction).""",
1958
+ }, # column
1959
+ "atmVpCrossConnectL2HLastChange" : {
1960
+ "nodetype" : "column",
1961
+ "moduleName" : "ATM-MIB",
1962
+ "oid" : "1.3.6.1.2.1.37.1.9.1.9",
1963
+ "status" : "current",
1964
+ "syntax" : {
1965
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVorXLastChange"},
1966
+ },
1967
+ "access" : "readonly",
1968
+ "description" :
1969
+ """The value of sysUpTime at the time this
1970
+ VP cross-connect entered its current operational
1971
+ state in the low to high direction.""",
1972
+ }, # column
1973
+ "atmVpCrossConnectH2LLastChange" : {
1974
+ "nodetype" : "column",
1975
+ "moduleName" : "ATM-MIB",
1976
+ "oid" : "1.3.6.1.2.1.37.1.9.1.10",
1977
+ "status" : "current",
1978
+ "syntax" : {
1979
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVorXLastChange"},
1980
+ },
1981
+ "access" : "readonly",
1982
+ "description" :
1983
+ """The value of sysUpTime at the time this
1984
+ VP cross-connect entered its current operational
1985
+ in the high to low direction.""",
1986
+ }, # column
1987
+ "atmVpCrossConnectRowStatus" : {
1988
+ "nodetype" : "column",
1989
+ "moduleName" : "ATM-MIB",
1990
+ "oid" : "1.3.6.1.2.1.37.1.9.1.11",
1991
+ "status" : "current",
1992
+ "syntax" : {
1993
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1994
+ },
1995
+ "access" : "readwrite",
1996
+ "default" : "createAndWait",
1997
+ "description" :
1998
+ """The status of this entry in the
1999
+ atmVpCrossConnectTable. This object is used to
2000
+ create a cross-connect for cross-connecting
2001
+ VPLs which are created using the atmVplTable
2002
+ or to change or delete an existing cross-connect.
2003
+ This object must be initially set
2004
+ to `createAndWait' or 'createAndGo'.
2005
+ To turn on a VP cross-connect,
2006
+ the atmVpCrossConnectAdminStatus
2007
+ is set to `up'.""",
2008
+ }, # column
2009
+ "atmVcCrossConnectIndexNext" : {
2010
+ "nodetype" : "scalar",
2011
+ "moduleName" : "ATM-MIB",
2012
+ "oid" : "1.3.6.1.2.1.37.1.10",
2013
+ "status" : "current",
2014
+ "syntax" : {
2015
+ "type" : {
2016
+ "basetype" : "Integer32",
2017
+ "ranges" : [
2018
+ {
2019
+ "min" : "0",
2020
+ "max" : "2147483647"
2021
+ },
2022
+ ],
2023
+ "range" : {
2024
+ "min" : "0",
2025
+ "max" : "2147483647"
2026
+ },
2027
+ },
2028
+ },
2029
+ "access" : "readonly",
2030
+ "description" :
2031
+ """This object contains an appropriate value to
2032
+ be used for atmVcCrossConnectIndex when creating
2033
+ entries in the atmVcCrossConnectTable. The value
2034
+ 0 indicates that no unassigned entries are
2035
+ available. To obtain the atmVcCrossConnectIndex
2036
+ value for a new entry, the manager issues a
2037
+ management protocol retrieval operation to obtain
2038
+ the current value of this object. After each
2039
+ retrieval, the agent should modify the value to
2040
+ the next unassigned index.
2041
+ After a manager retrieves a value the agent will
2042
+ determine through its local policy when this index
2043
+ value will be made available for reuse.""",
2044
+ }, # scalar
2045
+ "atmVcCrossConnectTable" : {
2046
+ "nodetype" : "table",
2047
+ "moduleName" : "ATM-MIB",
2048
+ "oid" : "1.3.6.1.2.1.37.1.11",
2049
+ "status" : "current",
2050
+ "description" :
2051
+ """The ATM VC Cross Connect table for PVCs.
2052
+ An entry in this table models two
2053
+ cross-connected VCLs.
2054
+ Each VCL must have its atmConnKind set
2055
+ to pvc(1).""",
2056
+ }, # table
2057
+ "atmVcCrossConnectEntry" : {
2058
+ "nodetype" : "row",
2059
+ "moduleName" : "ATM-MIB",
2060
+ "oid" : "1.3.6.1.2.1.37.1.11.1",
2061
+ "create" : "true",
2062
+ "status" : "current",
2063
+ "linkage" : [
2064
+ "atmVcCrossConnectIndex",
2065
+ "atmVcCrossConnectLowIfIndex",
2066
+ "atmVcCrossConnectLowVpi",
2067
+ "atmVcCrossConnectLowVci",
2068
+ "atmVcCrossConnectHighIfIndex",
2069
+ "atmVcCrossConnectHighVpi",
2070
+ "atmVcCrossConnectHighVci",
2071
+ ],
2072
+ "description" :
2073
+ """An entry in the ATM VC Cross Connect table.
2074
+ This entry is used to model a bi-directional ATM
2075
+ VC cross-connect cross-connecting two end points.
2076
+
2077
+ Step-wise Procedures to set up a VC Cross-connect
2078
+ Once the entries in the atmVclTable are created,
2079
+ the following procedures are used
2080
+ to cross-connect the VCLs together to
2081
+ form a VCC segment.
2082
+
2083
+ (1) The manager obtains a unique
2084
+ atmVcCrossConnectIndex by reading the
2085
+ atmVcCrossConnectIndexNext object.
2086
+
2087
+ (2) Next, the manager creates a set of one
2088
+ or more rows in the ATM VC Cross Connect
2089
+ Table, one for each cross-connection between
2090
+ two VCLs. Each row is indexed by the ATM
2091
+ interface port numbers and VPI/VCI values of
2092
+ the two ends of that cross-connection.
2093
+ This set of rows specifies the topology of the
2094
+ VCC cross-connect and is identified by a single
2095
+ value of atmVcCrossConnectIndex.
2096
+
2097
+ Negotiated VC Cross-Connect Establishment
2098
+
2099
+ (2a) The manager creates a row in this table by
2100
+ setting atmVcCrossConnectRowStatus to
2101
+ createAndWait(5). The agent checks the
2102
+ requested topology and the mutual sanity of
2103
+ the ATM traffic parameters and
2104
+ service categories, i.e., the row creation
2105
+ fails if:
2106
+ - the requested topology is incompatible with
2107
+ associated values of atmVclCastType,
2108
+ - the requested topology is not supported
2109
+ by the agent,
2110
+ - the traffic/service category parameter values
2111
+ associated with the requested row are
2112
+ incompatible with those of already existing
2113
+ rows for this VC cross-connect.
2114
+ [For example, for setting up
2115
+ a point-to-point VC cross-connect, the
2116
+ ATM traffic parameters in the receive direction
2117
+ of a VCL at the low end of the cross-connect
2118
+ must equal to the traffic parameters in the
2119
+ transmit direction of the other VCL at the
2120
+ high end of the cross-connect,
2121
+ otherwise, the row creation fails.]
2122
+ The agent also checks for internal errors
2123
+ in building the cross-connect.
2124
+
2125
+ The atmVcCrossConnectIndex values in the
2126
+ corresponding atmVclTable rows are filled
2127
+ in by the agent at this point.
2128
+
2129
+ (2b) The manager promotes the row in the
2130
+ atmVcCrossConnectTable by setting
2131
+ atmVcCrossConnectRowStatus to active(1). If
2132
+ this set is successful, the agent has reserved
2133
+ the resources specified by the ATM traffic
2134
+ parameter and Service category values
2135
+ for each direction of the VC cross-connect
2136
+ in an ATM switch or network.
2137
+
2138
+ (3) The manager sets the
2139
+ atmVcCrossConnectAdminStatus to up(1)
2140
+ in all rows of this VC cross-connect to
2141
+ turn the traffic flow on.
2142
+
2143
+
2144
+ One-Shot VC Cross-Connect Establishment
2145
+
2146
+ A VC cross-connect may also be established in
2147
+ one step by a set-request with all necessary
2148
+ parameter values and atmVcCrossConnectRowStatus
2149
+ set to createAndGo(4).
2150
+
2151
+ In contrast to the negotiated VC cross-connect
2152
+ establishment which allows for detailed error
2153
+ checking i.e., set errors are explicitly linked to
2154
+ particular resource acquisition failures), the
2155
+ one-shot VC cross-connect establishment
2156
+ performs the setup on one operation but does
2157
+ not have the advantage of step-wise error
2158
+ checking.
2159
+
2160
+ VC Cross-Connect Retirement
2161
+
2162
+ A VC cross-connect identified by a particular
2163
+ value of atmVcCrossConnectIndex is released by:
2164
+
2165
+ (1) Setting atmVcCrossConnectRowStatus of all rows
2166
+ identified by this value of
2167
+ atmVcCrossConnectIndex to destroy(6).
2168
+ The agent may release all
2169
+ associated resources, and the
2170
+ atmVcCrossConnectIndex values in the
2171
+ corresponding atmVclTable row are removed.
2172
+ Note that a situation when only a subset of
2173
+ the associated rows are deleted corresponds
2174
+ to a VC topology change.
2175
+
2176
+ (2) After deletion of the appropriate
2177
+ atmVcCrossConnectEntries, the manager may
2178
+ set atmVclRowStatus to destroy(6) the
2179
+ associated VCLs. The agent releases
2180
+ the resources and removes the associated
2181
+ rows in the atmVclTable.
2182
+
2183
+ VC Cross-Connect Reconfiguration
2184
+
2185
+ At the discretion of the agent, a VC
2186
+ cross-connect may be reconfigured by
2187
+ adding and/or deleting leafs to/from
2188
+ the VC topology as per the VC cross-connect
2189
+ establishment/retirement procedures.
2190
+ Reconfiguration of traffic/service category parameter
2191
+ values requires release of the VC cross-connect
2192
+ before those parameter values may by changed
2193
+ for individual VCLs.""",
2194
+ }, # row
2195
+ "atmVcCrossConnectIndex" : {
2196
+ "nodetype" : "column",
2197
+ "moduleName" : "ATM-MIB",
2198
+ "oid" : "1.3.6.1.2.1.37.1.11.1.1",
2199
+ "status" : "current",
2200
+ "syntax" : {
2201
+ "type" : {
2202
+ "basetype" : "Integer32",
2203
+ "ranges" : [
2204
+ {
2205
+ "min" : "1",
2206
+ "max" : "2147483647"
2207
+ },
2208
+ ],
2209
+ "range" : {
2210
+ "min" : "1",
2211
+ "max" : "2147483647"
2212
+ },
2213
+ },
2214
+ },
2215
+ "access" : "noaccess",
2216
+ "description" :
2217
+ """A unique value to identify this VC cross-connect.
2218
+ For each VCL associated with this cross-connect,
2219
+ the agent reports this cross-connect index value
2220
+ in the atmVclCrossConnectIdentifier attribute of
2221
+ the corresponding atmVclTable entries.""",
2222
+ }, # column
2223
+ "atmVcCrossConnectLowIfIndex" : {
2224
+ "nodetype" : "column",
2225
+ "moduleName" : "ATM-MIB",
2226
+ "oid" : "1.3.6.1.2.1.37.1.11.1.2",
2227
+ "status" : "current",
2228
+ "syntax" : {
2229
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
2230
+ },
2231
+ "access" : "noaccess",
2232
+ "description" :
2233
+ """The ifIndex value of the ATM interface for this
2234
+ VC cross-connect. The term low implies
2235
+ that this ATM interface has the numerically lower
2236
+ ifIndex value than the other ATM interface
2237
+ identified in the same atmVcCrossConnectEntry.""",
2238
+ }, # column
2239
+ "atmVcCrossConnectLowVpi" : {
2240
+ "nodetype" : "column",
2241
+ "moduleName" : "ATM-MIB",
2242
+ "oid" : "1.3.6.1.2.1.37.1.11.1.3",
2243
+ "status" : "current",
2244
+ "syntax" : {
2245
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVpIdentifier"},
2246
+ },
2247
+ "access" : "noaccess",
2248
+ "description" :
2249
+ """The VPI value at the ATM interface
2250
+ associated with the VC cross-connect that is
2251
+ identified by atmVcCrossConnectLowIfIndex.""",
2252
+ }, # column
2253
+ "atmVcCrossConnectLowVci" : {
2254
+ "nodetype" : "column",
2255
+ "moduleName" : "ATM-MIB",
2256
+ "oid" : "1.3.6.1.2.1.37.1.11.1.4",
2257
+ "status" : "current",
2258
+ "syntax" : {
2259
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVcIdentifier"},
2260
+ },
2261
+ "access" : "noaccess",
2262
+ "description" :
2263
+ """The VCI value at the ATM interface
2264
+ associated with this VC cross-connect that is
2265
+ identified by atmVcCrossConnectLowIfIndex.""",
2266
+ }, # column
2267
+ "atmVcCrossConnectHighIfIndex" : {
2268
+ "nodetype" : "column",
2269
+ "moduleName" : "ATM-MIB",
2270
+ "oid" : "1.3.6.1.2.1.37.1.11.1.5",
2271
+ "status" : "current",
2272
+ "syntax" : {
2273
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
2274
+ },
2275
+ "access" : "noaccess",
2276
+ "description" :
2277
+ """The ifIndex value for the ATM interface for
2278
+ this VC cross-connect. The term high implies
2279
+ that this ATM interface has the numerically higher
2280
+ ifIndex value than the other ATM interface
2281
+ identified in the same atmVcCrossConnectEntry.""",
2282
+ }, # column
2283
+ "atmVcCrossConnectHighVpi" : {
2284
+ "nodetype" : "column",
2285
+ "moduleName" : "ATM-MIB",
2286
+ "oid" : "1.3.6.1.2.1.37.1.11.1.6",
2287
+ "status" : "current",
2288
+ "syntax" : {
2289
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVpIdentifier"},
2290
+ },
2291
+ "access" : "noaccess",
2292
+ "description" :
2293
+ """The VPI value at the ATM interface
2294
+ associated with the VC cross-connect that is
2295
+ identified by atmVcCrossConnectHighIfIndex.""",
2296
+ }, # column
2297
+ "atmVcCrossConnectHighVci" : {
2298
+ "nodetype" : "column",
2299
+ "moduleName" : "ATM-MIB",
2300
+ "oid" : "1.3.6.1.2.1.37.1.11.1.7",
2301
+ "status" : "current",
2302
+ "syntax" : {
2303
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVcIdentifier"},
2304
+ },
2305
+ "access" : "noaccess",
2306
+ "description" :
2307
+ """The VCI value at the ATM interface
2308
+ associated with the VC cross-connect that is
2309
+ identified by atmVcCrossConnectHighIfIndex.""",
2310
+ }, # column
2311
+ "atmVcCrossConnectAdminStatus" : {
2312
+ "nodetype" : "column",
2313
+ "moduleName" : "ATM-MIB",
2314
+ "oid" : "1.3.6.1.2.1.37.1.11.1.8",
2315
+ "status" : "current",
2316
+ "syntax" : {
2317
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVorXAdminStatus"},
2318
+ },
2319
+ "access" : "readwrite",
2320
+ "default" : "down",
2321
+ "description" :
2322
+ """The desired administrative status of this
2323
+ bi-directional VC cross-connect.""",
2324
+ }, # column
2325
+ "atmVcCrossConnectL2HOperStatus" : {
2326
+ "nodetype" : "column",
2327
+ "moduleName" : "ATM-MIB",
2328
+ "oid" : "1.3.6.1.2.1.37.1.11.1.9",
2329
+ "status" : "current",
2330
+ "syntax" : {
2331
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVorXOperStatus"},
2332
+ },
2333
+ "access" : "readonly",
2334
+ "description" :
2335
+ """The current operational status of the
2336
+ VC cross-connect in one direction; (i.e.,
2337
+ from the low to high direction).""",
2338
+ }, # column
2339
+ "atmVcCrossConnectH2LOperStatus" : {
2340
+ "nodetype" : "column",
2341
+ "moduleName" : "ATM-MIB",
2342
+ "oid" : "1.3.6.1.2.1.37.1.11.1.10",
2343
+ "status" : "current",
2344
+ "syntax" : {
2345
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVorXOperStatus"},
2346
+ },
2347
+ "access" : "readonly",
2348
+ "description" :
2349
+ """The current operational status of the
2350
+ VC cross-connect in one direction; (i.e.,
2351
+ from the high to low direction).""",
2352
+ }, # column
2353
+ "atmVcCrossConnectL2HLastChange" : {
2354
+ "nodetype" : "column",
2355
+ "moduleName" : "ATM-MIB",
2356
+ "oid" : "1.3.6.1.2.1.37.1.11.1.11",
2357
+ "status" : "current",
2358
+ "syntax" : {
2359
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVorXLastChange"},
2360
+ },
2361
+ "access" : "readonly",
2362
+ "description" :
2363
+ """The value of sysUpTime at the time this
2364
+ VC cross-connect entered its current
2365
+ operational state in low to high direction.""",
2366
+ }, # column
2367
+ "atmVcCrossConnectH2LLastChange" : {
2368
+ "nodetype" : "column",
2369
+ "moduleName" : "ATM-MIB",
2370
+ "oid" : "1.3.6.1.2.1.37.1.11.1.12",
2371
+ "status" : "current",
2372
+ "syntax" : {
2373
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVorXLastChange"},
2374
+ },
2375
+ "access" : "readonly",
2376
+ "description" :
2377
+ """The value of sysUpTime at the time this
2378
+ VC cross-connect entered its current
2379
+ operational state in high to low direction.""",
2380
+ }, # column
2381
+ "atmVcCrossConnectRowStatus" : {
2382
+ "nodetype" : "column",
2383
+ "moduleName" : "ATM-MIB",
2384
+ "oid" : "1.3.6.1.2.1.37.1.11.1.13",
2385
+ "status" : "current",
2386
+ "syntax" : {
2387
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
2388
+ },
2389
+ "access" : "readwrite",
2390
+ "default" : "createAndWait",
2391
+ "description" :
2392
+ """The status of this entry in the
2393
+ atmVcCrossConnectTable. This object is used to
2394
+ create a new cross-connect for cross-connecting
2395
+ VCLs which are created using the atmVclTable
2396
+ or to change or delete existing cross-connect.
2397
+ This object must be initially set to
2398
+ `createAndWait' or 'createAndGo'.
2399
+ To turn on a VC cross-connect,
2400
+ the atmVcCrossConnectAdminStatus
2401
+ is set to `up'.""",
2402
+ }, # column
2403
+ "aal5VccTable" : {
2404
+ "nodetype" : "table",
2405
+ "moduleName" : "ATM-MIB",
2406
+ "oid" : "1.3.6.1.2.1.37.1.12",
2407
+ "status" : "current",
2408
+ "description" :
2409
+ """This table contains AAL5 VCC performance
2410
+ parameters.""",
2411
+ }, # table
2412
+ "aal5VccEntry" : {
2413
+ "nodetype" : "row",
2414
+ "moduleName" : "ATM-MIB",
2415
+ "oid" : "1.3.6.1.2.1.37.1.12.1",
2416
+ "status" : "current",
2417
+ "linkage" : [
2418
+ "ifIndex",
2419
+ "aal5VccVpi",
2420
+ "aal5VccVci",
2421
+ ],
2422
+ "description" :
2423
+ """This list contains the AAL5 VCC
2424
+ performance parameters and is indexed
2425
+ by ifIndex values of AAL5 interfaces
2426
+ and the associated VPI/VCI values.""",
2427
+ }, # row
2428
+ "aal5VccVpi" : {
2429
+ "nodetype" : "column",
2430
+ "moduleName" : "ATM-MIB",
2431
+ "oid" : "1.3.6.1.2.1.37.1.12.1.1",
2432
+ "status" : "current",
2433
+ "syntax" : {
2434
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVpIdentifier"},
2435
+ },
2436
+ "access" : "noaccess",
2437
+ "description" :
2438
+ """The VPI value of the AAL5 VCC at the
2439
+ interface identified by the ifIndex.""",
2440
+ }, # column
2441
+ "aal5VccVci" : {
2442
+ "nodetype" : "column",
2443
+ "moduleName" : "ATM-MIB",
2444
+ "oid" : "1.3.6.1.2.1.37.1.12.1.2",
2445
+ "status" : "current",
2446
+ "syntax" : {
2447
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVcIdentifier"},
2448
+ },
2449
+ "access" : "noaccess",
2450
+ "description" :
2451
+ """The VCI value of the AAL5 VCC at the
2452
+ interface identified by the ifIndex.""",
2453
+ }, # column
2454
+ "aal5VccCrcErrors" : {
2455
+ "nodetype" : "column",
2456
+ "moduleName" : "ATM-MIB",
2457
+ "oid" : "1.3.6.1.2.1.37.1.12.1.3",
2458
+ "status" : "current",
2459
+ "syntax" : {
2460
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2461
+ },
2462
+ "access" : "readonly",
2463
+ "description" :
2464
+ """The number of AAL5 CPCS PDUs received with
2465
+ CRC-32 errors on this AAL5 VCC at the
2466
+ interface associated with an AAL5 entity.""",
2467
+ }, # column
2468
+ "aal5VccSarTimeOuts" : {
2469
+ "nodetype" : "column",
2470
+ "moduleName" : "ATM-MIB",
2471
+ "oid" : "1.3.6.1.2.1.37.1.12.1.4",
2472
+ "status" : "current",
2473
+ "syntax" : {
2474
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2475
+ },
2476
+ "access" : "readonly",
2477
+ "description" :
2478
+ """The number of partially re-assembled AAL5
2479
+ CPCS PDUs which were discarded
2480
+ on this AAL5 VCC at the interface associated
2481
+ with an AAL5 entity because they
2482
+ were not fully re-assembled within the
2483
+ required time period. If the re-assembly
2484
+ timer is not supported, then this object
2485
+ contains a zero value.""",
2486
+ }, # column
2487
+ "aal5VccOverSizedSDUs" : {
2488
+ "nodetype" : "column",
2489
+ "moduleName" : "ATM-MIB",
2490
+ "oid" : "1.3.6.1.2.1.37.1.12.1.5",
2491
+ "status" : "current",
2492
+ "syntax" : {
2493
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2494
+ },
2495
+ "access" : "readonly",
2496
+ "description" :
2497
+ """The number of AAL5 CPCS PDUs discarded
2498
+ on this AAL5 VCC at the interface
2499
+ associated with an AAL5 entity because the
2500
+ AAL5 SDUs were too large.""",
2501
+ }, # column
2502
+ "atmTrafficDescrParamIndexNext" : {
2503
+ "nodetype" : "scalar",
2504
+ "moduleName" : "ATM-MIB",
2505
+ "oid" : "1.3.6.1.2.1.37.1.13",
2506
+ "status" : "current",
2507
+ "syntax" : {
2508
+ "type" : {
2509
+ "basetype" : "Integer32",
2510
+ "ranges" : [
2511
+ {
2512
+ "min" : "0",
2513
+ "max" : "2147483647"
2514
+ },
2515
+ ],
2516
+ "range" : {
2517
+ "min" : "0",
2518
+ "max" : "2147483647"
2519
+ },
2520
+ },
2521
+ },
2522
+ "access" : "readonly",
2523
+ "description" :
2524
+ """This object contains an appropriate value to
2525
+ be used for atmTrafficDescrParamIndex when
2526
+ creating entries in the
2527
+ atmTrafficDescrParamTable.
2528
+ The value 0 indicates that no unassigned
2529
+ entries are available. To obtain the
2530
+ atmTrafficDescrParamIndex value for a new
2531
+ entry, the manager issues a management
2532
+ protocol retrieval operation to obtain the
2533
+ current value of this object. After each
2534
+ retrieval, the agent should modify the value
2535
+ to the next unassigned index.
2536
+ After a manager retrieves a value the agent will
2537
+ determine through its local policy when this index
2538
+ value will be made available for reuse.""",
2539
+ }, # scalar
2540
+ "atmMIBConformance" : {
2541
+ "nodetype" : "node",
2542
+ "moduleName" : "ATM-MIB",
2543
+ "oid" : "1.3.6.1.2.1.37.2",
2544
+ }, # node
2545
+ "atmMIBGroups" : {
2546
+ "nodetype" : "node",
2547
+ "moduleName" : "ATM-MIB",
2548
+ "oid" : "1.3.6.1.2.1.37.2.1",
2549
+ }, # node
2550
+ "atmMIBCompliances" : {
2551
+ "nodetype" : "node",
2552
+ "moduleName" : "ATM-MIB",
2553
+ "oid" : "1.3.6.1.2.1.37.2.2",
2554
+ }, # node
2555
+ }, # nodes
2556
+
2557
+ "groups" : {
2558
+ "atmInterfaceConfGroup" : {
2559
+ "nodetype" : "group",
2560
+ "moduleName" : "ATM-MIB",
2561
+ "oid" : "1.3.6.1.2.1.37.2.1.1",
2562
+ "status" : "deprecated",
2563
+ "members" : {
2564
+ "atmInterfaceMaxVpcs" : {
2565
+ "nodetype" : "member",
2566
+ "module" : "ATM-MIB"
2567
+ },
2568
+ "atmInterfaceMaxVccs" : {
2569
+ "nodetype" : "member",
2570
+ "module" : "ATM-MIB"
2571
+ },
2572
+ "atmInterfaceConfVpcs" : {
2573
+ "nodetype" : "member",
2574
+ "module" : "ATM-MIB"
2575
+ },
2576
+ "atmInterfaceConfVccs" : {
2577
+ "nodetype" : "member",
2578
+ "module" : "ATM-MIB"
2579
+ },
2580
+ "atmInterfaceMaxActiveVpiBits" : {
2581
+ "nodetype" : "member",
2582
+ "module" : "ATM-MIB"
2583
+ },
2584
+ "atmInterfaceMaxActiveVciBits" : {
2585
+ "nodetype" : "member",
2586
+ "module" : "ATM-MIB"
2587
+ },
2588
+ "atmInterfaceIlmiVpi" : {
2589
+ "nodetype" : "member",
2590
+ "module" : "ATM-MIB"
2591
+ },
2592
+ "atmInterfaceIlmiVci" : {
2593
+ "nodetype" : "member",
2594
+ "module" : "ATM-MIB"
2595
+ },
2596
+ "atmInterfaceAddressType" : {
2597
+ "nodetype" : "member",
2598
+ "module" : "ATM-MIB"
2599
+ },
2600
+ "atmInterfaceAdminAddress" : {
2601
+ "nodetype" : "member",
2602
+ "module" : "ATM-MIB"
2603
+ },
2604
+ "atmInterfaceMyNeighborIpAddress" : {
2605
+ "nodetype" : "member",
2606
+ "module" : "ATM-MIB"
2607
+ },
2608
+ "atmInterfaceMyNeighborIfName" : {
2609
+ "nodetype" : "member",
2610
+ "module" : "ATM-MIB"
2611
+ },
2612
+ }, # members
2613
+ "description" :
2614
+ """A collection of objects providing configuration
2615
+ information about an ATM interface.""",
2616
+ }, # group
2617
+ "atmTrafficDescrGroup" : {
2618
+ "nodetype" : "group",
2619
+ "moduleName" : "ATM-MIB",
2620
+ "oid" : "1.3.6.1.2.1.37.2.1.2",
2621
+ "status" : "deprecated",
2622
+ "members" : {
2623
+ "atmTrafficDescrType" : {
2624
+ "nodetype" : "member",
2625
+ "module" : "ATM-MIB"
2626
+ },
2627
+ "atmTrafficDescrParam1" : {
2628
+ "nodetype" : "member",
2629
+ "module" : "ATM-MIB"
2630
+ },
2631
+ "atmTrafficDescrParam2" : {
2632
+ "nodetype" : "member",
2633
+ "module" : "ATM-MIB"
2634
+ },
2635
+ "atmTrafficDescrParam3" : {
2636
+ "nodetype" : "member",
2637
+ "module" : "ATM-MIB"
2638
+ },
2639
+ "atmTrafficDescrParam4" : {
2640
+ "nodetype" : "member",
2641
+ "module" : "ATM-MIB"
2642
+ },
2643
+ "atmTrafficDescrParam5" : {
2644
+ "nodetype" : "member",
2645
+ "module" : "ATM-MIB"
2646
+ },
2647
+ "atmTrafficQoSClass" : {
2648
+ "nodetype" : "member",
2649
+ "module" : "ATM-MIB"
2650
+ },
2651
+ "atmTrafficDescrRowStatus" : {
2652
+ "nodetype" : "member",
2653
+ "module" : "ATM-MIB"
2654
+ },
2655
+ }, # members
2656
+ "description" :
2657
+ """A collection of objects providing information
2658
+ about ATM traffic descriptor type and
2659
+ the associated parameters.""",
2660
+ }, # group
2661
+ "atmInterfaceDs3PlcpGroup" : {
2662
+ "nodetype" : "group",
2663
+ "moduleName" : "ATM-MIB",
2664
+ "oid" : "1.3.6.1.2.1.37.2.1.3",
2665
+ "status" : "current",
2666
+ "members" : {
2667
+ "atmInterfaceDs3PlcpSEFSs" : {
2668
+ "nodetype" : "member",
2669
+ "module" : "ATM-MIB"
2670
+ },
2671
+ "atmInterfaceDs3PlcpAlarmState" : {
2672
+ "nodetype" : "member",
2673
+ "module" : "ATM-MIB"
2674
+ },
2675
+ "atmInterfaceDs3PlcpUASs" : {
2676
+ "nodetype" : "member",
2677
+ "module" : "ATM-MIB"
2678
+ },
2679
+ }, # members
2680
+ "description" :
2681
+ """A collection of objects providing information
2682
+ about DS3 PLCP layer at an ATM interface.""",
2683
+ }, # group
2684
+ "atmInterfaceTCGroup" : {
2685
+ "nodetype" : "group",
2686
+ "moduleName" : "ATM-MIB",
2687
+ "oid" : "1.3.6.1.2.1.37.2.1.4",
2688
+ "status" : "current",
2689
+ "members" : {
2690
+ "atmInterfaceOCDEvents" : {
2691
+ "nodetype" : "member",
2692
+ "module" : "ATM-MIB"
2693
+ },
2694
+ "atmInterfaceTCAlarmState" : {
2695
+ "nodetype" : "member",
2696
+ "module" : "ATM-MIB"
2697
+ },
2698
+ }, # members
2699
+ "description" :
2700
+ """A collection of objects providing information
2701
+ about TC sublayer at an ATM interface.""",
2702
+ }, # group
2703
+ "atmVpcTerminationGroup" : {
2704
+ "nodetype" : "group",
2705
+ "moduleName" : "ATM-MIB",
2706
+ "oid" : "1.3.6.1.2.1.37.2.1.5",
2707
+ "status" : "deprecated",
2708
+ "members" : {
2709
+ "atmVplOperStatus" : {
2710
+ "nodetype" : "member",
2711
+ "module" : "ATM-MIB"
2712
+ },
2713
+ "atmVplAdminStatus" : {
2714
+ "nodetype" : "member",
2715
+ "module" : "ATM-MIB"
2716
+ },
2717
+ "atmVplLastChange" : {
2718
+ "nodetype" : "member",
2719
+ "module" : "ATM-MIB"
2720
+ },
2721
+ "atmVplReceiveTrafficDescrIndex" : {
2722
+ "nodetype" : "member",
2723
+ "module" : "ATM-MIB"
2724
+ },
2725
+ "atmVplTransmitTrafficDescrIndex" : {
2726
+ "nodetype" : "member",
2727
+ "module" : "ATM-MIB"
2728
+ },
2729
+ "atmVplRowStatus" : {
2730
+ "nodetype" : "member",
2731
+ "module" : "ATM-MIB"
2732
+ },
2733
+ }, # members
2734
+ "description" :
2735
+ """A collection of objects providing
2736
+ information about a VPL at an ATM interface
2737
+ which terminates a VPC
2738
+ (i.e., one which is NOT cross-connected
2739
+ to other VPLs).""",
2740
+ }, # group
2741
+ "atmVccTerminationGroup" : {
2742
+ "nodetype" : "group",
2743
+ "moduleName" : "ATM-MIB",
2744
+ "oid" : "1.3.6.1.2.1.37.2.1.6",
2745
+ "status" : "deprecated",
2746
+ "members" : {
2747
+ "atmVclOperStatus" : {
2748
+ "nodetype" : "member",
2749
+ "module" : "ATM-MIB"
2750
+ },
2751
+ "atmVclAdminStatus" : {
2752
+ "nodetype" : "member",
2753
+ "module" : "ATM-MIB"
2754
+ },
2755
+ "atmVclLastChange" : {
2756
+ "nodetype" : "member",
2757
+ "module" : "ATM-MIB"
2758
+ },
2759
+ "atmVclReceiveTrafficDescrIndex" : {
2760
+ "nodetype" : "member",
2761
+ "module" : "ATM-MIB"
2762
+ },
2763
+ "atmVclTransmitTrafficDescrIndex" : {
2764
+ "nodetype" : "member",
2765
+ "module" : "ATM-MIB"
2766
+ },
2767
+ "atmVccAalType" : {
2768
+ "nodetype" : "member",
2769
+ "module" : "ATM-MIB"
2770
+ },
2771
+ "atmVclRowStatus" : {
2772
+ "nodetype" : "member",
2773
+ "module" : "ATM-MIB"
2774
+ },
2775
+ }, # members
2776
+ "description" :
2777
+ """A collection of objects providing information
2778
+ about a VCL at an ATM interface
2779
+ which terminates a VCC (i.e., one which is
2780
+ NOT cross-connected to other VCLs).""",
2781
+ }, # group
2782
+ "atmVpCrossConnectGroup" : {
2783
+ "nodetype" : "group",
2784
+ "moduleName" : "ATM-MIB",
2785
+ "oid" : "1.3.6.1.2.1.37.2.1.7",
2786
+ "status" : "deprecated",
2787
+ "members" : {
2788
+ "atmVplReceiveTrafficDescrIndex" : {
2789
+ "nodetype" : "member",
2790
+ "module" : "ATM-MIB"
2791
+ },
2792
+ "atmVplTransmitTrafficDescrIndex" : {
2793
+ "nodetype" : "member",
2794
+ "module" : "ATM-MIB"
2795
+ },
2796
+ "atmVplOperStatus" : {
2797
+ "nodetype" : "member",
2798
+ "module" : "ATM-MIB"
2799
+ },
2800
+ "atmVplRowStatus" : {
2801
+ "nodetype" : "member",
2802
+ "module" : "ATM-MIB"
2803
+ },
2804
+ "atmVpCrossConnectAdminStatus" : {
2805
+ "nodetype" : "member",
2806
+ "module" : "ATM-MIB"
2807
+ },
2808
+ "atmVpCrossConnectL2HOperStatus" : {
2809
+ "nodetype" : "member",
2810
+ "module" : "ATM-MIB"
2811
+ },
2812
+ "atmVpCrossConnectH2LOperStatus" : {
2813
+ "nodetype" : "member",
2814
+ "module" : "ATM-MIB"
2815
+ },
2816
+ "atmVpCrossConnectL2HLastChange" : {
2817
+ "nodetype" : "member",
2818
+ "module" : "ATM-MIB"
2819
+ },
2820
+ "atmVpCrossConnectH2LLastChange" : {
2821
+ "nodetype" : "member",
2822
+ "module" : "ATM-MIB"
2823
+ },
2824
+ "atmVpCrossConnectRowStatus" : {
2825
+ "nodetype" : "member",
2826
+ "module" : "ATM-MIB"
2827
+ },
2828
+ "atmVplCrossConnectIdentifier" : {
2829
+ "nodetype" : "member",
2830
+ "module" : "ATM-MIB"
2831
+ },
2832
+ "atmVpCrossConnectIndexNext" : {
2833
+ "nodetype" : "member",
2834
+ "module" : "ATM-MIB"
2835
+ },
2836
+ }, # members
2837
+ "description" :
2838
+ """A collection of objects providing
2839
+ information about a VP cross-connect
2840
+ and the associated VPLs that are
2841
+ cross-connected together.""",
2842
+ }, # group
2843
+ "atmVcCrossConnectGroup" : {
2844
+ "nodetype" : "group",
2845
+ "moduleName" : "ATM-MIB",
2846
+ "oid" : "1.3.6.1.2.1.37.2.1.8",
2847
+ "status" : "deprecated",
2848
+ "members" : {
2849
+ "atmVclReceiveTrafficDescrIndex" : {
2850
+ "nodetype" : "member",
2851
+ "module" : "ATM-MIB"
2852
+ },
2853
+ "atmVclTransmitTrafficDescrIndex" : {
2854
+ "nodetype" : "member",
2855
+ "module" : "ATM-MIB"
2856
+ },
2857
+ "atmVclOperStatus" : {
2858
+ "nodetype" : "member",
2859
+ "module" : "ATM-MIB"
2860
+ },
2861
+ "atmVclRowStatus" : {
2862
+ "nodetype" : "member",
2863
+ "module" : "ATM-MIB"
2864
+ },
2865
+ "atmVcCrossConnectAdminStatus" : {
2866
+ "nodetype" : "member",
2867
+ "module" : "ATM-MIB"
2868
+ },
2869
+ "atmVcCrossConnectL2HOperStatus" : {
2870
+ "nodetype" : "member",
2871
+ "module" : "ATM-MIB"
2872
+ },
2873
+ "atmVcCrossConnectH2LOperStatus" : {
2874
+ "nodetype" : "member",
2875
+ "module" : "ATM-MIB"
2876
+ },
2877
+ "atmVcCrossConnectL2HLastChange" : {
2878
+ "nodetype" : "member",
2879
+ "module" : "ATM-MIB"
2880
+ },
2881
+ "atmVcCrossConnectH2LLastChange" : {
2882
+ "nodetype" : "member",
2883
+ "module" : "ATM-MIB"
2884
+ },
2885
+ "atmVcCrossConnectRowStatus" : {
2886
+ "nodetype" : "member",
2887
+ "module" : "ATM-MIB"
2888
+ },
2889
+ "atmVclCrossConnectIdentifier" : {
2890
+ "nodetype" : "member",
2891
+ "module" : "ATM-MIB"
2892
+ },
2893
+ "atmVcCrossConnectIndexNext" : {
2894
+ "nodetype" : "member",
2895
+ "module" : "ATM-MIB"
2896
+ },
2897
+ }, # members
2898
+ "description" :
2899
+ """A collection of objects providing
2900
+ information about a VC cross-connect
2901
+ and the associated VCLs that are
2902
+ cross-connected together.""",
2903
+ }, # group
2904
+ "aal5VccGroup" : {
2905
+ "nodetype" : "group",
2906
+ "moduleName" : "ATM-MIB",
2907
+ "oid" : "1.3.6.1.2.1.37.2.1.9",
2908
+ "status" : "current",
2909
+ "members" : {
2910
+ "atmVccAal5CpcsTransmitSduSize" : {
2911
+ "nodetype" : "member",
2912
+ "module" : "ATM-MIB"
2913
+ },
2914
+ "atmVccAal5CpcsReceiveSduSize" : {
2915
+ "nodetype" : "member",
2916
+ "module" : "ATM-MIB"
2917
+ },
2918
+ "atmVccAal5EncapsType" : {
2919
+ "nodetype" : "member",
2920
+ "module" : "ATM-MIB"
2921
+ },
2922
+ "aal5VccCrcErrors" : {
2923
+ "nodetype" : "member",
2924
+ "module" : "ATM-MIB"
2925
+ },
2926
+ "aal5VccSarTimeOuts" : {
2927
+ "nodetype" : "member",
2928
+ "module" : "ATM-MIB"
2929
+ },
2930
+ "aal5VccOverSizedSDUs" : {
2931
+ "nodetype" : "member",
2932
+ "module" : "ATM-MIB"
2933
+ },
2934
+ }, # members
2935
+ "description" :
2936
+ """A collection of objects providing
2937
+ AAL5 configuration and performance statistics
2938
+ of a VCC.""",
2939
+ }, # group
2940
+ "atmInterfaceConfGroup2" : {
2941
+ "nodetype" : "group",
2942
+ "moduleName" : "ATM-MIB",
2943
+ "oid" : "1.3.6.1.2.1.37.2.1.10",
2944
+ "status" : "current",
2945
+ "members" : {
2946
+ "atmInterfaceMaxVpcs" : {
2947
+ "nodetype" : "member",
2948
+ "module" : "ATM-MIB"
2949
+ },
2950
+ "atmInterfaceMaxVccs" : {
2951
+ "nodetype" : "member",
2952
+ "module" : "ATM-MIB"
2953
+ },
2954
+ "atmInterfaceConfVpcs" : {
2955
+ "nodetype" : "member",
2956
+ "module" : "ATM-MIB"
2957
+ },
2958
+ "atmInterfaceConfVccs" : {
2959
+ "nodetype" : "member",
2960
+ "module" : "ATM-MIB"
2961
+ },
2962
+ "atmInterfaceMaxActiveVpiBits" : {
2963
+ "nodetype" : "member",
2964
+ "module" : "ATM-MIB"
2965
+ },
2966
+ "atmInterfaceMaxActiveVciBits" : {
2967
+ "nodetype" : "member",
2968
+ "module" : "ATM-MIB"
2969
+ },
2970
+ "atmInterfaceIlmiVpi" : {
2971
+ "nodetype" : "member",
2972
+ "module" : "ATM-MIB"
2973
+ },
2974
+ "atmInterfaceIlmiVci" : {
2975
+ "nodetype" : "member",
2976
+ "module" : "ATM-MIB"
2977
+ },
2978
+ "atmInterfaceMyNeighborIpAddress" : {
2979
+ "nodetype" : "member",
2980
+ "module" : "ATM-MIB"
2981
+ },
2982
+ "atmInterfaceMyNeighborIfName" : {
2983
+ "nodetype" : "member",
2984
+ "module" : "ATM-MIB"
2985
+ },
2986
+ "atmInterfaceCurrentMaxVpiBits" : {
2987
+ "nodetype" : "member",
2988
+ "module" : "ATM-MIB"
2989
+ },
2990
+ "atmInterfaceCurrentMaxVciBits" : {
2991
+ "nodetype" : "member",
2992
+ "module" : "ATM-MIB"
2993
+ },
2994
+ "atmInterfaceSubscrAddress" : {
2995
+ "nodetype" : "member",
2996
+ "module" : "ATM-MIB"
2997
+ },
2998
+ }, # members
2999
+ "description" :
3000
+ """A collection of objects providing configuration
3001
+ information about an ATM interface.""",
3002
+ }, # group
3003
+ "atmTrafficDescrGroup2" : {
3004
+ "nodetype" : "group",
3005
+ "moduleName" : "ATM-MIB",
3006
+ "oid" : "1.3.6.1.2.1.37.2.1.11",
3007
+ "status" : "current",
3008
+ "members" : {
3009
+ "atmTrafficDescrType" : {
3010
+ "nodetype" : "member",
3011
+ "module" : "ATM-MIB"
3012
+ },
3013
+ "atmTrafficDescrParam1" : {
3014
+ "nodetype" : "member",
3015
+ "module" : "ATM-MIB"
3016
+ },
3017
+ "atmTrafficDescrParam2" : {
3018
+ "nodetype" : "member",
3019
+ "module" : "ATM-MIB"
3020
+ },
3021
+ "atmTrafficDescrParam3" : {
3022
+ "nodetype" : "member",
3023
+ "module" : "ATM-MIB"
3024
+ },
3025
+ "atmTrafficDescrParam4" : {
3026
+ "nodetype" : "member",
3027
+ "module" : "ATM-MIB"
3028
+ },
3029
+ "atmTrafficDescrParam5" : {
3030
+ "nodetype" : "member",
3031
+ "module" : "ATM-MIB"
3032
+ },
3033
+ "atmTrafficDescrRowStatus" : {
3034
+ "nodetype" : "member",
3035
+ "module" : "ATM-MIB"
3036
+ },
3037
+ "atmServiceCategory" : {
3038
+ "nodetype" : "member",
3039
+ "module" : "ATM-MIB"
3040
+ },
3041
+ "atmTrafficFrameDiscard" : {
3042
+ "nodetype" : "member",
3043
+ "module" : "ATM-MIB"
3044
+ },
3045
+ "atmTrafficDescrParamIndexNext" : {
3046
+ "nodetype" : "member",
3047
+ "module" : "ATM-MIB"
3048
+ },
3049
+ }, # members
3050
+ "description" :
3051
+ """A collection of objects providing information
3052
+ about ATM traffic descriptor type and
3053
+ the associated parameters.""",
3054
+ }, # group
3055
+ "atmVpcTerminationGroup2" : {
3056
+ "nodetype" : "group",
3057
+ "moduleName" : "ATM-MIB",
3058
+ "oid" : "1.3.6.1.2.1.37.2.1.12",
3059
+ "status" : "current",
3060
+ "members" : {
3061
+ "atmVplOperStatus" : {
3062
+ "nodetype" : "member",
3063
+ "module" : "ATM-MIB"
3064
+ },
3065
+ "atmVplAdminStatus" : {
3066
+ "nodetype" : "member",
3067
+ "module" : "ATM-MIB"
3068
+ },
3069
+ "atmVplLastChange" : {
3070
+ "nodetype" : "member",
3071
+ "module" : "ATM-MIB"
3072
+ },
3073
+ "atmVplReceiveTrafficDescrIndex" : {
3074
+ "nodetype" : "member",
3075
+ "module" : "ATM-MIB"
3076
+ },
3077
+ "atmVplTransmitTrafficDescrIndex" : {
3078
+ "nodetype" : "member",
3079
+ "module" : "ATM-MIB"
3080
+ },
3081
+ "atmVplRowStatus" : {
3082
+ "nodetype" : "member",
3083
+ "module" : "ATM-MIB"
3084
+ },
3085
+ "atmVplCastType" : {
3086
+ "nodetype" : "member",
3087
+ "module" : "ATM-MIB"
3088
+ },
3089
+ "atmVplConnKind" : {
3090
+ "nodetype" : "member",
3091
+ "module" : "ATM-MIB"
3092
+ },
3093
+ }, # members
3094
+ "description" :
3095
+ """A collection of objects providing information
3096
+ about a VPL at an ATM interface which
3097
+ terminates a VPC (i.e., one which is NOT
3098
+ cross-connected to other VPLs).""",
3099
+ }, # group
3100
+ "atmVccTerminationGroup2" : {
3101
+ "nodetype" : "group",
3102
+ "moduleName" : "ATM-MIB",
3103
+ "oid" : "1.3.6.1.2.1.37.2.1.13",
3104
+ "status" : "current",
3105
+ "members" : {
3106
+ "atmVclOperStatus" : {
3107
+ "nodetype" : "member",
3108
+ "module" : "ATM-MIB"
3109
+ },
3110
+ "atmVclAdminStatus" : {
3111
+ "nodetype" : "member",
3112
+ "module" : "ATM-MIB"
3113
+ },
3114
+ "atmVclLastChange" : {
3115
+ "nodetype" : "member",
3116
+ "module" : "ATM-MIB"
3117
+ },
3118
+ "atmVclReceiveTrafficDescrIndex" : {
3119
+ "nodetype" : "member",
3120
+ "module" : "ATM-MIB"
3121
+ },
3122
+ "atmVclTransmitTrafficDescrIndex" : {
3123
+ "nodetype" : "member",
3124
+ "module" : "ATM-MIB"
3125
+ },
3126
+ "atmVccAalType" : {
3127
+ "nodetype" : "member",
3128
+ "module" : "ATM-MIB"
3129
+ },
3130
+ "atmVclRowStatus" : {
3131
+ "nodetype" : "member",
3132
+ "module" : "ATM-MIB"
3133
+ },
3134
+ "atmVclCastType" : {
3135
+ "nodetype" : "member",
3136
+ "module" : "ATM-MIB"
3137
+ },
3138
+ "atmVclConnKind" : {
3139
+ "nodetype" : "member",
3140
+ "module" : "ATM-MIB"
3141
+ },
3142
+ }, # members
3143
+ "description" :
3144
+ """A collection of objects providing information
3145
+ about a VCL at an ATM interface
3146
+ which terminates a VCC (i.e., one which is
3147
+ NOT cross-connected to other VCLs).""",
3148
+ }, # group
3149
+ "atmVplCrossConnectGroup" : {
3150
+ "nodetype" : "group",
3151
+ "moduleName" : "ATM-MIB",
3152
+ "oid" : "1.3.6.1.2.1.37.2.1.14",
3153
+ "status" : "current",
3154
+ "members" : {
3155
+ "atmVplReceiveTrafficDescrIndex" : {
3156
+ "nodetype" : "member",
3157
+ "module" : "ATM-MIB"
3158
+ },
3159
+ "atmVplTransmitTrafficDescrIndex" : {
3160
+ "nodetype" : "member",
3161
+ "module" : "ATM-MIB"
3162
+ },
3163
+ "atmVplOperStatus" : {
3164
+ "nodetype" : "member",
3165
+ "module" : "ATM-MIB"
3166
+ },
3167
+ "atmVplLastChange" : {
3168
+ "nodetype" : "member",
3169
+ "module" : "ATM-MIB"
3170
+ },
3171
+ "atmVplRowStatus" : {
3172
+ "nodetype" : "member",
3173
+ "module" : "ATM-MIB"
3174
+ },
3175
+ "atmVplCastType" : {
3176
+ "nodetype" : "member",
3177
+ "module" : "ATM-MIB"
3178
+ },
3179
+ "atmVplConnKind" : {
3180
+ "nodetype" : "member",
3181
+ "module" : "ATM-MIB"
3182
+ },
3183
+ }, # members
3184
+ "description" :
3185
+ """A collection of objects providing
3186
+ information about the VPLs that
3187
+ are cross-connected together.""",
3188
+ }, # group
3189
+ "atmVpPvcCrossConnectGroup" : {
3190
+ "nodetype" : "group",
3191
+ "moduleName" : "ATM-MIB",
3192
+ "oid" : "1.3.6.1.2.1.37.2.1.15",
3193
+ "status" : "current",
3194
+ "members" : {
3195
+ "atmVpCrossConnectAdminStatus" : {
3196
+ "nodetype" : "member",
3197
+ "module" : "ATM-MIB"
3198
+ },
3199
+ "atmVpCrossConnectL2HOperStatus" : {
3200
+ "nodetype" : "member",
3201
+ "module" : "ATM-MIB"
3202
+ },
3203
+ "atmVpCrossConnectH2LOperStatus" : {
3204
+ "nodetype" : "member",
3205
+ "module" : "ATM-MIB"
3206
+ },
3207
+ "atmVpCrossConnectL2HLastChange" : {
3208
+ "nodetype" : "member",
3209
+ "module" : "ATM-MIB"
3210
+ },
3211
+ "atmVpCrossConnectH2LLastChange" : {
3212
+ "nodetype" : "member",
3213
+ "module" : "ATM-MIB"
3214
+ },
3215
+ "atmVpCrossConnectRowStatus" : {
3216
+ "nodetype" : "member",
3217
+ "module" : "ATM-MIB"
3218
+ },
3219
+ "atmVplCrossConnectIdentifier" : {
3220
+ "nodetype" : "member",
3221
+ "module" : "ATM-MIB"
3222
+ },
3223
+ "atmVpCrossConnectIndexNext" : {
3224
+ "nodetype" : "member",
3225
+ "module" : "ATM-MIB"
3226
+ },
3227
+ }, # members
3228
+ "description" :
3229
+ """A collection of objects providing
3230
+ information about a VP cross-connect
3231
+ for PVCs. These objects are not used
3232
+ for Soft PVCs or SVCs.""",
3233
+ }, # group
3234
+ "atmVclCrossConnectGroup" : {
3235
+ "nodetype" : "group",
3236
+ "moduleName" : "ATM-MIB",
3237
+ "oid" : "1.3.6.1.2.1.37.2.1.16",
3238
+ "status" : "current",
3239
+ "members" : {
3240
+ "atmVclReceiveTrafficDescrIndex" : {
3241
+ "nodetype" : "member",
3242
+ "module" : "ATM-MIB"
3243
+ },
3244
+ "atmVclTransmitTrafficDescrIndex" : {
3245
+ "nodetype" : "member",
3246
+ "module" : "ATM-MIB"
3247
+ },
3248
+ "atmVclOperStatus" : {
3249
+ "nodetype" : "member",
3250
+ "module" : "ATM-MIB"
3251
+ },
3252
+ "atmVclLastChange" : {
3253
+ "nodetype" : "member",
3254
+ "module" : "ATM-MIB"
3255
+ },
3256
+ "atmVclRowStatus" : {
3257
+ "nodetype" : "member",
3258
+ "module" : "ATM-MIB"
3259
+ },
3260
+ "atmVclCastType" : {
3261
+ "nodetype" : "member",
3262
+ "module" : "ATM-MIB"
3263
+ },
3264
+ "atmVclConnKind" : {
3265
+ "nodetype" : "member",
3266
+ "module" : "ATM-MIB"
3267
+ },
3268
+ }, # members
3269
+ "description" :
3270
+ """A collection of objects providing
3271
+ information about the VCLs that
3272
+ are cross-connected together.""",
3273
+ }, # group
3274
+ "atmVcPvcCrossConnectGroup" : {
3275
+ "nodetype" : "group",
3276
+ "moduleName" : "ATM-MIB",
3277
+ "oid" : "1.3.6.1.2.1.37.2.1.17",
3278
+ "status" : "current",
3279
+ "members" : {
3280
+ "atmVcCrossConnectAdminStatus" : {
3281
+ "nodetype" : "member",
3282
+ "module" : "ATM-MIB"
3283
+ },
3284
+ "atmVcCrossConnectL2HOperStatus" : {
3285
+ "nodetype" : "member",
3286
+ "module" : "ATM-MIB"
3287
+ },
3288
+ "atmVcCrossConnectH2LOperStatus" : {
3289
+ "nodetype" : "member",
3290
+ "module" : "ATM-MIB"
3291
+ },
3292
+ "atmVcCrossConnectL2HLastChange" : {
3293
+ "nodetype" : "member",
3294
+ "module" : "ATM-MIB"
3295
+ },
3296
+ "atmVcCrossConnectH2LLastChange" : {
3297
+ "nodetype" : "member",
3298
+ "module" : "ATM-MIB"
3299
+ },
3300
+ "atmVcCrossConnectRowStatus" : {
3301
+ "nodetype" : "member",
3302
+ "module" : "ATM-MIB"
3303
+ },
3304
+ "atmVclCrossConnectIdentifier" : {
3305
+ "nodetype" : "member",
3306
+ "module" : "ATM-MIB"
3307
+ },
3308
+ "atmVcCrossConnectIndexNext" : {
3309
+ "nodetype" : "member",
3310
+ "module" : "ATM-MIB"
3311
+ },
3312
+ }, # members
3313
+ "description" :
3314
+ """A collection of objects providing
3315
+ information about a VC cross-connect
3316
+ for PVCs. These objects are not used
3317
+ for Soft PVCs or SVCs.""",
3318
+ }, # group
3319
+ }, # groups
3320
+
3321
+ "compliances" : {
3322
+ "atmMIBCompliance" : {
3323
+ "nodetype" : "compliance",
3324
+ "moduleName" : "ATM-MIB",
3325
+ "oid" : "1.3.6.1.2.1.37.2.2.1",
3326
+ "status" : "deprecated",
3327
+ "description" :
3328
+ """The compliance statement for SNMP entities
3329
+ including networks which have ATM and
3330
+ AAL5 interfaces.""",
3331
+ "requires" : {
3332
+ "atmInterfaceConfGroup" : {
3333
+ "nodetype" : "mandatory",
3334
+ "module" : "ATM-MIB"
3335
+ },
3336
+ "atmTrafficDescrGroup" : {
3337
+ "nodetype" : "mandatory",
3338
+ "module" : "ATM-MIB"
3339
+ },
3340
+ "atmInterfaceDs3PlcpGroup" : {
3341
+ "nodetype" : "optional",
3342
+ "module" : "ATM-MIB",
3343
+ "description" :
3344
+ """This group is mandatory only for those
3345
+ ATM interfaces which implement the
3346
+ DS3 PLCP layer.""",
3347
+ },
3348
+ "atmInterfaceTCGroup" : {
3349
+ "nodetype" : "optional",
3350
+ "module" : "ATM-MIB",
3351
+ "description" :
3352
+ """This group is mandatory only for those
3353
+ ATM interfaces which implement the
3354
+ TC Sublayer.""",
3355
+ },
3356
+ "atmVpcTerminationGroup" : {
3357
+ "nodetype" : "optional",
3358
+ "module" : "ATM-MIB",
3359
+ "description" :
3360
+ """This group is mandatory only for those
3361
+ ATM interfaces which implement ATM
3362
+ VPLs that terminate VPCs (i.e., ones which
3363
+ are NOT cross-connected to other VPLs).""",
3364
+ },
3365
+ "atmVpCrossConnectGroup" : {
3366
+ "nodetype" : "optional",
3367
+ "module" : "ATM-MIB",
3368
+ "description" :
3369
+ """This group is mandatory only for those
3370
+ ATM interfaces which implement ATM
3371
+ VPLs that are not associated with VCLs
3372
+ and are cross-connected to other VPLs.""",
3373
+ },
3374
+ "atmVccTerminationGroup" : {
3375
+ "nodetype" : "optional",
3376
+ "module" : "ATM-MIB",
3377
+ "description" :
3378
+ """This group is mandatory only for those
3379
+ ATM interfaces which implement ATM
3380
+ VCLs that terminate VCCs (i.e., ones which
3381
+ are NOT cross-connected to other VCLs).""",
3382
+ },
3383
+ "atmVcCrossConnectGroup" : {
3384
+ "nodetype" : "optional",
3385
+ "module" : "ATM-MIB",
3386
+ "description" :
3387
+ """This group is mandatory only for those
3388
+ ATM interfaces which implement ATM
3389
+ VCLs that are cross-connected to
3390
+ other VCLs.""",
3391
+ },
3392
+ "aal5VccGroup" : {
3393
+ "nodetype" : "optional",
3394
+ "module" : "ATM-MIB",
3395
+ "description" :
3396
+ """This group is mandatory for the
3397
+ AAL5 virtual connections only.""",
3398
+ },
3399
+ }, # requires
3400
+ "refinements" : {
3401
+ "atmInterfaceMaxVpcs" : {
3402
+ "module" : "ATM-MIB",
3403
+ "access" : "readonly",
3404
+ "description" :
3405
+ """Write access is not required.""",
3406
+ },
3407
+ "atmInterfaceMaxVccs" : {
3408
+ "module" : "ATM-MIB",
3409
+ "access" : "readonly",
3410
+ "description" :
3411
+ """Write access is not required.""",
3412
+ },
3413
+ "atmInterfaceMaxActiveVpiBits" : {
3414
+ "module" : "ATM-MIB",
3415
+ "access" : "readonly",
3416
+ "description" :
3417
+ """Write access is not required.""",
3418
+ },
3419
+ "atmInterfaceMaxActiveVciBits" : {
3420
+ "module" : "ATM-MIB",
3421
+ "access" : "readonly",
3422
+ "description" :
3423
+ """Write access is not required.""",
3424
+ },
3425
+ "atmInterfaceIlmiVpi" : {
3426
+ "module" : "ATM-MIB",
3427
+ "access" : "readonly",
3428
+ "description" :
3429
+ """Write access is not required.""",
3430
+ },
3431
+ "atmInterfaceIlmiVci" : {
3432
+ "module" : "ATM-MIB",
3433
+ "access" : "readonly",
3434
+ "description" :
3435
+ """Write access is not required.""",
3436
+ },
3437
+ "atmInterfaceMyNeighborIpAddress" : {
3438
+ "module" : "ATM-MIB",
3439
+ "access" : "readonly",
3440
+ "description" :
3441
+ """Write access is not required.""",
3442
+ },
3443
+ "atmInterfaceMyNeighborIfName" : {
3444
+ "module" : "ATM-MIB",
3445
+ "access" : "readonly",
3446
+ "description" :
3447
+ """Write access is not required.""",
3448
+ },
3449
+ "atmTrafficDescrType" : {
3450
+ "module" : "ATM-MIB",
3451
+ "access" : "readonly",
3452
+ "description" :
3453
+ """Write access is not required.""",
3454
+ },
3455
+ "atmTrafficDescrParam1" : {
3456
+ "module" : "ATM-MIB",
3457
+ "access" : "readonly",
3458
+ "description" :
3459
+ """Write access is not required.""",
3460
+ },
3461
+ "atmTrafficDescrParam2" : {
3462
+ "module" : "ATM-MIB",
3463
+ "access" : "readonly",
3464
+ "description" :
3465
+ """Write access is not required.""",
3466
+ },
3467
+ "atmTrafficDescrParam3" : {
3468
+ "module" : "ATM-MIB",
3469
+ "access" : "readonly",
3470
+ "description" :
3471
+ """Write access is not required.""",
3472
+ },
3473
+ "atmTrafficDescrParam4" : {
3474
+ "module" : "ATM-MIB",
3475
+ "access" : "readonly",
3476
+ "description" :
3477
+ """Write access is not required.""",
3478
+ },
3479
+ "atmTrafficDescrParam5" : {
3480
+ "module" : "ATM-MIB",
3481
+ "access" : "readonly",
3482
+ "description" :
3483
+ """Write access is not required.""",
3484
+ },
3485
+ "atmTrafficQoSClass" : {
3486
+ "module" : "ATM-MIB",
3487
+ "access" : "readonly",
3488
+ "description" :
3489
+ """Write access is not required.""",
3490
+ },
3491
+ "atmTrafficDescrRowStatus" : {
3492
+ "module" : "ATM-MIB",
3493
+ "syntax" : {
3494
+ "type" : {
3495
+ "basetype" : "Enumeration",
3496
+ "parent module" : {
3497
+ "name" : "SNMPv2-TC",
3498
+ "type" : "RowStatus",
3499
+ },
3500
+ "active" : {
3501
+ "nodetype" : "namednumber",
3502
+ "number" : "1"
3503
+ },
3504
+ },
3505
+ }, # syntax
3506
+ "access" : "readonly",
3507
+ "description" :
3508
+ """Write access is not required, and only one
3509
+ of the six enumerated values for the
3510
+ RowStatus textual convention need be
3511
+ supported, specifically: active(1).""",
3512
+ },
3513
+ "atmVplAdminStatus" : {
3514
+ "module" : "ATM-MIB",
3515
+ "access" : "readonly",
3516
+ "description" :
3517
+ """Write access is not required.""",
3518
+ },
3519
+ "atmVplReceiveTrafficDescrIndex" : {
3520
+ "module" : "ATM-MIB",
3521
+ "access" : "readonly",
3522
+ "description" :
3523
+ """Write access is not required.""",
3524
+ },
3525
+ "atmVplTransmitTrafficDescrIndex" : {
3526
+ "module" : "ATM-MIB",
3527
+ "access" : "readonly",
3528
+ "description" :
3529
+ """Write access is not required.""",
3530
+ },
3531
+ "atmVplRowStatus" : {
3532
+ "module" : "ATM-MIB",
3533
+ "syntax" : {
3534
+ "type" : {
3535
+ "basetype" : "Enumeration",
3536
+ "parent module" : {
3537
+ "name" : "SNMPv2-TC",
3538
+ "type" : "RowStatus",
3539
+ },
3540
+ "active" : {
3541
+ "nodetype" : "namednumber",
3542
+ "number" : "1"
3543
+ },
3544
+ },
3545
+ }, # syntax
3546
+ "access" : "readonly",
3547
+ "description" :
3548
+ """Write access is not required, and only one
3549
+ of the six enumerated values for the
3550
+ RowStatus textual convention need be
3551
+ supported, specifically: active(1).""",
3552
+ },
3553
+ "atmVpCrossConnectAdminStatus" : {
3554
+ "module" : "ATM-MIB",
3555
+ "access" : "readonly",
3556
+ "description" :
3557
+ """Write access is not required.""",
3558
+ },
3559
+ "atmVpCrossConnectRowStatus" : {
3560
+ "module" : "ATM-MIB",
3561
+ "syntax" : {
3562
+ "type" : {
3563
+ "basetype" : "Enumeration",
3564
+ "parent module" : {
3565
+ "name" : "SNMPv2-TC",
3566
+ "type" : "RowStatus",
3567
+ },
3568
+ "active" : {
3569
+ "nodetype" : "namednumber",
3570
+ "number" : "1"
3571
+ },
3572
+ },
3573
+ }, # syntax
3574
+ "access" : "readonly",
3575
+ "description" :
3576
+ """Write access is not required, and only one
3577
+ of the six enumerated values for the
3578
+ RowStatus textual convention need be
3579
+ supported, specifically: active(1).""",
3580
+ },
3581
+ "atmVclAdminStatus" : {
3582
+ "module" : "ATM-MIB",
3583
+ "access" : "readonly",
3584
+ "description" :
3585
+ """Write access is not required.""",
3586
+ },
3587
+ "atmVclReceiveTrafficDescrIndex" : {
3588
+ "module" : "ATM-MIB",
3589
+ "access" : "readonly",
3590
+ "description" :
3591
+ """Write access is not required.""",
3592
+ },
3593
+ "atmVclTransmitTrafficDescrIndex" : {
3594
+ "module" : "ATM-MIB",
3595
+ "access" : "readonly",
3596
+ "description" :
3597
+ """Write access is not required.""",
3598
+ },
3599
+ "atmVccAalType" : {
3600
+ "module" : "ATM-MIB",
3601
+ "access" : "readonly",
3602
+ "description" :
3603
+ """Write access is not required.""",
3604
+ },
3605
+ "atmVclRowStatus" : {
3606
+ "module" : "ATM-MIB",
3607
+ "syntax" : {
3608
+ "type" : {
3609
+ "basetype" : "Enumeration",
3610
+ "parent module" : {
3611
+ "name" : "SNMPv2-TC",
3612
+ "type" : "RowStatus",
3613
+ },
3614
+ "active" : {
3615
+ "nodetype" : "namednumber",
3616
+ "number" : "1"
3617
+ },
3618
+ },
3619
+ }, # syntax
3620
+ "access" : "readonly",
3621
+ "description" :
3622
+ """Write access is not required, and only one
3623
+ of the six enumerated values for the
3624
+ RowStatus textual convention need be
3625
+ supported, specifically: active(1).""",
3626
+ },
3627
+ "atmVcCrossConnectAdminStatus" : {
3628
+ "module" : "ATM-MIB",
3629
+ "access" : "readonly",
3630
+ "description" :
3631
+ """Write access is not required.""",
3632
+ },
3633
+ "atmVcCrossConnectRowStatus" : {
3634
+ "module" : "ATM-MIB",
3635
+ "syntax" : {
3636
+ "type" : {
3637
+ "basetype" : "Enumeration",
3638
+ "parent module" : {
3639
+ "name" : "SNMPv2-TC",
3640
+ "type" : "RowStatus",
3641
+ },
3642
+ "active" : {
3643
+ "nodetype" : "namednumber",
3644
+ "number" : "1"
3645
+ },
3646
+ },
3647
+ }, # syntax
3648
+ "access" : "readonly",
3649
+ "description" :
3650
+ """Write access is not required, and only one
3651
+ of the six enumerated values for the
3652
+ RowStatus textual convention need be
3653
+ supported, specifically: active(1).""",
3654
+ },
3655
+ "atmVccAal5CpcsTransmitSduSize" : {
3656
+ "module" : "ATM-MIB",
3657
+ "access" : "readonly",
3658
+ "description" :
3659
+ """Write access is not required.""",
3660
+ },
3661
+ "atmVccAal5CpcsReceiveSduSize" : {
3662
+ "module" : "ATM-MIB",
3663
+ "access" : "readonly",
3664
+ "description" :
3665
+ """Write access is not required.""",
3666
+ },
3667
+ "atmVccAal5EncapsType" : {
3668
+ "module" : "ATM-MIB",
3669
+ "access" : "readonly",
3670
+ "description" :
3671
+ """Write access is not required.""",
3672
+ },
3673
+ }, # refinements
3674
+
3675
+ }, # compliance
3676
+ "atmMIBCompliance2" : {
3677
+ "nodetype" : "compliance",
3678
+ "moduleName" : "ATM-MIB",
3679
+ "oid" : "1.3.6.1.2.1.37.2.2.2",
3680
+ "status" : "current",
3681
+ "description" :
3682
+ """The compliance statement for SNMP entities
3683
+ including networks which have ATM and
3684
+ AAL5 interfaces.""",
3685
+ "requires" : {
3686
+ "atmInterfaceConfGroup2" : {
3687
+ "nodetype" : "mandatory",
3688
+ "module" : "ATM-MIB"
3689
+ },
3690
+ "atmTrafficDescrGroup2" : {
3691
+ "nodetype" : "mandatory",
3692
+ "module" : "ATM-MIB"
3693
+ },
3694
+ "atmInterfaceDs3PlcpGroup" : {
3695
+ "nodetype" : "optional",
3696
+ "module" : "ATM-MIB",
3697
+ "description" :
3698
+ """This group is mandatory only for those
3699
+ ATM interfaces which implement the
3700
+ DS3 PLCP layer.""",
3701
+ },
3702
+ "atmInterfaceTCGroup" : {
3703
+ "nodetype" : "optional",
3704
+ "module" : "ATM-MIB",
3705
+ "description" :
3706
+ """This group is mandatory only for those
3707
+ ATM interfaces which implement the
3708
+ TC Sublayer.""",
3709
+ },
3710
+ "atmVpcTerminationGroup2" : {
3711
+ "nodetype" : "optional",
3712
+ "module" : "ATM-MIB",
3713
+ "description" :
3714
+ """This group is mandatory only for those
3715
+ ATM interfaces which implement ATM
3716
+ VPLs that terminate VPCs (i.e., ones which
3717
+ are NOT cross-connected to other VPLs).""",
3718
+ },
3719
+ "atmVplCrossConnectGroup" : {
3720
+ "nodetype" : "optional",
3721
+ "module" : "ATM-MIB",
3722
+ "description" :
3723
+ """This group is mandatory only for those
3724
+ ATM interfaces which implement ATM
3725
+ VPLs that are not associated with VCLs
3726
+ and are cross-connected to other VPLs
3727
+ for VPCs.""",
3728
+ },
3729
+ "atmVpPvcCrossConnectGroup" : {
3730
+ "nodetype" : "optional",
3731
+ "module" : "ATM-MIB",
3732
+ "description" :
3733
+ """This group is mandatory only for those
3734
+ ATM interfaces which implement ATM
3735
+ VPLs that are not associated with VCLs
3736
+ and are cross-connected to other VPLs
3737
+ for permanent VPCs (i.e., PVCs).
3738
+ This group is not used to crossconnect
3739
+ a PVC with an SVC to form a Soft PVC.""",
3740
+ },
3741
+ "atmVccTerminationGroup2" : {
3742
+ "nodetype" : "optional",
3743
+ "module" : "ATM-MIB",
3744
+ "description" :
3745
+ """This group is mandatory only for those
3746
+ ATM interfaces which implement ATM
3747
+ VCLs that terminate VCCs (i.e., ones which
3748
+ are NOT cross-connected to other VCLs).""",
3749
+ },
3750
+ "atmVclCrossConnectGroup" : {
3751
+ "nodetype" : "optional",
3752
+ "module" : "ATM-MIB",
3753
+ "description" :
3754
+ """This group is mandatory only for those
3755
+ ATM interfaces which implement ATM
3756
+ VCLs that are cross-connected to other VCLs
3757
+ for VCCs.""",
3758
+ },
3759
+ "atmVcPvcCrossConnectGroup" : {
3760
+ "nodetype" : "optional",
3761
+ "module" : "ATM-MIB",
3762
+ "description" :
3763
+ """This group is mandatory only for those
3764
+ ATM interfaces which implement ATM
3765
+ VCLs that are cross-connected to other
3766
+ VCLs for permanent VCCs (i.e., PVCs).
3767
+ This group is not used to crossconnect
3768
+ a PVC with an SVC to form a Soft PVC.""",
3769
+ },
3770
+ "aal5VccGroup" : {
3771
+ "nodetype" : "optional",
3772
+ "module" : "ATM-MIB",
3773
+ "description" :
3774
+ """This group is mandatory for the
3775
+ AAL5 virtual connections only.""",
3776
+ },
3777
+ }, # requires
3778
+ "refinements" : {
3779
+ "atmInterfaceMaxVpcs" : {
3780
+ "module" : "ATM-MIB",
3781
+ "access" : "readonly",
3782
+ "description" :
3783
+ """Write access is not required.""",
3784
+ },
3785
+ "atmInterfaceMaxVccs" : {
3786
+ "module" : "ATM-MIB",
3787
+ "access" : "readonly",
3788
+ "description" :
3789
+ """Write access is not required.""",
3790
+ },
3791
+ "atmInterfaceMaxActiveVpiBits" : {
3792
+ "module" : "ATM-MIB",
3793
+ "access" : "readonly",
3794
+ "description" :
3795
+ """Write access is not required.
3796
+ At the ATM UNI the maximum number of
3797
+ active VPI bits configured for use ranges
3798
+ from 0 to 8 only.
3799
+ Implementations may support smaller ranges.""",
3800
+ },
3801
+ "atmInterfaceMaxActiveVciBits" : {
3802
+ "module" : "ATM-MIB",
3803
+ "access" : "readonly",
3804
+ "description" :
3805
+ """Write access is not required.
3806
+ Implementations may support smaller ranges.""",
3807
+ },
3808
+ "atmInterfaceIlmiVpi" : {
3809
+ "module" : "ATM-MIB",
3810
+ "access" : "readonly",
3811
+ "description" :
3812
+ """Write access is not required.""",
3813
+ },
3814
+ "atmInterfaceIlmiVci" : {
3815
+ "module" : "ATM-MIB",
3816
+ "access" : "readonly",
3817
+ "description" :
3818
+ """Write access is not required.""",
3819
+ },
3820
+ "atmInterfaceMyNeighborIpAddress" : {
3821
+ "module" : "ATM-MIB",
3822
+ "access" : "readonly",
3823
+ "description" :
3824
+ """Write access is not required.""",
3825
+ },
3826
+ "atmInterfaceMyNeighborIfName" : {
3827
+ "module" : "ATM-MIB",
3828
+ "access" : "readonly",
3829
+ "description" :
3830
+ """Write access is not required.""",
3831
+ },
3832
+ "atmInterfaceSubscrAddress" : {
3833
+ "module" : "ATM-MIB",
3834
+ "access" : "readonly",
3835
+ "description" :
3836
+ """Write access is not required.""",
3837
+ },
3838
+ "atmTrafficDescrParamIndexNext" : {
3839
+ "module" : "ATM-MIB",
3840
+ "description" :
3841
+ """This object is only required for systems
3842
+ that support the creation of entries in
3843
+ the atmTrafficDescrParamTable.""",
3844
+ },
3845
+ "atmTrafficDescrType" : {
3846
+ "module" : "ATM-MIB",
3847
+ "access" : "readonly",
3848
+ "description" :
3849
+ """Write access is not required.""",
3850
+ },
3851
+ "atmTrafficDescrParam1" : {
3852
+ "module" : "ATM-MIB",
3853
+ "access" : "readonly",
3854
+ "description" :
3855
+ """Write access is not required.""",
3856
+ },
3857
+ "atmTrafficDescrParam2" : {
3858
+ "module" : "ATM-MIB",
3859
+ "access" : "readonly",
3860
+ "description" :
3861
+ """Write access is not required.""",
3862
+ },
3863
+ "atmTrafficDescrParam3" : {
3864
+ "module" : "ATM-MIB",
3865
+ "access" : "readonly",
3866
+ "description" :
3867
+ """Write access is not required.""",
3868
+ },
3869
+ "atmTrafficDescrParam4" : {
3870
+ "module" : "ATM-MIB",
3871
+ "access" : "readonly",
3872
+ "description" :
3873
+ """Write access is not required.""",
3874
+ },
3875
+ "atmTrafficDescrParam5" : {
3876
+ "module" : "ATM-MIB",
3877
+ "access" : "readonly",
3878
+ "description" :
3879
+ """Write access is not required.""",
3880
+ },
3881
+ "atmServiceCategory" : {
3882
+ "module" : "ATM-MIB",
3883
+ "access" : "readonly",
3884
+ "description" :
3885
+ """Write access is not required.""",
3886
+ },
3887
+ "atmTrafficDescrRowStatus" : {
3888
+ "module" : "ATM-MIB",
3889
+ "syntax" : {
3890
+ "type" : {
3891
+ "basetype" : "Enumeration",
3892
+ "parent module" : {
3893
+ "name" : "SNMPv2-TC",
3894
+ "type" : "RowStatus",
3895
+ },
3896
+ "active" : {
3897
+ "nodetype" : "namednumber",
3898
+ "number" : "1"
3899
+ },
3900
+ },
3901
+ }, # syntax
3902
+ "access" : "readonly",
3903
+ "description" :
3904
+ """Write access is not required, and only one
3905
+ of the six enumerated values for the
3906
+ RowStatus textual convention need be
3907
+ supported, specifically: active(1).""",
3908
+ },
3909
+ "atmTrafficFrameDiscard" : {
3910
+ "module" : "ATM-MIB",
3911
+ "access" : "readonly",
3912
+ "description" :
3913
+ """Write access is not required.""",
3914
+ },
3915
+ "atmVplAdminStatus" : {
3916
+ "module" : "ATM-MIB",
3917
+ "access" : "readonly",
3918
+ "description" :
3919
+ """Write access is not required.""",
3920
+ },
3921
+ "atmVplReceiveTrafficDescrIndex" : {
3922
+ "module" : "ATM-MIB",
3923
+ "access" : "readonly",
3924
+ "description" :
3925
+ """Write access is not required.""",
3926
+ },
3927
+ "atmVplTransmitTrafficDescrIndex" : {
3928
+ "module" : "ATM-MIB",
3929
+ "access" : "readonly",
3930
+ "description" :
3931
+ """Write access is not required.""",
3932
+ },
3933
+ "atmVplRowStatus" : {
3934
+ "module" : "ATM-MIB",
3935
+ "syntax" : {
3936
+ "type" : {
3937
+ "basetype" : "Enumeration",
3938
+ "parent module" : {
3939
+ "name" : "SNMPv2-TC",
3940
+ "type" : "RowStatus",
3941
+ },
3942
+ "active" : {
3943
+ "nodetype" : "namednumber",
3944
+ "number" : "1"
3945
+ },
3946
+ },
3947
+ }, # syntax
3948
+ "access" : "readonly",
3949
+ "description" :
3950
+ """Write access is not required, and only one
3951
+ of the six enumerated values for the
3952
+ RowStatus textual convention need be
3953
+ supported, specifically: active(1).""",
3954
+ },
3955
+ "atmVplCastType" : {
3956
+ "module" : "ATM-MIB",
3957
+ "access" : "readonly",
3958
+ "description" :
3959
+ """Write access is not required.""",
3960
+ },
3961
+ "atmVplConnKind" : {
3962
+ "module" : "ATM-MIB",
3963
+ "access" : "readonly",
3964
+ "description" :
3965
+ """Write access is not required.""",
3966
+ },
3967
+ "atmVpCrossConnectAdminStatus" : {
3968
+ "module" : "ATM-MIB",
3969
+ "access" : "readonly",
3970
+ "description" :
3971
+ """Write access is not required.""",
3972
+ },
3973
+ "atmVpCrossConnectRowStatus" : {
3974
+ "module" : "ATM-MIB",
3975
+ "syntax" : {
3976
+ "type" : {
3977
+ "basetype" : "Enumeration",
3978
+ "parent module" : {
3979
+ "name" : "SNMPv2-TC",
3980
+ "type" : "RowStatus",
3981
+ },
3982
+ "active" : {
3983
+ "nodetype" : "namednumber",
3984
+ "number" : "1"
3985
+ },
3986
+ },
3987
+ }, # syntax
3988
+ "access" : "readonly",
3989
+ "description" :
3990
+ """Write access is not required, and only one
3991
+ of the six enumerated values for the
3992
+ RowStatus textual convention need be
3993
+ supported, specifically: active(1).""",
3994
+ },
3995
+ "atmVclAdminStatus" : {
3996
+ "module" : "ATM-MIB",
3997
+ "access" : "readonly",
3998
+ "description" :
3999
+ """Write access is not required.""",
4000
+ },
4001
+ "atmVclReceiveTrafficDescrIndex" : {
4002
+ "module" : "ATM-MIB",
4003
+ "access" : "readonly",
4004
+ "description" :
4005
+ """Write access is not required.""",
4006
+ },
4007
+ "atmVclTransmitTrafficDescrIndex" : {
4008
+ "module" : "ATM-MIB",
4009
+ "access" : "readonly",
4010
+ "description" :
4011
+ """Write access is not required.""",
4012
+ },
4013
+ "atmVccAalType" : {
4014
+ "module" : "ATM-MIB",
4015
+ "access" : "readonly",
4016
+ "description" :
4017
+ """Write access is not required.""",
4018
+ },
4019
+ "atmVclRowStatus" : {
4020
+ "module" : "ATM-MIB",
4021
+ "syntax" : {
4022
+ "type" : {
4023
+ "basetype" : "Enumeration",
4024
+ "parent module" : {
4025
+ "name" : "SNMPv2-TC",
4026
+ "type" : "RowStatus",
4027
+ },
4028
+ "active" : {
4029
+ "nodetype" : "namednumber",
4030
+ "number" : "1"
4031
+ },
4032
+ },
4033
+ }, # syntax
4034
+ "access" : "readonly",
4035
+ "description" :
4036
+ """Write access is not required, and only one
4037
+ of the six enumerated values for the
4038
+ RowStatus textual convention need be
4039
+ supported, specifically: active(1).""",
4040
+ },
4041
+ "atmVclCastType" : {
4042
+ "module" : "ATM-MIB",
4043
+ "access" : "readonly",
4044
+ "description" :
4045
+ """Write access is not required.""",
4046
+ },
4047
+ "atmVclConnKind" : {
4048
+ "module" : "ATM-MIB",
4049
+ "access" : "readonly",
4050
+ "description" :
4051
+ """Write access is not required.""",
4052
+ },
4053
+ "atmVcCrossConnectAdminStatus" : {
4054
+ "module" : "ATM-MIB",
4055
+ "access" : "readonly",
4056
+ "description" :
4057
+ """Write access is not required.""",
4058
+ },
4059
+ "atmVcCrossConnectRowStatus" : {
4060
+ "module" : "ATM-MIB",
4061
+ "syntax" : {
4062
+ "type" : {
4063
+ "basetype" : "Enumeration",
4064
+ "parent module" : {
4065
+ "name" : "SNMPv2-TC",
4066
+ "type" : "RowStatus",
4067
+ },
4068
+ "active" : {
4069
+ "nodetype" : "namednumber",
4070
+ "number" : "1"
4071
+ },
4072
+ },
4073
+ }, # syntax
4074
+ "access" : "readonly",
4075
+ "description" :
4076
+ """Write access is not required, and only one
4077
+ of the six enumerated values for the
4078
+ RowStatus textual convention need be
4079
+ supported, specifically: active(1).""",
4080
+ },
4081
+ "atmVccAal5CpcsTransmitSduSize" : {
4082
+ "module" : "ATM-MIB",
4083
+ "access" : "readonly",
4084
+ "description" :
4085
+ """Write access is not required.""",
4086
+ },
4087
+ "atmVccAal5CpcsReceiveSduSize" : {
4088
+ "module" : "ATM-MIB",
4089
+ "access" : "readonly",
4090
+ "description" :
4091
+ """Write access is not required.""",
4092
+ },
4093
+ "atmVccAal5EncapsType" : {
4094
+ "module" : "ATM-MIB",
4095
+ "access" : "readonly",
4096
+ "description" :
4097
+ """Write access is not required.""",
4098
+ },
4099
+ }, # refinements
4100
+
4101
+ }, # compliance
4102
+ }, # compliances
4103
+
4104
+ }