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,1601 @@
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 FR-ATM-PVC-SERVICE-IWF-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/FR-ATM-PVC-SERVICE-IWF-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
11
+
12
+ "FR-ATM-PVC-SERVICE-IWF-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF Frame Relay Service MIB Working Group""",
17
+ "contact" :
18
+ """WG Charter:
19
+ http://www.ietf.org/html.charters/frnetmib-charter
20
+ WG-email:
21
+ frnetmib@sunroof.eng.sun.com
22
+ Subscribe:
23
+ frnetmib-request@sunroof.eng.sun.com
24
+ Email Archive:
25
+ ftp://ftp.ietf.org/ietf-mail-archive/frnetmib
26
+
27
+ Chair: Andy Malis
28
+ Vivace Networks, Inc.
29
+ Email: Andy.Malis@vivacenetworks.com
30
+
31
+ WG editor: Kenneth Rehbehn
32
+ Megisto Systems, Inc.
33
+ Email: krehbehn@megisto.com
34
+
35
+ Co-author: Orly Nicklass
36
+ RAD Data Communications Ltd.
37
+ EMail: orly_n@rad.co.il
38
+
39
+ Co-author: George Mouradian
40
+ AT&T Labs
41
+ EMail: gvm@att.com""",
42
+ "description" :
43
+ """The MIB module for monitoring and controlling the
44
+ Frame Relay/ATM PVC Service Interworking
45
+ Function.""",
46
+ "revisions" : (
47
+ {
48
+ "date" : "2000-09-28 00:00",
49
+ "description" :
50
+ """Published as RFC 2955""",
51
+ },
52
+ ),
53
+ "identity node" : "frAtmIwfMIB",
54
+ },
55
+
56
+ "imports" : (
57
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
58
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
59
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
60
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
61
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
62
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
63
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
64
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
65
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
66
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
67
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
68
+ {"module" : "ATM-TC-MIB", "name" : "AtmVpIdentifier"},
69
+ {"module" : "ATM-TC-MIB", "name" : "AtmVcIdentifier"},
70
+ {"module" : "ATM-MIB", "name" : "atmVclEntry"},
71
+ {"module" : "IF-MIB", "name" : "InterfaceIndex"},
72
+ ),
73
+
74
+ "nodes" : {
75
+ "frAtmIwfMIB" : {
76
+ "nodetype" : "node",
77
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
78
+ "oid" : "1.3.6.1.2.1.86",
79
+ "status" : "current",
80
+ }, # node
81
+ "frAtmIwfMIBObjects" : {
82
+ "nodetype" : "node",
83
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
84
+ "oid" : "1.3.6.1.2.1.86.1",
85
+ }, # node
86
+ "frAtmIwfConnIndexNext" : {
87
+ "nodetype" : "scalar",
88
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
89
+ "oid" : "1.3.6.1.2.1.86.1.1",
90
+ "status" : "current",
91
+ "syntax" : {
92
+ "type" : {
93
+ "basetype" : "Integer32",
94
+ "ranges" : [
95
+ {
96
+ "min" : "0",
97
+ "max" : "2147483647"
98
+ },
99
+ ],
100
+ "range" : {
101
+ "min" : "0",
102
+ "max" : "2147483647"
103
+ },
104
+ },
105
+ },
106
+ "access" : "readonly",
107
+ "description" :
108
+ """This object contains an appropriate value to be
109
+ used for frAtmIwfConnIndex when creating entries
110
+ in the frAtmIwfConnectionTable. The value 0
111
+ indicates that no unassigned entries are
112
+ available. To obtain the frAtmIwfConnIndexNext
113
+ value for a new entry, the manager issues a
114
+ management protocol retrieval operation to obtain
115
+ the current value of this object. After each
116
+ retrieval, the agent should modify the value to
117
+ the next unassigned index.""",
118
+ }, # scalar
119
+ "frAtmIwfConnectionTable" : {
120
+ "nodetype" : "table",
121
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
122
+ "oid" : "1.3.6.1.2.1.86.1.2",
123
+ "status" : "current",
124
+ "description" :
125
+ """A table in which each row represents a Frame
126
+ Relay/ATM interworking connection.""",
127
+ }, # table
128
+ "frAtmIwfConnectionEntry" : {
129
+ "nodetype" : "row",
130
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
131
+ "oid" : "1.3.6.1.2.1.86.1.2.1",
132
+ "create" : "true",
133
+ "status" : "current",
134
+ "linkage" : [
135
+ "frAtmIwfConnIndex",
136
+ "frAtmIwfConnAtmPort",
137
+ "frAtmIwfConnVpi",
138
+ "frAtmIwfConnVci",
139
+ "frAtmIwfConnFrPort",
140
+ "frAtmIwfConnDlci",
141
+ ],
142
+ "description" :
143
+ """The FrAtmIwfConnectionEntry provides an entry for
144
+ an interworking connection between a frame relay
145
+ PVC and one or more ATM PVCs, or an ATM PVC and
146
+ one or more frame relay PVCs. A single frame
147
+ relay PVC connected to a single ATM PVC is
148
+ referred to as a `point-to-point' connection and
149
+ is represented by a single row in the FR/ATM IWF
150
+ Connection Table. The case of a single frame
151
+ relay PVC connected to multiple ATM PVCs (or
152
+ single ATM PVC connected to multiple frame relay
153
+ PVCs) is referred to as a `point-to-multipoint'
154
+ connection and is represented by multiple rows in
155
+ the FR/ATM IWF Connection Table.
156
+
157
+ The object frAtmIwfConnIndex uniquely identifies
158
+ each point-to-point or point-to-multipoint
159
+ connection. The manager obtains the
160
+ frAtmIwfConnIndex value by reading the
161
+ frAtmIwfConnIndexNext object.
162
+
163
+ After a frAtmIwfConnIndex is assigned for the
164
+ connection, the manager creates one or more rows
165
+ in the Cross Connect Table; one for each cross-
166
+ connection between the frame relay PVC and an ATM
167
+ PVC. In the case of `point-to-multipoint'
168
+ connections, all rows are indexed by the same
169
+ frAtmIwfConnIndex value and MUST refer to the same
170
+ frame relay PVC or ATM PVC respectively. An entry
171
+ can be created only when at least one pair of
172
+ frame relay and ATM PVCs exist.
173
+
174
+ A row can be established by one-step set-request
175
+ with all required parameter values and
176
+ frAtmIwfConnRowStatus set to createAndGo(4). The
177
+
178
+
179
+ Agent should perform all error checking as needed.
180
+ A pair of cross-connected PVCs, as identified by a
181
+ particular value of the indexes, is released by
182
+ setting frAtmIwfConnRowStatus to destroy(6). The
183
+ Agent may release all associated resources. The
184
+ manager may remove the related PVCs thereafter.
185
+ Indexes are persistent across reboots of the
186
+ system.""",
187
+ }, # row
188
+ "frAtmIwfConnIndex" : {
189
+ "nodetype" : "column",
190
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
191
+ "oid" : "1.3.6.1.2.1.86.1.2.1.1",
192
+ "status" : "current",
193
+ "syntax" : {
194
+ "type" : {
195
+ "basetype" : "Integer32",
196
+ "ranges" : [
197
+ {
198
+ "min" : "1",
199
+ "max" : "2147483647"
200
+ },
201
+ ],
202
+ "range" : {
203
+ "min" : "1",
204
+ "max" : "2147483647"
205
+ },
206
+ },
207
+ },
208
+ "access" : "noaccess",
209
+ "description" :
210
+ """A unique value for each point-to-point or point-
211
+ to-multipoint connection. The manager obtains the
212
+ frAtmIwfConnIndex value by reading the
213
+
214
+
215
+ frAtmIwfConnIndexNext object. A point-to-
216
+ multipoint connection will be represented in the
217
+ frAtmIwfConnectionTable with multiple entries that
218
+ share the same frAtmIwfConnIndex value.""",
219
+ }, # column
220
+ "frAtmIwfConnAtmPort" : {
221
+ "nodetype" : "column",
222
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
223
+ "oid" : "1.3.6.1.2.1.86.1.2.1.2",
224
+ "status" : "current",
225
+ "syntax" : {
226
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
227
+ },
228
+ "access" : "noaccess",
229
+ "description" :
230
+ """The index in the ifTable that identifies the ATM
231
+ port for this interworking connection.""",
232
+ }, # column
233
+ "frAtmIwfConnVpi" : {
234
+ "nodetype" : "column",
235
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
236
+ "oid" : "1.3.6.1.2.1.86.1.2.1.3",
237
+ "status" : "current",
238
+ "syntax" : {
239
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVpIdentifier"},
240
+ },
241
+ "access" : "noaccess",
242
+ "description" :
243
+ """The VPI of the ATM PVC end point for this
244
+ interworking connection.""",
245
+ }, # column
246
+ "frAtmIwfConnVci" : {
247
+ "nodetype" : "column",
248
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
249
+ "oid" : "1.3.6.1.2.1.86.1.2.1.4",
250
+ "status" : "current",
251
+ "syntax" : {
252
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVcIdentifier"},
253
+ },
254
+ "access" : "noaccess",
255
+ "description" :
256
+ """The VCI of the ATM PVC end point for this
257
+ interworking
258
+ connection.""",
259
+ }, # column
260
+ "frAtmIwfConnFrPort" : {
261
+ "nodetype" : "column",
262
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
263
+ "oid" : "1.3.6.1.2.1.86.1.2.1.5",
264
+ "status" : "current",
265
+ "syntax" : {
266
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
267
+ },
268
+ "access" : "noaccess",
269
+ "description" :
270
+ """The index in the ifTable that identifies the
271
+ frame relay port for this interworking
272
+ connection.""",
273
+ }, # column
274
+ "frAtmIwfConnDlci" : {
275
+ "nodetype" : "column",
276
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
277
+ "oid" : "1.3.6.1.2.1.86.1.2.1.6",
278
+ "status" : "current",
279
+ "syntax" : {
280
+ "type" : {
281
+ "basetype" : "Integer32",
282
+ "ranges" : [
283
+ {
284
+ "min" : "16",
285
+ "max" : "4194303"
286
+ },
287
+ ],
288
+ "range" : {
289
+ "min" : "16",
290
+ "max" : "4194303"
291
+ },
292
+ },
293
+ },
294
+ "access" : "noaccess",
295
+ "description" :
296
+ """The DLCI that identifies the frame relay PVC end
297
+ point for this interworking connection.""",
298
+ }, # column
299
+ "frAtmIwfConnRowStatus" : {
300
+ "nodetype" : "column",
301
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
302
+ "oid" : "1.3.6.1.2.1.86.1.2.1.7",
303
+ "status" : "current",
304
+ "syntax" : {
305
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
306
+ },
307
+ "access" : "readwrite",
308
+ "description" :
309
+ """The table row may be created with
310
+ 'createAndWait(5)' or 'createAndGo(4)'.
311
+ To activate a connection entry, a valid connection
312
+ descriptor MUST be established in the
313
+ frAtmIwfConnectionDescriptor object.
314
+
315
+ This object is set to 'destroy(6)' to delete the
316
+ table row. Before the table row is destroyed, the
317
+ OperStatus/AdminStatus of the corresponding
318
+ endpoints MUST be 'down(2)'. The deactivation of
319
+ the ATM endpoint MAY occur as a side-effect of
320
+ deleting the FR/ATM IWF cross-connection table
321
+ row. Otherwise, 'destroy(6)' operation MUST fail
322
+ (error code 'inconsistentValue').""",
323
+ }, # column
324
+ "frAtmIwfConnAdminStatus" : {
325
+ "nodetype" : "column",
326
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
327
+ "oid" : "1.3.6.1.2.1.86.1.2.1.8",
328
+ "status" : "current",
329
+ "syntax" : {
330
+ "type" : {
331
+ "basetype" : "Enumeration",
332
+ "up" : {
333
+ "nodetype" : "namednumber",
334
+ "number" : "1"
335
+ },
336
+ "down" : {
337
+ "nodetype" : "namednumber",
338
+ "number" : "2"
339
+ },
340
+ },
341
+ },
342
+ "access" : "readwrite",
343
+ "description" :
344
+ """The desired operational state for this FR/ATM
345
+ interworked connection.
346
+
347
+ up(1) = Activate the connection. Before the
348
+ activation can be completed, the
349
+ OperStatus/AdminStatus of the
350
+ corresponding endpoints MUST be
351
+ 'up(1)'. The activation of the
352
+ corresponding endpoints MAY occur as
353
+ a side-effect of activating the
354
+ FR/ATM IWF cross-connection.
355
+
356
+ down(2) = Deactivate the connection. Before
357
+ the deactivation can be completed,
358
+ the atmVclAdminStatus of the
359
+ corresponding ATM endpoint MUST be
360
+ 'down(2)'. The deactivation of the
361
+
362
+
363
+ ATM endpoint MAY occur as a
364
+ side-effect of deactivating the
365
+ FR/ATM IWF cross-connection.""",
366
+ }, # column
367
+ "frAtmIwfConnAtm2FrOperStatus" : {
368
+ "nodetype" : "column",
369
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
370
+ "oid" : "1.3.6.1.2.1.86.1.2.1.9",
371
+ "status" : "current",
372
+ "syntax" : {
373
+ "type" : {
374
+ "basetype" : "Enumeration",
375
+ "up" : {
376
+ "nodetype" : "namednumber",
377
+ "number" : "1"
378
+ },
379
+ "down" : {
380
+ "nodetype" : "namednumber",
381
+ "number" : "2"
382
+ },
383
+ },
384
+ },
385
+ "access" : "readonly",
386
+ "description" :
387
+ """The current operational state of this
388
+ interworking connection in the ATM to frame
389
+ relay direction.""",
390
+ }, # column
391
+ "frAtmIwfConnAtm2FrLastChange" : {
392
+ "nodetype" : "column",
393
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
394
+ "oid" : "1.3.6.1.2.1.86.1.2.1.10",
395
+ "status" : "current",
396
+ "syntax" : {
397
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
398
+ },
399
+ "access" : "readonly",
400
+ "description" :
401
+ """The value of sysUpTime at the time this
402
+ interworking connection entered its current
403
+ operational state in the ATM to FR direction. If
404
+ the current state was entered prior to the last
405
+ re-initialization of the local network management
406
+ subsystem, then this object contains a zero
407
+ value.""",
408
+ }, # column
409
+ "frAtmIwfConnFr2AtmOperStatus" : {
410
+ "nodetype" : "column",
411
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
412
+ "oid" : "1.3.6.1.2.1.86.1.2.1.11",
413
+ "status" : "current",
414
+ "syntax" : {
415
+ "type" : {
416
+ "basetype" : "Enumeration",
417
+ "up" : {
418
+ "nodetype" : "namednumber",
419
+ "number" : "1"
420
+ },
421
+ "down" : {
422
+ "nodetype" : "namednumber",
423
+ "number" : "2"
424
+ },
425
+ },
426
+ },
427
+ "access" : "readonly",
428
+ "description" :
429
+ """The current operational state of this
430
+ interworking connection in the frame relay
431
+ to ATM direction.""",
432
+ }, # column
433
+ "frAtmIwfConnFr2AtmLastChange" : {
434
+ "nodetype" : "column",
435
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
436
+ "oid" : "1.3.6.1.2.1.86.1.2.1.12",
437
+ "status" : "current",
438
+ "syntax" : {
439
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
440
+ },
441
+ "access" : "readonly",
442
+ "description" :
443
+ """The value of sysUpTime at the time this
444
+ interworking connection entered its current
445
+ operational state in the FR to ATM direction. If
446
+ the current state was entered prior to the last
447
+
448
+
449
+ re-initialization of the local network management
450
+ subsystem, then this object contains a zero
451
+ value.""",
452
+ }, # column
453
+ "frAtmIwfConnectionDescriptor" : {
454
+ "nodetype" : "column",
455
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
456
+ "oid" : "1.3.6.1.2.1.86.1.2.1.13",
457
+ "status" : "current",
458
+ "syntax" : {
459
+ "type" : { "module" :"", "name" : "Integer32"},
460
+ },
461
+ "access" : "readwrite",
462
+ "description" :
463
+ """The value represents a pointer to the relevant
464
+ descriptor in the IWF descriptor table. An
465
+ attempt to set this value to an inactive or non-
466
+ existent row in the Connection Descriptor Table
467
+ MUST fail (error code 'inconsistentValue').""",
468
+ }, # column
469
+ "frAtmIwfConnFailedFrameTranslate" : {
470
+ "nodetype" : "column",
471
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
472
+ "oid" : "1.3.6.1.2.1.86.1.2.1.14",
473
+ "status" : "current",
474
+ "syntax" : {
475
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
476
+ },
477
+ "access" : "readonly",
478
+ "units" : "Frames",
479
+ "description" :
480
+ """This object counts the number of frames discarded
481
+ by the IWF because, while operating in Translation
482
+ Mode, the IWF is unable to decode the incoming
483
+ frame payload header according to the mapping
484
+ rules. (i.e., payload header not recognized by the
485
+ IWF).
486
+
487
+ Frame relay frames are received in the frame relay
488
+ to ATM direction of the PVC.
489
+
490
+ When operating in Transparent Mode, the IWF MUST
491
+ return noSuchInstance.""",
492
+ "reference" :
493
+ """FRF.8 [17], Section 5.3.1""",
494
+ }, # column
495
+ "frAtmIwfConnOverSizedFrames" : {
496
+ "nodetype" : "column",
497
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
498
+ "oid" : "1.3.6.1.2.1.86.1.2.1.15",
499
+ "status" : "current",
500
+ "syntax" : {
501
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
502
+ },
503
+ "access" : "readonly",
504
+ "units" : "Frames",
505
+ "description" :
506
+ """Count of frames discarded by the IWF because the
507
+ frame is too large to be processed by the AAL5
508
+ segmentation procedure. Specifically, the frame
509
+
510
+
511
+ does not conform to the size specified in the
512
+ atmVccAal5CpcsTransmitSduSize object associated
513
+ with the atmVclEntry at the ATM endpoint.
514
+ Frame relay frames are received in the frame relay
515
+ to ATM direction of the PVC.""",
516
+ "reference" :
517
+ """ATM MIB [21], atmVclTable
518
+ FRF.8 [17], 5.3.1.4""",
519
+ }, # column
520
+ "frAtmIwfConnFailedAal5PduTranslate" : {
521
+ "nodetype" : "column",
522
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
523
+ "oid" : "1.3.6.1.2.1.86.1.2.1.16",
524
+ "status" : "current",
525
+ "syntax" : {
526
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
527
+ },
528
+ "access" : "readonly",
529
+ "units" : "PDUs",
530
+ "description" :
531
+ """This attribute counts the number of AAL5 PDUs
532
+ discarded by the IWF because, while operating in
533
+ Translation Mode, the IWF is unable to decode the
534
+ incoming AAL5 PDU payload header according to the
535
+ mapping rules. (i.e., payload header not
536
+ recognized by the IWF).
537
+
538
+ AAL5 PDUs are received in the ATM to frame relay
539
+ direction of the PVC.
540
+
541
+ When operating in Transparent Mode, the IWF MUST
542
+ return noSuchInstance.""",
543
+ "reference" :
544
+ """FRF.8 [17], Section 5.3.1""",
545
+ }, # column
546
+ "frAtmIwfConnOverSizedSDUs" : {
547
+ "nodetype" : "column",
548
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
549
+ "oid" : "1.3.6.1.2.1.86.1.2.1.17",
550
+ "status" : "current",
551
+ "syntax" : {
552
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
553
+ },
554
+ "access" : "readonly",
555
+ "units" : "SDUs",
556
+ "description" :
557
+ """Count of AAL5 SDUs discarded by the IWF because
558
+ the SDU is too large to be forwarded on the frame
559
+ relay segment of the connection. Specifically,
560
+ the frame does not conform to the size specified
561
+ in the frLportFragSize object of the FRS MIB [19].
562
+
563
+ AAL5 PDUs are received in the ATM to frame relay
564
+ direction of the PVC.""",
565
+ "reference" :
566
+ """FRS MIB [19], frLportTable
567
+
568
+
569
+ FRF.8 [17], 5.3.1.4""",
570
+ }, # column
571
+ "frAtmIwfConnCrcErrors" : {
572
+ "nodetype" : "column",
573
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
574
+ "oid" : "1.3.6.1.2.1.86.1.2.1.18",
575
+ "status" : "current",
576
+ "syntax" : {
577
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
578
+ },
579
+ "access" : "readonly",
580
+ "units" : "PDUs",
581
+ "description" :
582
+ """The number of AAL5 CPCS PDUs received with CRC-32
583
+ errors on this AAL5 VCC at the IWF.
584
+
585
+ AAL5 PDUs are received in the ATM to frame relay
586
+ direction of the PVC.""",
587
+ "reference" :
588
+ """ATM MIB [21], atmVclTable""",
589
+ }, # column
590
+ "frAtmIwfConnSarTimeOuts" : {
591
+ "nodetype" : "column",
592
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
593
+ "oid" : "1.3.6.1.2.1.86.1.2.1.19",
594
+ "status" : "current",
595
+ "syntax" : {
596
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
597
+ },
598
+ "access" : "readonly",
599
+ "units" : "PDUs",
600
+ "description" :
601
+ """The number of partially re-assembled AAL5 CPCS
602
+ PDUs which were discarded on this AAL5 VCC at the
603
+ IWF because they were not fully re-assembled
604
+ within the required time period. If the re-
605
+ assembly timer is not supported, then this object
606
+ contains a zero value.
607
+
608
+ AAL5 PDUs are received in the ATM to frame relay
609
+ direction of the PVC.""",
610
+ "reference" :
611
+ """ATM MIB [21], atmVclTable""",
612
+ }, # column
613
+ "frAtmIwfConnectionDescriptorIndexNext" : {
614
+ "nodetype" : "scalar",
615
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
616
+ "oid" : "1.3.6.1.2.1.86.1.3",
617
+ "status" : "current",
618
+ "syntax" : {
619
+ "type" : {
620
+ "basetype" : "Integer32",
621
+ "ranges" : [
622
+ {
623
+ "min" : "0",
624
+ "max" : "2147483647"
625
+ },
626
+ ],
627
+ "range" : {
628
+ "min" : "0",
629
+ "max" : "2147483647"
630
+ },
631
+ },
632
+ },
633
+ "access" : "readonly",
634
+ "description" :
635
+ """This object contains an appropriate value to be
636
+ used for frAtmIwfConnectionDescriptorIndex when
637
+ creating entries in the
638
+ frAtmIwfConnectionDescriptorTable. The value 0
639
+ indicates that no unassigned entries are
640
+ available. To obtain the
641
+ frAtmIwfConnectionDescriptorIndexNext value for a
642
+ new entry, the manager issues a management
643
+ protocol retrieval operation to obtain the current
644
+ value of this object. After each retrieval, the
645
+ agent should modify the value to the next
646
+ unassigned index.""",
647
+ }, # scalar
648
+ "frAtmIwfConnectionDescriptorTable" : {
649
+ "nodetype" : "table",
650
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
651
+ "oid" : "1.3.6.1.2.1.86.1.4",
652
+ "status" : "current",
653
+ "description" :
654
+ """A table in which each row represents a descriptor
655
+ for one type of Frame Relay/ATM interworking
656
+ connection. A descriptor may be assigned to zero
657
+ or more FR/ATM PVC service IWF connections.""",
658
+ }, # table
659
+ "frAtmIwfConnectionDescriptorEntry" : {
660
+ "nodetype" : "row",
661
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
662
+ "oid" : "1.3.6.1.2.1.86.1.4.1",
663
+ "create" : "true",
664
+ "status" : "current",
665
+ "linkage" : [
666
+ "frAtmIwfConnectionDescriptorIndex",
667
+ ],
668
+ "description" :
669
+ """An entry for a descriptor in an interworking
670
+ connection between a frame relay PVC and an ATM
671
+ PVC.""",
672
+ }, # row
673
+ "frAtmIwfConnectionDescriptorIndex" : {
674
+ "nodetype" : "column",
675
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
676
+ "oid" : "1.3.6.1.2.1.86.1.4.1.1",
677
+ "status" : "current",
678
+ "syntax" : {
679
+ "type" : {
680
+ "basetype" : "Integer32",
681
+ "ranges" : [
682
+ {
683
+ "min" : "1",
684
+ "max" : "2147483647"
685
+ },
686
+ ],
687
+ "range" : {
688
+ "min" : "1",
689
+ "max" : "2147483647"
690
+ },
691
+ },
692
+ },
693
+ "access" : "noaccess",
694
+ "description" :
695
+ """A unique value to identify a descriptor in the
696
+ table """,
697
+ }, # column
698
+ "frAtmIwfConnDescriptorRowStatus" : {
699
+ "nodetype" : "column",
700
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
701
+ "oid" : "1.3.6.1.2.1.86.1.4.1.2",
702
+ "status" : "current",
703
+ "syntax" : {
704
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
705
+ },
706
+ "access" : "readwrite",
707
+ "description" :
708
+ """The status of this table row. This object is
709
+ used to create or delete an entry in the
710
+ descriptor table.
711
+
712
+ Creation of the row requires a row index (see
713
+ frAtmIwfConnectionDescriptorIndexNext). If not
714
+ explicitly set or in existence, all other columns
715
+ of the row will be created and initialized to the
716
+ default value. During creation, this object MAY
717
+ be set to 'createAndGo(4)' or 'createAndWait(5)'.
718
+ The object MUST contain the value 'active(1)'
719
+ before any connection table entry references the
720
+ row.
721
+
722
+ To destroy a row in this table, this object is set
723
+ to the 'destroy(6)' action. Row destruction MUST
724
+ fail (error code 'inconsistentValue') if any
725
+ connection references the row.""",
726
+ }, # column
727
+ "frAtmIwfConnDeToClpMappingMode" : {
728
+ "nodetype" : "column",
729
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
730
+ "oid" : "1.3.6.1.2.1.86.1.4.1.3",
731
+ "status" : "current",
732
+ "syntax" : {
733
+ "type" : {
734
+ "basetype" : "Enumeration",
735
+ "mode1" : {
736
+ "nodetype" : "namednumber",
737
+ "number" : "1"
738
+ },
739
+ "mode2Const0" : {
740
+ "nodetype" : "namednumber",
741
+ "number" : "2"
742
+ },
743
+ "mode2Const1" : {
744
+ "nodetype" : "namednumber",
745
+ "number" : "3"
746
+ },
747
+ },
748
+ },
749
+ "access" : "readwrite",
750
+ "default" : "mode1",
751
+ "description" :
752
+ """This object describes which mode of translation
753
+ is in use for loss priority mapping in the frame
754
+
755
+
756
+ relay to ATM direction.
757
+
758
+ mode1(1) = the DE field in the Q.922 core
759
+ frame shall be mapped to the ATM
760
+ CLP field of every cell
761
+ generated by the segmentation
762
+ process of the AAL5 PDU
763
+ containing the information of
764
+ that frame.
765
+
766
+ mode2Contst0(2) = the ATM CLP field of every cell
767
+ generated by the segmentation
768
+ process of the AAL5 PDU
769
+ containing the information of
770
+ that frame shall be set to
771
+ constant 0.
772
+
773
+ mode2Contst1(3) = the ATM CLP field of every cell
774
+ generated by the segmentation
775
+ process of the AAL5 PDU
776
+ containing the information of
777
+ that frame shall be set to
778
+ constant 1.""",
779
+ "reference" :
780
+ """FRF.8 [17], Section 4.2.1""",
781
+ }, # column
782
+ "frAtmIwfConnClpToDeMappingMode" : {
783
+ "nodetype" : "column",
784
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
785
+ "oid" : "1.3.6.1.2.1.86.1.4.1.4",
786
+ "status" : "current",
787
+ "syntax" : {
788
+ "type" : {
789
+ "basetype" : "Enumeration",
790
+ "mode1" : {
791
+ "nodetype" : "namednumber",
792
+ "number" : "1"
793
+ },
794
+ "mode2Const0" : {
795
+ "nodetype" : "namednumber",
796
+ "number" : "2"
797
+ },
798
+ "mode2Const1" : {
799
+ "nodetype" : "namednumber",
800
+ "number" : "3"
801
+ },
802
+ },
803
+ },
804
+ "access" : "readwrite",
805
+ "default" : "mode1",
806
+ "description" :
807
+ """This object describes which mode of translation
808
+ is in use for loss priority mapping in the ATM to
809
+ frame relay direction.
810
+
811
+ mode1(1) = if one or more cells in a frame
812
+ has its CLP field set, the DE
813
+ field of the Q.922 core frame
814
+ should be set.
815
+
816
+ mode2Const0(2) = the DE field of the Q.922 core
817
+ frame should be set to the
818
+
819
+
820
+ constant 0.
821
+
822
+ mode2Const1(3) = the DE field of the Q.922 core
823
+ frame should be set to the
824
+ constant 1.""",
825
+ "reference" :
826
+ """FRF.8 [17], Section 4.2.2""",
827
+ }, # column
828
+ "frAtmIwfConnCongestionMappingMode" : {
829
+ "nodetype" : "column",
830
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
831
+ "oid" : "1.3.6.1.2.1.86.1.4.1.5",
832
+ "status" : "current",
833
+ "syntax" : {
834
+ "type" : {
835
+ "basetype" : "Enumeration",
836
+ "mode1" : {
837
+ "nodetype" : "namednumber",
838
+ "number" : "1"
839
+ },
840
+ "mode2" : {
841
+ "nodetype" : "namednumber",
842
+ "number" : "2"
843
+ },
844
+ },
845
+ },
846
+ "access" : "readwrite",
847
+ "default" : "mode1",
848
+ "description" :
849
+ """This object describes which mode of translation
850
+ is in use for forward congestion indication
851
+ mapping in the frame relay to ATM direction.
852
+
853
+ mode1(1) = The FECN field in the Q.922 core frame
854
+ shall be mapped to the ATM EFCI field
855
+ of every cell generated by the
856
+ segmentation process of the AAL5 PDU
857
+ containing the information of that
858
+ frame.
859
+
860
+ mode2(2) = The FECN field in the Q.922 core frame
861
+ shall not be mapped to the ATM EFCI
862
+ field of cells generated by the
863
+ segmentation process of the AAL5 PDU
864
+ containing the information of that
865
+ frame. The EFCI field is always set to
866
+ 'congestion not experienced'.
867
+
868
+ In both of the modes above, if there is congestion
869
+ in the forward direction in the ATM layer within
870
+ the IWF, then the IWF can set the EFCI field to
871
+ 'congestion experienced'.""",
872
+ "reference" :
873
+ """FRF.8 [17], Section 4.3.1.1""",
874
+ }, # column
875
+ "frAtmIwfConnEncapsulationMappingMode" : {
876
+ "nodetype" : "column",
877
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
878
+ "oid" : "1.3.6.1.2.1.86.1.4.1.6",
879
+ "status" : "current",
880
+ "syntax" : {
881
+ "type" : {
882
+ "basetype" : "Enumeration",
883
+ "transparentMode" : {
884
+ "nodetype" : "namednumber",
885
+ "number" : "1"
886
+ },
887
+ "translationMode" : {
888
+ "nodetype" : "namednumber",
889
+ "number" : "2"
890
+ },
891
+ "translationModeAll" : {
892
+ "nodetype" : "namednumber",
893
+ "number" : "3"
894
+ },
895
+ },
896
+ },
897
+ "access" : "readwrite",
898
+ "default" : "transparentMode",
899
+ "description" :
900
+ """This object indicates whether the mapping of
901
+ upper layer protocol encapsulation is enabled on
902
+ this interworking connection.
903
+
904
+ transparentMode(1) = Forward the encapsulations
905
+ unaltered.
906
+
907
+ translationMode(2) = Perform mapping between the
908
+ two encapsulations due to the
909
+ incompatibilities of the two
910
+ methods. Mapping is provided
911
+ for a subset of the potential
912
+ encapsulations as itemized in
913
+ frAtmIwfConnEncapsulationMapp
914
+ ings.
915
+
916
+ translationModeAll(3) = Perform mapping between
917
+ the two encapsulations due to
918
+ the incompatibilities of the
919
+ two methods. All
920
+ encapsulations are
921
+ translated.""",
922
+ "reference" :
923
+ """FRF.8 [17], Section 5.3""",
924
+ }, # column
925
+ "frAtmIwfConnEncapsulationMappings" : {
926
+ "nodetype" : "column",
927
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
928
+ "oid" : "1.3.6.1.2.1.86.1.4.1.7",
929
+ "status" : "current",
930
+ "syntax" : {
931
+ "type" : {
932
+ "basetype" : "Bits",
933
+ "none" : {
934
+ "nodetype" : "namednumber",
935
+ "number" : "0"
936
+ },
937
+ "bridgedPdus" : {
938
+ "nodetype" : "namednumber",
939
+ "number" : "1"
940
+ },
941
+ "bridged802dot6" : {
942
+ "nodetype" : "namednumber",
943
+ "number" : "2"
944
+ },
945
+ "bPdus" : {
946
+ "nodetype" : "namednumber",
947
+ "number" : "3"
948
+ },
949
+ "routedIp" : {
950
+ "nodetype" : "namednumber",
951
+ "number" : "4"
952
+ },
953
+ "routedOsi" : {
954
+ "nodetype" : "namednumber",
955
+ "number" : "5"
956
+ },
957
+ "otherRouted" : {
958
+ "nodetype" : "namednumber",
959
+ "number" : "6"
960
+ },
961
+ "x25Iso8202" : {
962
+ "nodetype" : "namednumber",
963
+ "number" : "7"
964
+ },
965
+ "q933q2931" : {
966
+ "nodetype" : "namednumber",
967
+ "number" : "8"
968
+ },
969
+ },
970
+ },
971
+ "access" : "readwrite",
972
+ "default" : "(none)",
973
+ "description" :
974
+ """If upper layer protocol encapsulation mapping is
975
+ enabled on this interworking connection, then this
976
+ attribute enumerates which of the encapsulation
977
+ mappings are supported.
978
+
979
+ none(0) = Transparent mode operation
980
+ bridgedPdus(1) = PID: 0x00-01,-07,-02 or -08
981
+ bridged802dot6(2) = PID: 0x00-0B
982
+ bPdus(3) = PID: 0x00-0E or -0F
983
+ routedIp(4) = NLPID: OxCC
984
+ routedOsi(5) = NLPID: Ox81, 0x82 or 0x83
985
+ otherRouted(6) = Other routed protocols
986
+ x25Iso8202(7) = X25
987
+ q933q2931(8) = Q.933 and Q.2931""",
988
+ "reference" :
989
+ """FRF.8 [17], Section 5.3.1""",
990
+ }, # column
991
+ "frAtmIwfConnFragAndReassEnabled" : {
992
+ "nodetype" : "column",
993
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
994
+ "oid" : "1.3.6.1.2.1.86.1.4.1.8",
995
+ "status" : "current",
996
+ "syntax" : {
997
+ "type" : {
998
+ "basetype" : "Enumeration",
999
+ "enabled" : {
1000
+ "nodetype" : "namednumber",
1001
+ "number" : "1"
1002
+ },
1003
+ "disabled" : {
1004
+ "nodetype" : "namednumber",
1005
+ "number" : "2"
1006
+ },
1007
+ },
1008
+ },
1009
+ "access" : "readwrite",
1010
+ "default" : "disabled",
1011
+ "description" :
1012
+ """The attribute indicates whether fragmentation and
1013
+ reassembly is enabled for this connection.""",
1014
+ "reference" :
1015
+ """FRF.8 [17], Section 5.3.1.4""",
1016
+ }, # column
1017
+ "frAtmIwfConnArpTranslationEnabled" : {
1018
+ "nodetype" : "column",
1019
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
1020
+ "oid" : "1.3.6.1.2.1.86.1.4.1.9",
1021
+ "status" : "current",
1022
+ "syntax" : {
1023
+ "type" : {
1024
+ "basetype" : "Enumeration",
1025
+ "enabled" : {
1026
+ "nodetype" : "namednumber",
1027
+ "number" : "1"
1028
+ },
1029
+ "disabled" : {
1030
+ "nodetype" : "namednumber",
1031
+ "number" : "2"
1032
+ },
1033
+ },
1034
+ },
1035
+ "access" : "readwrite",
1036
+ "default" : "disabled",
1037
+ "description" :
1038
+ """The attribute indicates whether ARP translation
1039
+ is enabled for this connection.""",
1040
+ "reference" :
1041
+ """FRF.8 [17], Section 5.4""",
1042
+ }, # column
1043
+ "frAtmIwfVclTable" : {
1044
+ "nodetype" : "table",
1045
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
1046
+ "oid" : "1.3.6.1.2.1.86.1.5",
1047
+ "status" : "current",
1048
+ "description" :
1049
+ """The FR/ATM IWF VCL Table augments the ATM MIB VCL
1050
+ Endpoint table.""",
1051
+ }, # table
1052
+ "frAtmIwfVclEntry" : {
1053
+ "nodetype" : "row",
1054
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
1055
+ "oid" : "1.3.6.1.2.1.86.1.5.1",
1056
+ "status" : "current",
1057
+ "linkage" : [
1058
+ { "ATM-MIB" : {
1059
+ "indexkind" : "augments",
1060
+ "relatedNode" : "atmVclEntry",
1061
+ }},
1062
+ ],
1063
+ "description" :
1064
+ """Entries in this table are created only by the
1065
+ agent. One entry exists for each ATM VCL managed
1066
+ by the agent.""",
1067
+ }, # row
1068
+ "frAtmIwfVclCrossConnectIdentifier" : {
1069
+ "nodetype" : "column",
1070
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
1071
+ "oid" : "1.3.6.1.2.1.86.1.5.1.1",
1072
+ "status" : "current",
1073
+ "syntax" : {
1074
+ "type" : {
1075
+ "basetype" : "Integer32",
1076
+ "ranges" : [
1077
+ {
1078
+ "min" : "1",
1079
+ "max" : "2147483647"
1080
+ },
1081
+ ],
1082
+ "range" : {
1083
+ "min" : "1",
1084
+ "max" : "2147483647"
1085
+ },
1086
+ },
1087
+ },
1088
+ "access" : "readonly",
1089
+ "description" :
1090
+ """This object contains the index value of the
1091
+ FR/ATM cross-connect table entry used to link the
1092
+ ATM VCL with a frame relay PVC.
1093
+
1094
+ Each row of the atmVclTable that is not cross-
1095
+ connected with a frame relay PVC MUST return the
1096
+ value zero when this object is read.
1097
+
1098
+ In the case of (frame relay) point to (ATM)
1099
+ multipoint, multiple ATM VCLs will have the same
1100
+ value of this object, and all their cross-
1101
+ connections are identified by entries that are
1102
+ indexed by the same value of
1103
+ frAtmIwfVclCrossConnectIdentifier in the
1104
+ frAtmIwfConnectionTable of this MIB module.
1105
+
1106
+ The value of this object is initialized by the
1107
+ agent after the associated entries in the
1108
+ frAtmIwfConnectionTable have been created.""",
1109
+ }, # column
1110
+ "frAtmIwfTraps" : {
1111
+ "nodetype" : "node",
1112
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
1113
+ "oid" : "1.3.6.1.2.1.86.2",
1114
+ }, # node
1115
+ "frAtmIwfTrapsPrefix" : {
1116
+ "nodetype" : "node",
1117
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
1118
+ "oid" : "1.3.6.1.2.1.86.2.0",
1119
+ }, # node
1120
+ "frAtmIwfConformance" : {
1121
+ "nodetype" : "node",
1122
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
1123
+ "oid" : "1.3.6.1.2.1.86.3",
1124
+ }, # node
1125
+ "frAtmIwfGroups" : {
1126
+ "nodetype" : "node",
1127
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
1128
+ "oid" : "1.3.6.1.2.1.86.3.1",
1129
+ }, # node
1130
+ "frAtmIwfCompliances" : {
1131
+ "nodetype" : "node",
1132
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
1133
+ "oid" : "1.3.6.1.2.1.86.3.2",
1134
+ }, # node
1135
+ }, # nodes
1136
+
1137
+ "notifications" : {
1138
+ "frAtmIwfConnStatusChange" : {
1139
+ "nodetype" : "notification",
1140
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
1141
+ "oid" : "1.3.6.1.2.1.86.2.0.1",
1142
+ "status" : "current",
1143
+ "objects" : {
1144
+ "frAtmIwfConnAdminStatus" : {
1145
+ "nodetype" : "object",
1146
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB"
1147
+ },
1148
+ "frAtmIwfConnAtm2FrOperStatus" : {
1149
+ "nodetype" : "object",
1150
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB"
1151
+ },
1152
+ "frAtmIwfConnFr2AtmOperStatus" : {
1153
+ "nodetype" : "object",
1154
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB"
1155
+ },
1156
+ },
1157
+ "description" :
1158
+ """An indication that the status of this
1159
+ interworking connection has changed.""",
1160
+ }, # notification
1161
+ }, # notifications
1162
+
1163
+ "groups" : {
1164
+ "frAtmIwfBasicGroup" : {
1165
+ "nodetype" : "group",
1166
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
1167
+ "oid" : "1.3.6.1.2.1.86.3.1.1",
1168
+ "status" : "current",
1169
+ "members" : {
1170
+ "frAtmIwfConnIndexNext" : {
1171
+ "nodetype" : "member",
1172
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB"
1173
+ },
1174
+ "frAtmIwfConnAdminStatus" : {
1175
+ "nodetype" : "member",
1176
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB"
1177
+ },
1178
+ "frAtmIwfConnAtm2FrOperStatus" : {
1179
+ "nodetype" : "member",
1180
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB"
1181
+ },
1182
+ "frAtmIwfConnAtm2FrLastChange" : {
1183
+ "nodetype" : "member",
1184
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB"
1185
+ },
1186
+ "frAtmIwfConnFr2AtmOperStatus" : {
1187
+ "nodetype" : "member",
1188
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB"
1189
+ },
1190
+ "frAtmIwfConnFr2AtmLastChange" : {
1191
+ "nodetype" : "member",
1192
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB"
1193
+ },
1194
+ "frAtmIwfConnectionDescriptor" : {
1195
+ "nodetype" : "member",
1196
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB"
1197
+ },
1198
+ "frAtmIwfConnFailedFrameTranslate" : {
1199
+ "nodetype" : "member",
1200
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB"
1201
+ },
1202
+ "frAtmIwfConnOverSizedFrames" : {
1203
+ "nodetype" : "member",
1204
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB"
1205
+ },
1206
+ "frAtmIwfConnFailedAal5PduTranslate" : {
1207
+ "nodetype" : "member",
1208
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB"
1209
+ },
1210
+ "frAtmIwfConnOverSizedSDUs" : {
1211
+ "nodetype" : "member",
1212
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB"
1213
+ },
1214
+ "frAtmIwfConnCrcErrors" : {
1215
+ "nodetype" : "member",
1216
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB"
1217
+ },
1218
+ "frAtmIwfConnSarTimeOuts" : {
1219
+ "nodetype" : "member",
1220
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB"
1221
+ },
1222
+ "frAtmIwfConnRowStatus" : {
1223
+ "nodetype" : "member",
1224
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB"
1225
+ },
1226
+ }, # members
1227
+ "description" :
1228
+ """The collection of basic objects for configuration
1229
+ and control of FR/ATM interworking connections.""",
1230
+ }, # group
1231
+ "frAtmIwfConnectionDescriptorGroup" : {
1232
+ "nodetype" : "group",
1233
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
1234
+ "oid" : "1.3.6.1.2.1.86.3.1.2",
1235
+ "status" : "current",
1236
+ "members" : {
1237
+ "frAtmIwfConnectionDescriptorIndexNext" : {
1238
+ "nodetype" : "member",
1239
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB"
1240
+ },
1241
+ "frAtmIwfConnDeToClpMappingMode" : {
1242
+ "nodetype" : "member",
1243
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB"
1244
+ },
1245
+ "frAtmIwfConnClpToDeMappingMode" : {
1246
+ "nodetype" : "member",
1247
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB"
1248
+ },
1249
+ "frAtmIwfConnCongestionMappingMode" : {
1250
+ "nodetype" : "member",
1251
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB"
1252
+ },
1253
+ "frAtmIwfConnEncapsulationMappingMode" : {
1254
+ "nodetype" : "member",
1255
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB"
1256
+ },
1257
+ "frAtmIwfConnEncapsulationMappings" : {
1258
+ "nodetype" : "member",
1259
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB"
1260
+ },
1261
+ "frAtmIwfConnFragAndReassEnabled" : {
1262
+ "nodetype" : "member",
1263
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB"
1264
+ },
1265
+ "frAtmIwfConnArpTranslationEnabled" : {
1266
+ "nodetype" : "member",
1267
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB"
1268
+ },
1269
+ "frAtmIwfConnDescriptorRowStatus" : {
1270
+ "nodetype" : "member",
1271
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB"
1272
+ },
1273
+ }, # members
1274
+ "description" :
1275
+ """The collection of basic objects for specification
1276
+ of FR/ATM interworking connection descriptors.""",
1277
+ }, # group
1278
+ "frAtmIwfAtmVclTableAugmentGroup" : {
1279
+ "nodetype" : "group",
1280
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
1281
+ "oid" : "1.3.6.1.2.1.86.3.1.3",
1282
+ "status" : "current",
1283
+ "members" : {
1284
+ "frAtmIwfVclCrossConnectIdentifier" : {
1285
+ "nodetype" : "member",
1286
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB"
1287
+ },
1288
+ }, # members
1289
+ "description" :
1290
+ """The ATM MIB VCL Endpoint Table AUGMENT object
1291
+ contained in the FR/ATM PVC Service Interworking
1292
+ MIB.""",
1293
+ }, # group
1294
+ "frAtmIwfNotificationsGroup" : {
1295
+ "nodetype" : "group",
1296
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
1297
+ "oid" : "1.3.6.1.2.1.86.3.1.4",
1298
+ "status" : "current",
1299
+ "members" : {
1300
+ "frAtmIwfConnStatusChange" : {
1301
+ "nodetype" : "member",
1302
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB"
1303
+ },
1304
+ }, # members
1305
+ "description" :
1306
+ """The notification for FR/ATM interworking status
1307
+ change.""",
1308
+ }, # group
1309
+ }, # groups
1310
+
1311
+ "compliances" : {
1312
+ "frAtmIwfEquipmentCompliance" : {
1313
+ "nodetype" : "compliance",
1314
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
1315
+ "oid" : "1.3.6.1.2.1.86.3.2.1",
1316
+ "status" : "current",
1317
+ "description" :
1318
+ """The compliance statement for equipment that
1319
+ implements the FR/ATM Interworking MIB.""",
1320
+ "requires" : {
1321
+ "frAtmIwfBasicGroup" : {
1322
+ "nodetype" : "mandatory",
1323
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB"
1324
+ },
1325
+ "frAtmIwfConnectionDescriptorGroup" : {
1326
+ "nodetype" : "mandatory",
1327
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB"
1328
+ },
1329
+ "frAtmIwfAtmVclTableAugmentGroup" : {
1330
+ "nodetype" : "mandatory",
1331
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB"
1332
+ },
1333
+ "frAtmIwfNotificationsGroup" : {
1334
+ "nodetype" : "mandatory",
1335
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB"
1336
+ },
1337
+ }, # requires
1338
+ "refinements" : {
1339
+ "frAtmIwfConnDeToClpMappingMode" : {
1340
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB",
1341
+ "syntax" : {
1342
+ "type" : {
1343
+ "basetype" : "Enumeration",
1344
+ "mode1" : {
1345
+ "nodetype" : "namednumber",
1346
+ "number" : "1"
1347
+ },
1348
+ },
1349
+ }, # syntax
1350
+ "description" :
1351
+ """Only support for Mode 1 is REQUIRED.""",
1352
+ },
1353
+ "frAtmIwfConnClpToDeMappingMode" : {
1354
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB",
1355
+ "syntax" : {
1356
+ "type" : {
1357
+ "basetype" : "Enumeration",
1358
+ "mode1" : {
1359
+ "nodetype" : "namednumber",
1360
+ "number" : "1"
1361
+ },
1362
+ },
1363
+ }, # syntax
1364
+ "description" :
1365
+ """Only support for Mode 1 is REQUIRED.""",
1366
+ },
1367
+ "frAtmIwfConnCongestionMappingMode" : {
1368
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB",
1369
+ "syntax" : {
1370
+ "type" : {
1371
+ "basetype" : "Enumeration",
1372
+ "mode1" : {
1373
+ "nodetype" : "namednumber",
1374
+ "number" : "1"
1375
+ },
1376
+ },
1377
+ }, # syntax
1378
+ "description" :
1379
+ """Only support for Mode 1 is REQUIRED.""",
1380
+ },
1381
+ "frAtmIwfConnEncapsulationMappingMode" : {
1382
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB",
1383
+ "syntax" : {
1384
+ "type" : {
1385
+ "basetype" : "Enumeration",
1386
+ "transparentMode" : {
1387
+ "nodetype" : "namednumber",
1388
+ "number" : "1"
1389
+ },
1390
+ },
1391
+ }, # syntax
1392
+ "description" :
1393
+ """Support for Translation Mode is OPTIONAL.""",
1394
+ },
1395
+ "frAtmIwfConnEncapsulationMappings" : {
1396
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB",
1397
+ "syntax" : {
1398
+ "type" : {
1399
+ "basetype" : "Bits",
1400
+ "none" : {
1401
+ "nodetype" : "namednumber",
1402
+ "number" : "0"
1403
+ },
1404
+ },
1405
+ }, # syntax
1406
+ "description" :
1407
+ """The IWF may provide one, some or none of the
1408
+ encapsulation translations defined in section
1409
+ 5.3.1 of FRF.8 [17].""",
1410
+ },
1411
+ "frAtmIwfConnFragAndReassEnabled" : {
1412
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB",
1413
+ "syntax" : {
1414
+ "type" : {
1415
+ "basetype" : "Enumeration",
1416
+ "disabled" : {
1417
+ "nodetype" : "namednumber",
1418
+ "number" : "2"
1419
+ },
1420
+ },
1421
+ }, # syntax
1422
+ "description" :
1423
+ """Only support for Mode 1 is REQUIRED.""",
1424
+ },
1425
+ "frAtmIwfConnArpTranslationEnabled" : {
1426
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB",
1427
+ "syntax" : {
1428
+ "type" : {
1429
+ "basetype" : "Enumeration",
1430
+ "disabled" : {
1431
+ "nodetype" : "namednumber",
1432
+ "number" : "2"
1433
+ },
1434
+ },
1435
+ }, # syntax
1436
+ "description" :
1437
+ """Support for ARP Translation is NOT REQUIRED.""",
1438
+ },
1439
+ }, # refinements
1440
+
1441
+ }, # compliance
1442
+ "frAtmIwfServiceCompliance" : {
1443
+ "nodetype" : "compliance",
1444
+ "moduleName" : "FR-ATM-PVC-SERVICE-IWF-MIB",
1445
+ "oid" : "1.3.6.1.2.1.86.3.2.2",
1446
+ "status" : "current",
1447
+ "description" :
1448
+ """The compliance statement for a CNM interface that
1449
+ implements the FR/ATM Interworking MIB.""",
1450
+ "requires" : {
1451
+ "frAtmIwfBasicGroup" : {
1452
+ "nodetype" : "mandatory",
1453
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB"
1454
+ },
1455
+ "frAtmIwfConnectionDescriptorGroup" : {
1456
+ "nodetype" : "mandatory",
1457
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB"
1458
+ },
1459
+ "frAtmIwfAtmVclTableAugmentGroup" : {
1460
+ "nodetype" : "mandatory",
1461
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB"
1462
+ },
1463
+ "frAtmIwfNotificationsGroup" : {
1464
+ "nodetype" : "mandatory",
1465
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB"
1466
+ },
1467
+ }, # requires
1468
+ "refinements" : {
1469
+ "frAtmIwfConnAdminStatus" : {
1470
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB",
1471
+ "access" : "readonly",
1472
+ "description" :
1473
+ """Write access is not REQUIRED.""",
1474
+ },
1475
+ "frAtmIwfConnDeToClpMappingMode" : {
1476
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB",
1477
+ "syntax" : {
1478
+ "type" : {
1479
+ "basetype" : "Enumeration",
1480
+ "mode1" : {
1481
+ "nodetype" : "namednumber",
1482
+ "number" : "1"
1483
+ },
1484
+ },
1485
+ }, # syntax
1486
+ "access" : "readonly",
1487
+ "description" :
1488
+ """Support for Mode 1 is REQUIRED. Other modes are
1489
+ OPTIONAL. Write access is NOT REQUIRED.""",
1490
+ },
1491
+ "frAtmIwfConnClpToDeMappingMode" : {
1492
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB",
1493
+ "syntax" : {
1494
+ "type" : {
1495
+ "basetype" : "Enumeration",
1496
+ "mode1" : {
1497
+ "nodetype" : "namednumber",
1498
+ "number" : "1"
1499
+ },
1500
+ },
1501
+ }, # syntax
1502
+ "access" : "readonly",
1503
+ "description" :
1504
+ """Support for Mode 1 is REQUIRED. Other modes are
1505
+ OPTIONAL. Write access is NOT REQUIRED.""",
1506
+ },
1507
+ "frAtmIwfConnCongestionMappingMode" : {
1508
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB",
1509
+ "syntax" : {
1510
+ "type" : {
1511
+ "basetype" : "Enumeration",
1512
+ "mode1" : {
1513
+ "nodetype" : "namednumber",
1514
+ "number" : "1"
1515
+ },
1516
+ },
1517
+ }, # syntax
1518
+ "access" : "readonly",
1519
+ "description" :
1520
+ """Support for Mode 1 is REQUIRED. Other modes are
1521
+ OPTIONAL. Write access is NOT REQUIRED.""",
1522
+ },
1523
+ "frAtmIwfConnEncapsulationMappingMode" : {
1524
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB",
1525
+ "syntax" : {
1526
+ "type" : {
1527
+ "basetype" : "Enumeration",
1528
+ "transparentMode" : {
1529
+ "nodetype" : "namednumber",
1530
+ "number" : "1"
1531
+ },
1532
+ },
1533
+ }, # syntax
1534
+ "access" : "readonly",
1535
+ "description" :
1536
+ """Support for Transparent Mode is REQUIRED.
1537
+ Translation Mode is OPTIONAL. Write access is not
1538
+ required.""",
1539
+ },
1540
+ "frAtmIwfConnEncapsulationMappings" : {
1541
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB",
1542
+ "syntax" : {
1543
+ "type" : {
1544
+ "basetype" : "Bits",
1545
+ "none" : {
1546
+ "nodetype" : "namednumber",
1547
+ "number" : "0"
1548
+ },
1549
+ },
1550
+ }, # syntax
1551
+ "access" : "readonly",
1552
+ "description" :
1553
+ """The IWF may provide one, some or none of the
1554
+ encapsulation translations defined in section
1555
+ 5.3.1 of FRF.8 [17]. Write access is not
1556
+ required.""",
1557
+ },
1558
+ "frAtmIwfConnFragAndReassEnabled" : {
1559
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB",
1560
+ "syntax" : {
1561
+ "type" : {
1562
+ "basetype" : "Enumeration",
1563
+ "disabled" : {
1564
+ "nodetype" : "namednumber",
1565
+ "number" : "2"
1566
+ },
1567
+ },
1568
+ }, # syntax
1569
+ "access" : "readonly",
1570
+ "description" :
1571
+ """Support for Fragmentation and Reassembly is NOT
1572
+ REQUIRED. Write access is not required.""",
1573
+ },
1574
+ "frAtmIwfConnArpTranslationEnabled" : {
1575
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB",
1576
+ "syntax" : {
1577
+ "type" : {
1578
+ "basetype" : "Enumeration",
1579
+ "disabled" : {
1580
+ "nodetype" : "namednumber",
1581
+ "number" : "2"
1582
+ },
1583
+ },
1584
+ }, # syntax
1585
+ "access" : "readonly",
1586
+ "description" :
1587
+ """Support for ARP Translation is not required.
1588
+ Write access is not required.""",
1589
+ },
1590
+ "frAtmIwfConnRowStatus" : {
1591
+ "module" : "FR-ATM-PVC-SERVICE-IWF-MIB",
1592
+ "access" : "readonly",
1593
+ "description" :
1594
+ """Write access is not required.""",
1595
+ },
1596
+ }, # refinements
1597
+
1598
+ }, # compliance
1599
+ }, # compliances
1600
+
1601
+ }