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,1642 @@
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 PW-ATM-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/PW-ATM-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "PW-ATM-MIB",
11
+
12
+ "PW-ATM-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """Pseudowire Emulation Edge-to-Edge (PWE3)
17
+ Working Group""",
18
+ "contact" :
19
+ """Thomas D. Nadeau
20
+ Postal: BT
21
+ BT Centre
22
+ 81 Newgate Street
23
+ London EC1A 7AJ
24
+ United Kingdom
25
+
26
+
27
+
28
+ Email: tom.nadeau@bt.com
29
+
30
+ Orly Nicklass
31
+ Postal: RADVISION Ltd.
32
+ 24 Raul Wallenberg
33
+ Tel Aviv, Israel
34
+ Email: orlyn@radvision.com
35
+
36
+ Discussion and general questions should be posed to
37
+ the PWE3 Working Group (pwe3@ietf.org).""",
38
+ "description" :
39
+ """This MIB contains managed object definitions for
40
+ pseudowire emulation of ATM over Packet Switched
41
+ Networks (PSNs).
42
+
43
+ This MIB supplements the PW-STD-MIB module.
44
+ The PW-STD-MIB contains structures and MIB associations
45
+ generic to pseudowire (PW) emulation. PW-specific
46
+ MIBs (such as this) contain config and stats for specific
47
+ PW types.
48
+
49
+ Copyright (c) 2009 IETF Trust and the persons identified as
50
+ authors of the code. All rights reserved.
51
+
52
+ Redistribution and use in source and binary forms, with or
53
+ without modification, are permitted provided that the
54
+ following conditions are met:
55
+
56
+ - Redistributions of source code must retain the above
57
+ copyright notice, this list of conditions and the
58
+ following disclaimer.
59
+
60
+ - Redistributions in binary form must reproduce the above
61
+ copyright notice, this list of conditions and the
62
+ following disclaimer in the documentation and/or other
63
+ materials provided with the distribution.
64
+
65
+ - Neither the name of Internet Society, IETF or IETF Trust,
66
+ nor the names of specific contributors, may be used to
67
+ endorse or promote products derived from this software
68
+ without specific prior written permission.
69
+
70
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
71
+ CONTRIBUTORS 'AS IS' AND ANY EXPRESS OR IMPLIED WARRANTIES,
72
+ INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
73
+ MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
74
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
75
+
76
+
77
+
78
+ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
79
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
80
+ NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
81
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
82
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
83
+ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
84
+ OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
85
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
86
+
87
+ This version of this MIB module is part of RFC 5605;
88
+ see the RFC itself for full legal notices.""",
89
+ "revisions" : (
90
+ {
91
+ "date" : "2009-06-16 00:00",
92
+ "description" :
93
+ """Initial version published as RFC 5605.""",
94
+ },
95
+ ),
96
+ "identity node" : "pwAtmMIB",
97
+ },
98
+
99
+ "imports" : (
100
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
101
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
102
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
103
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
104
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
105
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
106
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
107
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
108
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
109
+ {"module" : "SNMPv2-TC", "name" : "RowPointer"},
110
+ {"module" : "PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
111
+ {"module" : "PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
112
+ {"module" : "IF-MIB", "name" : "InterfaceIndex"},
113
+ {"module" : "PW-STD-MIB", "name" : "pwIndex"},
114
+ {"module" : "ATM-TC-MIB", "name" : "AtmVpIdentifier"},
115
+ {"module" : "ATM-TC-MIB", "name" : "AtmVcIdentifier"},
116
+ ),
117
+
118
+ "nodes" : {
119
+ "pwAtmMIB" : {
120
+ "nodetype" : "node",
121
+ "moduleName" : "PW-ATM-MIB",
122
+ "oid" : "1.3.6.1.2.1.183",
123
+ "status" : "current",
124
+ }, # node
125
+ "pwAtmNotifications" : {
126
+ "nodetype" : "node",
127
+ "moduleName" : "PW-ATM-MIB",
128
+ "oid" : "1.3.6.1.2.1.183.0",
129
+ }, # node
130
+ "pwAtmObjects" : {
131
+ "nodetype" : "node",
132
+ "moduleName" : "PW-ATM-MIB",
133
+ "oid" : "1.3.6.1.2.1.183.1",
134
+ }, # node
135
+ "pwAtmOutboundTable" : {
136
+ "nodetype" : "table",
137
+ "moduleName" : "PW-ATM-MIB",
138
+ "oid" : "1.3.6.1.2.1.183.1.1",
139
+ "status" : "current",
140
+ "description" :
141
+ """This table specifies the information for an ATM PW to
142
+ be carried over the PSN in the outbound direction. An
143
+ entry is created in this table for every entry in
144
+ the pwTable with a pwType equal to one of the following:
145
+ atmAal5SduVcc(2), atmCell1to1Vcc(12), atmCell1to1Vpc(13)
146
+ or atmAal5PduVcc(14), or atmTransparent(3).""",
147
+ }, # table
148
+ "pwAtmOutboundEntry" : {
149
+ "nodetype" : "row",
150
+ "moduleName" : "PW-ATM-MIB",
151
+ "oid" : "1.3.6.1.2.1.183.1.1.1",
152
+ "create" : "true",
153
+ "status" : "current",
154
+ "linkage" : [
155
+ "pwIndex",
156
+ ],
157
+ "description" :
158
+ """A row in this table represents an ATM PW that needs to be
159
+ adapted and carried over the PSN. This table is indexed by
160
+
161
+
162
+
163
+ pwIndex from pwTable. Unless otherwise specified, all
164
+ writeable objects in this table MUST NOT be changed after
165
+ row activation in the generic pwTable, and values must
166
+ persist after reboot.""",
167
+ "reference" :
168
+ """See [PWMIB].""",
169
+ }, # row
170
+ "pwAtmOutboundAtmIf" : {
171
+ "nodetype" : "column",
172
+ "moduleName" : "PW-ATM-MIB",
173
+ "oid" : "1.3.6.1.2.1.183.1.1.1.1",
174
+ "status" : "current",
175
+ "syntax" : {
176
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
177
+ },
178
+ "access" : "readwrite",
179
+ "description" :
180
+ """The ATM Interface that receives cells from the ATM
181
+ network.""",
182
+ }, # column
183
+ "pwAtmOutboundVpi" : {
184
+ "nodetype" : "column",
185
+ "moduleName" : "PW-ATM-MIB",
186
+ "oid" : "1.3.6.1.2.1.183.1.1.1.2",
187
+ "status" : "current",
188
+ "syntax" : {
189
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVpIdentifier"},
190
+ },
191
+ "access" : "readwrite",
192
+ "description" :
193
+ """VPI value of this ATM PW. The value may indicate the
194
+ translated value when egress generates new VPI.""",
195
+ }, # column
196
+ "pwAtmOutboundVci" : {
197
+ "nodetype" : "column",
198
+ "moduleName" : "PW-ATM-MIB",
199
+ "oid" : "1.3.6.1.2.1.183.1.1.1.3",
200
+ "status" : "current",
201
+ "syntax" : {
202
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVcIdentifier"},
203
+ },
204
+ "access" : "readwrite",
205
+ "description" :
206
+ """VCI value of this ATM PW. The value may indicate the
207
+ translated value when egress generates new VCI.""",
208
+ }, # column
209
+ "pwAtmOutboundTrafficParamDescr" : {
210
+ "nodetype" : "column",
211
+ "moduleName" : "PW-ATM-MIB",
212
+ "oid" : "1.3.6.1.2.1.183.1.1.1.4",
213
+ "status" : "current",
214
+ "syntax" : {
215
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowPointer"},
216
+ },
217
+ "access" : "readwrite",
218
+ "description" :
219
+ """This object represents a pointer to an ATM
220
+ traffic-parameter-specific row in either a private or
221
+ standard table that will be employed while receiving
222
+ cells from the ATM network. This row should contain a
223
+ set of self-consistent ATM traffic parameters including
224
+ the ATM traffic service category.
225
+ A value of 0.0 indicates Best Effort.""",
226
+ }, # column
227
+ "pwAtmOutboundRowStatus" : {
228
+ "nodetype" : "column",
229
+ "moduleName" : "PW-ATM-MIB",
230
+ "oid" : "1.3.6.1.2.1.183.1.1.1.5",
231
+ "status" : "current",
232
+ "syntax" : {
233
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
234
+ },
235
+ "access" : "readwrite",
236
+ "description" :
237
+ """This object is used to create, modify, or delete a row in
238
+ this table. Unless otherwise specified, all writeable
239
+ objects in this table MUST NOT be changed after row
240
+ activation as explained in the pwAtmOutboundEntry. """,
241
+ }, # column
242
+ "pwAtmInboundTable" : {
243
+ "nodetype" : "table",
244
+ "moduleName" : "PW-ATM-MIB",
245
+ "oid" : "1.3.6.1.2.1.183.1.3",
246
+ "status" : "current",
247
+ "description" :
248
+ """This table specifies the information for an ATM PW in the
249
+ inbound direction.""",
250
+ }, # table
251
+ "pwAtmInboundEntry" : {
252
+ "nodetype" : "row",
253
+ "moduleName" : "PW-ATM-MIB",
254
+ "oid" : "1.3.6.1.2.1.183.1.3.1",
255
+ "create" : "true",
256
+ "status" : "current",
257
+ "linkage" : [
258
+ "pwIndex",
259
+ ],
260
+ "description" :
261
+ """A row in this table represents an ATM PW that needs to be
262
+ sent into the ATM network after reconstructing cells from
263
+ packets received from a PSN. This table is indexed by
264
+ pwIndex from pwTable. An entry is created in this table
265
+ for every entry in the pwTable with a
266
+ pwType equal to one of the following:
267
+ atmAal5SduVcc(2), atmCell1to1Vcc(12), atmCell1to1Vpc(13),
268
+ atmAal5PduVcc(14), or atmTransparent(3). Unless otherwise
269
+
270
+
271
+
272
+ specified, all writeable objects in this table MUST NOT
273
+ be changed after row activation in the generic pwTable,
274
+ and values must persist after reboot.""",
275
+ "reference" :
276
+ """See [PWMIB].""",
277
+ }, # row
278
+ "pwAtmInboundAtmIf" : {
279
+ "nodetype" : "column",
280
+ "moduleName" : "PW-ATM-MIB",
281
+ "oid" : "1.3.6.1.2.1.183.1.3.1.1",
282
+ "status" : "current",
283
+ "syntax" : {
284
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
285
+ },
286
+ "access" : "readwrite",
287
+ "description" :
288
+ """The ATM Interface that sends cells into the ATM network
289
+ after reconstructing cells from packets received from
290
+ a PSN.""",
291
+ }, # column
292
+ "pwAtmInboundVpi" : {
293
+ "nodetype" : "column",
294
+ "moduleName" : "PW-ATM-MIB",
295
+ "oid" : "1.3.6.1.2.1.183.1.3.1.2",
296
+ "status" : "current",
297
+ "syntax" : {
298
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVpIdentifier"},
299
+ },
300
+ "access" : "readwrite",
301
+ "description" :
302
+ """VPI value of this ATM PW.
303
+ If the pwType is atmTransparent, then the value will
304
+ be set to zero.""",
305
+ }, # column
306
+ "pwAtmInboundVci" : {
307
+ "nodetype" : "column",
308
+ "moduleName" : "PW-ATM-MIB",
309
+ "oid" : "1.3.6.1.2.1.183.1.3.1.3",
310
+ "status" : "current",
311
+ "syntax" : {
312
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVcIdentifier"},
313
+ },
314
+ "access" : "readwrite",
315
+ "description" :
316
+ """VCI value of this ATM PW.
317
+ If the pwType is atmTransparent, atmCell1to1Vpc, or
318
+ atmCellNto1Vpc, then the value will be set to zero.""",
319
+ }, # column
320
+ "pwAtmInboundTrafficParamDescr" : {
321
+ "nodetype" : "column",
322
+ "moduleName" : "PW-ATM-MIB",
323
+ "oid" : "1.3.6.1.2.1.183.1.3.1.4",
324
+ "status" : "current",
325
+ "syntax" : {
326
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowPointer"},
327
+ },
328
+ "access" : "readwrite",
329
+ "description" :
330
+ """This object represents a pointer to an ATM traffic-parameter-
331
+ specific row in either a private or standard table that will
332
+ be employed while transmitting into the ATM network. This
333
+ table contains a set of self-consistent ATM traffic parameters
334
+ including the ATM traffic service category. A value of 0.0
335
+ indicates Best Effort.""",
336
+ }, # column
337
+ "pwAtmInboundRowStatus" : {
338
+ "nodetype" : "column",
339
+ "moduleName" : "PW-ATM-MIB",
340
+ "oid" : "1.3.6.1.2.1.183.1.3.1.5",
341
+ "status" : "current",
342
+ "syntax" : {
343
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
344
+ },
345
+ "access" : "readwrite",
346
+ "description" :
347
+ """This object is used to create, modify, or delete a row in
348
+ this table. Unless otherwise specified, all writeable
349
+ objects in this table MUST NOT be changed after row
350
+ activation as explained in the pwAtmInboundEntry. """,
351
+ }, # column
352
+ "pwAtmCfgTable" : {
353
+ "nodetype" : "table",
354
+ "moduleName" : "PW-ATM-MIB",
355
+ "oid" : "1.3.6.1.2.1.183.1.5",
356
+ "status" : "current",
357
+ "description" :
358
+ """This table specifies generic information for an ATM PW
359
+ to be carried over PSN in any mode.""",
360
+ }, # table
361
+ "pwAtmCfgEntry" : {
362
+ "nodetype" : "row",
363
+ "moduleName" : "PW-ATM-MIB",
364
+ "oid" : "1.3.6.1.2.1.183.1.5.1",
365
+ "status" : "current",
366
+ "linkage" : [
367
+ "pwIndex",
368
+ ],
369
+ "description" :
370
+ """This table contains a set of parameters for
371
+ the ATM PW that needs to be adapted and carried
372
+ over the PSN. This table is indexed by pwIndex from
373
+ pwTable. An entry is created for every new ATM
374
+ type associated pwIndex in the pwTable. Unless
375
+ otherwise specified, all read-write objects in
376
+
377
+
378
+
379
+ this table MAY be changed when the PW is defined
380
+ as not active, and all RW objects values must
381
+ persist after reboot.""",
382
+ "reference" :
383
+ """See [PWMIB].""",
384
+ }, # row
385
+ "pwAtmCfgMaxCellConcatenation" : {
386
+ "nodetype" : "column",
387
+ "moduleName" : "PW-ATM-MIB",
388
+ "oid" : "1.3.6.1.2.1.183.1.5.1.1",
389
+ "status" : "current",
390
+ "syntax" : {
391
+ "type" : {
392
+ "basetype" : "Unsigned32",
393
+ "ranges" : [
394
+ {
395
+ "min" : "1",
396
+ "max" : "29"
397
+ },
398
+ ],
399
+ "range" : {
400
+ "min" : "1",
401
+ "max" : "29"
402
+ },
403
+ },
404
+ },
405
+ "access" : "readwrite",
406
+ "description" :
407
+ """The maximum number of ATM cells that can be
408
+ concatenated into one PW packet towards the PSN.
409
+ In a non-LDP or other signaling protocol environment,
410
+ this object MAY be changed at anytime, but traffic
411
+ might be interrupted; otherwise, it may be changed
412
+ when PW is not active.""",
413
+ }, # column
414
+ "pwAtmCfgFarEndMaxCellConcatenation" : {
415
+ "nodetype" : "column",
416
+ "moduleName" : "PW-ATM-MIB",
417
+ "oid" : "1.3.6.1.2.1.183.1.5.1.2",
418
+ "status" : "current",
419
+ "syntax" : {
420
+ "type" : {
421
+ "basetype" : "Unsigned32",
422
+ "ranges" : [
423
+ {
424
+ "min" : "1",
425
+ "max" : "29"
426
+ },
427
+ ],
428
+ "range" : {
429
+ "min" : "1",
430
+ "max" : "29"
431
+ },
432
+ },
433
+ },
434
+ "access" : "readwrite",
435
+ "description" :
436
+ """The maximum number of ATM cells that can be
437
+ concatenated into one PW packet towards PSN as reported by
438
+ the far end. If there is no LDP in use, the object will
439
+ either return a value of 0 or allow setting it for calculating
440
+ protocol overhead.""",
441
+ }, # column
442
+ "pwAtmCfgTimeoutMode" : {
443
+ "nodetype" : "column",
444
+ "moduleName" : "PW-ATM-MIB",
445
+ "oid" : "1.3.6.1.2.1.183.1.5.1.3",
446
+ "status" : "current",
447
+ "syntax" : {
448
+ "type" : {
449
+ "basetype" : "Enumeration",
450
+ "notApplicable" : {
451
+ "nodetype" : "namednumber",
452
+ "number" : "1"
453
+ },
454
+ "disabled" : {
455
+ "nodetype" : "namednumber",
456
+ "number" : "2"
457
+ },
458
+ "enabled" : {
459
+ "nodetype" : "namednumber",
460
+ "number" : "3"
461
+ },
462
+ },
463
+ },
464
+ "access" : "readwrite",
465
+ "description" :
466
+ """This object determines whether or not a packet can be
467
+ transmitted to the PSN based on timeout expiration
468
+ for collecting cells. The actual handling of the
469
+ timeout is implementation-specific; as such,
470
+ this object may be changed at any time under proper
471
+ consideration of the traffic interruption effect.""",
472
+ }, # column
473
+ "pwAtmClpQosMapping" : {
474
+ "nodetype" : "column",
475
+ "moduleName" : "PW-ATM-MIB",
476
+ "oid" : "1.3.6.1.2.1.183.1.5.1.4",
477
+ "status" : "current",
478
+ "syntax" : {
479
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
480
+ },
481
+ "access" : "readwrite",
482
+ "description" :
483
+ """This object indicates whether the Cell Loss Priority
484
+ (CLP) bits should be considered when setting the
485
+ value in the Quality-of-Service fields of the
486
+ encapsulating protocol (e.g., EXP fields of the
487
+ MPLS Label Stack). Selecting True allows the drop
488
+ precedence to be preserved across the PSN. In
489
+ transparent cell transport, the value of this object
490
+ MUST be false(2); in other cases, it can be changed
491
+ at any time.""",
492
+ "reference" :
493
+ """See section 12 of [ATMENCAP].""",
494
+ }, # column
495
+ "pwAtmOutboundNto1Table" : {
496
+ "nodetype" : "table",
497
+ "moduleName" : "PW-ATM-MIB",
498
+ "oid" : "1.3.6.1.2.1.183.1.6",
499
+ "status" : "current",
500
+ "description" :
501
+ """This table specifies the information for an ATM PW to
502
+ be carried over the PSN in the outbound direction. Up to
503
+ N entries can be created in this table for every
504
+
505
+
506
+
507
+ entry in the pwTable with a pwType equal to:
508
+ atmCellNto1Vcc(9) or atmCellNto1Vpc(10).
509
+ An entry can be created only when the VP/VC are known.
510
+ A single entry will be created in this table for every
511
+ entry in the pwTable with a pwType equal to
512
+ one of the following: atmCell1to1Vcc(12),
513
+ atmCell1to1Vpc(13), atmAal5PduVcc(14),
514
+ atmAal5SduVcc(2), or atmTransparent(3).""",
515
+ }, # table
516
+ "pwAtmOutboundNto1Entry" : {
517
+ "nodetype" : "row",
518
+ "moduleName" : "PW-ATM-MIB",
519
+ "oid" : "1.3.6.1.2.1.183.1.6.1",
520
+ "create" : "true",
521
+ "status" : "current",
522
+ "linkage" : [
523
+ "pwIndex",
524
+ "pwAtmOutboundNto1AtmIf",
525
+ "pwAtmOutboundNto1Vpi",
526
+ "pwAtmOutboundNto1Vci",
527
+ ],
528
+ "description" :
529
+ """A row in this table represents an ATM PW that needs to be
530
+ adapted and carried over PSN. This table is indexed by
531
+ pwIndex from pwTable and the ATM interface with VPL/VCLs.
532
+ In atmTransparent(3), Vpi and VCi will be 0xFFFF
533
+ during set operation.
534
+ Unless otherwise specified, all read-create objects in this
535
+ table MUST NOT be changed after row activation
536
+ and SHOULD remain unchanged after reboot.""",
537
+ }, # row
538
+ "pwAtmOutboundNto1AtmIf" : {
539
+ "nodetype" : "column",
540
+ "moduleName" : "PW-ATM-MIB",
541
+ "oid" : "1.3.6.1.2.1.183.1.6.1.1",
542
+ "status" : "current",
543
+ "syntax" : {
544
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
545
+ },
546
+ "access" : "noaccess",
547
+ "description" :
548
+ """The ATM Interface that receives cells from the ATM network.""",
549
+ }, # column
550
+ "pwAtmOutboundNto1Vpi" : {
551
+ "nodetype" : "column",
552
+ "moduleName" : "PW-ATM-MIB",
553
+ "oid" : "1.3.6.1.2.1.183.1.6.1.2",
554
+ "status" : "current",
555
+ "syntax" : {
556
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVpIdentifier"},
557
+ },
558
+ "access" : "noaccess",
559
+ "description" :
560
+ """VPI value of this ATM PW. In atmTransparent(3),
561
+ Vpi will be the equivalent of 0xFFFF.""",
562
+ }, # column
563
+ "pwAtmOutboundNto1Vci" : {
564
+ "nodetype" : "column",
565
+ "moduleName" : "PW-ATM-MIB",
566
+ "oid" : "1.3.6.1.2.1.183.1.6.1.3",
567
+ "status" : "current",
568
+ "syntax" : {
569
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVcIdentifier"},
570
+ },
571
+ "access" : "noaccess",
572
+ "description" :
573
+ """VCI value of this ATM PW. In atmTransparent(3), or
574
+ the VP case, the value will be the equivalent of
575
+ 0xFFFF.""",
576
+ }, # column
577
+ "pwAtmOutboundNto1RowStatus" : {
578
+ "nodetype" : "column",
579
+ "moduleName" : "PW-ATM-MIB",
580
+ "oid" : "1.3.6.1.2.1.183.1.6.1.4",
581
+ "status" : "current",
582
+ "syntax" : {
583
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
584
+ },
585
+ "access" : "readwrite",
586
+ "description" :
587
+ """This object is used to create, modify or delete a row in
588
+ this table.""",
589
+ }, # column
590
+ "pwAtmOutboundNto1TrafficParamDescr" : {
591
+ "nodetype" : "column",
592
+ "moduleName" : "PW-ATM-MIB",
593
+ "oid" : "1.3.6.1.2.1.183.1.6.1.5",
594
+ "status" : "current",
595
+ "syntax" : {
596
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowPointer"},
597
+ },
598
+ "access" : "readwrite",
599
+ "description" :
600
+ """This object represents a pointer to an ATM traffic-parameter-
601
+ specific row in either private or standard table that will
602
+ be employed while receiving cells from the ATM network.
603
+ This table should contain a set
604
+ of self-consistent ATM traffic parameters including the ATM
605
+ traffic service category. A value of 0.0 indicates Best
606
+ Effort.""",
607
+ }, # column
608
+ "pwAtmOutboundNto1MappedVpi" : {
609
+ "nodetype" : "column",
610
+ "moduleName" : "PW-ATM-MIB",
611
+ "oid" : "1.3.6.1.2.1.183.1.6.1.6",
612
+ "status" : "current",
613
+ "syntax" : {
614
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVpIdentifier"},
615
+ },
616
+ "access" : "readwrite",
617
+ "description" :
618
+ """The egress-generated VPI value of this ATM PW. The
619
+
620
+
621
+
622
+ entry is valid for PW type of atmCellNto1Vcc(9),
623
+ atmCellNto1Vpc(10), atmCell1to1Vcc(12), or
624
+ atmCell1to1Vpc(13). In other types, the value will be the
625
+ equivalent of 0xFFFF. Value MAY be changed when the
626
+ PW is defined as not active. """,
627
+ }, # column
628
+ "pwAtmOutboundNto1MappedVci" : {
629
+ "nodetype" : "column",
630
+ "moduleName" : "PW-ATM-MIB",
631
+ "oid" : "1.3.6.1.2.1.183.1.6.1.7",
632
+ "status" : "current",
633
+ "syntax" : {
634
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVcIdentifier"},
635
+ },
636
+ "access" : "readwrite",
637
+ "description" :
638
+ """The egress-generated VCI value of this ATM PW. The
639
+ entry is valid for PW type of atmCellNto1Vcc(9),
640
+ atmCellNto1Vpc(10), atmCell1to1Vcc(12), or
641
+ atmCell1to1Vpc(13. In the VP case or other types, the
642
+ value will be the equivalent of 0xFFFF.
643
+ Value MAY be changed when the PW is defined
644
+ as not active.""",
645
+ }, # column
646
+ "pwAtmInboundNto1Table" : {
647
+ "nodetype" : "table",
648
+ "moduleName" : "PW-ATM-MIB",
649
+ "oid" : "1.3.6.1.2.1.183.1.7",
650
+ "status" : "current",
651
+ "description" :
652
+ """This table specifies the information for an ATM PW to
653
+ be carried over PSN in the Inbound direction. Up to
654
+ N entries can be created in this table for every
655
+ entry in the pwTable with a pwType equal to:
656
+ atmCellNto1Vcc(9) or atmCellNto1Vpc(10).
657
+ An entry can be created only when the VP/VC are known.
658
+ A single entry will be created in this table for every
659
+ entry in the pwTable with a pwType equal to
660
+ one of the following: atmCell1to1Vcc(12),
661
+ atmCell1to1Vpc(13), atmAal5PduVcc(14),
662
+ atmAal5SduVcc(2), or atmTransparent(3).""",
663
+ }, # table
664
+ "pwAtmInboundNto1Entry" : {
665
+ "nodetype" : "row",
666
+ "moduleName" : "PW-ATM-MIB",
667
+ "oid" : "1.3.6.1.2.1.183.1.7.1",
668
+ "create" : "true",
669
+ "status" : "current",
670
+ "linkage" : [
671
+ "pwIndex",
672
+ "pwAtmInboundNto1AtmIf",
673
+ "pwAtmInboundNto1Vpi",
674
+ "pwAtmInboundNto1Vci",
675
+ ],
676
+ "description" :
677
+ """A row in this table represents an ATM PW that needs to be
678
+ adapted and carried over PSN. This table is indexed by
679
+
680
+
681
+
682
+ pwIndex from pwTable and the ATM interface with VPL/VCLs.
683
+ In atmTransparent(3), Vpi and VCi will be 0xFFFF
684
+ during set operation.
685
+ Unless otherwise specified, all Read-Create objects in this
686
+ table MUST NOT be changed after row activation
687
+ and SHOULD remain unchanged after reboot.""",
688
+ }, # row
689
+ "pwAtmInboundNto1AtmIf" : {
690
+ "nodetype" : "column",
691
+ "moduleName" : "PW-ATM-MIB",
692
+ "oid" : "1.3.6.1.2.1.183.1.7.1.1",
693
+ "status" : "current",
694
+ "syntax" : {
695
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
696
+ },
697
+ "access" : "noaccess",
698
+ "description" :
699
+ """The ATM Interface that receives cells from the ATM network.""",
700
+ }, # column
701
+ "pwAtmInboundNto1Vpi" : {
702
+ "nodetype" : "column",
703
+ "moduleName" : "PW-ATM-MIB",
704
+ "oid" : "1.3.6.1.2.1.183.1.7.1.2",
705
+ "status" : "current",
706
+ "syntax" : {
707
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVpIdentifier"},
708
+ },
709
+ "access" : "noaccess",
710
+ "description" :
711
+ """VPI value of this ATM PW. In atmTransparent(3),
712
+ Vpi will be the equivalent of 0xFFFF.""",
713
+ }, # column
714
+ "pwAtmInboundNto1Vci" : {
715
+ "nodetype" : "column",
716
+ "moduleName" : "PW-ATM-MIB",
717
+ "oid" : "1.3.6.1.2.1.183.1.7.1.3",
718
+ "status" : "current",
719
+ "syntax" : {
720
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVcIdentifier"},
721
+ },
722
+ "access" : "noaccess",
723
+ "description" :
724
+ """VCI value of this ATM PW. In atmTransparent(3), or
725
+ the VP case, the value will be the equivalent of
726
+ 0xFFFF.""",
727
+ }, # column
728
+ "pwAtmInboundNto1RowStatus" : {
729
+ "nodetype" : "column",
730
+ "moduleName" : "PW-ATM-MIB",
731
+ "oid" : "1.3.6.1.2.1.183.1.7.1.4",
732
+ "status" : "current",
733
+ "syntax" : {
734
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
735
+ },
736
+ "access" : "readwrite",
737
+ "description" :
738
+ """This object is used to create, modify, or delete a row in
739
+ this table.""",
740
+ }, # column
741
+ "pwAtmInboundNto1TrafficParamDescr" : {
742
+ "nodetype" : "column",
743
+ "moduleName" : "PW-ATM-MIB",
744
+ "oid" : "1.3.6.1.2.1.183.1.7.1.5",
745
+ "status" : "current",
746
+ "syntax" : {
747
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowPointer"},
748
+ },
749
+ "access" : "readwrite",
750
+ "description" :
751
+ """This object represents a pointer to an ATM traffic-parameter-
752
+ specific row in either a private or standard table that will
753
+ be employed while receiving cells from the ATM network.
754
+ This table should contain a set
755
+ of self-consistent ATM traffic parameters including the ATM
756
+ traffic service category. A value of 0.0 indicates Best
757
+ Effort.""",
758
+ }, # column
759
+ "pwAtmInboundNto1MappedVpi" : {
760
+ "nodetype" : "column",
761
+ "moduleName" : "PW-ATM-MIB",
762
+ "oid" : "1.3.6.1.2.1.183.1.7.1.6",
763
+ "status" : "current",
764
+ "syntax" : {
765
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVpIdentifier"},
766
+ },
767
+ "access" : "readwrite",
768
+ "description" :
769
+ """The generated VPI value of this ATM PW. The
770
+ entry is valid for PW type of atmCellNto1Vcc(9),
771
+ atmCellNto1Vpc(10), atmCell1to1Vcc(12), or
772
+ atmCell1to1Vpc(13). In other types, the value will be the
773
+ equivalent of 0xFFFF. Value MAY be changed when the
774
+ PW is defined as not active.""",
775
+ }, # column
776
+ "pwAtmInboundNto1MappedVci" : {
777
+ "nodetype" : "column",
778
+ "moduleName" : "PW-ATM-MIB",
779
+ "oid" : "1.3.6.1.2.1.183.1.7.1.7",
780
+ "status" : "current",
781
+ "syntax" : {
782
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVcIdentifier"},
783
+ },
784
+ "access" : "readwrite",
785
+ "description" :
786
+ """The generated VCI value of this ATM PW. The
787
+ entry is valid for PW type of atmCellNto1Vcc(9),
788
+ atmCellNto1Vpc(10), atmCell1to1Vcc(12), or
789
+ atmCell1to1Vpc(13. In the VP case or other types, the
790
+ value will be the equivalent of 0xFFFF.
791
+ Value MAY be changed when the
792
+
793
+
794
+
795
+ PW is defined as not active.""",
796
+ }, # column
797
+ "pwAtmPerfCurrentTable" : {
798
+ "nodetype" : "table",
799
+ "moduleName" : "PW-ATM-MIB",
800
+ "oid" : "1.3.6.1.2.1.183.1.8",
801
+ "status" : "current",
802
+ "description" :
803
+ """The current 15-minute interval counts are in
804
+ this table.
805
+ This table provides performance information per ATM PW.""",
806
+ }, # table
807
+ "pwAtmPerfCurrentEntry" : {
808
+ "nodetype" : "row",
809
+ "moduleName" : "PW-ATM-MIB",
810
+ "oid" : "1.3.6.1.2.1.183.1.8.1",
811
+ "status" : "current",
812
+ "linkage" : [
813
+ "pwIndex",
814
+ ],
815
+ "description" :
816
+ """An entry in this table is created by the agent for every
817
+ pwAtmCfgTable entry. After 15 minutes, the contents of this
818
+ table entry are copied to a new entry in the
819
+ pwAtmPerfInterval table and the counts in this entry
820
+ are reset to zero.""",
821
+ }, # row
822
+ "pwAtmPerfCurrentMissingPkts" : {
823
+ "nodetype" : "column",
824
+ "moduleName" : "PW-ATM-MIB",
825
+ "oid" : "1.3.6.1.2.1.183.1.8.1.1",
826
+ "status" : "current",
827
+ "syntax" : {
828
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
829
+ },
830
+ "access" : "readonly",
831
+ "description" :
832
+ """Number of missing packets (as detected via control word
833
+ sequence number gaps).""",
834
+ }, # column
835
+ "pwAtmPerfCurrentPktsReOrder" : {
836
+ "nodetype" : "column",
837
+ "moduleName" : "PW-ATM-MIB",
838
+ "oid" : "1.3.6.1.2.1.183.1.8.1.2",
839
+ "status" : "current",
840
+ "syntax" : {
841
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
842
+ },
843
+ "access" : "readonly",
844
+ "description" :
845
+ """Number of packets detected out of sequence (via control
846
+ word sequence number), but successfully re-ordered.
847
+ Note: some implementations may not support this feature.""",
848
+ }, # column
849
+ "pwAtmPerfCurrentPktsMisOrder" : {
850
+ "nodetype" : "column",
851
+ "moduleName" : "PW-ATM-MIB",
852
+ "oid" : "1.3.6.1.2.1.183.1.8.1.3",
853
+ "status" : "current",
854
+ "syntax" : {
855
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
856
+ },
857
+ "access" : "readonly",
858
+ "description" :
859
+ """Number of packets detected out of order (via control word
860
+ sequence numbers).""",
861
+ }, # column
862
+ "pwAtmPerfCurrentPktsTimeout" : {
863
+ "nodetype" : "column",
864
+ "moduleName" : "PW-ATM-MIB",
865
+ "oid" : "1.3.6.1.2.1.183.1.8.1.4",
866
+ "status" : "current",
867
+ "syntax" : {
868
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
869
+ },
870
+ "access" : "readonly",
871
+ "description" :
872
+ """Number of packets transmitted due to timeout expiration
873
+ while attempting to collect cells.""",
874
+ }, # column
875
+ "pwAtmPerfCurrentCellsXmit" : {
876
+ "nodetype" : "column",
877
+ "moduleName" : "PW-ATM-MIB",
878
+ "oid" : "1.3.6.1.2.1.183.1.8.1.5",
879
+ "status" : "current",
880
+ "syntax" : {
881
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
882
+ },
883
+ "access" : "readonly",
884
+ "description" :
885
+ """Number of transmitted cells.""",
886
+ }, # column
887
+ "pwAtmPerfCurrentCellsDropped" : {
888
+ "nodetype" : "column",
889
+ "moduleName" : "PW-ATM-MIB",
890
+ "oid" : "1.3.6.1.2.1.183.1.8.1.6",
891
+ "status" : "current",
892
+ "syntax" : {
893
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
894
+ },
895
+ "access" : "readonly",
896
+ "description" :
897
+ """Number of dropped cells.""",
898
+ }, # column
899
+ "pwAtmPerfCurrentCellsReceived" : {
900
+ "nodetype" : "column",
901
+ "moduleName" : "PW-ATM-MIB",
902
+ "oid" : "1.3.6.1.2.1.183.1.8.1.7",
903
+ "status" : "current",
904
+ "syntax" : {
905
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
906
+ },
907
+ "access" : "readonly",
908
+ "description" :
909
+ """Number of received cells.""",
910
+ }, # column
911
+ "pwAtmPerfCurrentUnknownCells" : {
912
+ "nodetype" : "column",
913
+ "moduleName" : "PW-ATM-MIB",
914
+ "oid" : "1.3.6.1.2.1.183.1.8.1.8",
915
+ "status" : "current",
916
+ "syntax" : {
917
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
918
+ },
919
+ "access" : "readonly",
920
+ "description" :
921
+ """Number of cells received from the PSN with unknown VPI or
922
+ VCI values. This object is relevant only in N:1 mode.""",
923
+ }, # column
924
+ "pwAtmPerfIntervalTable" : {
925
+ "nodetype" : "table",
926
+ "moduleName" : "PW-ATM-MIB",
927
+ "oid" : "1.3.6.1.2.1.183.1.9",
928
+ "status" : "current",
929
+ "description" :
930
+ """This table provides performance information per ATM PW
931
+ similar to the pwAtmPerfCurrentTable above. However,
932
+ these counts represent historical 15 minute intervals.
933
+ Typically, this table will have a maximum of 96 entries
934
+ for a 24 hour period. """,
935
+ }, # table
936
+ "pwAtmPerfIntervalEntry" : {
937
+ "nodetype" : "row",
938
+ "moduleName" : "PW-ATM-MIB",
939
+ "oid" : "1.3.6.1.2.1.183.1.9.1",
940
+ "status" : "current",
941
+ "linkage" : [
942
+ "pwIndex",
943
+ "pwAtmPerfIntervalNumber",
944
+ ],
945
+ "description" :
946
+ """An entry in this table is created by the agent for
947
+ every pwAtmPerfCurrentEntry that is 15 minutes old.
948
+ The contents of the Current entry are copied to the new
949
+ entry here. The Current entry then resets its counts
950
+ to zero for the next current 15 minute interval. """,
951
+ }, # row
952
+ "pwAtmPerfIntervalNumber" : {
953
+ "nodetype" : "column",
954
+ "moduleName" : "PW-ATM-MIB",
955
+ "oid" : "1.3.6.1.2.1.183.1.9.1.1",
956
+ "status" : "current",
957
+ "syntax" : {
958
+ "type" : {
959
+ "basetype" : "Unsigned32",
960
+ "ranges" : [
961
+ {
962
+ "min" : "1",
963
+ "max" : "96"
964
+ },
965
+ ],
966
+ "range" : {
967
+ "min" : "1",
968
+ "max" : "96"
969
+ },
970
+ },
971
+ },
972
+ "access" : "noaccess",
973
+ "description" :
974
+ """A number (normally between 1 and 96 to cover a 24 hour
975
+ period) that identifies the interval for which the set
976
+ of statistics is available. The interval identified by 1
977
+ is the most recently completed 15 minute interval, and
978
+ the interval identified by N is the interval immediately
979
+ preceding the one identified by N-1. The minimum range of
980
+ N is 1 through 4. The default range is 1 through 32. The
981
+ maximum value of N is 96.""",
982
+ }, # column
983
+ "pwAtmPerfIntervalValidData" : {
984
+ "nodetype" : "column",
985
+ "moduleName" : "PW-ATM-MIB",
986
+ "oid" : "1.3.6.1.2.1.183.1.9.1.2",
987
+ "status" : "current",
988
+ "syntax" : {
989
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
990
+ },
991
+ "access" : "readonly",
992
+ "description" :
993
+ """This variable indicates if the data for this interval
994
+ is valid.""",
995
+ }, # column
996
+ "pwAtmPerfIntervalDuration" : {
997
+ "nodetype" : "column",
998
+ "moduleName" : "PW-ATM-MIB",
999
+ "oid" : "1.3.6.1.2.1.183.1.9.1.3",
1000
+ "status" : "current",
1001
+ "syntax" : {
1002
+ "type" : { "module" :"", "name" : "Unsigned32"},
1003
+ },
1004
+ "access" : "readonly",
1005
+ "description" :
1006
+ """The duration of a particular interval in seconds.
1007
+ Adjustments in the system's time-of-day clock, may
1008
+ cause the interval to be greater or less than the
1009
+ normal value. Therefore, this actual interval value
1010
+ is provided.""",
1011
+ }, # column
1012
+ "pwAtmPerfIntervalMissingPkts" : {
1013
+ "nodetype" : "column",
1014
+ "moduleName" : "PW-ATM-MIB",
1015
+ "oid" : "1.3.6.1.2.1.183.1.9.1.4",
1016
+ "status" : "current",
1017
+ "syntax" : {
1018
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1019
+ },
1020
+ "access" : "readonly",
1021
+ "description" :
1022
+ """Number of missing packets (as detected via control
1023
+ word sequence number gaps).""",
1024
+ }, # column
1025
+ "pwAtmPerfIntervalPktsReOrder" : {
1026
+ "nodetype" : "column",
1027
+ "moduleName" : "PW-ATM-MIB",
1028
+ "oid" : "1.3.6.1.2.1.183.1.9.1.5",
1029
+ "status" : "current",
1030
+ "syntax" : {
1031
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1032
+ },
1033
+ "access" : "readonly",
1034
+ "description" :
1035
+ """Number of packets detected out of sequence (via control
1036
+ word sequence number), but successfully re-ordered.
1037
+ Note: some implementations may not support this
1038
+ feature.""",
1039
+ }, # column
1040
+ "pwAtmPerfIntervalPktsMisOrder" : {
1041
+ "nodetype" : "column",
1042
+ "moduleName" : "PW-ATM-MIB",
1043
+ "oid" : "1.3.6.1.2.1.183.1.9.1.6",
1044
+ "status" : "current",
1045
+ "syntax" : {
1046
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1047
+ },
1048
+ "access" : "readonly",
1049
+ "description" :
1050
+ """Number of packets detected out of order (via control word
1051
+ sequence numbers).""",
1052
+ }, # column
1053
+ "pwAtmPerfIntervalPktsTimeout" : {
1054
+ "nodetype" : "column",
1055
+ "moduleName" : "PW-ATM-MIB",
1056
+ "oid" : "1.3.6.1.2.1.183.1.9.1.7",
1057
+ "status" : "current",
1058
+ "syntax" : {
1059
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1060
+ },
1061
+ "access" : "readonly",
1062
+ "description" :
1063
+ """Number of packets transmitted due to timeout expiration.""",
1064
+ }, # column
1065
+ "pwAtmPerfIntervalCellsXmit" : {
1066
+ "nodetype" : "column",
1067
+ "moduleName" : "PW-ATM-MIB",
1068
+ "oid" : "1.3.6.1.2.1.183.1.9.1.8",
1069
+ "status" : "current",
1070
+ "syntax" : {
1071
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1072
+ },
1073
+ "access" : "readonly",
1074
+ "description" :
1075
+ """Number of transmitted cells.""",
1076
+ }, # column
1077
+ "pwAtmPerfIntervalCellsDropped" : {
1078
+ "nodetype" : "column",
1079
+ "moduleName" : "PW-ATM-MIB",
1080
+ "oid" : "1.3.6.1.2.1.183.1.9.1.9",
1081
+ "status" : "current",
1082
+ "syntax" : {
1083
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1084
+ },
1085
+ "access" : "readonly",
1086
+ "description" :
1087
+ """Number of dropped cells.""",
1088
+ }, # column
1089
+ "pwAtmPerfIntervalCellsReceived" : {
1090
+ "nodetype" : "column",
1091
+ "moduleName" : "PW-ATM-MIB",
1092
+ "oid" : "1.3.6.1.2.1.183.1.9.1.10",
1093
+ "status" : "current",
1094
+ "syntax" : {
1095
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1096
+ },
1097
+ "access" : "readonly",
1098
+ "description" :
1099
+ """Number of received cells.""",
1100
+ }, # column
1101
+ "pwAtmPerfIntervalUnknownCells" : {
1102
+ "nodetype" : "column",
1103
+ "moduleName" : "PW-ATM-MIB",
1104
+ "oid" : "1.3.6.1.2.1.183.1.9.1.11",
1105
+ "status" : "current",
1106
+ "syntax" : {
1107
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1108
+ },
1109
+ "access" : "readonly",
1110
+ "description" :
1111
+ """Number of cells received from the PSN with unknown VPI or
1112
+ VCI values. This object is relevant only in N:1 mode.""",
1113
+ }, # column
1114
+ "pwAtmPerf1DayIntervalTable" : {
1115
+ "nodetype" : "table",
1116
+ "moduleName" : "PW-ATM-MIB",
1117
+ "oid" : "1.3.6.1.2.1.183.1.10",
1118
+ "status" : "current",
1119
+ "description" :
1120
+ """This table provides performance information per ATM PW
1121
+ similar to the pwAtmPerfIntervalTable above. However,
1122
+ these counters represent historical one-day intervals up to
1123
+ one full month.""",
1124
+ }, # table
1125
+ "pwAtmPerf1DayIntervalEntry" : {
1126
+ "nodetype" : "row",
1127
+ "moduleName" : "PW-ATM-MIB",
1128
+ "oid" : "1.3.6.1.2.1.183.1.10.1",
1129
+ "status" : "current",
1130
+ "linkage" : [
1131
+ "pwIndex",
1132
+ "pwAtmPerf1DayIntervalNumber",
1133
+ ],
1134
+ "description" :
1135
+ """An entry is created in this table by the agent
1136
+ for every entry in the pwAtmCfgTable table.""",
1137
+ }, # row
1138
+ "pwAtmPerf1DayIntervalNumber" : {
1139
+ "nodetype" : "column",
1140
+ "moduleName" : "PW-ATM-MIB",
1141
+ "oid" : "1.3.6.1.2.1.183.1.10.1.1",
1142
+ "status" : "current",
1143
+ "syntax" : {
1144
+ "type" : {
1145
+ "basetype" : "Unsigned32",
1146
+ "ranges" : [
1147
+ {
1148
+ "min" : "1",
1149
+ "max" : "365"
1150
+ },
1151
+ ],
1152
+ "range" : {
1153
+ "min" : "1",
1154
+ "max" : "365"
1155
+ },
1156
+ },
1157
+ },
1158
+ "access" : "noaccess",
1159
+ "description" :
1160
+ """The number of intervals, where 1 indicates current day
1161
+ measured period and 2 and above indicate previous days,
1162
+ respectively.""",
1163
+ }, # column
1164
+ "pwAtmPerf1DayIntervalValidData" : {
1165
+ "nodetype" : "column",
1166
+ "moduleName" : "PW-ATM-MIB",
1167
+ "oid" : "1.3.6.1.2.1.183.1.10.1.2",
1168
+ "status" : "current",
1169
+ "syntax" : {
1170
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1171
+ },
1172
+ "access" : "readonly",
1173
+ "description" :
1174
+ """This object indicates if the data for this interval
1175
+ is valid.""",
1176
+ }, # column
1177
+ "pwAtmPerf1DayIntervalDuration" : {
1178
+ "nodetype" : "column",
1179
+ "moduleName" : "PW-ATM-MIB",
1180
+ "oid" : "1.3.6.1.2.1.183.1.10.1.3",
1181
+ "status" : "current",
1182
+ "syntax" : {
1183
+ "type" : { "module" :"", "name" : "Unsigned32"},
1184
+ },
1185
+ "access" : "readonly",
1186
+ "description" :
1187
+ """The duration of a particular interval in seconds.
1188
+ Adjustments in the system's time-of-day clock may
1189
+ cause the interval to be greater or less than the
1190
+ normal value. Therefore, this actual interval value
1191
+ is provided.""",
1192
+ }, # column
1193
+ "pwAtmPerf1DayIntervalMissingPkts" : {
1194
+ "nodetype" : "column",
1195
+ "moduleName" : "PW-ATM-MIB",
1196
+ "oid" : "1.3.6.1.2.1.183.1.10.1.4",
1197
+ "status" : "current",
1198
+ "syntax" : {
1199
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1200
+ },
1201
+ "access" : "readonly",
1202
+ "description" :
1203
+ """Number of missing packets (as detected via control word
1204
+ sequence number gaps).""",
1205
+ }, # column
1206
+ "pwAtmPerf1DayIntervalPktsReOrder" : {
1207
+ "nodetype" : "column",
1208
+ "moduleName" : "PW-ATM-MIB",
1209
+ "oid" : "1.3.6.1.2.1.183.1.10.1.5",
1210
+ "status" : "current",
1211
+ "syntax" : {
1212
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1213
+ },
1214
+ "access" : "readonly",
1215
+ "description" :
1216
+ """Number of packets detected out of sequence (via control
1217
+ word sequence number), but successfully re-ordered.
1218
+ Note: some implementations may not support this
1219
+ feature.""",
1220
+ }, # column
1221
+ "pwAtmPerf1DayIntervalPktsMisOrder" : {
1222
+ "nodetype" : "column",
1223
+ "moduleName" : "PW-ATM-MIB",
1224
+ "oid" : "1.3.6.1.2.1.183.1.10.1.6",
1225
+ "status" : "current",
1226
+ "syntax" : {
1227
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1228
+ },
1229
+ "access" : "readonly",
1230
+ "description" :
1231
+ """Number of packets detected out of order (via control word
1232
+ sequence numbers) and that could not be re-ordered.""",
1233
+ }, # column
1234
+ "pwAtmPerf1DayIntervalPktsTimeout" : {
1235
+ "nodetype" : "column",
1236
+ "moduleName" : "PW-ATM-MIB",
1237
+ "oid" : "1.3.6.1.2.1.183.1.10.1.7",
1238
+ "status" : "current",
1239
+ "syntax" : {
1240
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1241
+ },
1242
+ "access" : "readonly",
1243
+ "description" :
1244
+ """Number of packets transmitted due to timeout expiration.""",
1245
+ }, # column
1246
+ "pwAtmPerf1DayIntervalCellsXmit" : {
1247
+ "nodetype" : "column",
1248
+ "moduleName" : "PW-ATM-MIB",
1249
+ "oid" : "1.3.6.1.2.1.183.1.10.1.8",
1250
+ "status" : "current",
1251
+ "syntax" : {
1252
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1253
+ },
1254
+ "access" : "readonly",
1255
+ "description" :
1256
+ """Number of transmitted cells.""",
1257
+ }, # column
1258
+ "pwAtmPerf1DayIntervalCellsDropped" : {
1259
+ "nodetype" : "column",
1260
+ "moduleName" : "PW-ATM-MIB",
1261
+ "oid" : "1.3.6.1.2.1.183.1.10.1.9",
1262
+ "status" : "current",
1263
+ "syntax" : {
1264
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1265
+ },
1266
+ "access" : "readonly",
1267
+ "description" :
1268
+ """Number of dropped cells.""",
1269
+ }, # column
1270
+ "pwAtmPerf1DayIntervalCellsReceived" : {
1271
+ "nodetype" : "column",
1272
+ "moduleName" : "PW-ATM-MIB",
1273
+ "oid" : "1.3.6.1.2.1.183.1.10.1.10",
1274
+ "status" : "current",
1275
+ "syntax" : {
1276
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1277
+ },
1278
+ "access" : "readonly",
1279
+ "description" :
1280
+ """Number of received cells.""",
1281
+ }, # column
1282
+ "pwAtmPerf1DayIntervalUnknownCells" : {
1283
+ "nodetype" : "column",
1284
+ "moduleName" : "PW-ATM-MIB",
1285
+ "oid" : "1.3.6.1.2.1.183.1.10.1.11",
1286
+ "status" : "current",
1287
+ "syntax" : {
1288
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1289
+ },
1290
+ "access" : "readonly",
1291
+ "description" :
1292
+ """Number of cells received from the PSN with unknown VPI
1293
+ or VCI values. This object is relevant only in N:1 mode.""",
1294
+ }, # column
1295
+ "pwAtmConformance" : {
1296
+ "nodetype" : "node",
1297
+ "moduleName" : "PW-ATM-MIB",
1298
+ "oid" : "1.3.6.1.2.1.183.2",
1299
+ }, # node
1300
+ "pwAtmCompliances" : {
1301
+ "nodetype" : "node",
1302
+ "moduleName" : "PW-ATM-MIB",
1303
+ "oid" : "1.3.6.1.2.1.183.2.1",
1304
+ }, # node
1305
+ "pwAtmGroups" : {
1306
+ "nodetype" : "node",
1307
+ "moduleName" : "PW-ATM-MIB",
1308
+ "oid" : "1.3.6.1.2.1.183.2.2",
1309
+ }, # node
1310
+ }, # nodes
1311
+
1312
+ "groups" : {
1313
+ "pwAtmCfgGroup" : {
1314
+ "nodetype" : "group",
1315
+ "moduleName" : "PW-ATM-MIB",
1316
+ "oid" : "1.3.6.1.2.1.183.2.2.5",
1317
+ "status" : "current",
1318
+ "members" : {
1319
+ "pwAtmCfgMaxCellConcatenation" : {
1320
+ "nodetype" : "member",
1321
+ "module" : "PW-ATM-MIB"
1322
+ },
1323
+ "pwAtmCfgFarEndMaxCellConcatenation" : {
1324
+ "nodetype" : "member",
1325
+ "module" : "PW-ATM-MIB"
1326
+ },
1327
+ "pwAtmCfgTimeoutMode" : {
1328
+ "nodetype" : "member",
1329
+ "module" : "PW-ATM-MIB"
1330
+ },
1331
+ "pwAtmClpQosMapping" : {
1332
+ "nodetype" : "member",
1333
+ "module" : "PW-ATM-MIB"
1334
+ },
1335
+ }, # members
1336
+ "description" :
1337
+ """Collection of objects for basic ATM PW
1338
+ configuration.""",
1339
+ }, # group
1340
+ "pwAtmPerfGroup" : {
1341
+ "nodetype" : "group",
1342
+ "moduleName" : "PW-ATM-MIB",
1343
+ "oid" : "1.3.6.1.2.1.183.2.2.6",
1344
+ "status" : "current",
1345
+ "members" : {
1346
+ "pwAtmPerfCurrentMissingPkts" : {
1347
+ "nodetype" : "member",
1348
+ "module" : "PW-ATM-MIB"
1349
+ },
1350
+ "pwAtmPerfCurrentPktsReOrder" : {
1351
+ "nodetype" : "member",
1352
+ "module" : "PW-ATM-MIB"
1353
+ },
1354
+ "pwAtmPerfCurrentPktsMisOrder" : {
1355
+ "nodetype" : "member",
1356
+ "module" : "PW-ATM-MIB"
1357
+ },
1358
+ "pwAtmPerfCurrentPktsTimeout" : {
1359
+ "nodetype" : "member",
1360
+ "module" : "PW-ATM-MIB"
1361
+ },
1362
+ "pwAtmPerfCurrentCellsXmit" : {
1363
+ "nodetype" : "member",
1364
+ "module" : "PW-ATM-MIB"
1365
+ },
1366
+ "pwAtmPerfCurrentCellsDropped" : {
1367
+ "nodetype" : "member",
1368
+ "module" : "PW-ATM-MIB"
1369
+ },
1370
+ "pwAtmPerfCurrentCellsReceived" : {
1371
+ "nodetype" : "member",
1372
+ "module" : "PW-ATM-MIB"
1373
+ },
1374
+ "pwAtmPerfCurrentUnknownCells" : {
1375
+ "nodetype" : "member",
1376
+ "module" : "PW-ATM-MIB"
1377
+ },
1378
+ "pwAtmPerfIntervalValidData" : {
1379
+ "nodetype" : "member",
1380
+ "module" : "PW-ATM-MIB"
1381
+ },
1382
+ "pwAtmPerfIntervalDuration" : {
1383
+ "nodetype" : "member",
1384
+ "module" : "PW-ATM-MIB"
1385
+ },
1386
+ "pwAtmPerfIntervalMissingPkts" : {
1387
+ "nodetype" : "member",
1388
+ "module" : "PW-ATM-MIB"
1389
+ },
1390
+ "pwAtmPerfIntervalPktsReOrder" : {
1391
+ "nodetype" : "member",
1392
+ "module" : "PW-ATM-MIB"
1393
+ },
1394
+ "pwAtmPerfIntervalPktsMisOrder" : {
1395
+ "nodetype" : "member",
1396
+ "module" : "PW-ATM-MIB"
1397
+ },
1398
+ "pwAtmPerfIntervalPktsTimeout" : {
1399
+ "nodetype" : "member",
1400
+ "module" : "PW-ATM-MIB"
1401
+ },
1402
+ "pwAtmPerfIntervalCellsXmit" : {
1403
+ "nodetype" : "member",
1404
+ "module" : "PW-ATM-MIB"
1405
+ },
1406
+ "pwAtmPerfIntervalCellsDropped" : {
1407
+ "nodetype" : "member",
1408
+ "module" : "PW-ATM-MIB"
1409
+ },
1410
+ "pwAtmPerfIntervalCellsReceived" : {
1411
+ "nodetype" : "member",
1412
+ "module" : "PW-ATM-MIB"
1413
+ },
1414
+ "pwAtmPerfIntervalUnknownCells" : {
1415
+ "nodetype" : "member",
1416
+ "module" : "PW-ATM-MIB"
1417
+ },
1418
+ "pwAtmPerf1DayIntervalValidData" : {
1419
+ "nodetype" : "member",
1420
+ "module" : "PW-ATM-MIB"
1421
+ },
1422
+ "pwAtmPerf1DayIntervalDuration" : {
1423
+ "nodetype" : "member",
1424
+ "module" : "PW-ATM-MIB"
1425
+ },
1426
+ "pwAtmPerf1DayIntervalMissingPkts" : {
1427
+ "nodetype" : "member",
1428
+ "module" : "PW-ATM-MIB"
1429
+ },
1430
+ "pwAtmPerf1DayIntervalPktsReOrder" : {
1431
+ "nodetype" : "member",
1432
+ "module" : "PW-ATM-MIB"
1433
+ },
1434
+ "pwAtmPerf1DayIntervalPktsMisOrder" : {
1435
+ "nodetype" : "member",
1436
+ "module" : "PW-ATM-MIB"
1437
+ },
1438
+ "pwAtmPerf1DayIntervalPktsTimeout" : {
1439
+ "nodetype" : "member",
1440
+ "module" : "PW-ATM-MIB"
1441
+ },
1442
+ "pwAtmPerf1DayIntervalCellsXmit" : {
1443
+ "nodetype" : "member",
1444
+ "module" : "PW-ATM-MIB"
1445
+ },
1446
+ "pwAtmPerf1DayIntervalCellsDropped" : {
1447
+ "nodetype" : "member",
1448
+ "module" : "PW-ATM-MIB"
1449
+ },
1450
+ "pwAtmPerf1DayIntervalCellsReceived" : {
1451
+ "nodetype" : "member",
1452
+ "module" : "PW-ATM-MIB"
1453
+ },
1454
+ "pwAtmPerf1DayIntervalUnknownCells" : {
1455
+ "nodetype" : "member",
1456
+ "module" : "PW-ATM-MIB"
1457
+ },
1458
+ }, # members
1459
+ "description" :
1460
+ """Collection of objects for basic ATM PW Performance.""",
1461
+ }, # group
1462
+ "pwAtmOutbound1to1Group" : {
1463
+ "nodetype" : "group",
1464
+ "moduleName" : "PW-ATM-MIB",
1465
+ "oid" : "1.3.6.1.2.1.183.2.2.7",
1466
+ "status" : "current",
1467
+ "members" : {
1468
+ "pwAtmOutboundAtmIf" : {
1469
+ "nodetype" : "member",
1470
+ "module" : "PW-ATM-MIB"
1471
+ },
1472
+ "pwAtmOutboundVpi" : {
1473
+ "nodetype" : "member",
1474
+ "module" : "PW-ATM-MIB"
1475
+ },
1476
+ "pwAtmOutboundVci" : {
1477
+ "nodetype" : "member",
1478
+ "module" : "PW-ATM-MIB"
1479
+ },
1480
+ "pwAtmOutboundTrafficParamDescr" : {
1481
+ "nodetype" : "member",
1482
+ "module" : "PW-ATM-MIB"
1483
+ },
1484
+ "pwAtmOutboundRowStatus" : {
1485
+ "nodetype" : "member",
1486
+ "module" : "PW-ATM-MIB"
1487
+ },
1488
+ }, # members
1489
+ "description" :
1490
+ """Collection of objects for basic 1:1 ATM PW outbound
1491
+ configuration.""",
1492
+ }, # group
1493
+ "pwAtmInbound1to1Group" : {
1494
+ "nodetype" : "group",
1495
+ "moduleName" : "PW-ATM-MIB",
1496
+ "oid" : "1.3.6.1.2.1.183.2.2.8",
1497
+ "status" : "current",
1498
+ "members" : {
1499
+ "pwAtmInboundAtmIf" : {
1500
+ "nodetype" : "member",
1501
+ "module" : "PW-ATM-MIB"
1502
+ },
1503
+ "pwAtmInboundVpi" : {
1504
+ "nodetype" : "member",
1505
+ "module" : "PW-ATM-MIB"
1506
+ },
1507
+ "pwAtmInboundVci" : {
1508
+ "nodetype" : "member",
1509
+ "module" : "PW-ATM-MIB"
1510
+ },
1511
+ "pwAtmInboundTrafficParamDescr" : {
1512
+ "nodetype" : "member",
1513
+ "module" : "PW-ATM-MIB"
1514
+ },
1515
+ "pwAtmInboundRowStatus" : {
1516
+ "nodetype" : "member",
1517
+ "module" : "PW-ATM-MIB"
1518
+ },
1519
+ }, # members
1520
+ "description" :
1521
+ """Collection of objects for basic 1:1 ATM PW inbound
1522
+ configuration.""",
1523
+ }, # group
1524
+ "pwAtmOutboundNto1Group" : {
1525
+ "nodetype" : "group",
1526
+ "moduleName" : "PW-ATM-MIB",
1527
+ "oid" : "1.3.6.1.2.1.183.2.2.9",
1528
+ "status" : "current",
1529
+ "members" : {
1530
+ "pwAtmOutboundNto1RowStatus" : {
1531
+ "nodetype" : "member",
1532
+ "module" : "PW-ATM-MIB"
1533
+ },
1534
+ "pwAtmOutboundNto1TrafficParamDescr" : {
1535
+ "nodetype" : "member",
1536
+ "module" : "PW-ATM-MIB"
1537
+ },
1538
+ "pwAtmOutboundNto1MappedVpi" : {
1539
+ "nodetype" : "member",
1540
+ "module" : "PW-ATM-MIB"
1541
+ },
1542
+ "pwAtmOutboundNto1MappedVci" : {
1543
+ "nodetype" : "member",
1544
+ "module" : "PW-ATM-MIB"
1545
+ },
1546
+ }, # members
1547
+ "description" :
1548
+ """Collection of objects for N:1, 1:1, or transparent
1549
+ ATM PW outbound configuration.""",
1550
+ }, # group
1551
+ "pwAtmInboundNto1Group" : {
1552
+ "nodetype" : "group",
1553
+ "moduleName" : "PW-ATM-MIB",
1554
+ "oid" : "1.3.6.1.2.1.183.2.2.10",
1555
+ "status" : "current",
1556
+ "members" : {
1557
+ "pwAtmInboundNto1RowStatus" : {
1558
+ "nodetype" : "member",
1559
+ "module" : "PW-ATM-MIB"
1560
+ },
1561
+ "pwAtmInboundNto1TrafficParamDescr" : {
1562
+ "nodetype" : "member",
1563
+ "module" : "PW-ATM-MIB"
1564
+ },
1565
+ "pwAtmInboundNto1MappedVpi" : {
1566
+ "nodetype" : "member",
1567
+ "module" : "PW-ATM-MIB"
1568
+ },
1569
+ "pwAtmInboundNto1MappedVci" : {
1570
+ "nodetype" : "member",
1571
+ "module" : "PW-ATM-MIB"
1572
+ },
1573
+ }, # members
1574
+ "description" :
1575
+ """Collection of objects for N:1, 1:1, or transparent
1576
+ ATM PW inbound configuration.""",
1577
+ }, # group
1578
+ }, # groups
1579
+
1580
+ "compliances" : {
1581
+ "pwAtmCompliance" : {
1582
+ "nodetype" : "compliance",
1583
+ "moduleName" : "PW-ATM-MIB",
1584
+ "oid" : "1.3.6.1.2.1.183.2.1.2",
1585
+ "status" : "current",
1586
+ "description" :
1587
+ """The compliance statement for agents that support
1588
+ ATM PW.""",
1589
+ "requires" : {
1590
+ "pwAtmCfgGroup" : {
1591
+ "nodetype" : "mandatory",
1592
+ "module" : "PW-ATM-MIB"
1593
+ },
1594
+ "pwAtmPerfGroup" : {
1595
+ "nodetype" : "mandatory",
1596
+ "module" : "PW-ATM-MIB"
1597
+ },
1598
+ "pwAtmOutbound1to1Group" : {
1599
+ "nodetype" : "optional",
1600
+ "module" : "PW-ATM-MIB",
1601
+ "description" :
1602
+ """This group is mandatory only for implementations
1603
+ that support the ATM PW 1:1 mode and not using
1604
+ the Nto1 table.""",
1605
+ },
1606
+ "pwAtmInbound1to1Group" : {
1607
+ "nodetype" : "optional",
1608
+ "module" : "PW-ATM-MIB",
1609
+ "description" :
1610
+ """This group is mandatory only for implementations
1611
+ that support the ATM PW 1:1 mode and not using
1612
+ the Nto1 table.""",
1613
+ },
1614
+ "pwAtmOutboundNto1Group" : {
1615
+ "nodetype" : "optional",
1616
+ "module" : "PW-ATM-MIB",
1617
+ "description" :
1618
+ """This group is mandatory only for implementations
1619
+ that support the ATM PW N:1 and transparent mode.""",
1620
+ },
1621
+ "pwAtmInboundNto1Group" : {
1622
+ "nodetype" : "optional",
1623
+ "module" : "PW-ATM-MIB",
1624
+ "description" :
1625
+ """This group is mandatory only for implementations
1626
+ that support the ATM PW N:1 and transparent mode.""",
1627
+ },
1628
+ }, # requires
1629
+ "refinements" : {
1630
+ "pwAtmCfgFarEndMaxCellConcatenation" : {
1631
+ "module" : "PW-ATM-MIB",
1632
+ "access" : "readonly",
1633
+ "description" :
1634
+ """The ability to set this object
1635
+ is not required.""",
1636
+ },
1637
+ }, # refinements
1638
+
1639
+ }, # compliance
1640
+ }, # compliances
1641
+
1642
+ }