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,2372 @@
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 IPOA-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/IPOA-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "IPOA-MIB",
11
+
12
+ "IPOA-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF Internetworking Over NBMA Working
17
+ Group (ion)""",
18
+ "contact" :
19
+ """Maria Greene (greene@xedia.com)
20
+ Xedia Corp.
21
+
22
+ Jim Luciani (jluciani@BayNetworks.com)
23
+ Bay Networks
24
+
25
+ Kenneth White (kennethw@vnet.ibm.com)
26
+ IBM Corp.
27
+
28
+ Ted Kuo (tkuo@eos.ncsu.edu)
29
+ Bay Networks""",
30
+ "description" :
31
+ """This module defines a portion of the management
32
+ information base (MIB) for managing Classical IP and
33
+ ARP over ATM entities.""",
34
+ "revisions" : (
35
+ {
36
+ "date" : "1998-02-09 00:00",
37
+ "description" :
38
+ """[Revision added by libsmi due to a LAST-UPDATED clause.]""",
39
+ },
40
+ ),
41
+ "identity node" : "ipoaMIB",
42
+ },
43
+
44
+ "imports" : (
45
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
46
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
47
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
48
+ {"module" : "SNMPv2-SMI", "name" : "transmission"},
49
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
50
+ {"module" : "SNMPv2-SMI", "name" : "IpAddress"},
51
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
52
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
53
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
54
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
55
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
56
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
57
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
58
+ {"module" : "IP-MIB", "name" : "ipNetToMediaNetAddress"},
59
+ {"module" : "IP-MIB", "name" : "ipNetToMediaIfIndex"},
60
+ {"module" : "IP-MIB", "name" : "ipNetToMediaPhysAddress"},
61
+ {"module" : "IP-MIB", "name" : "ipAdEntAddr"},
62
+ {"module" : "IF-MIB", "name" : "InterfaceIndex"},
63
+ {"module" : "IF-MIB", "name" : "InterfaceIndexOrZero"},
64
+ ),
65
+
66
+ "typedefs" : {
67
+ "IpoaEncapsType" : {
68
+ "basetype" : "Enumeration",
69
+ "status" : "current",
70
+ "llcSnap" : {
71
+ "nodetype" : "namednumber",
72
+ "number" : "1"
73
+ },
74
+ "vcMuxed" : {
75
+ "nodetype" : "namednumber",
76
+ "number" : "2"
77
+ },
78
+ "other" : {
79
+ "nodetype" : "namednumber",
80
+ "number" : "3"
81
+ },
82
+ "description" :
83
+ """The encapsulation type used on a VC.""",
84
+ },
85
+ "IpoaVpiInteger" : {
86
+ "basetype" : "Integer32",
87
+ "status" : "current",
88
+ "ranges" : [
89
+ {
90
+ "min" : "0",
91
+ "max" : "255"
92
+ },
93
+ ],
94
+ "range" : {
95
+ "min" : "0",
96
+ "max" : "255"
97
+ },
98
+ "description" :
99
+ """An integer large enough to contain the value of a VPI.""",
100
+ },
101
+ "IpoaVciInteger" : {
102
+ "basetype" : "Integer32",
103
+ "status" : "current",
104
+ "ranges" : [
105
+ {
106
+ "min" : "0",
107
+ "max" : "65535"
108
+ },
109
+ ],
110
+ "range" : {
111
+ "min" : "0",
112
+ "max" : "65535"
113
+ },
114
+ "description" :
115
+ """An integer large enough to contain the value of a VCI.""",
116
+ },
117
+ "IpoaAtmAddr" : {
118
+ "basetype" : "OctetString",
119
+ "status" : "current",
120
+ "ranges" : [
121
+ {
122
+ "min" : "0",
123
+ "max" : "40"
124
+ },
125
+ ],
126
+ "range" : {
127
+ "min" : "0",
128
+ "max" : "40"
129
+ },
130
+ "format" : "1x",
131
+ "description" :
132
+ """The ATM address used by the network entity.
133
+ The semantics are implied by the length.
134
+ The address types are:
135
+
136
+ - no address (0 octets)
137
+ - E.164 (8 octets)
138
+ - NSAP (20 octets)
139
+
140
+ In addition, when subaddresses are used IpoaAtmAddr
141
+ may represent the concatenation of address and
142
+ subaddress. The associated address types are:
143
+
144
+ - E.164, E.164 (16 octets)
145
+ - E.164, NSAP (28 octets)
146
+ - NSAP, NSAP (40 octets)
147
+ Address lengths other than defined in this definition
148
+ imply address types defined elsewhere.
149
+ Note: The E.164 address is encoded in BCD format.""",
150
+ },
151
+ "IpoaAtmConnKind" : {
152
+ "basetype" : "Enumeration",
153
+ "status" : "current",
154
+ "pvc" : {
155
+ "nodetype" : "namednumber",
156
+ "number" : "1"
157
+ },
158
+ "svcIncoming" : {
159
+ "nodetype" : "namednumber",
160
+ "number" : "2"
161
+ },
162
+ "svcOutgoing" : {
163
+ "nodetype" : "namednumber",
164
+ "number" : "3"
165
+ },
166
+ "spvcInitiator" : {
167
+ "nodetype" : "namednumber",
168
+ "number" : "4"
169
+ },
170
+ "spvcTarget" : {
171
+ "nodetype" : "namednumber",
172
+ "number" : "5"
173
+ },
174
+ "description" :
175
+ """The use of call control. The use is as follows:
176
+ pvc(1)
177
+ Virtual link of a PVC. Should not be
178
+ used in a PVC/SVC (i.e., SPVC)
179
+ crossconnect.
180
+ svcIncoming(2)
181
+ Virtual link established after a
182
+ received signaling request to setup
183
+ an SVC.
184
+ svcOutgoing(3)
185
+ Virtual link established after a
186
+ transmitted or forwarded signaling
187
+ request to setup an SVC.
188
+ spvcInitiator(4)
189
+ Virtual link at the PVC side of an
190
+ SVC/PVC crossconnect, where the
191
+ switch is the initiator of the SPVC
192
+ setup.
193
+ spvcTarget(5)
194
+ Virtual link at the PVC side of an
195
+ SVC/PVC crossconnect, where the
196
+ switch is the target of the SPVC
197
+ setup.
198
+
199
+ An spvcInitiator is always cross-connected to
200
+ an svcOutgoing, and an spvcTarget is always
201
+ cross-connected to an svcIncoming.""",
202
+ },
203
+ }, # typedefs
204
+
205
+ "nodes" : {
206
+ "ipoaMIB" : {
207
+ "nodetype" : "node",
208
+ "moduleName" : "IPOA-MIB",
209
+ "oid" : "1.3.6.1.2.1.10.46",
210
+ "status" : "current",
211
+ }, # node
212
+ "ipoaObjects" : {
213
+ "nodetype" : "node",
214
+ "moduleName" : "IPOA-MIB",
215
+ "oid" : "1.3.6.1.2.1.10.46.1",
216
+ }, # node
217
+ "ipoaLisTrapEnable" : {
218
+ "nodetype" : "scalar",
219
+ "moduleName" : "IPOA-MIB",
220
+ "oid" : "1.3.6.1.2.1.10.46.1.1",
221
+ "status" : "current",
222
+ "syntax" : {
223
+ "type" : {
224
+ "basetype" : "Enumeration",
225
+ "enabled" : {
226
+ "nodetype" : "namednumber",
227
+ "number" : "1"
228
+ },
229
+ "disabled" : {
230
+ "nodetype" : "namednumber",
231
+ "number" : "2"
232
+ },
233
+ },
234
+ },
235
+ "access" : "readwrite",
236
+ "description" :
237
+ """Indicates whether ipoaLisCreate and ipoaLisDelete
238
+ traps should be generated by this system.
239
+
240
+ By default, this object should have the value
241
+ enabled(1) for systems where ATMARP Servers are
242
+ present and disabled(2) on systems where only
243
+ clients reside.""",
244
+ }, # scalar
245
+ "ipoaLisTable" : {
246
+ "nodetype" : "table",
247
+ "moduleName" : "IPOA-MIB",
248
+ "oid" : "1.3.6.1.2.1.10.46.1.2",
249
+ "status" : "current",
250
+ "description" :
251
+ """There is one entry in this table for every Logical IP
252
+ Subnet (LIS) of which this system is a member.
253
+
254
+ The bulk of the objects in an ipoaLisEntry exists
255
+ to control ATMARP for a particular LIS. In a PVC only
256
+ environment it is implementation dependent as to
257
+ whether this table should be supported.""",
258
+ }, # table
259
+ "ipoaLisEntry" : {
260
+ "nodetype" : "row",
261
+ "moduleName" : "IPOA-MIB",
262
+ "oid" : "1.3.6.1.2.1.10.46.1.2.1",
263
+ "create" : "true",
264
+ "status" : "current",
265
+ "linkage" : [
266
+ "ipoaLisSubnetAddr",
267
+ ],
268
+ "description" :
269
+ """Information about a single LIS of which this system
270
+ is a member.
271
+
272
+ Membership in a LIS is independent of the actual ATM
273
+ interfaces being used. The ipoaLisTable defines
274
+ all LISs that a system is a member of. The ipAddrTable
275
+ and the ipoaClientTable provides the mapping from local
276
+ IP address to ATM interface. The ipoaLisIfMappingTable
277
+ provides the mappings between Logical IP Subnets and
278
+ interfaces.
279
+ The ipoaLisTable is indexed by ipoaLisSubnetAddr (IP
280
+ subnet address). An entry in the ipoaLisTable should
281
+ exist for each ipAddrEntry that is associated with an
282
+ ATM related interface used for Classical IP and ARP
283
+ over ATM traffic.
284
+
285
+ Its ipAdEntAddr and ipAdEntNetMask when ANDed together
286
+ should equal the ipoaLisSubnetAddr of the corresponding
287
+ ipoaLisEntry.""",
288
+ }, # row
289
+ "ipoaLisSubnetAddr" : {
290
+ "nodetype" : "column",
291
+ "moduleName" : "IPOA-MIB",
292
+ "oid" : "1.3.6.1.2.1.10.46.1.2.1.1",
293
+ "status" : "current",
294
+ "syntax" : {
295
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
296
+ },
297
+ "access" : "readonly",
298
+ "description" :
299
+ """The IP subnet address associated with this LIS.""",
300
+ }, # column
301
+ "ipoaLisDefaultMtu" : {
302
+ "nodetype" : "column",
303
+ "moduleName" : "IPOA-MIB",
304
+ "oid" : "1.3.6.1.2.1.10.46.1.2.1.2",
305
+ "status" : "current",
306
+ "syntax" : {
307
+ "type" : {
308
+ "basetype" : "Integer32",
309
+ "ranges" : [
310
+ {
311
+ "min" : "0",
312
+ "max" : "65535"
313
+ },
314
+ ],
315
+ "range" : {
316
+ "min" : "0",
317
+ "max" : "65535"
318
+ },
319
+ },
320
+ },
321
+ "access" : "readwrite",
322
+ "default" : "9180",
323
+ "description" :
324
+ """The default MTU used within this LIS. Note that the
325
+ actual MTU used for a VC between two members of the
326
+ LIS may be negotiated during connection setup and may
327
+ be different than this value. The ipoaVcNegotiatedMtu
328
+ object indicates the actual MTU in use for a
329
+ particular VC.""",
330
+ }, # column
331
+ "ipoaLisDefaultEncapsType" : {
332
+ "nodetype" : "column",
333
+ "moduleName" : "IPOA-MIB",
334
+ "oid" : "1.3.6.1.2.1.10.46.1.2.1.3",
335
+ "status" : "current",
336
+ "syntax" : {
337
+ "type" : { "module" :"IPOA-MIB", "name" : "IpoaEncapsType"},
338
+ },
339
+ "access" : "readwrite",
340
+ "default" : "llcSnap",
341
+ "description" :
342
+ """The default encapsulation to use on VCs created for
343
+ this LIS. Note that the actual encapsulation type may
344
+ be negotiated during connection setup and may be
345
+ different than this value. The
346
+ ipoaVcNegotiatedEncapsType object indicates the actual
347
+ encapsulation in use for a particular VC.""",
348
+ }, # column
349
+ "ipoaLisInactivityTimer" : {
350
+ "nodetype" : "column",
351
+ "moduleName" : "IPOA-MIB",
352
+ "oid" : "1.3.6.1.2.1.10.46.1.2.1.4",
353
+ "status" : "current",
354
+ "syntax" : {
355
+ "type" : { "module" :"", "name" : "Integer32"},
356
+ },
357
+ "access" : "readwrite",
358
+ "default" : "1200",
359
+ "units" : "seconds",
360
+ "description" :
361
+ """The time, in seconds, before a call established for an
362
+ ipNetToMediaEntry on a client will timeout due to no
363
+ traffic being passed on the VC. A value of 0 implies
364
+ no time out.""",
365
+ "reference" :
366
+ """RFC 1755, Sec. 3.4 VC Teardown""",
367
+ }, # column
368
+ "ipoaLisMinHoldingTime" : {
369
+ "nodetype" : "column",
370
+ "moduleName" : "IPOA-MIB",
371
+ "oid" : "1.3.6.1.2.1.10.46.1.2.1.5",
372
+ "status" : "current",
373
+ "syntax" : {
374
+ "type" : {
375
+ "basetype" : "Integer32",
376
+ "ranges" : [
377
+ {
378
+ "min" : "0",
379
+ "max" : "65535"
380
+ },
381
+ ],
382
+ "range" : {
383
+ "min" : "0",
384
+ "max" : "65535"
385
+ },
386
+ },
387
+ },
388
+ "access" : "readwrite",
389
+ "default" : "60",
390
+ "units" : "seconds",
391
+ "description" :
392
+ """The minimum amount of time, in seconds, that a call
393
+ will remain open. If 0 then ipoaInactivityTimer will
394
+ completely determine when a call is terminated.""",
395
+ "reference" :
396
+ """RFC 1755, Sec. 3.4 VC Teardown""",
397
+ }, # column
398
+ "ipoaLisQDepth" : {
399
+ "nodetype" : "column",
400
+ "moduleName" : "IPOA-MIB",
401
+ "oid" : "1.3.6.1.2.1.10.46.1.2.1.6",
402
+ "status" : "current",
403
+ "syntax" : {
404
+ "type" : {
405
+ "basetype" : "Integer32",
406
+ "ranges" : [
407
+ {
408
+ "min" : "1",
409
+ "max" : "65535"
410
+ },
411
+ ],
412
+ "range" : {
413
+ "min" : "1",
414
+ "max" : "65535"
415
+ },
416
+ },
417
+ },
418
+ "access" : "readwrite",
419
+ "default" : "1",
420
+ "units" : "packets",
421
+ "description" :
422
+ """The maximum number of outstanding requests that are
423
+ allowed while waiting for ATMARP replies and
424
+ InATMARP replies for this LIS.""",
425
+ }, # column
426
+ "ipoaLisMaxCalls" : {
427
+ "nodetype" : "column",
428
+ "moduleName" : "IPOA-MIB",
429
+ "oid" : "1.3.6.1.2.1.10.46.1.2.1.7",
430
+ "status" : "current",
431
+ "syntax" : {
432
+ "type" : {
433
+ "basetype" : "Integer32",
434
+ "ranges" : [
435
+ {
436
+ "min" : "1",
437
+ "max" : "65535"
438
+ },
439
+ ],
440
+ "range" : {
441
+ "min" : "1",
442
+ "max" : "65535"
443
+ },
444
+ },
445
+ },
446
+ "access" : "readwrite",
447
+ "default" : "500",
448
+ "description" :
449
+ """The maximum number of SVCs that can be established
450
+ simultaneously for this LIS.""",
451
+ }, # column
452
+ "ipoaLisCacheEntryAge" : {
453
+ "nodetype" : "column",
454
+ "moduleName" : "IPOA-MIB",
455
+ "oid" : "1.3.6.1.2.1.10.46.1.2.1.8",
456
+ "status" : "current",
457
+ "syntax" : {
458
+ "type" : {
459
+ "basetype" : "Integer32",
460
+ "ranges" : [
461
+ {
462
+ "min" : "60",
463
+ "max" : "1200"
464
+ },
465
+ ],
466
+ "range" : {
467
+ "min" : "60",
468
+ "max" : "1200"
469
+ },
470
+ },
471
+ },
472
+ "access" : "readwrite",
473
+ "default" : "900",
474
+ "units" : "seconds",
475
+ "description" :
476
+ """The time, in seconds, before an ipNetToMediaEntry will
477
+ age out of the table. Note that the default value will
478
+ be different for a client and a server. An ATMARP
479
+ Server should use a default of 1200 and a client should
480
+ use 900.""",
481
+ }, # column
482
+ "ipoaLisRetries" : {
483
+ "nodetype" : "column",
484
+ "moduleName" : "IPOA-MIB",
485
+ "oid" : "1.3.6.1.2.1.10.46.1.2.1.9",
486
+ "status" : "current",
487
+ "syntax" : {
488
+ "type" : {
489
+ "basetype" : "Integer32",
490
+ "ranges" : [
491
+ {
492
+ "min" : "0",
493
+ "max" : "10"
494
+ },
495
+ ],
496
+ "range" : {
497
+ "min" : "0",
498
+ "max" : "10"
499
+ },
500
+ },
501
+ },
502
+ "access" : "readwrite",
503
+ "default" : "2",
504
+ "description" :
505
+ """The number of times the ATMARP request will be retried
506
+ when no response is received in the timeout interval
507
+ indicated by ipoaLisTimeout.""",
508
+ }, # column
509
+ "ipoaLisTimeout" : {
510
+ "nodetype" : "column",
511
+ "moduleName" : "IPOA-MIB",
512
+ "oid" : "1.3.6.1.2.1.10.46.1.2.1.10",
513
+ "status" : "current",
514
+ "syntax" : {
515
+ "type" : {
516
+ "basetype" : "Integer32",
517
+ "ranges" : [
518
+ {
519
+ "min" : "1",
520
+ "max" : "60"
521
+ },
522
+ ],
523
+ "range" : {
524
+ "min" : "1",
525
+ "max" : "60"
526
+ },
527
+ },
528
+ },
529
+ "access" : "readwrite",
530
+ "default" : "10",
531
+ "units" : "seconds",
532
+ "description" :
533
+ """The time to wait, in seconds, before retransmission
534
+ of an ARP request.""",
535
+ }, # column
536
+ "ipoaLisDefaultPeakCellRate" : {
537
+ "nodetype" : "column",
538
+ "moduleName" : "IPOA-MIB",
539
+ "oid" : "1.3.6.1.2.1.10.46.1.2.1.11",
540
+ "status" : "current",
541
+ "syntax" : {
542
+ "type" : { "module" :"", "name" : "Integer32"},
543
+ },
544
+ "access" : "readwrite",
545
+ "description" :
546
+ """This object is the signalling parameter that
547
+ should be used when setting up all best effort
548
+ VCCs (Virtual Channel Connections).
549
+ This parameter applies to the forward and
550
+ backward direction on a per best effort VCC basis.
551
+ A value of zero implies that no configured default
552
+ exists and that local policy should be used to
553
+ determine the actual default to used during
554
+ call setup. ATM Signaling Support for IP over ATM
555
+ (RFC 1755) recommends 1/10th of the ATM interface's
556
+ speed.""",
557
+ }, # column
558
+ "ipoaLisActiveVcs" : {
559
+ "nodetype" : "column",
560
+ "moduleName" : "IPOA-MIB",
561
+ "oid" : "1.3.6.1.2.1.10.46.1.2.1.12",
562
+ "status" : "current",
563
+ "syntax" : {
564
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
565
+ },
566
+ "access" : "readonly",
567
+ "description" :
568
+ """Number of active SVCs for this LIS.""",
569
+ }, # column
570
+ "ipoaLisRowStatus" : {
571
+ "nodetype" : "column",
572
+ "moduleName" : "IPOA-MIB",
573
+ "oid" : "1.3.6.1.2.1.10.46.1.2.1.13",
574
+ "status" : "current",
575
+ "syntax" : {
576
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
577
+ },
578
+ "access" : "readwrite",
579
+ "description" :
580
+ """This object allows entries to be created and deleted
581
+ in the ipoaLisTable.
582
+
583
+ When the ipoaLisRowStatus deleted (by setting this
584
+ object to destroy(6)), this has the side-effect of
585
+ removing all entries from the ipNetToMediaTable that
586
+ are associated with this LIS (in other words, it
587
+ flushes the entity's ATMARP cache). It also removes
588
+ the ipoaVcTable entries that were associated with those
589
+ ipNetToMediaTable entries. Destroying the row also
590
+ removes the corresponding entries in the
591
+ ipoaArpSrvrTable, ipoaArpClientTable,
592
+ ipoaLisIfMappingTable, and ipoaArpRemoteSrvrTable.
593
+
594
+ Entries in both the ipNetToMediaTable and the
595
+ ipoaVcTable that are associated with a
596
+ ipoaConfigPvcEntry are not affected by changes to
597
+ ipoaLisRowStatus.""",
598
+ "reference" :
599
+ """RFC 1903, 'Textual Conventions for Version 2 of the
600
+ Simple Network Management Protocol (SNMPv2).'""",
601
+ }, # column
602
+ "ipoaLisIfMappingTable" : {
603
+ "nodetype" : "table",
604
+ "moduleName" : "IPOA-MIB",
605
+ "oid" : "1.3.6.1.2.1.10.46.1.3",
606
+ "status" : "current",
607
+ "description" :
608
+ """There is one entry in this table for every combination
609
+ of ipoaLisEntry and IP over ATM interface.""",
610
+ }, # table
611
+ "ipoaLisIfMappingEntry" : {
612
+ "nodetype" : "row",
613
+ "moduleName" : "IPOA-MIB",
614
+ "oid" : "1.3.6.1.2.1.10.46.1.3.1",
615
+ "create" : "true",
616
+ "status" : "current",
617
+ "linkage" : [
618
+ "ipoaLisSubnetAddr",
619
+ "ipoaLisIfMappingIfIndex",
620
+ ],
621
+ "description" :
622
+ """Defines an entry in the ipoaLisIfMappingTable.""",
623
+ }, # row
624
+ "ipoaLisIfMappingIfIndex" : {
625
+ "nodetype" : "column",
626
+ "moduleName" : "IPOA-MIB",
627
+ "oid" : "1.3.6.1.2.1.10.46.1.3.1.1",
628
+ "status" : "current",
629
+ "syntax" : {
630
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
631
+ },
632
+ "access" : "noaccess",
633
+ "description" :
634
+ """The ipAdEntIfIndex object from an ipAddrEntry
635
+ is used as an index to this table when its
636
+ ipAdEntAddr is in the subnet implied by
637
+ ipoaLisSubnetAddr.""",
638
+ }, # column
639
+ "ipoaLisIfMappingRowStatus" : {
640
+ "nodetype" : "column",
641
+ "moduleName" : "IPOA-MIB",
642
+ "oid" : "1.3.6.1.2.1.10.46.1.3.1.2",
643
+ "status" : "current",
644
+ "syntax" : {
645
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
646
+ },
647
+ "access" : "readwrite",
648
+ "description" :
649
+ """This object allows entries to be created and deleted
650
+ in the ipoaLisIfMappingTable.""",
651
+ "reference" :
652
+ """RFC 1903, 'Textual Conventions for Version 2 of the
653
+ Simple Network Management Protocol (SNMPv2).'""",
654
+ }, # column
655
+ "ipoaArpClientTable" : {
656
+ "nodetype" : "table",
657
+ "moduleName" : "IPOA-MIB",
658
+ "oid" : "1.3.6.1.2.1.10.46.1.4",
659
+ "status" : "current",
660
+ "description" :
661
+ """The ATMARP clients running on this system.""",
662
+ }, # table
663
+ "ipoaArpClientEntry" : {
664
+ "nodetype" : "row",
665
+ "moduleName" : "IPOA-MIB",
666
+ "oid" : "1.3.6.1.2.1.10.46.1.4.1",
667
+ "create" : "true",
668
+ "status" : "current",
669
+ "linkage" : [
670
+ "ipAdEntAddr",
671
+ ],
672
+ "description" :
673
+ """Information about a single ATMARP Client. Clients
674
+ can be started and stopped by adding and removing
675
+ entries from this table. An entry in the
676
+ ipoaArpClientTable has a corresponding entry in the
677
+ ipAddrTable. Both are indexed by ipAdEntAddr.
678
+ The ifIndex and subnet mask of a client entry are the
679
+ ipAddrEntry's ipAdEntIfIndex and ipAdEntNetMask,
680
+ respectively.
681
+
682
+ Note that adding and removing entries from this table
683
+ may have the same effect on the corresponding
684
+ ipAddrTable entry. Row creation of an entry in this
685
+ table requires that either the corresponding ipAddrTable
686
+ entry exists or that ipAdEntIfIndex and ipAdEntNetMask
687
+ be specified in the creation of an ipoaArpClientEntry
688
+ at a minimum in order to create the corresponding
689
+ ipAddrEntry. Specification of ipAdEntBcastAddr and
690
+ ipAdEntReasmMaxSize to complete an ipAddrEntry is
691
+ implementation dependent.
692
+ Whether a corresponding ipAddrEntry is deleted during
693
+ the deletion of an ipoaArpClientEntry is considered
694
+ implementation dependent.""",
695
+ }, # row
696
+ "ipoaArpClientAtmAddr" : {
697
+ "nodetype" : "column",
698
+ "moduleName" : "IPOA-MIB",
699
+ "oid" : "1.3.6.1.2.1.10.46.1.4.1.1",
700
+ "status" : "current",
701
+ "syntax" : {
702
+ "type" : { "module" :"IPOA-MIB", "name" : "IpoaAtmAddr"},
703
+ },
704
+ "access" : "readwrite",
705
+ "description" :
706
+ """The ATM address of the client.""",
707
+ }, # column
708
+ "ipoaArpClientSrvrInUse" : {
709
+ "nodetype" : "column",
710
+ "moduleName" : "IPOA-MIB",
711
+ "oid" : "1.3.6.1.2.1.10.46.1.4.1.2",
712
+ "status" : "current",
713
+ "syntax" : {
714
+ "type" : { "module" :"IPOA-MIB", "name" : "IpoaAtmAddr"},
715
+ },
716
+ "access" : "readonly",
717
+ "default" : "",
718
+ "description" :
719
+ """The ATM address of the ATMARP Server,
720
+ ipoaArpRemoteSrvrAtmAddr, in use by this client. A
721
+ zero length octet string implies that communication
722
+ with a Remote ATMARP Server is not in effect.""",
723
+ }, # column
724
+ "ipoaArpClientInArpInReqs" : {
725
+ "nodetype" : "column",
726
+ "moduleName" : "IPOA-MIB",
727
+ "oid" : "1.3.6.1.2.1.10.46.1.4.1.3",
728
+ "status" : "current",
729
+ "syntax" : {
730
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
731
+ },
732
+ "access" : "readonly",
733
+ "description" :
734
+ """The number of InATMARP requests received by this
735
+ client.""",
736
+ }, # column
737
+ "ipoaArpClientInArpOutReqs" : {
738
+ "nodetype" : "column",
739
+ "moduleName" : "IPOA-MIB",
740
+ "oid" : "1.3.6.1.2.1.10.46.1.4.1.4",
741
+ "status" : "current",
742
+ "syntax" : {
743
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
744
+ },
745
+ "access" : "readonly",
746
+ "description" :
747
+ """The number of InATMARP requests sent by this client.""",
748
+ }, # column
749
+ "ipoaArpClientInArpInReplies" : {
750
+ "nodetype" : "column",
751
+ "moduleName" : "IPOA-MIB",
752
+ "oid" : "1.3.6.1.2.1.10.46.1.4.1.5",
753
+ "status" : "current",
754
+ "syntax" : {
755
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
756
+ },
757
+ "access" : "readonly",
758
+ "description" :
759
+ """The number of InATMARP replies received by this
760
+ client.""",
761
+ }, # column
762
+ "ipoaArpClientInArpOutReplies" : {
763
+ "nodetype" : "column",
764
+ "moduleName" : "IPOA-MIB",
765
+ "oid" : "1.3.6.1.2.1.10.46.1.4.1.6",
766
+ "status" : "current",
767
+ "syntax" : {
768
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
769
+ },
770
+ "access" : "readonly",
771
+ "description" :
772
+ """Total number of InATMARP replies sent by this client.""",
773
+ }, # column
774
+ "ipoaArpClientInArpInvalidInReqs" : {
775
+ "nodetype" : "column",
776
+ "moduleName" : "IPOA-MIB",
777
+ "oid" : "1.3.6.1.2.1.10.46.1.4.1.7",
778
+ "status" : "current",
779
+ "syntax" : {
780
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
781
+ },
782
+ "access" : "readonly",
783
+ "description" :
784
+ """The number of times that this client detected an
785
+ invalid InATMARP request.""",
786
+ }, # column
787
+ "ipoaArpClientInArpInvalidOutReqs" : {
788
+ "nodetype" : "column",
789
+ "moduleName" : "IPOA-MIB",
790
+ "oid" : "1.3.6.1.2.1.10.46.1.4.1.8",
791
+ "status" : "current",
792
+ "syntax" : {
793
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
794
+ },
795
+ "access" : "readonly",
796
+ "description" :
797
+ """The number of times that this client did not
798
+ receive an InATMARP reply.""",
799
+ }, # column
800
+ "ipoaArpClientArpInReqs" : {
801
+ "nodetype" : "column",
802
+ "moduleName" : "IPOA-MIB",
803
+ "oid" : "1.3.6.1.2.1.10.46.1.4.1.9",
804
+ "status" : "current",
805
+ "syntax" : {
806
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
807
+ },
808
+ "access" : "readonly",
809
+ "description" :
810
+ """Total number of ATMARP requests received by this
811
+ client.""",
812
+ }, # column
813
+ "ipoaArpClientArpOutReqs" : {
814
+ "nodetype" : "column",
815
+ "moduleName" : "IPOA-MIB",
816
+ "oid" : "1.3.6.1.2.1.10.46.1.4.1.10",
817
+ "status" : "current",
818
+ "syntax" : {
819
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
820
+ },
821
+ "access" : "readonly",
822
+ "description" :
823
+ """Total number of ATMARP requests sent by this client.""",
824
+ }, # column
825
+ "ipoaArpClientArpInReplies" : {
826
+ "nodetype" : "column",
827
+ "moduleName" : "IPOA-MIB",
828
+ "oid" : "1.3.6.1.2.1.10.46.1.4.1.11",
829
+ "status" : "current",
830
+ "syntax" : {
831
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
832
+ },
833
+ "access" : "readonly",
834
+ "description" :
835
+ """Total number of ATMARP replies received by this
836
+ client.""",
837
+ }, # column
838
+ "ipoaArpClientArpOutReplies" : {
839
+ "nodetype" : "column",
840
+ "moduleName" : "IPOA-MIB",
841
+ "oid" : "1.3.6.1.2.1.10.46.1.4.1.12",
842
+ "status" : "current",
843
+ "syntax" : {
844
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
845
+ },
846
+ "access" : "readonly",
847
+ "description" :
848
+ """Total number of ATMARP replies sent by this client.""",
849
+ }, # column
850
+ "ipoaArpClientArpInNaks" : {
851
+ "nodetype" : "column",
852
+ "moduleName" : "IPOA-MIB",
853
+ "oid" : "1.3.6.1.2.1.10.46.1.4.1.13",
854
+ "status" : "current",
855
+ "syntax" : {
856
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
857
+ },
858
+ "access" : "readonly",
859
+ "description" :
860
+ """Total number of negative ATMARP replies
861
+ received by this client.""",
862
+ }, # column
863
+ "ipoaArpClientArpOutNaks" : {
864
+ "nodetype" : "column",
865
+ "moduleName" : "IPOA-MIB",
866
+ "oid" : "1.3.6.1.2.1.10.46.1.4.1.14",
867
+ "status" : "current",
868
+ "syntax" : {
869
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
870
+ },
871
+ "access" : "readonly",
872
+ "description" :
873
+ """Total number of negative ATMARP replies sent by
874
+ this client.
875
+
876
+ Classic IP and ARP over ATM does not require an
877
+ ATMARP client to transmit an ATMARP_NAK upon
878
+ receipt of an ATMARP request from another ATMARP
879
+ client. However, implementation experience has
880
+ shown that this error condition is somewhat easy
881
+ to create inadvertently by configuring one ATMARP
882
+ client with an ipoaArpRemoteSrvrTable entry
883
+ containing an ipoaArpRemoteSrvrAtmAddr value which
884
+ is the ATM address of another ATMARP client-only
885
+ system.
886
+
887
+ If an ATMARP client supports the transmission of
888
+ ATMARP_NAKs, then it should increment
889
+ ipoaArpClientArpOutNaks each time it transmits
890
+ an ATMARP_NAK. Otherwise, support of this
891
+ object is considered optional.""",
892
+ }, # column
893
+ "ipoaArpClientArpUnknownOps" : {
894
+ "nodetype" : "column",
895
+ "moduleName" : "IPOA-MIB",
896
+ "oid" : "1.3.6.1.2.1.10.46.1.4.1.15",
897
+ "status" : "current",
898
+ "syntax" : {
899
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
900
+ },
901
+ "access" : "readonly",
902
+ "description" :
903
+ """The number of times that this client received
904
+ an ATMARP message with an operation code for which
905
+ it is not coded to support.""",
906
+ }, # column
907
+ "ipoaArpClientArpNoSrvrResps" : {
908
+ "nodetype" : "column",
909
+ "moduleName" : "IPOA-MIB",
910
+ "oid" : "1.3.6.1.2.1.10.46.1.4.1.16",
911
+ "status" : "current",
912
+ "syntax" : {
913
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
914
+ },
915
+ "access" : "readonly",
916
+ "description" :
917
+ """The number of times this client failed to receive
918
+ a response from a ATMARP Server within the
919
+ ipoaLisTimeout value for ipoaLisRetries times.
920
+ This may imply that the client will re-elect a
921
+ new primary ATMARP Server for this LIS from the
922
+ ipoaArpRemoteSrvrTable.""",
923
+ }, # column
924
+ "ipoaArpClientRowStatus" : {
925
+ "nodetype" : "column",
926
+ "moduleName" : "IPOA-MIB",
927
+ "oid" : "1.3.6.1.2.1.10.46.1.4.1.17",
928
+ "status" : "current",
929
+ "syntax" : {
930
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
931
+ },
932
+ "access" : "readwrite",
933
+ "description" :
934
+ """This object allows entries to be created and
935
+ deleted from the ipoaArpClientTable.""",
936
+ "reference" :
937
+ """RFC 1903, 'Textual Conventions for Version 2 of the
938
+ Simple Network Management Protocol (SNMPv2).'""",
939
+ }, # column
940
+ "ipoaArpSrvrTable" : {
941
+ "nodetype" : "table",
942
+ "moduleName" : "IPOA-MIB",
943
+ "oid" : "1.3.6.1.2.1.10.46.1.5",
944
+ "status" : "current",
945
+ "description" :
946
+ """The ATMARP Servers running on this system.""",
947
+ }, # table
948
+ "ipoaArpSrvrEntry" : {
949
+ "nodetype" : "row",
950
+ "moduleName" : "IPOA-MIB",
951
+ "oid" : "1.3.6.1.2.1.10.46.1.5.1",
952
+ "create" : "true",
953
+ "status" : "current",
954
+ "linkage" : [
955
+ "ipAdEntAddr",
956
+ "ipoaArpSrvrAddr",
957
+ ],
958
+ "description" :
959
+ """Information about an ATMARP Server within a LIS. An
960
+ entry in this table has two indexes: first ipAdEntAddr,
961
+ which is the IP address that this system uses as a
962
+ member of the LIS, and then ipoaArpSrvrAddr, which is
963
+ the ATM address of the ATMARP Server.
964
+
965
+ Entries may be created by a management application
966
+ using the ipoaArpSrvrRowStatus object. Entries in this
967
+ table may also be created by the system and not by a
968
+ management application, for example via ILMI.
969
+
970
+ Entries in this table may be deleted by setting the
971
+ ipoaArpSrvrRowStatus object to 'destroy(6)'. This
972
+ includes entries that were added by the system and not
973
+ by a management application.""",
974
+ }, # row
975
+ "ipoaArpSrvrAddr" : {
976
+ "nodetype" : "column",
977
+ "moduleName" : "IPOA-MIB",
978
+ "oid" : "1.3.6.1.2.1.10.46.1.5.1.1",
979
+ "status" : "current",
980
+ "syntax" : {
981
+ "type" : { "module" :"IPOA-MIB", "name" : "IpoaAtmAddr"},
982
+ },
983
+ "access" : "noaccess",
984
+ "description" :
985
+ """The ATM address of the ATMARP Server.""",
986
+ }, # column
987
+ "ipoaArpSrvrLis" : {
988
+ "nodetype" : "column",
989
+ "moduleName" : "IPOA-MIB",
990
+ "oid" : "1.3.6.1.2.1.10.46.1.5.1.2",
991
+ "status" : "current",
992
+ "syntax" : {
993
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
994
+ },
995
+ "access" : "readwrite",
996
+ "description" :
997
+ """The subnet address that identifies the LIS with
998
+ which this server is associated.""",
999
+ }, # column
1000
+ "ipoaArpSrvrInArpInReqs" : {
1001
+ "nodetype" : "column",
1002
+ "moduleName" : "IPOA-MIB",
1003
+ "oid" : "1.3.6.1.2.1.10.46.1.5.1.3",
1004
+ "status" : "current",
1005
+ "syntax" : {
1006
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1007
+ },
1008
+ "access" : "readonly",
1009
+ "description" :
1010
+ """The number of InATMARP requests received by this
1011
+ ATMARP Server.""",
1012
+ }, # column
1013
+ "ipoaArpSrvrInArpOutReqs" : {
1014
+ "nodetype" : "column",
1015
+ "moduleName" : "IPOA-MIB",
1016
+ "oid" : "1.3.6.1.2.1.10.46.1.5.1.4",
1017
+ "status" : "current",
1018
+ "syntax" : {
1019
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1020
+ },
1021
+ "access" : "readonly",
1022
+ "description" :
1023
+ """The number of InATMARP requests sent by this ATMARP
1024
+ Server.""",
1025
+ }, # column
1026
+ "ipoaArpSrvrInArpInReplies" : {
1027
+ "nodetype" : "column",
1028
+ "moduleName" : "IPOA-MIB",
1029
+ "oid" : "1.3.6.1.2.1.10.46.1.5.1.5",
1030
+ "status" : "current",
1031
+ "syntax" : {
1032
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1033
+ },
1034
+ "access" : "readonly",
1035
+ "description" :
1036
+ """The number of InATMARP replies received by this
1037
+ ATMARP Server.""",
1038
+ }, # column
1039
+ "ipoaArpSrvrInArpOutReplies" : {
1040
+ "nodetype" : "column",
1041
+ "moduleName" : "IPOA-MIB",
1042
+ "oid" : "1.3.6.1.2.1.10.46.1.5.1.6",
1043
+ "status" : "current",
1044
+ "syntax" : {
1045
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1046
+ },
1047
+ "access" : "readonly",
1048
+ "description" :
1049
+ """The number of InATMARP replies sent by this ATMARP
1050
+ Server.""",
1051
+ }, # column
1052
+ "ipoaArpSrvrInArpInvalidInReqs" : {
1053
+ "nodetype" : "column",
1054
+ "moduleName" : "IPOA-MIB",
1055
+ "oid" : "1.3.6.1.2.1.10.46.1.5.1.7",
1056
+ "status" : "current",
1057
+ "syntax" : {
1058
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1059
+ },
1060
+ "access" : "readonly",
1061
+ "description" :
1062
+ """The number of invalid InATMARP requests received by
1063
+ this ATMARP Server.""",
1064
+ }, # column
1065
+ "ipoaArpSrvrInArpInvalidOutReqs" : {
1066
+ "nodetype" : "column",
1067
+ "moduleName" : "IPOA-MIB",
1068
+ "oid" : "1.3.6.1.2.1.10.46.1.5.1.8",
1069
+ "status" : "current",
1070
+ "syntax" : {
1071
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1072
+ },
1073
+ "access" : "readonly",
1074
+ "description" :
1075
+ """The number of times that this server did not receive
1076
+ an InATMARP reply.""",
1077
+ }, # column
1078
+ "ipoaArpSrvrArpInReqs" : {
1079
+ "nodetype" : "column",
1080
+ "moduleName" : "IPOA-MIB",
1081
+ "oid" : "1.3.6.1.2.1.10.46.1.5.1.9",
1082
+ "status" : "current",
1083
+ "syntax" : {
1084
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1085
+ },
1086
+ "access" : "readonly",
1087
+ "description" :
1088
+ """Total number of ATMARP requests received by this
1089
+ ATMARP Server.""",
1090
+ }, # column
1091
+ "ipoaArpSrvrArpOutReplies" : {
1092
+ "nodetype" : "column",
1093
+ "moduleName" : "IPOA-MIB",
1094
+ "oid" : "1.3.6.1.2.1.10.46.1.5.1.10",
1095
+ "status" : "current",
1096
+ "syntax" : {
1097
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1098
+ },
1099
+ "access" : "readonly",
1100
+ "description" :
1101
+ """Total number of ATMARP replies sent by this ATMARP
1102
+ Server.""",
1103
+ }, # column
1104
+ "ipoaArpSrvrArpOutNaks" : {
1105
+ "nodetype" : "column",
1106
+ "moduleName" : "IPOA-MIB",
1107
+ "oid" : "1.3.6.1.2.1.10.46.1.5.1.11",
1108
+ "status" : "current",
1109
+ "syntax" : {
1110
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1111
+ },
1112
+ "access" : "readonly",
1113
+ "description" :
1114
+ """Total number of negative ATMARP replies sent by this
1115
+ ATMARP Server.""",
1116
+ }, # column
1117
+ "ipoaArpSrvrArpDupIpAddrs" : {
1118
+ "nodetype" : "column",
1119
+ "moduleName" : "IPOA-MIB",
1120
+ "oid" : "1.3.6.1.2.1.10.46.1.5.1.12",
1121
+ "status" : "current",
1122
+ "syntax" : {
1123
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1124
+ },
1125
+ "access" : "readonly",
1126
+ "description" :
1127
+ """The number of times that a duplicate IP address was
1128
+ detected by this ATMARP Server.""",
1129
+ }, # column
1130
+ "ipoaArpSrvrArpUnknownOps" : {
1131
+ "nodetype" : "column",
1132
+ "moduleName" : "IPOA-MIB",
1133
+ "oid" : "1.3.6.1.2.1.10.46.1.5.1.13",
1134
+ "status" : "current",
1135
+ "syntax" : {
1136
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1137
+ },
1138
+ "access" : "readonly",
1139
+ "description" :
1140
+ """The number of times that this ATMARP Server received
1141
+ an ATMARP message with an operation code for which it
1142
+ is not coded to support.""",
1143
+ }, # column
1144
+ "ipoaArpSrvrRowStatus" : {
1145
+ "nodetype" : "column",
1146
+ "moduleName" : "IPOA-MIB",
1147
+ "oid" : "1.3.6.1.2.1.10.46.1.5.1.14",
1148
+ "status" : "current",
1149
+ "syntax" : {
1150
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1151
+ },
1152
+ "access" : "readwrite",
1153
+ "description" :
1154
+ """This object allows entries to be created and deleted
1155
+ from the ipoaArpSrvrTable.""",
1156
+ "reference" :
1157
+ """RFC 1903, 'Textual Conventions for Version 2 of the
1158
+ Simple Network Management Protocol (SNMPv2).'""",
1159
+ }, # column
1160
+ "ipoaArpRemoteSrvrTable" : {
1161
+ "nodetype" : "table",
1162
+ "moduleName" : "IPOA-MIB",
1163
+ "oid" : "1.3.6.1.2.1.10.46.1.6",
1164
+ "status" : "current",
1165
+ "description" :
1166
+ """A table of non-local ATMARP Servers associated with a
1167
+ LIS. An entry in this table has three indexes: first
1168
+ the ipoaLisSubnetAddr of the LIS for which the
1169
+ corresponding ATMARP Server provides ATMARP services,
1170
+ then the ipoaArpRemoteSrvrAtmAddr, which is the ATM
1171
+ address of the remote ATMARP Server, and finally the
1172
+ ifIndex of the interface on which the VC to the ATMARP
1173
+ Remote Server will be opened. An ifIndex value of 0
1174
+ should be used when a single VC is to be shared for
1175
+ ATMARP purposes by multiple interfaces.""",
1176
+ }, # table
1177
+ "ipoaArpRemoteSrvrEntry" : {
1178
+ "nodetype" : "row",
1179
+ "moduleName" : "IPOA-MIB",
1180
+ "oid" : "1.3.6.1.2.1.10.46.1.6.1",
1181
+ "create" : "true",
1182
+ "status" : "current",
1183
+ "linkage" : [
1184
+ "ipoaLisSubnetAddr",
1185
+ "ipoaArpRemoteSrvrAtmAddr",
1186
+ "ipoaArpRemoteSrvrIfIndex",
1187
+ ],
1188
+ "description" :
1189
+ """Information about one non-local ATMARP Server.""",
1190
+ }, # row
1191
+ "ipoaArpRemoteSrvrAtmAddr" : {
1192
+ "nodetype" : "column",
1193
+ "moduleName" : "IPOA-MIB",
1194
+ "oid" : "1.3.6.1.2.1.10.46.1.6.1.1",
1195
+ "status" : "current",
1196
+ "syntax" : {
1197
+ "type" : { "module" :"IPOA-MIB", "name" : "IpoaAtmAddr"},
1198
+ },
1199
+ "access" : "noaccess",
1200
+ "description" :
1201
+ """The ATM address of the remote ATMARP Server.""",
1202
+ }, # column
1203
+ "ipoaArpRemoteSrvrRowStatus" : {
1204
+ "nodetype" : "column",
1205
+ "moduleName" : "IPOA-MIB",
1206
+ "oid" : "1.3.6.1.2.1.10.46.1.6.1.2",
1207
+ "status" : "current",
1208
+ "syntax" : {
1209
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1210
+ },
1211
+ "access" : "readwrite",
1212
+ "description" :
1213
+ """This object allows entries to be created and deleted
1214
+ from the ipoaArpRemoteSrvrTable.
1215
+
1216
+ Deleting an ipoaArpRemoteSrvrEntry (by setting this
1217
+ object to destroy(6)) may affect ipoaArpClientTable
1218
+ entries. The object ipoaArpClientSrvrInUse in an
1219
+ ipoaArpClientSrvrEntry may contain the ATM address
1220
+ of an ATMARP Remote Server whose entry in the
1221
+ ipoaArpRemoteSrvrTable is being removed. In this
1222
+ case, any corresponding ipoaArpClientSrvrInUse
1223
+ objects should be at a minimum invalidated by
1224
+ setting their values to that of a zero length
1225
+ OCTET STRING.
1226
+
1227
+ The value of ipoaArpRemoteSrvrOperStatus should be
1228
+ consistent with that of ipoaArpRemoteSrvrRowStatus.
1229
+ For example, successfully setting the value of
1230
+ this object to notInService(2) after its being in
1231
+ the up(1) state should result in
1232
+ ipoaArpRemoteSrvrOperStatus being set to down(2)
1233
+ if currently up(1).""",
1234
+ "reference" :
1235
+ """RFC 1903, 'Textual Conventions for Version 2 of the
1236
+ Simple Network Management Protocol (SNMPv2).'""",
1237
+ }, # column
1238
+ "ipoaArpRemoteSrvrIfIndex" : {
1239
+ "nodetype" : "column",
1240
+ "moduleName" : "IPOA-MIB",
1241
+ "oid" : "1.3.6.1.2.1.10.46.1.6.1.3",
1242
+ "status" : "current",
1243
+ "syntax" : {
1244
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndexOrZero"},
1245
+ },
1246
+ "access" : "noaccess",
1247
+ "description" :
1248
+ """The ifIndex of the interface that the VC to the
1249
+ Remote ATMARP Server is associated with.""",
1250
+ }, # column
1251
+ "ipoaArpRemoteSrvrIpAddr" : {
1252
+ "nodetype" : "column",
1253
+ "moduleName" : "IPOA-MIB",
1254
+ "oid" : "1.3.6.1.2.1.10.46.1.6.1.4",
1255
+ "status" : "current",
1256
+ "syntax" : {
1257
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
1258
+ },
1259
+ "access" : "readonly",
1260
+ "default" : "0x00000000",
1261
+ "description" :
1262
+ """The IP Address of the Remote ATMARP Server. A
1263
+ value of 0.0.0.0 implies that this address isn't
1264
+ known.""",
1265
+ }, # column
1266
+ "ipoaArpRemoteSrvrAdminStatus" : {
1267
+ "nodetype" : "column",
1268
+ "moduleName" : "IPOA-MIB",
1269
+ "oid" : "1.3.6.1.2.1.10.46.1.6.1.5",
1270
+ "status" : "current",
1271
+ "syntax" : {
1272
+ "type" : {
1273
+ "basetype" : "Enumeration",
1274
+ "up" : {
1275
+ "nodetype" : "namednumber",
1276
+ "number" : "1"
1277
+ },
1278
+ "down" : {
1279
+ "nodetype" : "namednumber",
1280
+ "number" : "2"
1281
+ },
1282
+ },
1283
+ },
1284
+ "access" : "readwrite",
1285
+ "default" : "down",
1286
+ "description" :
1287
+ """The desired state for use of the ATMARP Server
1288
+ represented by an entry in this table.
1289
+ ipoaArpRemoteSrvrAdminStatus values:
1290
+
1291
+ up(1) - Attempt to activate use of the
1292
+ ATMARP Server represented by this
1293
+ entry in the ipoaArpRemoteSrvrTable.
1294
+ down(2) - Deactivate use of this ATMARP
1295
+ Server.
1296
+
1297
+ When a managed system creates an entry in this
1298
+ table ipoaArpRemoteSrvrAdminStatus and
1299
+ ipoaArpRemoteSrvrOperStatus are initialized as
1300
+ down(2) by default.""",
1301
+ }, # column
1302
+ "ipoaArpRemoteSrvrOperStatus" : {
1303
+ "nodetype" : "column",
1304
+ "moduleName" : "IPOA-MIB",
1305
+ "oid" : "1.3.6.1.2.1.10.46.1.6.1.6",
1306
+ "status" : "current",
1307
+ "syntax" : {
1308
+ "type" : {
1309
+ "basetype" : "Enumeration",
1310
+ "up" : {
1311
+ "nodetype" : "namednumber",
1312
+ "number" : "1"
1313
+ },
1314
+ "down" : {
1315
+ "nodetype" : "namednumber",
1316
+ "number" : "2"
1317
+ },
1318
+ },
1319
+ },
1320
+ "access" : "readonly",
1321
+ "default" : "down",
1322
+ "description" :
1323
+ """The current operational state for use of a Remote
1324
+ ATMARP Server. An up(1) entry has a VC
1325
+ established to the respective Remote ATMARP
1326
+ Server:
1327
+
1328
+ up(1) - A VC exists to Remote ATMARP Server
1329
+ whose IP Address is stored in
1330
+ ipoaArpRemoteSrvrIpAddr. This VC can
1331
+ be determined by searching the
1332
+ ipoaVcTable using
1333
+ ipoaArpRemoteSrvrIfIndex (if not 0,
1334
+ otherwise ignore ipNetToMediaIfIndex
1335
+ index) and ipoaArpRemoteSrvrIpAddr.
1336
+ An ipoaArpClientEntry should exist
1337
+ with its ipoaArpClientSrvrInUse
1338
+ object having the same value as
1339
+ ipoaArpRemoteSrvrAtmAddr.
1340
+ down(2) - Entry exists without an active VC to
1341
+ the Remote ATMARP Server.
1342
+
1343
+ Transition from up(1) to down(2)
1344
+ status may affect ipoaArpClientTable entries.
1345
+ The object ipoaArpClientSrvrInUse in an
1346
+ ipoaArpClientSrvrEntry may contain the ATM address
1347
+ of an ATMARP Remote Server whose entry in the
1348
+ ipoaArpRemoteSrvrTable is being deactivated. In
1349
+ this case, any corresponding ipoaArpClientSrvrInUse
1350
+ objects should be at a minimum invalidated by
1351
+ setting their values to that of a zero length
1352
+ OCTET STRING.
1353
+
1354
+ If ipoaArpRemoteSrvrAdminStatus is down(2) then
1355
+ ipoaArpRemoteSrvrOperStatus should be down(2).
1356
+ If ipoaArpRemoteSrvrAdminStatus is changed to
1357
+ up(1) then ipoaArpRemoteSrvrOperStatus should
1358
+ change to up(1) if the Remote ATMARP Server
1359
+ entry can be activated.""",
1360
+ }, # column
1361
+ "ipoaVcTable" : {
1362
+ "nodetype" : "table",
1363
+ "moduleName" : "IPOA-MIB",
1364
+ "oid" : "1.3.6.1.2.1.10.46.1.7",
1365
+ "status" : "current",
1366
+ "description" :
1367
+ """A system that supports IP over ATM is an IP system and
1368
+ therefore MUST support all of the appropriate tables in
1369
+ the SNMPv2-MIB (RFC 1907), the IF-MIB (RFC 2233),
1370
+ the IP-MIB (RFC 2011), the TCP-MIB (RFC 2012), and
1371
+ the UDP-MIB (RFC 2013). This includes the
1372
+ ipNetToMediaTable (the ARP cache) that is defined
1373
+ within the IP-MIB (RFC 2011). The ipoaVcTable
1374
+ keeps a set of VCs for each entry in the ARP cache
1375
+ that was put there by an IP over ATM system acting
1376
+ as either a host or server. The ipoaVcTable doesn't
1377
+ augment the ipNetToMediaTable (ARP Cache) since the
1378
+ the correspondence between tables is not necessarily
1379
+ one-to-one.
1380
+
1381
+ An ipNetToMediaPhysAddress object should contain the
1382
+ content as defined by the IpoaAtmAddr textual
1383
+ convention when used to hold an IPOA-MIB ATM Address.""",
1384
+ }, # table
1385
+ "ipoaVcEntry" : {
1386
+ "nodetype" : "row",
1387
+ "moduleName" : "IPOA-MIB",
1388
+ "oid" : "1.3.6.1.2.1.10.46.1.7.1",
1389
+ "status" : "current",
1390
+ "linkage" : [
1391
+ "ipNetToMediaIfIndex",
1392
+ "ipNetToMediaNetAddress",
1393
+ "ipoaVcVpi",
1394
+ "ipoaVcVci",
1395
+ ],
1396
+ "description" :
1397
+ """A VC (permanent or switched) that this host or server
1398
+ has opened with another member of a LIS. Additional
1399
+ information can be determined about the VC from the
1400
+ ATM-MIB.
1401
+
1402
+ Entries in this table cannot be created by management
1403
+ applications.
1404
+
1405
+ In an SVC environment, an entry is automatically added
1406
+ by the system as the result of ATMARP processing.
1407
+
1408
+ In a PVC environment, an entry is automatically added
1409
+ to this table when an entry is created in the
1410
+ ipoaConfigPvcTable and the IP Address at the remote
1411
+ end of the PVC is discovered using InATMARP. An
1412
+ entry also is added to the ipNetToMediaTable.""",
1413
+ }, # row
1414
+ "ipoaVcVpi" : {
1415
+ "nodetype" : "column",
1416
+ "moduleName" : "IPOA-MIB",
1417
+ "oid" : "1.3.6.1.2.1.10.46.1.7.1.1",
1418
+ "status" : "current",
1419
+ "syntax" : {
1420
+ "type" : { "module" :"IPOA-MIB", "name" : "IpoaVpiInteger"},
1421
+ },
1422
+ "access" : "noaccess",
1423
+ "description" :
1424
+ """The VPI value for the Virtual Circuit.""",
1425
+ }, # column
1426
+ "ipoaVcVci" : {
1427
+ "nodetype" : "column",
1428
+ "moduleName" : "IPOA-MIB",
1429
+ "oid" : "1.3.6.1.2.1.10.46.1.7.1.2",
1430
+ "status" : "current",
1431
+ "syntax" : {
1432
+ "type" : { "module" :"IPOA-MIB", "name" : "IpoaVciInteger"},
1433
+ },
1434
+ "access" : "noaccess",
1435
+ "description" :
1436
+ """The VCI value for the Virtual Circuit.""",
1437
+ }, # column
1438
+ "ipoaVcType" : {
1439
+ "nodetype" : "column",
1440
+ "moduleName" : "IPOA-MIB",
1441
+ "oid" : "1.3.6.1.2.1.10.46.1.7.1.3",
1442
+ "status" : "current",
1443
+ "syntax" : {
1444
+ "type" : { "module" :"IPOA-MIB", "name" : "IpoaAtmConnKind"},
1445
+ },
1446
+ "access" : "readonly",
1447
+ "description" :
1448
+ """The type of the Virtual Circuit.""",
1449
+ }, # column
1450
+ "ipoaVcNegotiatedEncapsType" : {
1451
+ "nodetype" : "column",
1452
+ "moduleName" : "IPOA-MIB",
1453
+ "oid" : "1.3.6.1.2.1.10.46.1.7.1.4",
1454
+ "status" : "current",
1455
+ "syntax" : {
1456
+ "type" : { "module" :"IPOA-MIB", "name" : "IpoaEncapsType"},
1457
+ },
1458
+ "access" : "readonly",
1459
+ "description" :
1460
+ """The encapsulation type used when communicating over
1461
+ this circuit.""",
1462
+ }, # column
1463
+ "ipoaVcNegotiatedMtu" : {
1464
+ "nodetype" : "column",
1465
+ "moduleName" : "IPOA-MIB",
1466
+ "oid" : "1.3.6.1.2.1.10.46.1.7.1.5",
1467
+ "status" : "current",
1468
+ "syntax" : {
1469
+ "type" : {
1470
+ "basetype" : "Integer32",
1471
+ "ranges" : [
1472
+ {
1473
+ "min" : "0",
1474
+ "max" : "65535"
1475
+ },
1476
+ ],
1477
+ "range" : {
1478
+ "min" : "0",
1479
+ "max" : "65535"
1480
+ },
1481
+ },
1482
+ },
1483
+ "access" : "readonly",
1484
+ "description" :
1485
+ """The MTU used when communicating over this circuit.""",
1486
+ }, # column
1487
+ "ipoaConfigPvcTable" : {
1488
+ "nodetype" : "table",
1489
+ "moduleName" : "IPOA-MIB",
1490
+ "oid" : "1.3.6.1.2.1.10.46.1.8",
1491
+ "status" : "current",
1492
+ "description" :
1493
+ """This table MUST be supported when PVCs are intended to
1494
+ be supported in order to enable the setup of PVCs for
1495
+ use by IP.""",
1496
+ }, # table
1497
+ "ipoaConfigPvcEntry" : {
1498
+ "nodetype" : "row",
1499
+ "moduleName" : "IPOA-MIB",
1500
+ "oid" : "1.3.6.1.2.1.10.46.1.8.1",
1501
+ "create" : "true",
1502
+ "status" : "current",
1503
+ "linkage" : [
1504
+ "ipoaConfigPvcIfIndex",
1505
+ "ipoaConfigPvcVpi",
1506
+ "ipoaConfigPvcVci",
1507
+ ],
1508
+ "description" :
1509
+ """Defines a single PVC that exists at this host for
1510
+ use by IP.""",
1511
+ }, # row
1512
+ "ipoaConfigPvcIfIndex" : {
1513
+ "nodetype" : "column",
1514
+ "moduleName" : "IPOA-MIB",
1515
+ "oid" : "1.3.6.1.2.1.10.46.1.8.1.1",
1516
+ "status" : "current",
1517
+ "syntax" : {
1518
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
1519
+ },
1520
+ "access" : "noaccess",
1521
+ "description" :
1522
+ """The ifIndex of the ATM Interface that this PVC
1523
+ is associated with.""",
1524
+ }, # column
1525
+ "ipoaConfigPvcVpi" : {
1526
+ "nodetype" : "column",
1527
+ "moduleName" : "IPOA-MIB",
1528
+ "oid" : "1.3.6.1.2.1.10.46.1.8.1.2",
1529
+ "status" : "current",
1530
+ "syntax" : {
1531
+ "type" : { "module" :"IPOA-MIB", "name" : "IpoaVpiInteger"},
1532
+ },
1533
+ "access" : "noaccess",
1534
+ "description" :
1535
+ """The VPI value for the Virtual Circuit.""",
1536
+ }, # column
1537
+ "ipoaConfigPvcVci" : {
1538
+ "nodetype" : "column",
1539
+ "moduleName" : "IPOA-MIB",
1540
+ "oid" : "1.3.6.1.2.1.10.46.1.8.1.3",
1541
+ "status" : "current",
1542
+ "syntax" : {
1543
+ "type" : { "module" :"IPOA-MIB", "name" : "IpoaVciInteger"},
1544
+ },
1545
+ "access" : "noaccess",
1546
+ "description" :
1547
+ """The VCI value for the Virtual Circuit.""",
1548
+ }, # column
1549
+ "ipoaConfigPvcDefaultMtu" : {
1550
+ "nodetype" : "column",
1551
+ "moduleName" : "IPOA-MIB",
1552
+ "oid" : "1.3.6.1.2.1.10.46.1.8.1.4",
1553
+ "status" : "current",
1554
+ "syntax" : {
1555
+ "type" : {
1556
+ "basetype" : "Integer32",
1557
+ "ranges" : [
1558
+ {
1559
+ "min" : "0",
1560
+ "max" : "65535"
1561
+ },
1562
+ ],
1563
+ "range" : {
1564
+ "min" : "0",
1565
+ "max" : "65535"
1566
+ },
1567
+ },
1568
+ },
1569
+ "access" : "readwrite",
1570
+ "default" : "9180",
1571
+ "description" :
1572
+ """Classical IP and ARP over ATM allows use of
1573
+ other MTU values for PVCs but considers how a
1574
+ value other than 9180 could be selected to be out
1575
+ of scope. ipoaConfigPvcDefaultMtu can be used to
1576
+ configure the MTU to be used for the PVC.
1577
+ Both ends MUST have the same value configured.""",
1578
+ }, # column
1579
+ "ipoaConfigPvcRowStatus" : {
1580
+ "nodetype" : "column",
1581
+ "moduleName" : "IPOA-MIB",
1582
+ "oid" : "1.3.6.1.2.1.10.46.1.8.1.5",
1583
+ "status" : "current",
1584
+ "syntax" : {
1585
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1586
+ },
1587
+ "access" : "readwrite",
1588
+ "description" :
1589
+ """This object allows rows to be created and deleted in
1590
+ the ipoaConfigPvcTable. Creation of an entry in this
1591
+ table should eventually result in the creation of an
1592
+ ipNetToMediaEntry and a corresponding ipoaVcEntry
1593
+ after InATMARP has determined the destination address
1594
+ of the remote system that the PVC is connected to.
1595
+ Setting this object to destroy(6) should remove the
1596
+ corresponding ipNetToMediaTable and ipoaVcTable
1597
+ entries.""",
1598
+ "reference" :
1599
+ """RFC 1903, 'Textual Conventions for Version 2 of the
1600
+ Simple Network Management Protocol (SNMPv2).'""",
1601
+ }, # column
1602
+ "ipoaNotifications" : {
1603
+ "nodetype" : "node",
1604
+ "moduleName" : "IPOA-MIB",
1605
+ "oid" : "1.3.6.1.2.1.10.46.2",
1606
+ }, # node
1607
+ "ipoaTrapPrefix" : {
1608
+ "nodetype" : "node",
1609
+ "moduleName" : "IPOA-MIB",
1610
+ "oid" : "1.3.6.1.2.1.10.46.2.0",
1611
+ }, # node
1612
+ "ipoaConformance" : {
1613
+ "nodetype" : "node",
1614
+ "moduleName" : "IPOA-MIB",
1615
+ "oid" : "1.3.6.1.2.1.10.46.3",
1616
+ }, # node
1617
+ "ipoaGroups" : {
1618
+ "nodetype" : "node",
1619
+ "moduleName" : "IPOA-MIB",
1620
+ "oid" : "1.3.6.1.2.1.10.46.3.1",
1621
+ }, # node
1622
+ "ipoaCompliances" : {
1623
+ "nodetype" : "node",
1624
+ "moduleName" : "IPOA-MIB",
1625
+ "oid" : "1.3.6.1.2.1.10.46.3.2",
1626
+ }, # node
1627
+ }, # nodes
1628
+
1629
+ "notifications" : {
1630
+ "ipoaMtuExceeded" : {
1631
+ "nodetype" : "notification",
1632
+ "moduleName" : "IPOA-MIB",
1633
+ "oid" : "1.3.6.1.2.1.10.46.2.0.1",
1634
+ "status" : "current",
1635
+ "objects" : {
1636
+ "ipoaVcNegotiatedMtu" : {
1637
+ "nodetype" : "object",
1638
+ "module" : "IPOA-MIB"
1639
+ },
1640
+ },
1641
+ "description" :
1642
+ """A frame was received that exceeds the negotiated
1643
+ MTU size. The VPI and VCI of the VC for which this
1644
+ condition was detected can be determined from the
1645
+ index values for ipoaVcNegotiatedMtu. In addition,
1646
+ the ifIndex and IP Address can be determined as
1647
+ well (refer to the ipoaVcTable).""",
1648
+ }, # notification
1649
+ "ipoaDuplicateIpAddress" : {
1650
+ "nodetype" : "notification",
1651
+ "moduleName" : "IPOA-MIB",
1652
+ "oid" : "1.3.6.1.2.1.10.46.2.0.2",
1653
+ "status" : "current",
1654
+ "objects" : {
1655
+ "ipNetToMediaIfIndex" : {
1656
+ "nodetype" : "object",
1657
+ "module" : "IP-MIB"
1658
+ },
1659
+ "ipNetToMediaNetAddress" : {
1660
+ "nodetype" : "object",
1661
+ "module" : "IP-MIB"
1662
+ },
1663
+ "ipNetToMediaPhysAddress" : {
1664
+ "nodetype" : "object",
1665
+ "module" : "IP-MIB"
1666
+ },
1667
+ "ipNetToMediaPhysAddress" : {
1668
+ "nodetype" : "object",
1669
+ "module" : "IP-MIB"
1670
+ },
1671
+ },
1672
+ "description" :
1673
+ """The ATMARP Server has detected more than one ATM end
1674
+ point attempting to associate the same IP address with
1675
+ different ATM addresses.""",
1676
+ }, # notification
1677
+ "ipoaLisCreate" : {
1678
+ "nodetype" : "notification",
1679
+ "moduleName" : "IPOA-MIB",
1680
+ "oid" : "1.3.6.1.2.1.10.46.2.0.3",
1681
+ "status" : "current",
1682
+ "objects" : {
1683
+ "ipoaLisSubnetAddr" : {
1684
+ "nodetype" : "object",
1685
+ "module" : "IPOA-MIB"
1686
+ },
1687
+ },
1688
+ "description" :
1689
+ """Generation of this trap occurs when an ipoaLisEntry is
1690
+ created while the ipoaLisTrapEnable.0 object has the
1691
+ value enabled(1).""",
1692
+ }, # notification
1693
+ "ipoaLisDelete" : {
1694
+ "nodetype" : "notification",
1695
+ "moduleName" : "IPOA-MIB",
1696
+ "oid" : "1.3.6.1.2.1.10.46.2.0.4",
1697
+ "status" : "current",
1698
+ "objects" : {
1699
+ "ipoaLisSubnetAddr" : {
1700
+ "nodetype" : "object",
1701
+ "module" : "IPOA-MIB"
1702
+ },
1703
+ },
1704
+ "description" :
1705
+ """Generation of this trap occurs when an ipoaLisEntry is
1706
+ deleted while the ipoaLisTrapEnable.0 object has the
1707
+ value enabled(1).""",
1708
+ }, # notification
1709
+ }, # notifications
1710
+
1711
+ "groups" : {
1712
+ "ipoaGeneralGroup" : {
1713
+ "nodetype" : "group",
1714
+ "moduleName" : "IPOA-MIB",
1715
+ "oid" : "1.3.6.1.2.1.10.46.3.1.1",
1716
+ "status" : "current",
1717
+ "members" : {
1718
+ "ipoaVcType" : {
1719
+ "nodetype" : "member",
1720
+ "module" : "IPOA-MIB"
1721
+ },
1722
+ "ipoaVcNegotiatedEncapsType" : {
1723
+ "nodetype" : "member",
1724
+ "module" : "IPOA-MIB"
1725
+ },
1726
+ "ipoaVcNegotiatedMtu" : {
1727
+ "nodetype" : "member",
1728
+ "module" : "IPOA-MIB"
1729
+ },
1730
+ "ipoaConfigPvcDefaultMtu" : {
1731
+ "nodetype" : "member",
1732
+ "module" : "IPOA-MIB"
1733
+ },
1734
+ "ipoaConfigPvcRowStatus" : {
1735
+ "nodetype" : "member",
1736
+ "module" : "IPOA-MIB"
1737
+ },
1738
+ }, # members
1739
+ "description" :
1740
+ """This group is mandatory for all IP over ATM entities.""",
1741
+ }, # group
1742
+ "ipoaClientGroup" : {
1743
+ "nodetype" : "group",
1744
+ "moduleName" : "IPOA-MIB",
1745
+ "oid" : "1.3.6.1.2.1.10.46.3.1.2",
1746
+ "status" : "current",
1747
+ "members" : {
1748
+ "ipoaArpClientAtmAddr" : {
1749
+ "nodetype" : "member",
1750
+ "module" : "IPOA-MIB"
1751
+ },
1752
+ "ipoaArpClientSrvrInUse" : {
1753
+ "nodetype" : "member",
1754
+ "module" : "IPOA-MIB"
1755
+ },
1756
+ "ipoaArpClientInArpInReqs" : {
1757
+ "nodetype" : "member",
1758
+ "module" : "IPOA-MIB"
1759
+ },
1760
+ "ipoaArpClientInArpOutReqs" : {
1761
+ "nodetype" : "member",
1762
+ "module" : "IPOA-MIB"
1763
+ },
1764
+ "ipoaArpClientInArpInReplies" : {
1765
+ "nodetype" : "member",
1766
+ "module" : "IPOA-MIB"
1767
+ },
1768
+ "ipoaArpClientInArpOutReplies" : {
1769
+ "nodetype" : "member",
1770
+ "module" : "IPOA-MIB"
1771
+ },
1772
+ "ipoaArpClientInArpInvalidInReqs" : {
1773
+ "nodetype" : "member",
1774
+ "module" : "IPOA-MIB"
1775
+ },
1776
+ "ipoaArpClientInArpInvalidOutReqs" : {
1777
+ "nodetype" : "member",
1778
+ "module" : "IPOA-MIB"
1779
+ },
1780
+ "ipoaArpClientArpInReqs" : {
1781
+ "nodetype" : "member",
1782
+ "module" : "IPOA-MIB"
1783
+ },
1784
+ "ipoaArpClientArpOutReqs" : {
1785
+ "nodetype" : "member",
1786
+ "module" : "IPOA-MIB"
1787
+ },
1788
+ "ipoaArpClientArpInReplies" : {
1789
+ "nodetype" : "member",
1790
+ "module" : "IPOA-MIB"
1791
+ },
1792
+ "ipoaArpClientArpOutReplies" : {
1793
+ "nodetype" : "member",
1794
+ "module" : "IPOA-MIB"
1795
+ },
1796
+ "ipoaArpClientArpInNaks" : {
1797
+ "nodetype" : "member",
1798
+ "module" : "IPOA-MIB"
1799
+ },
1800
+ "ipoaArpClientArpOutNaks" : {
1801
+ "nodetype" : "member",
1802
+ "module" : "IPOA-MIB"
1803
+ },
1804
+ "ipoaArpClientArpUnknownOps" : {
1805
+ "nodetype" : "member",
1806
+ "module" : "IPOA-MIB"
1807
+ },
1808
+ "ipoaArpClientArpNoSrvrResps" : {
1809
+ "nodetype" : "member",
1810
+ "module" : "IPOA-MIB"
1811
+ },
1812
+ "ipoaArpClientRowStatus" : {
1813
+ "nodetype" : "member",
1814
+ "module" : "IPOA-MIB"
1815
+ },
1816
+ }, # members
1817
+ "description" :
1818
+ """This group is mandatory for all hosts where an IP
1819
+ over ATM client is present.""",
1820
+ }, # group
1821
+ "ipoaSrvrGroup" : {
1822
+ "nodetype" : "group",
1823
+ "moduleName" : "IPOA-MIB",
1824
+ "oid" : "1.3.6.1.2.1.10.46.3.1.3",
1825
+ "status" : "current",
1826
+ "members" : {
1827
+ "ipoaArpSrvrLis" : {
1828
+ "nodetype" : "member",
1829
+ "module" : "IPOA-MIB"
1830
+ },
1831
+ "ipoaArpSrvrInArpInReqs" : {
1832
+ "nodetype" : "member",
1833
+ "module" : "IPOA-MIB"
1834
+ },
1835
+ "ipoaArpSrvrInArpOutReqs" : {
1836
+ "nodetype" : "member",
1837
+ "module" : "IPOA-MIB"
1838
+ },
1839
+ "ipoaArpSrvrInArpInReplies" : {
1840
+ "nodetype" : "member",
1841
+ "module" : "IPOA-MIB"
1842
+ },
1843
+ "ipoaArpSrvrInArpOutReplies" : {
1844
+ "nodetype" : "member",
1845
+ "module" : "IPOA-MIB"
1846
+ },
1847
+ "ipoaArpSrvrInArpInvalidInReqs" : {
1848
+ "nodetype" : "member",
1849
+ "module" : "IPOA-MIB"
1850
+ },
1851
+ "ipoaArpSrvrInArpInvalidOutReqs" : {
1852
+ "nodetype" : "member",
1853
+ "module" : "IPOA-MIB"
1854
+ },
1855
+ "ipoaArpSrvrArpInReqs" : {
1856
+ "nodetype" : "member",
1857
+ "module" : "IPOA-MIB"
1858
+ },
1859
+ "ipoaArpSrvrArpOutReplies" : {
1860
+ "nodetype" : "member",
1861
+ "module" : "IPOA-MIB"
1862
+ },
1863
+ "ipoaArpSrvrArpOutNaks" : {
1864
+ "nodetype" : "member",
1865
+ "module" : "IPOA-MIB"
1866
+ },
1867
+ "ipoaArpSrvrArpDupIpAddrs" : {
1868
+ "nodetype" : "member",
1869
+ "module" : "IPOA-MIB"
1870
+ },
1871
+ "ipoaArpSrvrArpUnknownOps" : {
1872
+ "nodetype" : "member",
1873
+ "module" : "IPOA-MIB"
1874
+ },
1875
+ "ipoaArpSrvrRowStatus" : {
1876
+ "nodetype" : "member",
1877
+ "module" : "IPOA-MIB"
1878
+ },
1879
+ }, # members
1880
+ "description" :
1881
+ """This group is mandatory for all hosts where ATMARP
1882
+ Servers are present.""",
1883
+ }, # group
1884
+ "ipoaBasicNotificationsGroup" : {
1885
+ "nodetype" : "group",
1886
+ "moduleName" : "IPOA-MIB",
1887
+ "oid" : "1.3.6.1.2.1.10.46.3.1.4",
1888
+ "status" : "current",
1889
+ "members" : {
1890
+ "ipoaMtuExceeded" : {
1891
+ "nodetype" : "member",
1892
+ "module" : "IPOA-MIB"
1893
+ },
1894
+ }, # members
1895
+ "description" :
1896
+ """The notification which an IP over ATM entity
1897
+ is required to implement.""",
1898
+ }, # group
1899
+ "ipoaSrvrNotificationsGroup" : {
1900
+ "nodetype" : "group",
1901
+ "moduleName" : "IPOA-MIB",
1902
+ "oid" : "1.3.6.1.2.1.10.46.3.1.5",
1903
+ "status" : "current",
1904
+ "members" : {
1905
+ "ipoaDuplicateIpAddress" : {
1906
+ "nodetype" : "member",
1907
+ "module" : "IPOA-MIB"
1908
+ },
1909
+ }, # members
1910
+ "description" :
1911
+ """The notification which an IP over ATM ATMARP
1912
+ Server is required to implement.""",
1913
+ }, # group
1914
+ "ipoaLisNotificationsGroup" : {
1915
+ "nodetype" : "group",
1916
+ "moduleName" : "IPOA-MIB",
1917
+ "oid" : "1.3.6.1.2.1.10.46.3.1.6",
1918
+ "status" : "current",
1919
+ "members" : {
1920
+ "ipoaLisCreate" : {
1921
+ "nodetype" : "member",
1922
+ "module" : "IPOA-MIB"
1923
+ },
1924
+ "ipoaLisDelete" : {
1925
+ "nodetype" : "member",
1926
+ "module" : "IPOA-MIB"
1927
+ },
1928
+ }, # members
1929
+ "description" :
1930
+ """The LIS-related notifications which are required
1931
+ to be implemented by an IP over ATM ATMARP server,
1932
+ as well as by any IP over ATM client which allows
1933
+ ipoaLisTrapEnable to be set to enabled(1).""",
1934
+ }, # group
1935
+ "ipoaLisTableGroup" : {
1936
+ "nodetype" : "group",
1937
+ "moduleName" : "IPOA-MIB",
1938
+ "oid" : "1.3.6.1.2.1.10.46.3.1.7",
1939
+ "status" : "current",
1940
+ "members" : {
1941
+ "ipoaLisTrapEnable" : {
1942
+ "nodetype" : "member",
1943
+ "module" : "IPOA-MIB"
1944
+ },
1945
+ "ipoaLisSubnetAddr" : {
1946
+ "nodetype" : "member",
1947
+ "module" : "IPOA-MIB"
1948
+ },
1949
+ "ipoaLisDefaultMtu" : {
1950
+ "nodetype" : "member",
1951
+ "module" : "IPOA-MIB"
1952
+ },
1953
+ "ipoaLisDefaultEncapsType" : {
1954
+ "nodetype" : "member",
1955
+ "module" : "IPOA-MIB"
1956
+ },
1957
+ "ipoaLisInactivityTimer" : {
1958
+ "nodetype" : "member",
1959
+ "module" : "IPOA-MIB"
1960
+ },
1961
+ "ipoaLisMinHoldingTime" : {
1962
+ "nodetype" : "member",
1963
+ "module" : "IPOA-MIB"
1964
+ },
1965
+ "ipoaLisQDepth" : {
1966
+ "nodetype" : "member",
1967
+ "module" : "IPOA-MIB"
1968
+ },
1969
+ "ipoaLisMaxCalls" : {
1970
+ "nodetype" : "member",
1971
+ "module" : "IPOA-MIB"
1972
+ },
1973
+ "ipoaLisCacheEntryAge" : {
1974
+ "nodetype" : "member",
1975
+ "module" : "IPOA-MIB"
1976
+ },
1977
+ "ipoaLisRetries" : {
1978
+ "nodetype" : "member",
1979
+ "module" : "IPOA-MIB"
1980
+ },
1981
+ "ipoaLisTimeout" : {
1982
+ "nodetype" : "member",
1983
+ "module" : "IPOA-MIB"
1984
+ },
1985
+ "ipoaLisDefaultPeakCellRate" : {
1986
+ "nodetype" : "member",
1987
+ "module" : "IPOA-MIB"
1988
+ },
1989
+ "ipoaLisActiveVcs" : {
1990
+ "nodetype" : "member",
1991
+ "module" : "IPOA-MIB"
1992
+ },
1993
+ "ipoaLisRowStatus" : {
1994
+ "nodetype" : "member",
1995
+ "module" : "IPOA-MIB"
1996
+ },
1997
+ "ipoaLisIfMappingRowStatus" : {
1998
+ "nodetype" : "member",
1999
+ "module" : "IPOA-MIB"
2000
+ },
2001
+ "ipoaArpRemoteSrvrRowStatus" : {
2002
+ "nodetype" : "member",
2003
+ "module" : "IPOA-MIB"
2004
+ },
2005
+ "ipoaArpRemoteSrvrIpAddr" : {
2006
+ "nodetype" : "member",
2007
+ "module" : "IPOA-MIB"
2008
+ },
2009
+ "ipoaArpRemoteSrvrAdminStatus" : {
2010
+ "nodetype" : "member",
2011
+ "module" : "IPOA-MIB"
2012
+ },
2013
+ "ipoaArpRemoteSrvrOperStatus" : {
2014
+ "nodetype" : "member",
2015
+ "module" : "IPOA-MIB"
2016
+ },
2017
+ }, # members
2018
+ "description" :
2019
+ """This group is mandatory for all entities which
2020
+ support IP over ATM SVCs. Support of objects in
2021
+ this group by IP over ATM clients which only
2022
+ support IP over ATM PVCs is optional.""",
2023
+ }, # group
2024
+ }, # groups
2025
+
2026
+ "compliances" : {
2027
+ "ipoaCompliance" : {
2028
+ "nodetype" : "compliance",
2029
+ "moduleName" : "IPOA-MIB",
2030
+ "oid" : "1.3.6.1.2.1.10.46.3.2.1",
2031
+ "status" : "current",
2032
+ "description" :
2033
+ """The compliance statement for agents that support the
2034
+ IPOA-MIB.""",
2035
+ "requires" : {
2036
+ "ipoaGeneralGroup" : {
2037
+ "nodetype" : "mandatory",
2038
+ "module" : "IPOA-MIB"
2039
+ },
2040
+ "ipoaBasicNotificationsGroup" : {
2041
+ "nodetype" : "mandatory",
2042
+ "module" : "IPOA-MIB"
2043
+ },
2044
+ "ipoaClientGroup" : {
2045
+ "nodetype" : "optional",
2046
+ "module" : "IPOA-MIB",
2047
+ "description" :
2048
+ """This group is mandatory for all hosts where IP
2049
+ over ATM client support is present.""",
2050
+ },
2051
+ "ipoaSrvrGroup" : {
2052
+ "nodetype" : "optional",
2053
+ "module" : "IPOA-MIB",
2054
+ "description" :
2055
+ """This group is mandatory for all hosts where ATMARP
2056
+ Servers are present.""",
2057
+ },
2058
+ "ipoaSrvrNotificationsGroup" : {
2059
+ "nodetype" : "optional",
2060
+ "module" : "IPOA-MIB",
2061
+ "description" :
2062
+ """This group is mandatory for all hosts where ATMARP
2063
+ Servers are present.""",
2064
+ },
2065
+ "ipoaLisNotificationsGroup" : {
2066
+ "nodetype" : "optional",
2067
+ "module" : "IPOA-MIB",
2068
+ "description" :
2069
+ """This group is mandatory for all hosts where
2070
+ ATMARP client only support is present and
2071
+ ipoaLisTrapEnable is allowed to be set to
2072
+ enabled(1).""",
2073
+ },
2074
+ "ipoaLisTableGroup" : {
2075
+ "nodetype" : "optional",
2076
+ "module" : "IPOA-MIB",
2077
+ "description" :
2078
+ """This group is mandatory for all entities which
2079
+ support IP over ATM SVCs. Support of objects in
2080
+ this group by IP over ATM clients which only
2081
+ support IP over ATM PVCs is optional.""",
2082
+ },
2083
+ }, # requires
2084
+ "refinements" : {
2085
+ "ipoaLisDefaultMtu" : {
2086
+ "module" : "IPOA-MIB",
2087
+ "access" : "readonly",
2088
+ "description" :
2089
+ """The agent is not required to allow the user
2090
+ to change the default MTU from the value 9180.
2091
+
2092
+ The agent is not required to support a SET
2093
+ operation to this object in the absence of
2094
+ adequate security.""",
2095
+ },
2096
+ "ipoaLisDefaultEncapsType" : {
2097
+ "module" : "IPOA-MIB",
2098
+ "access" : "readonly",
2099
+ "description" :
2100
+ """The agent is not required to allow the user to
2101
+ specify the default encapsulation type for the
2102
+ LIS.
2103
+
2104
+ The agent is not required to support a SET
2105
+ operation to this object in the absence of
2106
+ adequate security.""",
2107
+ },
2108
+ "ipoaLisInactivityTimer" : {
2109
+ "module" : "IPOA-MIB",
2110
+ "access" : "readonly",
2111
+ "description" :
2112
+ """The agent is not required to support a SET
2113
+ operation to this object in the absence of
2114
+ adequate security.""",
2115
+ },
2116
+ "ipoaLisMinHoldingTime" : {
2117
+ "module" : "IPOA-MIB",
2118
+ "access" : "readonly",
2119
+ "description" :
2120
+ """The agent is not required to support a SET
2121
+ operation to this object in the absence of
2122
+ adequate security.""",
2123
+ },
2124
+ "ipoaLisQDepth" : {
2125
+ "module" : "IPOA-MIB",
2126
+ "access" : "readonly",
2127
+ "description" :
2128
+ """The agent is not required to support a SET
2129
+ operation to this object in the absence of
2130
+ adequate security.""",
2131
+ },
2132
+ "ipoaLisMaxCalls" : {
2133
+ "module" : "IPOA-MIB",
2134
+ "access" : "readonly",
2135
+ "description" :
2136
+ """The agent is not required to support a SET
2137
+ operation to this object in the absence of
2138
+ adequate security.""",
2139
+ },
2140
+ "ipoaLisCacheEntryAge" : {
2141
+ "module" : "IPOA-MIB",
2142
+ "access" : "readonly",
2143
+ "description" :
2144
+ """The agent is not required to support a SET
2145
+ operation to this object in the absence of
2146
+ adequate security.""",
2147
+ },
2148
+ "ipoaLisRetries" : {
2149
+ "module" : "IPOA-MIB",
2150
+ "access" : "readonly",
2151
+ "description" :
2152
+ """The agent is not required to allow the user
2153
+ to change the default number of times an ATMARP
2154
+ request will be retried when no response is
2155
+ received from the default of 2.
2156
+
2157
+ The agent is not required to support a SET
2158
+ operation to this object in the absence of
2159
+ adequate security.""",
2160
+ },
2161
+ "ipoaLisTimeout" : {
2162
+ "module" : "IPOA-MIB",
2163
+ "access" : "readonly",
2164
+ "description" :
2165
+ """The agent is not required to allow the user
2166
+ to change the default retransmission time from
2167
+ the default of 10 seconds.
2168
+
2169
+ The agent is not required to support a SET
2170
+ operation to this object in the absence of
2171
+ adequate security.""",
2172
+ },
2173
+ "ipoaLisDefaultPeakCellRate" : {
2174
+ "module" : "IPOA-MIB",
2175
+ "access" : "readonly",
2176
+ "description" :
2177
+ """Implementations that do not support IP over
2178
+ ATM SVC usage are not required to allow the
2179
+ user to specify a best effort default peak cell
2180
+ rate since typically the ipoaLisTable won't
2181
+ exist.
2182
+
2183
+ The agent is not required to support a SET
2184
+ operation to this object in the absence of
2185
+ adequate security.""",
2186
+ },
2187
+ "ipoaLisIfMappingRowStatus" : {
2188
+ "module" : "IPOA-MIB",
2189
+ "syntax" : {
2190
+ "type" : {
2191
+ "basetype" : "Enumeration",
2192
+ "parent module" : {
2193
+ "name" : "SNMPv2-TC",
2194
+ "type" : "RowStatus",
2195
+ },
2196
+ "active" : {
2197
+ "nodetype" : "namednumber",
2198
+ "number" : "1"
2199
+ },
2200
+ },
2201
+ }, # syntax
2202
+ "access" : "readonly",
2203
+ "description" :
2204
+ """The agent is not required to support a SET
2205
+ operation to this object, and only one
2206
+ of the six enumerated values for the
2207
+ RowStatus textual convention need be
2208
+ supported, specifically: active(1).""",
2209
+ },
2210
+ "ipoaArpClientAtmAddr" : {
2211
+ "module" : "IPOA-MIB",
2212
+ "access" : "readonly",
2213
+ "description" :
2214
+ """The agent is not required to support a SET
2215
+ operation to this object in the absence of
2216
+ adequate security.""",
2217
+ },
2218
+ "ipoaArpSrvrLis" : {
2219
+ "module" : "IPOA-MIB",
2220
+ "access" : "readonly",
2221
+ "description" :
2222
+ """The agent is not required to support a SET
2223
+ operation to this object in the absence of
2224
+ adequate security.""",
2225
+ },
2226
+ "ipoaArpRemoteSrvrAdminStatus" : {
2227
+ "module" : "IPOA-MIB",
2228
+ "access" : "readonly",
2229
+ "description" :
2230
+ """The agent is not required to support a SET
2231
+ operation to this object in the absence of
2232
+ adequate security. In this case the value of
2233
+ this object should be up(1) when a VC
2234
+ exists to the Remote ATMARP Server or
2235
+ otherwise down(2), and the agent should not
2236
+ allow a SET operation to this object.""",
2237
+ },
2238
+ "ipoaConfigPvcDefaultMtu" : {
2239
+ "module" : "IPOA-MIB",
2240
+ "access" : "readonly",
2241
+ "description" :
2242
+ """The agent is not required to support a SET
2243
+ operation to this object in the absence of
2244
+ adequate security.""",
2245
+ },
2246
+ "ipoaLisRowStatus" : {
2247
+ "module" : "IPOA-MIB",
2248
+ "syntax" : {
2249
+ "type" : {
2250
+ "basetype" : "Enumeration",
2251
+ "parent module" : {
2252
+ "name" : "SNMPv2-TC",
2253
+ "type" : "RowStatus",
2254
+ },
2255
+ "active" : {
2256
+ "nodetype" : "namednumber",
2257
+ "number" : "1"
2258
+ },
2259
+ },
2260
+ }, # syntax
2261
+ "access" : "readonly",
2262
+ "description" :
2263
+ """Write access is not required, and only one
2264
+ of the six enumerated values for the
2265
+ RowStatus textual convention need be
2266
+ supported, specifically: active(1).""",
2267
+ },
2268
+ "ipoaArpClientRowStatus" : {
2269
+ "module" : "IPOA-MIB",
2270
+ "syntax" : {
2271
+ "type" : {
2272
+ "basetype" : "Enumeration",
2273
+ "parent module" : {
2274
+ "name" : "SNMPv2-TC",
2275
+ "type" : "RowStatus",
2276
+ },
2277
+ "active" : {
2278
+ "nodetype" : "namednumber",
2279
+ "number" : "1"
2280
+ },
2281
+ },
2282
+ }, # syntax
2283
+ "access" : "readonly",
2284
+ "description" :
2285
+ """Write access is not required, and only one
2286
+ of the six enumerated values for the
2287
+ RowStatus textual convention need be
2288
+ supported, specifically: active(1).""",
2289
+ },
2290
+ "ipoaArpRemoteSrvrRowStatus" : {
2291
+ "module" : "IPOA-MIB",
2292
+ "syntax" : {
2293
+ "type" : {
2294
+ "basetype" : "Enumeration",
2295
+ "parent module" : {
2296
+ "name" : "SNMPv2-TC",
2297
+ "type" : "RowStatus",
2298
+ },
2299
+ "active" : {
2300
+ "nodetype" : "namednumber",
2301
+ "number" : "1"
2302
+ },
2303
+ },
2304
+ }, # syntax
2305
+ "access" : "readonly",
2306
+ "description" :
2307
+ """Write access is not required, and only one
2308
+ of the six enumerated values for the
2309
+ RowStatus textual convention need be
2310
+ supported, specifically: active(1).""",
2311
+ },
2312
+ "ipoaArpSrvrRowStatus" : {
2313
+ "module" : "IPOA-MIB",
2314
+ "syntax" : {
2315
+ "type" : {
2316
+ "basetype" : "Enumeration",
2317
+ "parent module" : {
2318
+ "name" : "SNMPv2-TC",
2319
+ "type" : "RowStatus",
2320
+ },
2321
+ "active" : {
2322
+ "nodetype" : "namednumber",
2323
+ "number" : "1"
2324
+ },
2325
+ },
2326
+ }, # syntax
2327
+ "access" : "readonly",
2328
+ "description" :
2329
+ """Write access is not required, and only one
2330
+ of the six enumerated values for the
2331
+ RowStatus textual convention need be
2332
+ supported, specifically: active(1).""",
2333
+ },
2334
+ "ipoaConfigPvcRowStatus" : {
2335
+ "module" : "IPOA-MIB",
2336
+ "syntax" : {
2337
+ "type" : {
2338
+ "basetype" : "Enumeration",
2339
+ "parent module" : {
2340
+ "name" : "SNMPv2-TC",
2341
+ "type" : "RowStatus",
2342
+ },
2343
+ "active" : {
2344
+ "nodetype" : "namednumber",
2345
+ "number" : "1"
2346
+ },
2347
+ },
2348
+ }, # syntax
2349
+ "access" : "readonly",
2350
+ "description" :
2351
+ """Write access is not required, and only one
2352
+ of the six enumerated values for the
2353
+ RowStatus textual convention need be
2354
+ supported, specifically: active(1).""",
2355
+ },
2356
+ "ipoaArpClientArpOutNaks" : {
2357
+ "module" : "IPOA-MIB",
2358
+ "access" : "noaccess",
2359
+ "description" :
2360
+ """Classic IP and ARP over ATM does not require
2361
+ an ATMARP client to transmit an ATMARP_NAK
2362
+ upon receipt of an ATMARP request from another
2363
+ ATMARP client. This object should be
2364
+ implemented when an ATMARP client supports the
2365
+ transmission of ATMARP_NAKs.""",
2366
+ },
2367
+ }, # refinements
2368
+
2369
+ }, # compliance
2370
+ }, # compliances
2371
+
2372
+ }