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,1609 @@
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 IPS-AUTH-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/IPS-AUTH-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "IPS-AUTH-MIB",
11
+
12
+ "IPS-AUTH-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF IPS Working Group""",
17
+ "contact" :
18
+ """
19
+ Mark Bakke
20
+ Postal: Cisco Systems, Inc
21
+ 7900 International Drive, Suite 400
22
+ Bloomington, MN
23
+ USA 55425
24
+
25
+ E-mail: mbakke@cisco.com
26
+
27
+ James Muchow
28
+ Postal: Qlogic Corp.
29
+ 6321 Bury Dr.
30
+ Eden Prairie, MN
31
+ USA 55346
32
+
33
+ E-Mail: james.muchow@qlogic.com""",
34
+ "description" :
35
+ """The IP Storage Authorization MIB module.
36
+ Copyright (C) The Internet Society (2006). This version of
37
+ this MIB module is part of RFC 4545; see the RFC itself for
38
+ full legal notices.""",
39
+ "revisions" : (
40
+ {
41
+ "date" : "2006-05-22 00:00",
42
+ "description" :
43
+ """Initial version of the IP Storage Authentication MIB module,
44
+ published as RFC 4545""",
45
+ },
46
+ ),
47
+ "identity node" : "ipsAuthMibModule",
48
+ },
49
+
50
+ "imports" : (
51
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
52
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
53
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-IDENTITY"},
54
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
55
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
56
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
57
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
58
+ {"module" : "SNMPv2-TC", "name" : "AutonomousType"},
59
+ {"module" : "SNMPv2-TC", "name" : "StorageType"},
60
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
61
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
62
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
63
+ {"module" : "IANA-ADDRESS-FAMILY-NUMBERS-MIB", "name" : "AddressFamilyNumbers"},
64
+ ),
65
+
66
+ "typedefs" : {
67
+ "IpsAuthAddress" : {
68
+ "basetype" : "OctetString",
69
+ "status" : "current",
70
+ "ranges" : [
71
+ {
72
+ "min" : "0",
73
+ "max" : "255"
74
+ },
75
+ ],
76
+ "range" : {
77
+ "min" : "0",
78
+ "max" : "255"
79
+ },
80
+ "description" :
81
+ """IP Storage requires the use of address information
82
+ that uses not only the InetAddress type defined in the
83
+ INET-ADDRESS-MIB, but also Fibre Channel type defined
84
+ in the Fibre Channel Management MIB. Although these
85
+ address types are recognized in the IANA Address Family
86
+ Numbers MIB, the addressing mechanisms have not been
87
+ merged into a well-known, common type. This data type,
88
+ the IpsAuthAddress, performs the merging for this MIB
89
+ module.
90
+
91
+ The formats of objects of this type are determined by
92
+ a corresponding object with syntax AddressFamilyNumbers,
93
+ and thus every object defined using this TC must
94
+ identify the object with syntax AddressFamilyNumbers
95
+ that specifies its type.
96
+
97
+ The syntax and semantics of this object depend on the
98
+ identified AddressFamilyNumbers object as follows:
99
+
100
+ AddressFamilyNumbers this object
101
+ ==================== ===========
102
+ ipV4(1) restricted to the same syntax and
103
+ semantics as the InetAddressIPv4 TC.
104
+
105
+ ipV6(2) restricted to the same syntax and
106
+ semantics as the InetAddressIPv6 TC.
107
+
108
+ fibreChannelWWPN (22)
109
+ & fibreChannelWWNN(23) restricted to the same syntax and
110
+ semantics as the FcNameIdOrZero TC.
111
+
112
+ Types other than the above should not be used unless
113
+
114
+
115
+
116
+ the corresponding format of the IpsAuthAddress object is
117
+ further specified (e.g., in a future revision of this TC).""",
118
+ "reference" :
119
+ """IANA-ADDRESS-FAMILY-NUMBERS-MIB;
120
+ INET-ADDRESS-MIB (RFC 4001);
121
+ FC-MGMT-MIB (RFC 4044).""",
122
+ },
123
+ }, # typedefs
124
+
125
+ "nodes" : {
126
+ "ipsAuthMibModule" : {
127
+ "nodetype" : "node",
128
+ "moduleName" : "IPS-AUTH-MIB",
129
+ "oid" : "1.3.6.1.2.1.141",
130
+ "status" : "current",
131
+ }, # node
132
+ "ipsAuthNotifications" : {
133
+ "nodetype" : "node",
134
+ "moduleName" : "IPS-AUTH-MIB",
135
+ "oid" : "1.3.6.1.2.1.141.0",
136
+ }, # node
137
+ "ipsAuthObjects" : {
138
+ "nodetype" : "node",
139
+ "moduleName" : "IPS-AUTH-MIB",
140
+ "oid" : "1.3.6.1.2.1.141.1",
141
+ }, # node
142
+ "ipsAuthDescriptors" : {
143
+ "nodetype" : "node",
144
+ "moduleName" : "IPS-AUTH-MIB",
145
+ "oid" : "1.3.6.1.2.1.141.1.1",
146
+ }, # node
147
+ "ipsAuthMethodTypes" : {
148
+ "nodetype" : "node",
149
+ "moduleName" : "IPS-AUTH-MIB",
150
+ "oid" : "1.3.6.1.2.1.141.1.1.1",
151
+ "status" : "current",
152
+ "description" :
153
+ """Registration point for Authentication Method Types.""",
154
+ "reference" :
155
+ """RFC 3720, iSCSI Protocol Specification.""",
156
+ }, # node
157
+ "ipsAuthMethodNone" : {
158
+ "nodetype" : "node",
159
+ "moduleName" : "IPS-AUTH-MIB",
160
+ "oid" : "1.3.6.1.2.1.141.1.1.1.1",
161
+ "status" : "current",
162
+ "description" :
163
+ """The authoritative identifier when no authentication
164
+ method is used.""",
165
+ "reference" :
166
+ """RFC 3720, iSCSI Protocol Specification.""",
167
+ }, # node
168
+ "ipsAuthMethodSrp" : {
169
+ "nodetype" : "node",
170
+ "moduleName" : "IPS-AUTH-MIB",
171
+ "oid" : "1.3.6.1.2.1.141.1.1.1.2",
172
+ "status" : "current",
173
+ "description" :
174
+ """The authoritative identifier when the authentication
175
+ method is SRP.""",
176
+ "reference" :
177
+ """RFC 3720, iSCSI Protocol Specification.""",
178
+ }, # node
179
+ "ipsAuthMethodChap" : {
180
+ "nodetype" : "node",
181
+ "moduleName" : "IPS-AUTH-MIB",
182
+ "oid" : "1.3.6.1.2.1.141.1.1.1.3",
183
+ "status" : "current",
184
+ "description" :
185
+ """The authoritative identifier when the authentication
186
+ method is CHAP.""",
187
+ "reference" :
188
+ """RFC 3720, iSCSI Protocol Specification.""",
189
+ }, # node
190
+ "ipsAuthMethodKerberos" : {
191
+ "nodetype" : "node",
192
+ "moduleName" : "IPS-AUTH-MIB",
193
+ "oid" : "1.3.6.1.2.1.141.1.1.1.4",
194
+ "status" : "current",
195
+ "description" :
196
+ """The authoritative identifier when the authentication
197
+ method is Kerberos.""",
198
+ "reference" :
199
+ """RFC 3720, iSCSI Protocol Specification.""",
200
+ }, # node
201
+ "ipsAuthInstance" : {
202
+ "nodetype" : "node",
203
+ "moduleName" : "IPS-AUTH-MIB",
204
+ "oid" : "1.3.6.1.2.1.141.1.2",
205
+ }, # node
206
+ "ipsAuthInstanceAttributesTable" : {
207
+ "nodetype" : "table",
208
+ "moduleName" : "IPS-AUTH-MIB",
209
+ "oid" : "1.3.6.1.2.1.141.1.2.2",
210
+ "status" : "current",
211
+ "description" :
212
+ """A list of Authorization instances present on the system.""",
213
+ }, # table
214
+ "ipsAuthInstanceAttributesEntry" : {
215
+ "nodetype" : "row",
216
+ "moduleName" : "IPS-AUTH-MIB",
217
+ "oid" : "1.3.6.1.2.1.141.1.2.2.1",
218
+ "status" : "current",
219
+ "linkage" : [
220
+ "ipsAuthInstIndex",
221
+ ],
222
+ "description" :
223
+ """An entry (row) containing management information
224
+ applicable to a particular Authorization instance.""",
225
+ }, # row
226
+ "ipsAuthInstIndex" : {
227
+ "nodetype" : "column",
228
+ "moduleName" : "IPS-AUTH-MIB",
229
+ "oid" : "1.3.6.1.2.1.141.1.2.2.1.1",
230
+ "status" : "current",
231
+ "syntax" : {
232
+ "type" : {
233
+ "basetype" : "Unsigned32",
234
+ "ranges" : [
235
+ {
236
+ "min" : "1",
237
+ "max" : "4294967295"
238
+ },
239
+ ],
240
+ "range" : {
241
+ "min" : "1",
242
+ "max" : "4294967295"
243
+ },
244
+ },
245
+ },
246
+ "access" : "noaccess",
247
+ "description" :
248
+ """An arbitrary integer used to uniquely identify a
249
+ particular authorization instance. This index value
250
+ must not be modified or reused by an agent unless
251
+ a reboot has occurred. An agent should attempt to
252
+ keep this value persistent across reboots.""",
253
+ }, # column
254
+ "ipsAuthInstDescr" : {
255
+ "nodetype" : "column",
256
+ "moduleName" : "IPS-AUTH-MIB",
257
+ "oid" : "1.3.6.1.2.1.141.1.2.2.1.2",
258
+ "status" : "current",
259
+ "syntax" : {
260
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
261
+ },
262
+ "access" : "readwrite",
263
+ "description" :
264
+ """A character string, determined by the implementation to
265
+ describe the authorization instance. When only a single
266
+ instance is present, this object may be set to the
267
+ zero-length string; with multiple authorization
268
+ instances, it must be set to a unique value in an
269
+ implementation-dependent manner to describe the purpose
270
+ of the respective instance. If this is deployed in a
271
+ master agent with more than one subagent implementing
272
+ this MIB module, the master agent is responsible for
273
+ ensuring that this object is unique across all
274
+ subagents.""",
275
+ }, # column
276
+ "ipsAuthInstStorageType" : {
277
+ "nodetype" : "column",
278
+ "moduleName" : "IPS-AUTH-MIB",
279
+ "oid" : "1.3.6.1.2.1.141.1.2.2.1.3",
280
+ "status" : "current",
281
+ "syntax" : {
282
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
283
+ },
284
+ "access" : "readwrite",
285
+ "default" : "volatile",
286
+ "description" :
287
+ """The storage type for all read-write objects within this
288
+ row. Rows in this table are always created via an
289
+ external process, and may have a storage type of readOnly
290
+ or permanent. Conceptual rows having the value 'permanent'
291
+ need not allow write access to any columnar objects in
292
+ the row.
293
+
294
+ If this object has the value 'volatile', modifications
295
+ to read-write objects in this row are not persistent
296
+ across reboots. If this object has the value
297
+ 'nonVolatile', modifications to objects in this row
298
+ are persistent.
299
+
300
+ An implementation may choose to allow this object
301
+ to be set to either 'nonVolatile' or 'volatile',
302
+ allowing the management application to choose this
303
+ behavior.""",
304
+ }, # column
305
+ "ipsAuthIdentity" : {
306
+ "nodetype" : "node",
307
+ "moduleName" : "IPS-AUTH-MIB",
308
+ "oid" : "1.3.6.1.2.1.141.1.3",
309
+ }, # node
310
+ "ipsAuthIdentAttributesTable" : {
311
+ "nodetype" : "table",
312
+ "moduleName" : "IPS-AUTH-MIB",
313
+ "oid" : "1.3.6.1.2.1.141.1.3.1",
314
+ "status" : "current",
315
+ "description" :
316
+ """A list of user identities, each belonging to a
317
+ particular ipsAuthInstance.""",
318
+ }, # table
319
+ "ipsAuthIdentAttributesEntry" : {
320
+ "nodetype" : "row",
321
+ "moduleName" : "IPS-AUTH-MIB",
322
+ "oid" : "1.3.6.1.2.1.141.1.3.1.1",
323
+ "create" : "true",
324
+ "status" : "current",
325
+ "linkage" : [
326
+ "ipsAuthInstIndex",
327
+ "ipsAuthIdentIndex",
328
+ ],
329
+ "description" :
330
+ """An entry (row) containing management information
331
+ describing a user identity within an authorization
332
+ instance on this node.""",
333
+ }, # row
334
+ "ipsAuthIdentIndex" : {
335
+ "nodetype" : "column",
336
+ "moduleName" : "IPS-AUTH-MIB",
337
+ "oid" : "1.3.6.1.2.1.141.1.3.1.1.1",
338
+ "status" : "current",
339
+ "syntax" : {
340
+ "type" : {
341
+ "basetype" : "Unsigned32",
342
+ "ranges" : [
343
+ {
344
+ "min" : "1",
345
+ "max" : "4294967295"
346
+ },
347
+ ],
348
+ "range" : {
349
+ "min" : "1",
350
+ "max" : "4294967295"
351
+ },
352
+ },
353
+ },
354
+ "access" : "noaccess",
355
+ "description" :
356
+ """An arbitrary integer used to uniquely identify a
357
+ particular identity instance within an authorization
358
+ instance present on the node. This index value
359
+ must not be modified or reused by an agent unless
360
+ a reboot has occurred. An agent should attempt to
361
+ keep this value persistent across reboots.""",
362
+ }, # column
363
+ "ipsAuthIdentDescription" : {
364
+ "nodetype" : "column",
365
+ "moduleName" : "IPS-AUTH-MIB",
366
+ "oid" : "1.3.6.1.2.1.141.1.3.1.1.2",
367
+ "status" : "current",
368
+ "syntax" : {
369
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
370
+ },
371
+ "access" : "readwrite",
372
+ "description" :
373
+ """A character string describing this particular identity.""",
374
+ }, # column
375
+ "ipsAuthIdentRowStatus" : {
376
+ "nodetype" : "column",
377
+ "moduleName" : "IPS-AUTH-MIB",
378
+ "oid" : "1.3.6.1.2.1.141.1.3.1.1.3",
379
+ "status" : "current",
380
+ "syntax" : {
381
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
382
+ },
383
+ "access" : "readwrite",
384
+ "description" :
385
+ """This field allows entries to be dynamically added and
386
+ removed from this table via SNMP. When adding a row to
387
+ this table, all non-Index/RowStatus objects must be set.
388
+ Rows may be discarded using RowStatus. The value of
389
+ ipsAuthIdentDescription may be set while
390
+ ipsAuthIdentRowStatus is 'active'.""",
391
+ }, # column
392
+ "ipsAuthIdentStorageType" : {
393
+ "nodetype" : "column",
394
+ "moduleName" : "IPS-AUTH-MIB",
395
+ "oid" : "1.3.6.1.2.1.141.1.3.1.1.4",
396
+ "status" : "current",
397
+ "syntax" : {
398
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
399
+ },
400
+ "access" : "readwrite",
401
+ "default" : "nonVolatile",
402
+ "description" :
403
+ """The storage type for all read-create objects in this row.
404
+ Rows in this table that were created through an external
405
+ process may have a storage type of readOnly or permanent.
406
+ Conceptual rows having the value 'permanent' need not
407
+ allow write access to any columnar objects in the row.""",
408
+ }, # column
409
+ "ipsAuthIdentityName" : {
410
+ "nodetype" : "node",
411
+ "moduleName" : "IPS-AUTH-MIB",
412
+ "oid" : "1.3.6.1.2.1.141.1.4",
413
+ }, # node
414
+ "ipsAuthIdentNameAttributesTable" : {
415
+ "nodetype" : "table",
416
+ "moduleName" : "IPS-AUTH-MIB",
417
+ "oid" : "1.3.6.1.2.1.141.1.4.1",
418
+ "status" : "current",
419
+ "description" :
420
+ """A list of unique names that can be used to positively
421
+ identify a particular user identity.""",
422
+ }, # table
423
+ "ipsAuthIdentNameAttributesEntry" : {
424
+ "nodetype" : "row",
425
+ "moduleName" : "IPS-AUTH-MIB",
426
+ "oid" : "1.3.6.1.2.1.141.1.4.1.1",
427
+ "create" : "true",
428
+ "status" : "current",
429
+ "linkage" : [
430
+ "ipsAuthInstIndex",
431
+ "ipsAuthIdentIndex",
432
+ "ipsAuthIdentNameIndex",
433
+ ],
434
+ "description" :
435
+ """An entry (row) containing management information
436
+ applicable to a unique identity name, which can be used
437
+ to identify a user identity within a particular
438
+ authorization instance.""",
439
+ }, # row
440
+ "ipsAuthIdentNameIndex" : {
441
+ "nodetype" : "column",
442
+ "moduleName" : "IPS-AUTH-MIB",
443
+ "oid" : "1.3.6.1.2.1.141.1.4.1.1.1",
444
+ "status" : "current",
445
+ "syntax" : {
446
+ "type" : {
447
+ "basetype" : "Unsigned32",
448
+ "ranges" : [
449
+ {
450
+ "min" : "1",
451
+ "max" : "4294967295"
452
+ },
453
+ ],
454
+ "range" : {
455
+ "min" : "1",
456
+ "max" : "4294967295"
457
+ },
458
+ },
459
+ },
460
+ "access" : "noaccess",
461
+ "description" :
462
+ """An arbitrary integer used to uniquely identify a
463
+ particular identity name instance within an
464
+ ipsAuthIdentity within an authorization instance.
465
+ This index value must not be modified or reused by
466
+ an agent unless a reboot has occurred. An agent
467
+ should attempt to keep this value persistent across
468
+ reboots.""",
469
+ }, # column
470
+ "ipsAuthIdentName" : {
471
+ "nodetype" : "column",
472
+ "moduleName" : "IPS-AUTH-MIB",
473
+ "oid" : "1.3.6.1.2.1.141.1.4.1.1.2",
474
+ "status" : "current",
475
+ "syntax" : {
476
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
477
+ },
478
+ "access" : "readwrite",
479
+ "description" :
480
+ """A character string that is the unique name of an
481
+ identity that may be used to identify this ipsAuthIdent
482
+ entry.""",
483
+ }, # column
484
+ "ipsAuthIdentNameRowStatus" : {
485
+ "nodetype" : "column",
486
+ "moduleName" : "IPS-AUTH-MIB",
487
+ "oid" : "1.3.6.1.2.1.141.1.4.1.1.3",
488
+ "status" : "current",
489
+ "syntax" : {
490
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
491
+ },
492
+ "access" : "readwrite",
493
+ "description" :
494
+ """This field allows entries to be dynamically added and
495
+ removed from this table via SNMP. When adding a row to
496
+ this table, all non-Index/RowStatus objects must be set.
497
+ Rows may be discarded using RowStatus. The value of
498
+ ipsAuthIdentName may be set when this value is 'active'.""",
499
+ }, # column
500
+ "ipsAuthIdentNameStorageType" : {
501
+ "nodetype" : "column",
502
+ "moduleName" : "IPS-AUTH-MIB",
503
+ "oid" : "1.3.6.1.2.1.141.1.4.1.1.4",
504
+ "status" : "current",
505
+ "syntax" : {
506
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
507
+ },
508
+ "access" : "readwrite",
509
+ "default" : "nonVolatile",
510
+ "description" :
511
+ """The storage type for all read-create objects in this row.
512
+ Rows in this table that were created through an external
513
+ process may have a storage type of readOnly or permanent.
514
+ Conceptual rows having the value 'permanent' need not
515
+ allow write access to any columnar objects in the row.""",
516
+ }, # column
517
+ "ipsAuthIdentityAddress" : {
518
+ "nodetype" : "node",
519
+ "moduleName" : "IPS-AUTH-MIB",
520
+ "oid" : "1.3.6.1.2.1.141.1.5",
521
+ }, # node
522
+ "ipsAuthIdentAddrAttributesTable" : {
523
+ "nodetype" : "table",
524
+ "moduleName" : "IPS-AUTH-MIB",
525
+ "oid" : "1.3.6.1.2.1.141.1.5.1",
526
+ "status" : "current",
527
+ "description" :
528
+ """A list of address ranges that are allowed to serve
529
+ as the endpoint addresses of a particular identity.
530
+ An address range includes a starting and ending address
531
+ and an optional netmask, and an address type indicator,
532
+ which can specify whether the address is IPv4, IPv6,
533
+ FC-WWPN, or FC-WWNN.""",
534
+ }, # table
535
+ "ipsAuthIdentAddrAttributesEntry" : {
536
+ "nodetype" : "row",
537
+ "moduleName" : "IPS-AUTH-MIB",
538
+ "oid" : "1.3.6.1.2.1.141.1.5.1.1",
539
+ "create" : "true",
540
+ "status" : "current",
541
+ "linkage" : [
542
+ "ipsAuthInstIndex",
543
+ "ipsAuthIdentIndex",
544
+ "ipsAuthIdentAddrIndex",
545
+ ],
546
+ "description" :
547
+ """An entry (row) containing management information
548
+ applicable to an address range that is used as part
549
+ of the authorization of an identity
550
+ within an authorization instance on this node.""",
551
+ }, # row
552
+ "ipsAuthIdentAddrIndex" : {
553
+ "nodetype" : "column",
554
+ "moduleName" : "IPS-AUTH-MIB",
555
+ "oid" : "1.3.6.1.2.1.141.1.5.1.1.1",
556
+ "status" : "current",
557
+ "syntax" : {
558
+ "type" : {
559
+ "basetype" : "Unsigned32",
560
+ "ranges" : [
561
+ {
562
+ "min" : "1",
563
+ "max" : "4294967295"
564
+ },
565
+ ],
566
+ "range" : {
567
+ "min" : "1",
568
+ "max" : "4294967295"
569
+ },
570
+ },
571
+ },
572
+ "access" : "noaccess",
573
+ "description" :
574
+ """An arbitrary integer used to uniquely identify a
575
+ particular ipsAuthIdentAddress instance within an
576
+ ipsAuthIdentity within an authorization instance
577
+ present on the node.
578
+ This index value must not be modified or reused by
579
+ an agent unless a reboot has occurred. An agent
580
+ should attempt to keep this value persistent across
581
+ reboots.""",
582
+ }, # column
583
+ "ipsAuthIdentAddrType" : {
584
+ "nodetype" : "column",
585
+ "moduleName" : "IPS-AUTH-MIB",
586
+ "oid" : "1.3.6.1.2.1.141.1.5.1.1.2",
587
+ "status" : "current",
588
+ "syntax" : {
589
+ "type" : { "module" :"IANA-ADDRESS-FAMILY-NUMBERS-MIB", "name" : "AddressFamilyNumbers"},
590
+ },
591
+ "access" : "readwrite",
592
+ "description" :
593
+ """The address types used in the ipsAuthIdentAddrStart
594
+ and ipsAuthAddrEnd objects. This type is taken
595
+ from the IANA address family types.""",
596
+ }, # column
597
+ "ipsAuthIdentAddrStart" : {
598
+ "nodetype" : "column",
599
+ "moduleName" : "IPS-AUTH-MIB",
600
+ "oid" : "1.3.6.1.2.1.141.1.5.1.1.3",
601
+ "status" : "current",
602
+ "syntax" : {
603
+ "type" : { "module" :"IPS-AUTH-MIB", "name" : "IpsAuthAddress"},
604
+ },
605
+ "access" : "readwrite",
606
+ "description" :
607
+ """The starting address of the allowed address range.
608
+ The format of this object is determined by
609
+ ipsAuthIdentAddrType.""",
610
+ }, # column
611
+ "ipsAuthIdentAddrEnd" : {
612
+ "nodetype" : "column",
613
+ "moduleName" : "IPS-AUTH-MIB",
614
+ "oid" : "1.3.6.1.2.1.141.1.5.1.1.4",
615
+ "status" : "current",
616
+ "syntax" : {
617
+ "type" : { "module" :"IPS-AUTH-MIB", "name" : "IpsAuthAddress"},
618
+ },
619
+ "access" : "readwrite",
620
+ "description" :
621
+ """The ending address of the allowed address range.
622
+ If the ipsAuthIdentAddrEntry specifies a single
623
+ address, this shall match the ipsAuthIdentAddrStart.
624
+ The format of this object is determined by
625
+ ipsAuthIdentAddrType.""",
626
+ }, # column
627
+ "ipsAuthIdentAddrRowStatus" : {
628
+ "nodetype" : "column",
629
+ "moduleName" : "IPS-AUTH-MIB",
630
+ "oid" : "1.3.6.1.2.1.141.1.5.1.1.5",
631
+ "status" : "current",
632
+ "syntax" : {
633
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
634
+ },
635
+ "access" : "readwrite",
636
+ "description" :
637
+ """This field allows entries to be dynamically added and
638
+ removed from this table via SNMP. When adding a row to
639
+ this table, all non-Index/RowStatus objects must be set.
640
+ Rows may be discarded using RowStatus. The values of
641
+ ipsAuthIdentAddrStart and ipsAuthIdentAddrEnd may be set
642
+ when this value is 'active'. The value of
643
+ ipsAuthIdentAddrType may not be set when this value is
644
+ 'active'.""",
645
+ }, # column
646
+ "ipsAuthIdentAddrStorageType" : {
647
+ "nodetype" : "column",
648
+ "moduleName" : "IPS-AUTH-MIB",
649
+ "oid" : "1.3.6.1.2.1.141.1.5.1.1.6",
650
+ "status" : "current",
651
+ "syntax" : {
652
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
653
+ },
654
+ "access" : "readwrite",
655
+ "default" : "nonVolatile",
656
+ "description" :
657
+ """The storage type for all read-create objects in this row.
658
+ Rows in this table that were created through an external
659
+ process may have a storage type of readOnly or permanent.
660
+ Conceptual rows having the value 'permanent' need not
661
+ allow write access to any columnar objects in the row.""",
662
+ }, # column
663
+ "ipsAuthCredential" : {
664
+ "nodetype" : "node",
665
+ "moduleName" : "IPS-AUTH-MIB",
666
+ "oid" : "1.3.6.1.2.1.141.1.6",
667
+ }, # node
668
+ "ipsAuthCredentialAttributesTable" : {
669
+ "nodetype" : "table",
670
+ "moduleName" : "IPS-AUTH-MIB",
671
+ "oid" : "1.3.6.1.2.1.141.1.6.1",
672
+ "status" : "current",
673
+ "description" :
674
+ """A list of credentials related to user identities
675
+ that are allowed as valid authenticators of the
676
+ particular identity.""",
677
+ }, # table
678
+ "ipsAuthCredentialAttributesEntry" : {
679
+ "nodetype" : "row",
680
+ "moduleName" : "IPS-AUTH-MIB",
681
+ "oid" : "1.3.6.1.2.1.141.1.6.1.1",
682
+ "create" : "true",
683
+ "status" : "current",
684
+ "linkage" : [
685
+ "ipsAuthInstIndex",
686
+ "ipsAuthIdentIndex",
687
+ "ipsAuthCredIndex",
688
+ ],
689
+ "description" :
690
+ """An entry (row) containing management information
691
+ applicable to a credential that verifies a user
692
+ identity within an authorization instance.
693
+
694
+
695
+
696
+ To provide complete information in this MIB for a credential,
697
+ the management station must not only create the row in this
698
+ table but must also create a row in another table, where the
699
+ other table is determined by the value of
700
+ ipsAuthCredAuthMethod, e.g., if ipsAuthCredAuthMethod has the
701
+ value ipsAuthMethodChap, a row must be created in the
702
+ ipsAuthCredChapAttributesTable.""",
703
+ }, # row
704
+ "ipsAuthCredIndex" : {
705
+ "nodetype" : "column",
706
+ "moduleName" : "IPS-AUTH-MIB",
707
+ "oid" : "1.3.6.1.2.1.141.1.6.1.1.1",
708
+ "status" : "current",
709
+ "syntax" : {
710
+ "type" : {
711
+ "basetype" : "Unsigned32",
712
+ "ranges" : [
713
+ {
714
+ "min" : "1",
715
+ "max" : "4294967295"
716
+ },
717
+ ],
718
+ "range" : {
719
+ "min" : "1",
720
+ "max" : "4294967295"
721
+ },
722
+ },
723
+ },
724
+ "access" : "noaccess",
725
+ "description" :
726
+ """An arbitrary integer used to uniquely identify a
727
+ particular Credential instance within an instance
728
+ present on the node.
729
+ This index value must not be modified or reused by
730
+ an agent unless a reboot has occurred. An agent
731
+ should attempt to keep this value persistent across
732
+ reboots.""",
733
+ }, # column
734
+ "ipsAuthCredAuthMethod" : {
735
+ "nodetype" : "column",
736
+ "moduleName" : "IPS-AUTH-MIB",
737
+ "oid" : "1.3.6.1.2.1.141.1.6.1.1.2",
738
+ "status" : "current",
739
+ "syntax" : {
740
+ "type" : { "module" :"SNMPv2-TC", "name" : "AutonomousType"},
741
+ },
742
+ "access" : "readwrite",
743
+ "description" :
744
+ """This object contains an OBJECT IDENTIFIER
745
+ that identifies the authentication method
746
+ used with this credential.
747
+
748
+ When a row is created in this table, a corresponding
749
+ row must be created by the management station
750
+ in a corresponding table specified by this value.
751
+
752
+ When a row is deleted from this table, the corresponding
753
+ row must be automatically deleted by the agent in
754
+ the corresponding table specified by this value.
755
+
756
+
757
+
758
+
759
+ If the value of this object is ipsAuthMethodNone, no
760
+ corresponding rows are created or deleted from other
761
+ tables.
762
+
763
+ Some standardized values for this object are defined
764
+ within the ipsAuthMethodTypes subtree.""",
765
+ }, # column
766
+ "ipsAuthCredRowStatus" : {
767
+ "nodetype" : "column",
768
+ "moduleName" : "IPS-AUTH-MIB",
769
+ "oid" : "1.3.6.1.2.1.141.1.6.1.1.3",
770
+ "status" : "current",
771
+ "syntax" : {
772
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
773
+ },
774
+ "access" : "readwrite",
775
+ "description" :
776
+ """This field allows entries to be dynamically added and
777
+ removed from this table via SNMP. When adding a row to
778
+ this table, all non-Index/RowStatus objects must be set.
779
+ Rows may be discarded using RowStatus. The value of
780
+ ipsAuthCredAuthMethod must not be changed while this row
781
+ is 'active'.""",
782
+ }, # column
783
+ "ipsAuthCredStorageType" : {
784
+ "nodetype" : "column",
785
+ "moduleName" : "IPS-AUTH-MIB",
786
+ "oid" : "1.3.6.1.2.1.141.1.6.1.1.4",
787
+ "status" : "current",
788
+ "syntax" : {
789
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
790
+ },
791
+ "access" : "readwrite",
792
+ "default" : "nonVolatile",
793
+ "description" :
794
+ """The storage type for all read-create objects in this row.
795
+ Rows in this table that were created through an external
796
+ process may have a storage type of readOnly or permanent.
797
+ Conceptual rows having the value 'permanent' need not
798
+ allow write access to any columnar objects in the row.""",
799
+ }, # column
800
+ "ipsAuthCredChap" : {
801
+ "nodetype" : "node",
802
+ "moduleName" : "IPS-AUTH-MIB",
803
+ "oid" : "1.3.6.1.2.1.141.1.7",
804
+ }, # node
805
+ "ipsAuthCredChapAttributesTable" : {
806
+ "nodetype" : "table",
807
+ "moduleName" : "IPS-AUTH-MIB",
808
+ "oid" : "1.3.6.1.2.1.141.1.7.1",
809
+ "status" : "current",
810
+ "description" :
811
+ """A list of CHAP attributes for credentials that
812
+ use ipsAuthMethodChap as their ipsAuthCredAuthMethod.
813
+
814
+ A row in this table can only exist when an instance of
815
+ the ipsAuthCredAuthMethod object exists (or is created
816
+
817
+
818
+
819
+ simultaneously) having the same instance identifiers
820
+ and a value of 'ipsAuthMethodChap'.""",
821
+ }, # table
822
+ "ipsAuthCredChapAttributesEntry" : {
823
+ "nodetype" : "row",
824
+ "moduleName" : "IPS-AUTH-MIB",
825
+ "oid" : "1.3.6.1.2.1.141.1.7.1.1",
826
+ "create" : "true",
827
+ "status" : "current",
828
+ "linkage" : [
829
+ "ipsAuthInstIndex",
830
+ "ipsAuthIdentIndex",
831
+ "ipsAuthCredIndex",
832
+ ],
833
+ "description" :
834
+ """An entry (row) containing management information
835
+ applicable to a credential that uses
836
+ ipsAuthMethodChap as their ipsAuthCredAuthMethod.
837
+
838
+ When a row is created in ipsAuthCredentialAttributesTable
839
+ with ipsAuthCredAuthMethod = ipsAuthCredChap, the
840
+ management station must create a corresponding row
841
+ in this table.
842
+
843
+ When a row is deleted from ipsAuthCredentialAttributesTable
844
+ with ipsAuthCredAuthMethod = ipsAuthCredChap, the
845
+ agent must delete the corresponding row (if any) in
846
+ this table.""",
847
+ }, # row
848
+ "ipsAuthCredChapUserName" : {
849
+ "nodetype" : "column",
850
+ "moduleName" : "IPS-AUTH-MIB",
851
+ "oid" : "1.3.6.1.2.1.141.1.7.1.1.1",
852
+ "status" : "current",
853
+ "syntax" : {
854
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
855
+ },
856
+ "access" : "readwrite",
857
+ "description" :
858
+ """A character string containing the CHAP user name for this
859
+ credential.""",
860
+ "reference" :
861
+ """W. Simpson, RFC 1994: PPP Challenge Handshake
862
+ Authentication Protocol (CHAP), August 1996""",
863
+ }, # column
864
+ "ipsAuthCredChapRowStatus" : {
865
+ "nodetype" : "column",
866
+ "moduleName" : "IPS-AUTH-MIB",
867
+ "oid" : "1.3.6.1.2.1.141.1.7.1.1.2",
868
+ "status" : "current",
869
+ "syntax" : {
870
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
871
+ },
872
+ "access" : "readwrite",
873
+ "description" :
874
+ """This field allows entries to be dynamically added and
875
+ removed from this table via SNMP. When adding a row to
876
+ this table, all non-Index/RowStatus objects must be set.
877
+ Rows may be discarded using RowStatus. The value of
878
+ ipsAuthCredChapUserName may be changed while this row
879
+ is 'active'.""",
880
+ }, # column
881
+ "ipsAuthCredChapStorageType" : {
882
+ "nodetype" : "column",
883
+ "moduleName" : "IPS-AUTH-MIB",
884
+ "oid" : "1.3.6.1.2.1.141.1.7.1.1.3",
885
+ "status" : "current",
886
+ "syntax" : {
887
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
888
+ },
889
+ "access" : "readwrite",
890
+ "default" : "nonVolatile",
891
+ "description" :
892
+ """The storage type for all read-create objects in this row.
893
+ Rows in this table that were created through an external
894
+ process may have a storage type of readOnly or permanent.
895
+ Conceptual rows having the value 'permanent' need not
896
+ allow write access to any columnar objects in the row.""",
897
+ }, # column
898
+ "ipsAuthCredSrp" : {
899
+ "nodetype" : "node",
900
+ "moduleName" : "IPS-AUTH-MIB",
901
+ "oid" : "1.3.6.1.2.1.141.1.8",
902
+ }, # node
903
+ "ipsAuthCredSrpAttributesTable" : {
904
+ "nodetype" : "table",
905
+ "moduleName" : "IPS-AUTH-MIB",
906
+ "oid" : "1.3.6.1.2.1.141.1.8.1",
907
+ "status" : "current",
908
+ "description" :
909
+ """A list of SRP attributes for credentials that
910
+ use ipsAuthMethodSrp as its ipsAuthCredAuthMethod.
911
+
912
+ A row in this table can only exist when an instance of
913
+ the ipsAuthCredAuthMethod object exists (or is created
914
+ simultaneously) having the same instance identifiers
915
+ and a value of 'ipsAuthMethodSrp'.""",
916
+ }, # table
917
+ "ipsAuthCredSrpAttributesEntry" : {
918
+ "nodetype" : "row",
919
+ "moduleName" : "IPS-AUTH-MIB",
920
+ "oid" : "1.3.6.1.2.1.141.1.8.1.1",
921
+ "create" : "true",
922
+ "status" : "current",
923
+ "linkage" : [
924
+ "ipsAuthInstIndex",
925
+ "ipsAuthIdentIndex",
926
+ "ipsAuthCredIndex",
927
+ ],
928
+ "description" :
929
+ """An entry (row) containing management information
930
+ applicable to a credential that uses
931
+ ipsAuthMethodSrp as their ipsAuthCredAuthMethod.
932
+
933
+
934
+
935
+
936
+ When a row is created in ipsAuthCredentialAttributesTable
937
+ with ipsAuthCredAuthMethod = ipsAuthCredSrp, the
938
+ management station must create a corresponding row
939
+ in this table.
940
+
941
+ When a row is deleted from ipsAuthCredentialAttributesTable
942
+ with ipsAuthCredAuthMethod = ipsAuthCredSrp, the
943
+ agent must delete the corresponding row (if any) in
944
+ this table.""",
945
+ }, # row
946
+ "ipsAuthCredSrpUserName" : {
947
+ "nodetype" : "column",
948
+ "moduleName" : "IPS-AUTH-MIB",
949
+ "oid" : "1.3.6.1.2.1.141.1.8.1.1.1",
950
+ "status" : "current",
951
+ "syntax" : {
952
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
953
+ },
954
+ "access" : "readwrite",
955
+ "description" :
956
+ """A character string containing the SRP user name for this
957
+ credential.""",
958
+ "reference" :
959
+ """T. Wu, RFC 2945: The SRP Authentication and Key
960
+ Exchange System, September 2000""",
961
+ }, # column
962
+ "ipsAuthCredSrpRowStatus" : {
963
+ "nodetype" : "column",
964
+ "moduleName" : "IPS-AUTH-MIB",
965
+ "oid" : "1.3.6.1.2.1.141.1.8.1.1.2",
966
+ "status" : "current",
967
+ "syntax" : {
968
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
969
+ },
970
+ "access" : "readwrite",
971
+ "description" :
972
+ """This field allows entries to be dynamically added and
973
+ removed from this table via SNMP. When adding a row to
974
+ this table, all non-Index/RowStatus objects must be set.
975
+ Rows may be discarded using RowStatus. The value of
976
+ ipsAuthCredSrpUserName may be changed while the status
977
+ of this row is 'active'.""",
978
+ }, # column
979
+ "ipsAuthCredSrpStorageType" : {
980
+ "nodetype" : "column",
981
+ "moduleName" : "IPS-AUTH-MIB",
982
+ "oid" : "1.3.6.1.2.1.141.1.8.1.1.3",
983
+ "status" : "current",
984
+ "syntax" : {
985
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
986
+ },
987
+ "access" : "readwrite",
988
+ "default" : "nonVolatile",
989
+ "description" :
990
+ """The storage type for all read-create objects in this row.
991
+ Rows in this table that were created through an external
992
+ process may have a storage type of readOnly or permanent.
993
+ Conceptual rows having the value 'permanent' need not
994
+ allow write access to any columnar objects in the row.""",
995
+ }, # column
996
+ "ipsAuthCredKerberos" : {
997
+ "nodetype" : "node",
998
+ "moduleName" : "IPS-AUTH-MIB",
999
+ "oid" : "1.3.6.1.2.1.141.1.9",
1000
+ }, # node
1001
+ "ipsAuthCredKerbAttributesTable" : {
1002
+ "nodetype" : "table",
1003
+ "moduleName" : "IPS-AUTH-MIB",
1004
+ "oid" : "1.3.6.1.2.1.141.1.9.1",
1005
+ "status" : "current",
1006
+ "description" :
1007
+ """A list of Kerberos attributes for credentials that
1008
+ use ipsAuthMethodKerberos as their ipsAuthCredAuthMethod.
1009
+
1010
+ A row in this table can only exist when an instance of
1011
+ the ipsAuthCredAuthMethod object exists (or is created
1012
+ simultaneously) having the same instance identifiers
1013
+ and a value of 'ipsAuthMethodKerb'.""",
1014
+ }, # table
1015
+ "ipsAuthCredKerbAttributesEntry" : {
1016
+ "nodetype" : "row",
1017
+ "moduleName" : "IPS-AUTH-MIB",
1018
+ "oid" : "1.3.6.1.2.1.141.1.9.1.1",
1019
+ "create" : "true",
1020
+ "status" : "current",
1021
+ "linkage" : [
1022
+ "ipsAuthInstIndex",
1023
+ "ipsAuthIdentIndex",
1024
+ "ipsAuthCredIndex",
1025
+ ],
1026
+ "description" :
1027
+ """An entry (row) containing management information
1028
+ applicable to a credential that uses
1029
+ ipsAuthMethodKerberos as its ipsAuthCredAuthMethod.
1030
+
1031
+ When a row is created in ipsAuthCredentialAttributesTable
1032
+ with ipsAuthCredAuthMethod = ipsAuthCredKerberos, the
1033
+ management station must create a corresponding row
1034
+ in this table.
1035
+
1036
+ When a row is deleted from ipsAuthCredentialAttributesTable
1037
+ with ipsAuthCredAuthMethod = ipsAuthCredKerberos, the
1038
+ agent must delete the corresponding row (if any) in
1039
+ this table.""",
1040
+ }, # row
1041
+ "ipsAuthCredKerbPrincipal" : {
1042
+ "nodetype" : "column",
1043
+ "moduleName" : "IPS-AUTH-MIB",
1044
+ "oid" : "1.3.6.1.2.1.141.1.9.1.1.1",
1045
+ "status" : "current",
1046
+ "syntax" : {
1047
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
1048
+ },
1049
+ "access" : "readwrite",
1050
+ "description" :
1051
+ """A character string containing a Kerberos principal
1052
+ for this credential.""",
1053
+ "reference" :
1054
+ """C. Neuman, S. Hartman, and K. Raeburn, RFC 4120:
1055
+ The Kerberos Network Authentication Service (V5),
1056
+ July 2005""",
1057
+ }, # column
1058
+ "ipsAuthCredKerbRowStatus" : {
1059
+ "nodetype" : "column",
1060
+ "moduleName" : "IPS-AUTH-MIB",
1061
+ "oid" : "1.3.6.1.2.1.141.1.9.1.1.2",
1062
+ "status" : "current",
1063
+ "syntax" : {
1064
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1065
+ },
1066
+ "access" : "readwrite",
1067
+ "description" :
1068
+ """This field allows entries to be dynamically added and
1069
+ removed from this table via SNMP. When adding a row to
1070
+ this table, all non-Index/RowStatus objects must be set.
1071
+ Rows may be discarded using RowStatus. The value of
1072
+ ipsAuthCredKerbPrincipal may be changed while this row
1073
+ is 'active'.""",
1074
+ }, # column
1075
+ "ipsAuthCredKerbStorageType" : {
1076
+ "nodetype" : "column",
1077
+ "moduleName" : "IPS-AUTH-MIB",
1078
+ "oid" : "1.3.6.1.2.1.141.1.9.1.1.3",
1079
+ "status" : "current",
1080
+ "syntax" : {
1081
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
1082
+ },
1083
+ "access" : "readwrite",
1084
+ "default" : "nonVolatile",
1085
+ "description" :
1086
+ """The storage type for all read-create objects in this row.
1087
+ Rows in this table that were created through an external
1088
+ process may have a storage type of readOnly or permanent.
1089
+ Conceptual rows having the value 'permanent' need not
1090
+ allow write access to any columnar objects in the row.""",
1091
+ }, # column
1092
+ "ipsAuthConformance" : {
1093
+ "nodetype" : "node",
1094
+ "moduleName" : "IPS-AUTH-MIB",
1095
+ "oid" : "1.3.6.1.2.1.141.2",
1096
+ }, # node
1097
+ "ipsAuthCompliances" : {
1098
+ "nodetype" : "node",
1099
+ "moduleName" : "IPS-AUTH-MIB",
1100
+ "oid" : "1.3.6.1.2.1.141.2.1",
1101
+ }, # node
1102
+ "ipsAuthGroups" : {
1103
+ "nodetype" : "node",
1104
+ "moduleName" : "IPS-AUTH-MIB",
1105
+ "oid" : "1.3.6.1.2.1.141.2.2",
1106
+ }, # node
1107
+ }, # nodes
1108
+
1109
+ "groups" : {
1110
+ "ipsAuthInstanceAttributesGroup" : {
1111
+ "nodetype" : "group",
1112
+ "moduleName" : "IPS-AUTH-MIB",
1113
+ "oid" : "1.3.6.1.2.1.141.2.2.1",
1114
+ "status" : "current",
1115
+ "members" : {
1116
+ "ipsAuthInstDescr" : {
1117
+ "nodetype" : "member",
1118
+ "module" : "IPS-AUTH-MIB"
1119
+ },
1120
+ "ipsAuthInstStorageType" : {
1121
+ "nodetype" : "member",
1122
+ "module" : "IPS-AUTH-MIB"
1123
+ },
1124
+ }, # members
1125
+ "description" :
1126
+ """A collection of objects providing information about
1127
+ authorization instances.""",
1128
+ }, # group
1129
+ "ipsAuthIdentAttributesGroup" : {
1130
+ "nodetype" : "group",
1131
+ "moduleName" : "IPS-AUTH-MIB",
1132
+ "oid" : "1.3.6.1.2.1.141.2.2.2",
1133
+ "status" : "current",
1134
+ "members" : {
1135
+ "ipsAuthIdentDescription" : {
1136
+ "nodetype" : "member",
1137
+ "module" : "IPS-AUTH-MIB"
1138
+ },
1139
+ "ipsAuthIdentRowStatus" : {
1140
+ "nodetype" : "member",
1141
+ "module" : "IPS-AUTH-MIB"
1142
+ },
1143
+ "ipsAuthIdentStorageType" : {
1144
+ "nodetype" : "member",
1145
+ "module" : "IPS-AUTH-MIB"
1146
+ },
1147
+ }, # members
1148
+ "description" :
1149
+ """A collection of objects providing information about
1150
+ user identities within an authorization instance.""",
1151
+ }, # group
1152
+ "ipsAuthIdentNameAttributesGroup" : {
1153
+ "nodetype" : "group",
1154
+ "moduleName" : "IPS-AUTH-MIB",
1155
+ "oid" : "1.3.6.1.2.1.141.2.2.3",
1156
+ "status" : "current",
1157
+ "members" : {
1158
+ "ipsAuthIdentName" : {
1159
+ "nodetype" : "member",
1160
+ "module" : "IPS-AUTH-MIB"
1161
+ },
1162
+ "ipsAuthIdentNameRowStatus" : {
1163
+ "nodetype" : "member",
1164
+ "module" : "IPS-AUTH-MIB"
1165
+ },
1166
+ "ipsAuthIdentNameStorageType" : {
1167
+ "nodetype" : "member",
1168
+ "module" : "IPS-AUTH-MIB"
1169
+ },
1170
+ }, # members
1171
+ "description" :
1172
+ """A collection of objects providing information about
1173
+ user names within user identities within an authorization
1174
+ instance.""",
1175
+ }, # group
1176
+ "ipsAuthIdentAddrAttributesGroup" : {
1177
+ "nodetype" : "group",
1178
+ "moduleName" : "IPS-AUTH-MIB",
1179
+ "oid" : "1.3.6.1.2.1.141.2.2.4",
1180
+ "status" : "current",
1181
+ "members" : {
1182
+ "ipsAuthIdentAddrType" : {
1183
+ "nodetype" : "member",
1184
+ "module" : "IPS-AUTH-MIB"
1185
+ },
1186
+ "ipsAuthIdentAddrStart" : {
1187
+ "nodetype" : "member",
1188
+ "module" : "IPS-AUTH-MIB"
1189
+ },
1190
+ "ipsAuthIdentAddrEnd" : {
1191
+ "nodetype" : "member",
1192
+ "module" : "IPS-AUTH-MIB"
1193
+ },
1194
+ "ipsAuthIdentAddrRowStatus" : {
1195
+ "nodetype" : "member",
1196
+ "module" : "IPS-AUTH-MIB"
1197
+ },
1198
+ "ipsAuthIdentAddrStorageType" : {
1199
+ "nodetype" : "member",
1200
+ "module" : "IPS-AUTH-MIB"
1201
+ },
1202
+ }, # members
1203
+ "description" :
1204
+ """A collection of objects providing information about
1205
+ address ranges within user identities within an
1206
+ authorization instance.""",
1207
+ }, # group
1208
+ "ipsAuthIdentCredAttributesGroup" : {
1209
+ "nodetype" : "group",
1210
+ "moduleName" : "IPS-AUTH-MIB",
1211
+ "oid" : "1.3.6.1.2.1.141.2.2.5",
1212
+ "status" : "current",
1213
+ "members" : {
1214
+ "ipsAuthCredAuthMethod" : {
1215
+ "nodetype" : "member",
1216
+ "module" : "IPS-AUTH-MIB"
1217
+ },
1218
+ "ipsAuthCredRowStatus" : {
1219
+ "nodetype" : "member",
1220
+ "module" : "IPS-AUTH-MIB"
1221
+ },
1222
+ "ipsAuthCredStorageType" : {
1223
+ "nodetype" : "member",
1224
+ "module" : "IPS-AUTH-MIB"
1225
+ },
1226
+ }, # members
1227
+ "description" :
1228
+ """A collection of objects providing information about
1229
+ credentials within user identities within an authorization
1230
+ instance.""",
1231
+ }, # group
1232
+ "ipsAuthIdentChapAttrGroup" : {
1233
+ "nodetype" : "group",
1234
+ "moduleName" : "IPS-AUTH-MIB",
1235
+ "oid" : "1.3.6.1.2.1.141.2.2.6",
1236
+ "status" : "current",
1237
+ "members" : {
1238
+ "ipsAuthCredChapUserName" : {
1239
+ "nodetype" : "member",
1240
+ "module" : "IPS-AUTH-MIB"
1241
+ },
1242
+ "ipsAuthCredChapRowStatus" : {
1243
+ "nodetype" : "member",
1244
+ "module" : "IPS-AUTH-MIB"
1245
+ },
1246
+ "ipsAuthCredChapStorageType" : {
1247
+ "nodetype" : "member",
1248
+ "module" : "IPS-AUTH-MIB"
1249
+ },
1250
+ }, # members
1251
+ "description" :
1252
+ """A collection of objects providing information about
1253
+ CHAP credentials within user identities within an
1254
+ authorization instance.""",
1255
+ }, # group
1256
+ "ipsAuthIdentSrpAttrGroup" : {
1257
+ "nodetype" : "group",
1258
+ "moduleName" : "IPS-AUTH-MIB",
1259
+ "oid" : "1.3.6.1.2.1.141.2.2.7",
1260
+ "status" : "current",
1261
+ "members" : {
1262
+ "ipsAuthCredSrpUserName" : {
1263
+ "nodetype" : "member",
1264
+ "module" : "IPS-AUTH-MIB"
1265
+ },
1266
+ "ipsAuthCredSrpRowStatus" : {
1267
+ "nodetype" : "member",
1268
+ "module" : "IPS-AUTH-MIB"
1269
+ },
1270
+ "ipsAuthCredSrpStorageType" : {
1271
+ "nodetype" : "member",
1272
+ "module" : "IPS-AUTH-MIB"
1273
+ },
1274
+ }, # members
1275
+ "description" :
1276
+ """A collection of objects providing information about
1277
+ SRP credentials within user identities within an
1278
+ authorization instance.""",
1279
+ }, # group
1280
+ "ipsAuthIdentKerberosAttrGroup" : {
1281
+ "nodetype" : "group",
1282
+ "moduleName" : "IPS-AUTH-MIB",
1283
+ "oid" : "1.3.6.1.2.1.141.2.2.8",
1284
+ "status" : "current",
1285
+ "members" : {
1286
+ "ipsAuthCredKerbPrincipal" : {
1287
+ "nodetype" : "member",
1288
+ "module" : "IPS-AUTH-MIB"
1289
+ },
1290
+ "ipsAuthCredKerbRowStatus" : {
1291
+ "nodetype" : "member",
1292
+ "module" : "IPS-AUTH-MIB"
1293
+ },
1294
+ "ipsAuthCredKerbStorageType" : {
1295
+ "nodetype" : "member",
1296
+ "module" : "IPS-AUTH-MIB"
1297
+ },
1298
+ }, # members
1299
+ "description" :
1300
+ """A collection of objects providing information about
1301
+ Kerberos credentials within user identities within an
1302
+ authorization instance.""",
1303
+ }, # group
1304
+ }, # groups
1305
+
1306
+ "compliances" : {
1307
+ "ipsAuthComplianceV1" : {
1308
+ "nodetype" : "compliance",
1309
+ "moduleName" : "IPS-AUTH-MIB",
1310
+ "oid" : "1.3.6.1.2.1.141.2.1.1",
1311
+ "status" : "current",
1312
+ "description" :
1313
+ """Initial version of compliance statement based on
1314
+ initial version of this MIB module.
1315
+
1316
+ The Instance and Identity groups are mandatory;
1317
+ at least one of the other groups (Name, Address,
1318
+ Credential, Certificate) is also mandatory for
1319
+ any given implementation.""",
1320
+ "requires" : {
1321
+ "ipsAuthInstanceAttributesGroup" : {
1322
+ "nodetype" : "mandatory",
1323
+ "module" : "IPS-AUTH-MIB"
1324
+ },
1325
+ "ipsAuthIdentAttributesGroup" : {
1326
+ "nodetype" : "mandatory",
1327
+ "module" : "IPS-AUTH-MIB"
1328
+ },
1329
+ "ipsAuthIdentNameAttributesGroup" : {
1330
+ "nodetype" : "optional",
1331
+ "module" : "IPS-AUTH-MIB",
1332
+ "description" :
1333
+ """This group is mandatory for all implementations
1334
+ that make use of unique identity names.""",
1335
+ },
1336
+ "ipsAuthIdentAddrAttributesGroup" : {
1337
+ "nodetype" : "optional",
1338
+ "module" : "IPS-AUTH-MIB",
1339
+ "description" :
1340
+ """This group is mandatory for all implementations
1341
+ that use addresses to help verify identities.""",
1342
+ },
1343
+ "ipsAuthIdentCredAttributesGroup" : {
1344
+ "nodetype" : "optional",
1345
+ "module" : "IPS-AUTH-MIB",
1346
+ "description" :
1347
+ """This group is mandatory for all implementations
1348
+ that use credentials to help verify identities.""",
1349
+ },
1350
+ "ipsAuthIdentChapAttrGroup" : {
1351
+ "nodetype" : "optional",
1352
+ "module" : "IPS-AUTH-MIB",
1353
+ "description" :
1354
+ """This group is mandatory for all implementations
1355
+ that use CHAP to help verify identities.
1356
+
1357
+ The ipsAuthIdentCredAttributesGroup must be
1358
+ implemented if this group is implemented.""",
1359
+ },
1360
+ "ipsAuthIdentSrpAttrGroup" : {
1361
+ "nodetype" : "optional",
1362
+ "module" : "IPS-AUTH-MIB",
1363
+ "description" :
1364
+ """This group is mandatory for all implementations
1365
+ that use SRP to help verify identities.
1366
+
1367
+ The ipsAuthIdentCredAttributesGroup must be
1368
+ implemented if this group is implemented.""",
1369
+ },
1370
+ "ipsAuthIdentKerberosAttrGroup" : {
1371
+ "nodetype" : "optional",
1372
+ "module" : "IPS-AUTH-MIB",
1373
+ "description" :
1374
+ """This group is mandatory for all implementations
1375
+ that use Kerberos to help verify identities.
1376
+
1377
+ The ipsAuthIdentCredAttributesGroup must be
1378
+ implemented if this group is implemented.""",
1379
+ },
1380
+ }, # requires
1381
+ "refinements" : {
1382
+ "ipsAuthInstDescr" : {
1383
+ "module" : "IPS-AUTH-MIB",
1384
+ "access" : "readonly",
1385
+ "description" :
1386
+ """Write access is not required.""",
1387
+ },
1388
+ "ipsAuthInstStorageType" : {
1389
+ "module" : "IPS-AUTH-MIB",
1390
+ "access" : "readonly",
1391
+ "description" :
1392
+ """Write access is not required.""",
1393
+ },
1394
+ "ipsAuthIdentDescription" : {
1395
+ "module" : "IPS-AUTH-MIB",
1396
+ "access" : "readonly",
1397
+ "description" :
1398
+ """Write access is not required.""",
1399
+ },
1400
+ "ipsAuthIdentRowStatus" : {
1401
+ "module" : "IPS-AUTH-MIB",
1402
+ "syntax" : {
1403
+ "type" : {
1404
+ "basetype" : "Enumeration",
1405
+ "parent module" : {
1406
+ "name" : "SNMPv2-TC",
1407
+ "type" : "RowStatus",
1408
+ },
1409
+ "active" : {
1410
+ "nodetype" : "namednumber",
1411
+ "number" : "1"
1412
+ },
1413
+ },
1414
+ }, # syntax
1415
+ "access" : "readonly",
1416
+ "description" :
1417
+ """Write access is not required, and only one of the
1418
+ six enumerated values for the RowStatus textual
1419
+ convention need be supported, specifically:
1420
+ active(1).""",
1421
+ },
1422
+ "ipsAuthIdentName" : {
1423
+ "module" : "IPS-AUTH-MIB",
1424
+ "access" : "readonly",
1425
+ "description" :
1426
+ """Write access is not required.""",
1427
+ },
1428
+ "ipsAuthIdentNameRowStatus" : {
1429
+ "module" : "IPS-AUTH-MIB",
1430
+ "syntax" : {
1431
+ "type" : {
1432
+ "basetype" : "Enumeration",
1433
+ "parent module" : {
1434
+ "name" : "SNMPv2-TC",
1435
+ "type" : "RowStatus",
1436
+ },
1437
+ "active" : {
1438
+ "nodetype" : "namednumber",
1439
+ "number" : "1"
1440
+ },
1441
+ },
1442
+ }, # syntax
1443
+ "access" : "readonly",
1444
+ "description" :
1445
+ """Write access is not required, and only one of the
1446
+ six enumerated values for the RowStatus textual
1447
+ convention need be supported, specifically:
1448
+ active(1).""",
1449
+ },
1450
+ "ipsAuthIdentAddrType" : {
1451
+ "module" : "IPS-AUTH-MIB",
1452
+ "access" : "readonly",
1453
+ "description" :
1454
+ """Write access is not required.""",
1455
+ },
1456
+ "ipsAuthIdentAddrStart" : {
1457
+ "module" : "IPS-AUTH-MIB",
1458
+ "access" : "readonly",
1459
+ "description" :
1460
+ """Write access is not required.""",
1461
+ },
1462
+ "ipsAuthIdentAddrEnd" : {
1463
+ "module" : "IPS-AUTH-MIB",
1464
+ "access" : "readonly",
1465
+ "description" :
1466
+ """Write access is not required.""",
1467
+ },
1468
+ "ipsAuthIdentAddrRowStatus" : {
1469
+ "module" : "IPS-AUTH-MIB",
1470
+ "syntax" : {
1471
+ "type" : {
1472
+ "basetype" : "Enumeration",
1473
+ "parent module" : {
1474
+ "name" : "SNMPv2-TC",
1475
+ "type" : "RowStatus",
1476
+ },
1477
+ "active" : {
1478
+ "nodetype" : "namednumber",
1479
+ "number" : "1"
1480
+ },
1481
+ },
1482
+ }, # syntax
1483
+ "access" : "readonly",
1484
+ "description" :
1485
+ """Write access is not required, and only one of the
1486
+ six enumerated values for the RowStatus textual
1487
+ convention need be supported, specifically:
1488
+ active(1).""",
1489
+ },
1490
+ "ipsAuthCredAuthMethod" : {
1491
+ "module" : "IPS-AUTH-MIB",
1492
+ "access" : "readonly",
1493
+ "description" :
1494
+ """Write access is not required.""",
1495
+ },
1496
+ "ipsAuthCredRowStatus" : {
1497
+ "module" : "IPS-AUTH-MIB",
1498
+ "syntax" : {
1499
+ "type" : {
1500
+ "basetype" : "Enumeration",
1501
+ "parent module" : {
1502
+ "name" : "SNMPv2-TC",
1503
+ "type" : "RowStatus",
1504
+ },
1505
+ "active" : {
1506
+ "nodetype" : "namednumber",
1507
+ "number" : "1"
1508
+ },
1509
+ },
1510
+ }, # syntax
1511
+ "access" : "readonly",
1512
+ "description" :
1513
+ """Write access is not required, and only one of the
1514
+
1515
+
1516
+
1517
+ six enumerated values for the RowStatus textual
1518
+ convention need be supported, specifically:
1519
+ active(1).""",
1520
+ },
1521
+ "ipsAuthCredChapUserName" : {
1522
+ "module" : "IPS-AUTH-MIB",
1523
+ "access" : "readonly",
1524
+ "description" :
1525
+ """Write access is not required.""",
1526
+ },
1527
+ "ipsAuthCredChapRowStatus" : {
1528
+ "module" : "IPS-AUTH-MIB",
1529
+ "syntax" : {
1530
+ "type" : {
1531
+ "basetype" : "Enumeration",
1532
+ "parent module" : {
1533
+ "name" : "SNMPv2-TC",
1534
+ "type" : "RowStatus",
1535
+ },
1536
+ "active" : {
1537
+ "nodetype" : "namednumber",
1538
+ "number" : "1"
1539
+ },
1540
+ },
1541
+ }, # syntax
1542
+ "access" : "readonly",
1543
+ "description" :
1544
+ """Write access is not required, and only one of the
1545
+ six enumerated values for the RowStatus textual
1546
+ convention need be supported, specifically:
1547
+ active(1).""",
1548
+ },
1549
+ "ipsAuthCredSrpUserName" : {
1550
+ "module" : "IPS-AUTH-MIB",
1551
+ "access" : "readonly",
1552
+ "description" :
1553
+ """Write access is not required.""",
1554
+ },
1555
+ "ipsAuthCredSrpRowStatus" : {
1556
+ "module" : "IPS-AUTH-MIB",
1557
+ "syntax" : {
1558
+ "type" : {
1559
+ "basetype" : "Enumeration",
1560
+ "parent module" : {
1561
+ "name" : "SNMPv2-TC",
1562
+ "type" : "RowStatus",
1563
+ },
1564
+ "active" : {
1565
+ "nodetype" : "namednumber",
1566
+ "number" : "1"
1567
+ },
1568
+ },
1569
+ }, # syntax
1570
+ "access" : "readonly",
1571
+ "description" :
1572
+ """Write access is not required, and only one of the
1573
+ six enumerated values for the RowStatus textual
1574
+ convention need be supported, specifically:
1575
+ active(1).""",
1576
+ },
1577
+ "ipsAuthCredKerbPrincipal" : {
1578
+ "module" : "IPS-AUTH-MIB",
1579
+ "access" : "readonly",
1580
+ "description" :
1581
+ """Write access is not required.""",
1582
+ },
1583
+ "ipsAuthCredKerbRowStatus" : {
1584
+ "module" : "IPS-AUTH-MIB",
1585
+ "syntax" : {
1586
+ "type" : {
1587
+ "basetype" : "Enumeration",
1588
+ "parent module" : {
1589
+ "name" : "SNMPv2-TC",
1590
+ "type" : "RowStatus",
1591
+ },
1592
+ "active" : {
1593
+ "nodetype" : "namednumber",
1594
+ "number" : "1"
1595
+ },
1596
+ },
1597
+ }, # syntax
1598
+ "access" : "readonly",
1599
+ "description" :
1600
+ """Write access is not required, and only one of the six
1601
+ enumerated values for the RowStatus textual convention need
1602
+ be supported, specifically: active(1).""",
1603
+ },
1604
+ }, # refinements
1605
+
1606
+ }, # compliance
1607
+ }, # compliances
1608
+
1609
+ }