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,1116 @@
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 RADIUS-DYNAUTH-CLIENT-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/RADIUS-DYNAUTH-CLIENT-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "RADIUS-DYNAUTH-CLIENT-MIB",
11
+
12
+ "RADIUS-DYNAUTH-CLIENT-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF RADEXT Working Group""",
17
+ "contact" :
18
+ """ Stefaan De Cnodder
19
+
20
+
21
+
22
+ Alcatel
23
+ Francis Wellesplein 1
24
+ B-2018 Antwerp
25
+ Belgium
26
+
27
+ Phone: +32 3 240 85 15
28
+ EMail: stefaan.de_cnodder@alcatel.be
29
+
30
+ Nagi Reddy Jonnala
31
+ Cisco Systems, Inc.
32
+ Divyasree Chambers, B Wing,
33
+ O'Shaugnessy Road,
34
+ Bangalore-560027, India.
35
+
36
+ Phone: +91 94487 60828
37
+ EMail: njonnala@cisco.com
38
+
39
+ Murtaza Chiba
40
+ Cisco Systems, Inc.
41
+ 170 West Tasman Dr.
42
+ San Jose CA, 95134
43
+
44
+ Phone: +1 408 525 7198
45
+ EMail: mchiba@cisco.com """,
46
+ "description" :
47
+ """The MIB module for entities implementing the client
48
+ side of the Dynamic Authorization Extensions to the
49
+ Remote Authentication Dial-In User Service (RADIUS)
50
+ protocol. Copyright (C) The Internet Society (2006).
51
+ Initial version as published in RFC 4672;
52
+ for full legal notices see the RFC itself.""",
53
+ "revisions" : (
54
+ {
55
+ "date" : "2006-09-29 00:00",
56
+ "description" :
57
+ """Initial version as published in RFC 4672""",
58
+ },
59
+ {
60
+ "date" : "2006-08-29 00:00",
61
+ "description" :
62
+ """[Revision added by libsmi due to a LAST-UPDATED clause.]""",
63
+ },
64
+ ),
65
+ "identity node" : "radiusDynAuthClientMIB",
66
+ },
67
+
68
+ "imports" : (
69
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
70
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
71
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
72
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
73
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
74
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
75
+ {"module" : "SNMPv2-SMI", "name" : "TimeTicks"},
76
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
77
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddressType"},
78
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddress"},
79
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetPortNumber"},
80
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
81
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
82
+ ),
83
+
84
+ "nodes" : {
85
+ "radiusDynAuthClientMIB" : {
86
+ "nodetype" : "node",
87
+ "moduleName" : "RADIUS-DYNAUTH-CLIENT-MIB",
88
+ "oid" : "1.3.6.1.2.1.145",
89
+ "status" : "current",
90
+ }, # node
91
+ "radiusDynAuthClientMIBObjects" : {
92
+ "nodetype" : "node",
93
+ "moduleName" : "RADIUS-DYNAUTH-CLIENT-MIB",
94
+ "oid" : "1.3.6.1.2.1.145.1",
95
+ }, # node
96
+ "radiusDynAuthClientScalars" : {
97
+ "nodetype" : "node",
98
+ "moduleName" : "RADIUS-DYNAUTH-CLIENT-MIB",
99
+ "oid" : "1.3.6.1.2.1.145.1.1",
100
+ }, # node
101
+ "radiusDynAuthClientDisconInvalidServerAddresses" : {
102
+ "nodetype" : "scalar",
103
+ "moduleName" : "RADIUS-DYNAUTH-CLIENT-MIB",
104
+ "oid" : "1.3.6.1.2.1.145.1.1.1",
105
+ "status" : "current",
106
+ "syntax" : {
107
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
108
+ },
109
+ "access" : "readonly",
110
+ "description" :
111
+ """The number of Disconnect-Ack and Disconnect-NAK packets
112
+
113
+
114
+
115
+ received from unknown addresses. This counter may
116
+ experience a discontinuity when the DAC module
117
+ (re)starts, as indicated by the value of
118
+ radiusDynAuthClientCounterDiscontinuity.""",
119
+ }, # scalar
120
+ "radiusDynAuthClientCoAInvalidServerAddresses" : {
121
+ "nodetype" : "scalar",
122
+ "moduleName" : "RADIUS-DYNAUTH-CLIENT-MIB",
123
+ "oid" : "1.3.6.1.2.1.145.1.1.2",
124
+ "status" : "current",
125
+ "syntax" : {
126
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
127
+ },
128
+ "access" : "readonly",
129
+ "description" :
130
+ """The number of CoA-Ack and CoA-NAK packets received from
131
+ unknown addresses. Disconnect-NAK packets received
132
+ from unknown addresses. This counter may experience a
133
+ discontinuity when the DAC module (re)starts, as
134
+ indicated by the value of
135
+ radiusDynAuthClientCounterDiscontinuity.""",
136
+ }, # scalar
137
+ "radiusDynAuthServerTable" : {
138
+ "nodetype" : "table",
139
+ "moduleName" : "RADIUS-DYNAUTH-CLIENT-MIB",
140
+ "oid" : "1.3.6.1.2.1.145.1.2",
141
+ "status" : "current",
142
+ "description" :
143
+ """The (conceptual) table listing the RADIUS Dynamic
144
+ Authorization Servers with which the client shares a
145
+ secret.""",
146
+ }, # table
147
+ "radiusDynAuthServerEntry" : {
148
+ "nodetype" : "row",
149
+ "moduleName" : "RADIUS-DYNAUTH-CLIENT-MIB",
150
+ "oid" : "1.3.6.1.2.1.145.1.2.1",
151
+ "status" : "current",
152
+ "linkage" : [
153
+ "radiusDynAuthServerIndex",
154
+ ],
155
+ "description" :
156
+ """An entry (conceptual row) representing one Dynamic
157
+ Authorization Server with which the client shares a
158
+ secret.""",
159
+ }, # row
160
+ "radiusDynAuthServerIndex" : {
161
+ "nodetype" : "column",
162
+ "moduleName" : "RADIUS-DYNAUTH-CLIENT-MIB",
163
+ "oid" : "1.3.6.1.2.1.145.1.2.1.1",
164
+ "status" : "current",
165
+ "syntax" : {
166
+ "type" : {
167
+ "basetype" : "Integer32",
168
+ "ranges" : [
169
+ {
170
+ "min" : "1",
171
+ "max" : "2147483647"
172
+ },
173
+ ],
174
+ "range" : {
175
+ "min" : "1",
176
+ "max" : "2147483647"
177
+ },
178
+ },
179
+ },
180
+ "access" : "noaccess",
181
+ "description" :
182
+ """A number uniquely identifying each RADIUS Dynamic
183
+ Authorization Server with which this Dynamic
184
+ Authorization Client communicates. This number is
185
+ allocated by the agent implementing this MIB module
186
+ and is unique in this context.""",
187
+ }, # column
188
+ "radiusDynAuthServerAddressType" : {
189
+ "nodetype" : "column",
190
+ "moduleName" : "RADIUS-DYNAUTH-CLIENT-MIB",
191
+ "oid" : "1.3.6.1.2.1.145.1.2.1.2",
192
+ "status" : "current",
193
+ "syntax" : {
194
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
195
+ },
196
+ "access" : "readonly",
197
+ "description" :
198
+ """The type of IP address of the RADIUS Dynamic
199
+ Authorization Server referred to in this table entry.""",
200
+ }, # column
201
+ "radiusDynAuthServerAddress" : {
202
+ "nodetype" : "column",
203
+ "moduleName" : "RADIUS-DYNAUTH-CLIENT-MIB",
204
+ "oid" : "1.3.6.1.2.1.145.1.2.1.3",
205
+ "status" : "current",
206
+ "syntax" : {
207
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
208
+ },
209
+ "access" : "readonly",
210
+ "description" :
211
+ """The IP address value of the RADIUS Dynamic
212
+ Authorization Server referred to in this table entry
213
+ using the version neutral IP address format. The type
214
+ of this address is determined by the value of the
215
+ radiusDynAuthServerAddressType object.""",
216
+ }, # column
217
+ "radiusDynAuthServerClientPortNumber" : {
218
+ "nodetype" : "column",
219
+ "moduleName" : "RADIUS-DYNAUTH-CLIENT-MIB",
220
+ "oid" : "1.3.6.1.2.1.145.1.2.1.4",
221
+ "status" : "current",
222
+ "syntax" : {
223
+ "type" : {
224
+ "basetype" : "Unsigned32",
225
+ "parent module" : {
226
+ "name" : "INET-ADDRESS-MIB",
227
+ "type" : "InetPortNumber",
228
+ },
229
+ "ranges" : [
230
+ {
231
+ "min" : "1",
232
+ "max" : "65535"
233
+ },
234
+ ],
235
+ "range" : {
236
+ "min" : "1",
237
+ "max" : "65535"
238
+ },
239
+ },
240
+ },
241
+ "access" : "readonly",
242
+ "description" :
243
+ """The UDP destination port that the RADIUS Dynamic
244
+ Authorization Client is using to send requests to this
245
+ server. The value zero is invalid.""",
246
+ }, # column
247
+ "radiusDynAuthServerID" : {
248
+ "nodetype" : "column",
249
+ "moduleName" : "RADIUS-DYNAUTH-CLIENT-MIB",
250
+ "oid" : "1.3.6.1.2.1.145.1.2.1.5",
251
+ "status" : "current",
252
+ "syntax" : {
253
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
254
+ },
255
+ "access" : "readonly",
256
+ "description" :
257
+ """The NAS-Identifier of the RADIUS Dynamic Authorization
258
+ Server referred to in this table entry. This is not
259
+ necessarily the same as sysName in MIB II.""",
260
+ "reference" :
261
+ """RFC 2865, Section 5.32, NAS-Identifier.""",
262
+ }, # column
263
+ "radiusDynAuthClientRoundTripTime" : {
264
+ "nodetype" : "column",
265
+ "moduleName" : "RADIUS-DYNAUTH-CLIENT-MIB",
266
+ "oid" : "1.3.6.1.2.1.145.1.2.1.6",
267
+ "status" : "current",
268
+ "syntax" : {
269
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
270
+ },
271
+ "access" : "readonly",
272
+ "units" : "hundredths of a second",
273
+ "description" :
274
+ """The time interval (in hundredths of a second) between
275
+ the most recent Disconnect or CoA request and the
276
+ receipt of the corresponding Disconnect or CoA reply.
277
+ A value of zero is returned if no reply has been
278
+ received yet from this server.""",
279
+ }, # column
280
+ "radiusDynAuthClientDisconRequests" : {
281
+ "nodetype" : "column",
282
+ "moduleName" : "RADIUS-DYNAUTH-CLIENT-MIB",
283
+ "oid" : "1.3.6.1.2.1.145.1.2.1.7",
284
+ "status" : "current",
285
+ "syntax" : {
286
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
287
+ },
288
+ "access" : "readonly",
289
+ "units" : "requests",
290
+ "description" :
291
+ """The number of RADIUS Disconnect-Requests sent
292
+ to this Dynamic Authorization Server. This also
293
+ includes the RADIUS Disconnect-Requests that have a
294
+ Service-Type attribute with value 'Authorize Only'.
295
+ Disconnect-NAK packets received from unknown addresses.
296
+ This counter may experience a discontinuity when the
297
+ DAC module (re)starts, as indicated by the value of
298
+ radiusDynAuthClientCounterDiscontinuity.""",
299
+ "reference" :
300
+ """RFC 3576, Section 2.1, Disconnect Messages (DM).""",
301
+ }, # column
302
+ "radiusDynAuthClientDisconAuthOnlyRequests" : {
303
+ "nodetype" : "column",
304
+ "moduleName" : "RADIUS-DYNAUTH-CLIENT-MIB",
305
+ "oid" : "1.3.6.1.2.1.145.1.2.1.8",
306
+ "status" : "current",
307
+ "syntax" : {
308
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
309
+ },
310
+ "access" : "readonly",
311
+ "units" : "requests",
312
+ "description" :
313
+ """The number of RADIUS Disconnect-Requests that include a
314
+ Service-Type attribute with value 'Authorize Only'
315
+ sent to this Dynamic Authorization Server.
316
+ Disconnect-NAK packets received from unknown addresses.
317
+ This counter may experience a discontinuity when the
318
+ DAC module (re)starts, as indicated by the value of
319
+ radiusDynAuthClientCounterDiscontinuity.""",
320
+ "reference" :
321
+ """RFC 3576, Section 2.1, Disconnect Messages (DM).""",
322
+ }, # column
323
+ "radiusDynAuthClientDisconRetransmissions" : {
324
+ "nodetype" : "column",
325
+ "moduleName" : "RADIUS-DYNAUTH-CLIENT-MIB",
326
+ "oid" : "1.3.6.1.2.1.145.1.2.1.9",
327
+ "status" : "current",
328
+ "syntax" : {
329
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
330
+ },
331
+ "access" : "readonly",
332
+ "units" : "retransmissions",
333
+ "description" :
334
+ """The number of RADIUS Disconnect-request packets
335
+ retransmitted to this RADIUS Dynamic Authorization
336
+ Server. Disconnect-NAK packets received from unknown
337
+ addresses. This counter may experience a discontinuity
338
+ when the DAC module (re)starts, as indicated by the
339
+ value of radiusDynAuthClientCounterDiscontinuity.""",
340
+ "reference" :
341
+ """RFC 3576, Section 2.1, Disconnect Messages (DM).""",
342
+ }, # column
343
+ "radiusDynAuthClientDisconAcks" : {
344
+ "nodetype" : "column",
345
+ "moduleName" : "RADIUS-DYNAUTH-CLIENT-MIB",
346
+ "oid" : "1.3.6.1.2.1.145.1.2.1.10",
347
+ "status" : "current",
348
+ "syntax" : {
349
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
350
+ },
351
+ "access" : "readonly",
352
+ "units" : "replies",
353
+ "description" :
354
+ """The number of RADIUS Disconnect-ACK packets
355
+ received from this Dynamic Authorization Server. This
356
+ counter may experience a discontinuity when the DAC
357
+ module (re)starts, as indicated by the value of
358
+ radiusDynAuthClientCounterDiscontinuity.""",
359
+ "reference" :
360
+ """RFC 3576, Section 2.1, Disconnect Messages (DM).""",
361
+ }, # column
362
+ "radiusDynAuthClientDisconNaks" : {
363
+ "nodetype" : "column",
364
+ "moduleName" : "RADIUS-DYNAUTH-CLIENT-MIB",
365
+ "oid" : "1.3.6.1.2.1.145.1.2.1.11",
366
+ "status" : "current",
367
+ "syntax" : {
368
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
369
+ },
370
+ "access" : "readonly",
371
+ "units" : "replies",
372
+ "description" :
373
+ """The number of RADIUS Disconnect-NAK packets
374
+ received from this Dynamic Authorization Server.
375
+ This includes the RADIUS Disconnect-NAK packets
376
+ received with a Service-Type attribute with value
377
+ 'Authorize Only' and the RADIUS Disconnect-NAK
378
+ packets received if no session context was found. This
379
+ counter may experience a discontinuity when the DAC
380
+ module (re)starts, as indicated by the value of
381
+ radiusDynAuthClientCounterDiscontinuity.""",
382
+ "reference" :
383
+ """RFC 3576, Section 2.1, Disconnect Messages (DM).""",
384
+ }, # column
385
+ "radiusDynAuthClientDisconNakAuthOnlyRequest" : {
386
+ "nodetype" : "column",
387
+ "moduleName" : "RADIUS-DYNAUTH-CLIENT-MIB",
388
+ "oid" : "1.3.6.1.2.1.145.1.2.1.12",
389
+ "status" : "current",
390
+ "syntax" : {
391
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
392
+ },
393
+ "access" : "readonly",
394
+ "units" : "replies",
395
+ "description" :
396
+ """The number of RADIUS Disconnect-NAK packets
397
+ that include a Service-Type attribute with value
398
+ 'Authorize Only' received from this Dynamic
399
+ Authorization Server. This counter may experience a
400
+ discontinuity when the DAC module (re)starts, as
401
+
402
+
403
+
404
+ indicated by the value of
405
+ radiusDynAuthClientCounterDiscontinuity.""",
406
+ "reference" :
407
+ """RFC 3576, Section 2.1, Disconnect Messages (DM).""",
408
+ }, # column
409
+ "radiusDynAuthClientDisconNakSessNoContext" : {
410
+ "nodetype" : "column",
411
+ "moduleName" : "RADIUS-DYNAUTH-CLIENT-MIB",
412
+ "oid" : "1.3.6.1.2.1.145.1.2.1.13",
413
+ "status" : "current",
414
+ "syntax" : {
415
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
416
+ },
417
+ "access" : "readonly",
418
+ "units" : "replies",
419
+ "description" :
420
+ """The number of RADIUS Disconnect-NAK packets
421
+ received from this Dynamic Authorization Server
422
+ because no session context was found; i.e., it
423
+ includes an Error-Cause attribute with value 503
424
+ ('Session Context Not Found'). This counter may
425
+ experience a discontinuity when the DAC module
426
+ (re)starts, as indicated by the value of
427
+ radiusDynAuthClientCounterDiscontinuity.""",
428
+ "reference" :
429
+ """RFC 3576, Section 2.1, Disconnect Messages (DM).""",
430
+ }, # column
431
+ "radiusDynAuthClientMalformedDisconResponses" : {
432
+ "nodetype" : "column",
433
+ "moduleName" : "RADIUS-DYNAUTH-CLIENT-MIB",
434
+ "oid" : "1.3.6.1.2.1.145.1.2.1.14",
435
+ "status" : "current",
436
+ "syntax" : {
437
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
438
+ },
439
+ "access" : "readonly",
440
+ "units" : "replies",
441
+ "description" :
442
+ """The number of malformed RADIUS Disconnect-Ack and
443
+ Disconnect-NAK packets received from this Dynamic
444
+ Authorization Server. Bad authenticators and unknown
445
+ types are not included as malformed Disconnect-Ack and
446
+ Disconnect-NAK packets. This counter may experience a
447
+ discontinuity when the DAC module (re)starts, as
448
+ indicated by the value of
449
+ radiusDynAuthClientCounterDiscontinuity.""",
450
+ "reference" :
451
+ """RFC 3576, Section 2.1, Disconnect Messages (DM), and
452
+ Section 2.3, Packet Format.""",
453
+ }, # column
454
+ "radiusDynAuthClientDisconBadAuthenticators" : {
455
+ "nodetype" : "column",
456
+ "moduleName" : "RADIUS-DYNAUTH-CLIENT-MIB",
457
+ "oid" : "1.3.6.1.2.1.145.1.2.1.15",
458
+ "status" : "current",
459
+ "syntax" : {
460
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
461
+ },
462
+ "access" : "readonly",
463
+ "units" : "replies",
464
+ "description" :
465
+ """The number of RADIUS Disconnect-Ack and Disconnect-NAK
466
+ packets that contained invalid Authenticator field
467
+ received from this Dynamic Authorization Server. This
468
+ counter may experience a discontinuity when the DAC
469
+ module (re)starts, as indicated by the value of
470
+ radiusDynAuthClientCounterDiscontinuity.""",
471
+ "reference" :
472
+ """RFC 3576, Section 2.1, Disconnect Messages (DM), and
473
+ Section 2.3, Packet Format.""",
474
+ }, # column
475
+ "radiusDynAuthClientDisconPendingRequests" : {
476
+ "nodetype" : "column",
477
+ "moduleName" : "RADIUS-DYNAUTH-CLIENT-MIB",
478
+ "oid" : "1.3.6.1.2.1.145.1.2.1.16",
479
+ "status" : "current",
480
+ "syntax" : {
481
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
482
+ },
483
+ "access" : "readonly",
484
+ "units" : "requests",
485
+ "description" :
486
+ """The number of RADIUS Disconnect-request packets
487
+ destined for this server that have not yet timed out
488
+ or received a response. This variable is incremented
489
+ when an Disconnect-Request is sent and decremented
490
+ due to receipt of a Disconnect-Ack, a Disconnect-NAK,
491
+ a timeout, or a retransmission.""",
492
+ "reference" :
493
+ """RFC 3576, Section 2.1, Disconnect Messages (DM).""",
494
+ }, # column
495
+ "radiusDynAuthClientDisconTimeouts" : {
496
+ "nodetype" : "column",
497
+ "moduleName" : "RADIUS-DYNAUTH-CLIENT-MIB",
498
+ "oid" : "1.3.6.1.2.1.145.1.2.1.17",
499
+ "status" : "current",
500
+ "syntax" : {
501
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
502
+ },
503
+ "access" : "readonly",
504
+ "units" : "timeouts",
505
+ "description" :
506
+ """The number of Disconnect request timeouts to this
507
+ server. After a timeout, the client may retry to the
508
+ same server or give up. A retry to the same server is
509
+ counted as a retransmit and as a timeout. A send
510
+ to a different server is counted as a
511
+ Disconnect-Request and as a timeout. This counter
512
+ may experience a discontinuity when the DAC module
513
+ (re)starts, as indicated by the value of
514
+ radiusDynAuthClientCounterDiscontinuity.""",
515
+ "reference" :
516
+ """RFC 3576, Section 2.1, Disconnect Messages (DM).""",
517
+ }, # column
518
+ "radiusDynAuthClientDisconPacketsDropped" : {
519
+ "nodetype" : "column",
520
+ "moduleName" : "RADIUS-DYNAUTH-CLIENT-MIB",
521
+ "oid" : "1.3.6.1.2.1.145.1.2.1.18",
522
+ "status" : "current",
523
+ "syntax" : {
524
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
525
+ },
526
+ "access" : "readonly",
527
+ "units" : "replies",
528
+ "description" :
529
+ """The number of incoming Disconnect-Ack and
530
+ Disconnect-NAK packets from this Dynamic Authorization
531
+ Server silently discarded by the client application for
532
+ some reason other than malformed, bad authenticators,
533
+ or unknown types. This counter may experience a
534
+ discontinuity when the DAC module (re)starts, as
535
+ indicated by the value of
536
+ radiusDynAuthClientCounterDiscontinuity.""",
537
+ "reference" :
538
+ """RFC 3576, Section 2.1, Disconnect Messages (DM), and
539
+ Section 2.3, Packet Format.""",
540
+ }, # column
541
+ "radiusDynAuthClientCoARequests" : {
542
+ "nodetype" : "column",
543
+ "moduleName" : "RADIUS-DYNAUTH-CLIENT-MIB",
544
+ "oid" : "1.3.6.1.2.1.145.1.2.1.19",
545
+ "status" : "current",
546
+ "syntax" : {
547
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
548
+ },
549
+ "access" : "readonly",
550
+ "units" : "requests",
551
+ "description" :
552
+ """The number of RADIUS CoA-Requests sent to this
553
+ Dynamic Authorization Server. This also includes
554
+ CoA requests that have a Service-Type attribute
555
+ with value 'Authorize Only'. This counter may
556
+ experience a discontinuity when the DAC module
557
+ (re)starts, as indicated by the value of
558
+ radiusDynAuthClientCounterDiscontinuity.""",
559
+ "reference" :
560
+ """RFC 3576, Section 2.2, Change-of-Authorization
561
+ Messages (CoA).""",
562
+ }, # column
563
+ "radiusDynAuthClientCoAAuthOnlyRequest" : {
564
+ "nodetype" : "column",
565
+ "moduleName" : "RADIUS-DYNAUTH-CLIENT-MIB",
566
+ "oid" : "1.3.6.1.2.1.145.1.2.1.20",
567
+ "status" : "current",
568
+ "syntax" : {
569
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
570
+ },
571
+ "access" : "readonly",
572
+ "units" : "requests",
573
+ "description" :
574
+ """The number of RADIUS CoA-requests that include a
575
+ Service-Type attribute with value 'Authorize Only'
576
+ sent to this Dynamic Authorization Client. This
577
+ counter may experience a discontinuity when the DAC
578
+ module (re)starts, as indicated by the value of
579
+ radiusDynAuthClientCounterDiscontinuity.""",
580
+ "reference" :
581
+ """RFC 3576, Section 2.2, Change-of-Authorization
582
+ Messages (CoA).""",
583
+ }, # column
584
+ "radiusDynAuthClientCoARetransmissions" : {
585
+ "nodetype" : "column",
586
+ "moduleName" : "RADIUS-DYNAUTH-CLIENT-MIB",
587
+ "oid" : "1.3.6.1.2.1.145.1.2.1.21",
588
+ "status" : "current",
589
+ "syntax" : {
590
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
591
+ },
592
+ "access" : "readonly",
593
+ "units" : "retransmissions",
594
+ "description" :
595
+ """The number of RADIUS CoA-request packets
596
+ retransmitted to this RADIUS Dynamic Authorization
597
+ Server. This counter may experience a discontinuity
598
+ when the DAC module (re)starts, as indicated by the
599
+ value of radiusDynAuthClientCounterDiscontinuity.""",
600
+ "reference" :
601
+ """RFC 3576, Section 2.2, Change-of-Authorization
602
+ Messages (CoA).""",
603
+ }, # column
604
+ "radiusDynAuthClientCoAAcks" : {
605
+ "nodetype" : "column",
606
+ "moduleName" : "RADIUS-DYNAUTH-CLIENT-MIB",
607
+ "oid" : "1.3.6.1.2.1.145.1.2.1.22",
608
+ "status" : "current",
609
+ "syntax" : {
610
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
611
+ },
612
+ "access" : "readonly",
613
+ "units" : "replies",
614
+ "description" :
615
+ """The number of RADIUS CoA-ACK packets received from
616
+ this Dynamic Authorization Server. This counter may
617
+ experience a discontinuity when the DAC module
618
+ (re)starts, as indicated by the value of
619
+ radiusDynAuthClientCounterDiscontinuity.""",
620
+ "reference" :
621
+ """RFC 3576, Section 2.2, Change-of-Authorization
622
+ Messages (CoA).""",
623
+ }, # column
624
+ "radiusDynAuthClientCoANaks" : {
625
+ "nodetype" : "column",
626
+ "moduleName" : "RADIUS-DYNAUTH-CLIENT-MIB",
627
+ "oid" : "1.3.6.1.2.1.145.1.2.1.23",
628
+ "status" : "current",
629
+ "syntax" : {
630
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
631
+ },
632
+ "access" : "readonly",
633
+ "units" : "replies",
634
+ "description" :
635
+ """The number of RADIUS CoA-NAK packets received from
636
+ this Dynamic Authorization Server. This includes the
637
+ RADIUS CoA-NAK packets received with a Service-Type
638
+ attribute with value 'Authorize Only' and the RADIUS
639
+ CoA-NAK packets received because no session context
640
+
641
+
642
+
643
+ was found. This counter may experience a discontinuity
644
+ when the DAC module (re)starts, as indicated by the
645
+ value of radiusDynAuthClientCounterDiscontinuity.""",
646
+ "reference" :
647
+ """RFC 3576, Section 2.2, Change-of-Authorization
648
+ Messages (CoA).""",
649
+ }, # column
650
+ "radiusDynAuthClientCoANakAuthOnlyRequest" : {
651
+ "nodetype" : "column",
652
+ "moduleName" : "RADIUS-DYNAUTH-CLIENT-MIB",
653
+ "oid" : "1.3.6.1.2.1.145.1.2.1.24",
654
+ "status" : "current",
655
+ "syntax" : {
656
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
657
+ },
658
+ "access" : "readonly",
659
+ "units" : "replies",
660
+ "description" :
661
+ """The number of RADIUS CoA-NAK packets that include a
662
+ Service-Type attribute with value 'Authorize Only'
663
+ received from this Dynamic Authorization Server. This
664
+ counter may experience a discontinuity when the DAC
665
+ module (re)starts, as indicated by the value of
666
+ radiusDynAuthClientCounterDiscontinuity.""",
667
+ "reference" :
668
+ """RFC 3576, Section 2.2, Change-of-Authorization
669
+ Messages (CoA).""",
670
+ }, # column
671
+ "radiusDynAuthClientCoANakSessNoContext" : {
672
+ "nodetype" : "column",
673
+ "moduleName" : "RADIUS-DYNAUTH-CLIENT-MIB",
674
+ "oid" : "1.3.6.1.2.1.145.1.2.1.25",
675
+ "status" : "current",
676
+ "syntax" : {
677
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
678
+ },
679
+ "access" : "readonly",
680
+ "units" : "replies",
681
+ "description" :
682
+ """The number of RADIUS CoA-NAK packets received from
683
+ this Dynamic Authorization Server because no session
684
+ context was found; i.e., it includes an Error-Cause
685
+ attribute with value 503 ('Session Context Not Found').
686
+ This counter may experience a discontinuity when the
687
+ DAC module (re)starts as indicated by the value of
688
+ radiusDynAuthClientCounterDiscontinuity.""",
689
+ "reference" :
690
+ """RFC 3576, Section 2.2, Change-of-Authorization
691
+ Messages (CoA).""",
692
+ }, # column
693
+ "radiusDynAuthClientMalformedCoAResponses" : {
694
+ "nodetype" : "column",
695
+ "moduleName" : "RADIUS-DYNAUTH-CLIENT-MIB",
696
+ "oid" : "1.3.6.1.2.1.145.1.2.1.26",
697
+ "status" : "current",
698
+ "syntax" : {
699
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
700
+ },
701
+ "access" : "readonly",
702
+ "units" : "replies",
703
+ "description" :
704
+ """The number of malformed RADIUS CoA-Ack and CoA-NAK
705
+ packets received from this Dynamic Authorization
706
+ Server. Bad authenticators and unknown types are
707
+ not included as malformed CoA-Ack and CoA-NAK packets.
708
+ This counter may experience a discontinuity when the
709
+ DAC module (re)starts, as indicated by the value of
710
+ radiusDynAuthClientCounterDiscontinuity.""",
711
+ "reference" :
712
+ """RFC 3576, Section 2.2, Change-of-Authorization
713
+ Messages (CoA), and Section 2.3, Packet Format.""",
714
+ }, # column
715
+ "radiusDynAuthClientCoABadAuthenticators" : {
716
+ "nodetype" : "column",
717
+ "moduleName" : "RADIUS-DYNAUTH-CLIENT-MIB",
718
+ "oid" : "1.3.6.1.2.1.145.1.2.1.27",
719
+ "status" : "current",
720
+ "syntax" : {
721
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
722
+ },
723
+ "access" : "readonly",
724
+ "units" : "replies",
725
+ "description" :
726
+ """The number of RADIUS CoA-Ack and CoA-NAK packets
727
+ that contained invalid Authenticator field
728
+ received from this Dynamic Authorization Server.
729
+ This counter may experience a discontinuity when the
730
+ DAC module (re)starts, as indicated by the value of
731
+ radiusDynAuthClientCounterDiscontinuity.""",
732
+ "reference" :
733
+ """RFC 3576, Section 2.2, Change-of-Authorization
734
+ Messages (CoA), and Section 2.3, Packet Format.""",
735
+ }, # column
736
+ "radiusDynAuthClientCoAPendingRequests" : {
737
+ "nodetype" : "column",
738
+ "moduleName" : "RADIUS-DYNAUTH-CLIENT-MIB",
739
+ "oid" : "1.3.6.1.2.1.145.1.2.1.28",
740
+ "status" : "current",
741
+ "syntax" : {
742
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
743
+ },
744
+ "access" : "readonly",
745
+ "units" : "requests",
746
+ "description" :
747
+ """The number of RADIUS CoA-request packets destined for
748
+ this server that have not yet timed out or received a
749
+ response. This variable is incremented when an
750
+ CoA-Request is sent and decremented due to receipt of
751
+ a CoA-Ack, a CoA-NAK, or a timeout, or a
752
+ retransmission.""",
753
+ "reference" :
754
+ """RFC 3576, Section 2.2, Change-of-Authorization
755
+ Messages (CoA).""",
756
+ }, # column
757
+ "radiusDynAuthClientCoATimeouts" : {
758
+ "nodetype" : "column",
759
+ "moduleName" : "RADIUS-DYNAUTH-CLIENT-MIB",
760
+ "oid" : "1.3.6.1.2.1.145.1.2.1.29",
761
+ "status" : "current",
762
+ "syntax" : {
763
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
764
+ },
765
+ "access" : "readonly",
766
+ "units" : "timeouts",
767
+ "description" :
768
+ """The number of CoA request timeouts to this server.
769
+ After a timeout, the client may retry to the same
770
+ server or give up. A retry to the same server is
771
+ counted as a retransmit and as a timeout. A send to
772
+ a different server is counted as a CoA-Request and
773
+ as a timeout. This counter may experience a
774
+ discontinuity when the DAC module (re)starts, as
775
+ indicated by the value of
776
+ radiusDynAuthClientCounterDiscontinuity.""",
777
+ "reference" :
778
+ """RFC 3576, Section 2.2, Change-of-Authorization
779
+ Messages (CoA).""",
780
+ }, # column
781
+ "radiusDynAuthClientCoAPacketsDropped" : {
782
+ "nodetype" : "column",
783
+ "moduleName" : "RADIUS-DYNAUTH-CLIENT-MIB",
784
+ "oid" : "1.3.6.1.2.1.145.1.2.1.30",
785
+ "status" : "current",
786
+ "syntax" : {
787
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
788
+ },
789
+ "access" : "readonly",
790
+ "units" : "replies",
791
+ "description" :
792
+ """The number of incoming CoA-Ack and CoA-NAK from this
793
+ Dynamic Authorization Server silently discarded by the
794
+ client application for some reason other than
795
+ malformed, bad authenticators, or unknown types. This
796
+ counter may experience a discontinuity when the DAC
797
+ module (re)starts, as indicated by the value of
798
+ radiusDynAuthClientCounterDiscontinuity.""",
799
+ "reference" :
800
+ """RFC 3576, Section 2.2, Change-of-Authorization
801
+ Messages (CoA), and Section 2.3, Packet Format.""",
802
+ }, # column
803
+ "radiusDynAuthClientUnknownTypes" : {
804
+ "nodetype" : "column",
805
+ "moduleName" : "RADIUS-DYNAUTH-CLIENT-MIB",
806
+ "oid" : "1.3.6.1.2.1.145.1.2.1.31",
807
+ "status" : "current",
808
+ "syntax" : {
809
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
810
+ },
811
+ "access" : "readonly",
812
+ "units" : "replies",
813
+ "description" :
814
+ """The number of incoming packets of unknown types
815
+ that were received on the Dynamic Authorization port.
816
+ This counter may experience a discontinuity when the
817
+ DAC module (re)starts, as indicated by the value of
818
+ radiusDynAuthClientCounterDiscontinuity.""",
819
+ "reference" :
820
+ """RFC 3576, Section 2.3, Packet Format.""",
821
+ }, # column
822
+ "radiusDynAuthClientCounterDiscontinuity" : {
823
+ "nodetype" : "column",
824
+ "moduleName" : "RADIUS-DYNAUTH-CLIENT-MIB",
825
+ "oid" : "1.3.6.1.2.1.145.1.2.1.32",
826
+ "status" : "current",
827
+ "syntax" : {
828
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
829
+ },
830
+ "access" : "readonly",
831
+ "units" : "hundredths of a second",
832
+ "description" :
833
+ """The time (in hundredths of a second) since the
834
+ last counter discontinuity. A discontinuity may
835
+ be the result of a reinitialization of the DAC
836
+ module within the managed entity.""",
837
+ }, # column
838
+ "radiusDynAuthClientMIBConformance" : {
839
+ "nodetype" : "node",
840
+ "moduleName" : "RADIUS-DYNAUTH-CLIENT-MIB",
841
+ "oid" : "1.3.6.1.2.1.145.2",
842
+ }, # node
843
+ "radiusDynAuthClientMIBCompliances" : {
844
+ "nodetype" : "node",
845
+ "moduleName" : "RADIUS-DYNAUTH-CLIENT-MIB",
846
+ "oid" : "1.3.6.1.2.1.145.2.1",
847
+ }, # node
848
+ "radiusDynAuthClientMIBGroups" : {
849
+ "nodetype" : "node",
850
+ "moduleName" : "RADIUS-DYNAUTH-CLIENT-MIB",
851
+ "oid" : "1.3.6.1.2.1.145.2.2",
852
+ }, # node
853
+ }, # nodes
854
+
855
+ "groups" : {
856
+ "radiusDynAuthClientMIBGroup" : {
857
+ "nodetype" : "group",
858
+ "moduleName" : "RADIUS-DYNAUTH-CLIENT-MIB",
859
+ "oid" : "1.3.6.1.2.1.145.2.2.1",
860
+ "status" : "current",
861
+ "members" : {
862
+ "radiusDynAuthClientDisconInvalidServerAddresses" : {
863
+ "nodetype" : "member",
864
+ "module" : "RADIUS-DYNAUTH-CLIENT-MIB"
865
+ },
866
+ "radiusDynAuthClientCoAInvalidServerAddresses" : {
867
+ "nodetype" : "member",
868
+ "module" : "RADIUS-DYNAUTH-CLIENT-MIB"
869
+ },
870
+ "radiusDynAuthServerAddressType" : {
871
+ "nodetype" : "member",
872
+ "module" : "RADIUS-DYNAUTH-CLIENT-MIB"
873
+ },
874
+ "radiusDynAuthServerAddress" : {
875
+ "nodetype" : "member",
876
+ "module" : "RADIUS-DYNAUTH-CLIENT-MIB"
877
+ },
878
+ "radiusDynAuthServerClientPortNumber" : {
879
+ "nodetype" : "member",
880
+ "module" : "RADIUS-DYNAUTH-CLIENT-MIB"
881
+ },
882
+ "radiusDynAuthServerID" : {
883
+ "nodetype" : "member",
884
+ "module" : "RADIUS-DYNAUTH-CLIENT-MIB"
885
+ },
886
+ "radiusDynAuthClientRoundTripTime" : {
887
+ "nodetype" : "member",
888
+ "module" : "RADIUS-DYNAUTH-CLIENT-MIB"
889
+ },
890
+ "radiusDynAuthClientDisconRequests" : {
891
+ "nodetype" : "member",
892
+ "module" : "RADIUS-DYNAUTH-CLIENT-MIB"
893
+ },
894
+ "radiusDynAuthClientDisconRetransmissions" : {
895
+ "nodetype" : "member",
896
+ "module" : "RADIUS-DYNAUTH-CLIENT-MIB"
897
+ },
898
+ "radiusDynAuthClientDisconAcks" : {
899
+ "nodetype" : "member",
900
+ "module" : "RADIUS-DYNAUTH-CLIENT-MIB"
901
+ },
902
+ "radiusDynAuthClientDisconNaks" : {
903
+ "nodetype" : "member",
904
+ "module" : "RADIUS-DYNAUTH-CLIENT-MIB"
905
+ },
906
+ "radiusDynAuthClientMalformedDisconResponses" : {
907
+ "nodetype" : "member",
908
+ "module" : "RADIUS-DYNAUTH-CLIENT-MIB"
909
+ },
910
+ "radiusDynAuthClientDisconBadAuthenticators" : {
911
+ "nodetype" : "member",
912
+ "module" : "RADIUS-DYNAUTH-CLIENT-MIB"
913
+ },
914
+ "radiusDynAuthClientDisconPendingRequests" : {
915
+ "nodetype" : "member",
916
+ "module" : "RADIUS-DYNAUTH-CLIENT-MIB"
917
+ },
918
+ "radiusDynAuthClientDisconTimeouts" : {
919
+ "nodetype" : "member",
920
+ "module" : "RADIUS-DYNAUTH-CLIENT-MIB"
921
+ },
922
+ "radiusDynAuthClientDisconPacketsDropped" : {
923
+ "nodetype" : "member",
924
+ "module" : "RADIUS-DYNAUTH-CLIENT-MIB"
925
+ },
926
+ "radiusDynAuthClientCoARequests" : {
927
+ "nodetype" : "member",
928
+ "module" : "RADIUS-DYNAUTH-CLIENT-MIB"
929
+ },
930
+ "radiusDynAuthClientCoARetransmissions" : {
931
+ "nodetype" : "member",
932
+ "module" : "RADIUS-DYNAUTH-CLIENT-MIB"
933
+ },
934
+ "radiusDynAuthClientCoAAcks" : {
935
+ "nodetype" : "member",
936
+ "module" : "RADIUS-DYNAUTH-CLIENT-MIB"
937
+ },
938
+ "radiusDynAuthClientCoANaks" : {
939
+ "nodetype" : "member",
940
+ "module" : "RADIUS-DYNAUTH-CLIENT-MIB"
941
+ },
942
+ "radiusDynAuthClientMalformedCoAResponses" : {
943
+ "nodetype" : "member",
944
+ "module" : "RADIUS-DYNAUTH-CLIENT-MIB"
945
+ },
946
+ "radiusDynAuthClientCoABadAuthenticators" : {
947
+ "nodetype" : "member",
948
+ "module" : "RADIUS-DYNAUTH-CLIENT-MIB"
949
+ },
950
+ "radiusDynAuthClientCoAPendingRequests" : {
951
+ "nodetype" : "member",
952
+ "module" : "RADIUS-DYNAUTH-CLIENT-MIB"
953
+ },
954
+ "radiusDynAuthClientCoATimeouts" : {
955
+ "nodetype" : "member",
956
+ "module" : "RADIUS-DYNAUTH-CLIENT-MIB"
957
+ },
958
+ "radiusDynAuthClientCoAPacketsDropped" : {
959
+ "nodetype" : "member",
960
+ "module" : "RADIUS-DYNAUTH-CLIENT-MIB"
961
+ },
962
+ "radiusDynAuthClientUnknownTypes" : {
963
+ "nodetype" : "member",
964
+ "module" : "RADIUS-DYNAUTH-CLIENT-MIB"
965
+ },
966
+ "radiusDynAuthClientCounterDiscontinuity" : {
967
+ "nodetype" : "member",
968
+ "module" : "RADIUS-DYNAUTH-CLIENT-MIB"
969
+ },
970
+ }, # members
971
+ "description" :
972
+ """The collection of objects providing management of
973
+ a RADIUS Dynamic Authorization Client.""",
974
+ }, # group
975
+ "radiusDynAuthClientAuthOnlyGroup" : {
976
+ "nodetype" : "group",
977
+ "moduleName" : "RADIUS-DYNAUTH-CLIENT-MIB",
978
+ "oid" : "1.3.6.1.2.1.145.2.2.2",
979
+ "status" : "current",
980
+ "members" : {
981
+ "radiusDynAuthClientDisconAuthOnlyRequests" : {
982
+ "nodetype" : "member",
983
+ "module" : "RADIUS-DYNAUTH-CLIENT-MIB"
984
+ },
985
+ "radiusDynAuthClientDisconNakAuthOnlyRequest" : {
986
+ "nodetype" : "member",
987
+ "module" : "RADIUS-DYNAUTH-CLIENT-MIB"
988
+ },
989
+ "radiusDynAuthClientCoAAuthOnlyRequest" : {
990
+ "nodetype" : "member",
991
+ "module" : "RADIUS-DYNAUTH-CLIENT-MIB"
992
+ },
993
+ "radiusDynAuthClientCoANakAuthOnlyRequest" : {
994
+ "nodetype" : "member",
995
+ "module" : "RADIUS-DYNAUTH-CLIENT-MIB"
996
+ },
997
+ }, # members
998
+ "description" :
999
+ """The collection of objects supporting the RADIUS
1000
+ messages including Service-Type attribute with
1001
+ value 'Authorize Only'.""",
1002
+ }, # group
1003
+ "radiusDynAuthClientNoSessGroup" : {
1004
+ "nodetype" : "group",
1005
+ "moduleName" : "RADIUS-DYNAUTH-CLIENT-MIB",
1006
+ "oid" : "1.3.6.1.2.1.145.2.2.3",
1007
+ "status" : "current",
1008
+ "members" : {
1009
+ "radiusDynAuthClientDisconNakSessNoContext" : {
1010
+ "nodetype" : "member",
1011
+ "module" : "RADIUS-DYNAUTH-CLIENT-MIB"
1012
+ },
1013
+ "radiusDynAuthClientCoANakSessNoContext" : {
1014
+ "nodetype" : "member",
1015
+ "module" : "RADIUS-DYNAUTH-CLIENT-MIB"
1016
+ },
1017
+ }, # members
1018
+ "description" :
1019
+ """The collection of objects supporting the RADIUS
1020
+ messages that are referring to non-existing sessions.""",
1021
+ }, # group
1022
+ }, # groups
1023
+
1024
+ "compliances" : {
1025
+ "radiusDynAuthClientMIBCompliance" : {
1026
+ "nodetype" : "compliance",
1027
+ "moduleName" : "RADIUS-DYNAUTH-CLIENT-MIB",
1028
+ "oid" : "1.3.6.1.2.1.145.2.1.1",
1029
+ "status" : "current",
1030
+ "description" :
1031
+ """The compliance statement for entities implementing
1032
+ the RADIUS Dynamic Authorization Client.
1033
+ Implementation of this module is for entities that
1034
+ support IPv4 and/or IPv6.""",
1035
+ "requires" : {
1036
+ "radiusDynAuthClientMIBGroup" : {
1037
+ "nodetype" : "mandatory",
1038
+ "module" : "RADIUS-DYNAUTH-CLIENT-MIB"
1039
+ },
1040
+ "radiusDynAuthClientAuthOnlyGroup" : {
1041
+ "nodetype" : "optional",
1042
+ "module" : "RADIUS-DYNAUTH-CLIENT-MIB",
1043
+ "description" :
1044
+ """Only required for Dynamic Authorization Clients that
1045
+ are supporting Service-Type attributes with value
1046
+ 'Authorize-Only'.""",
1047
+ },
1048
+ "radiusDynAuthClientNoSessGroup" : {
1049
+ "nodetype" : "optional",
1050
+ "module" : "RADIUS-DYNAUTH-CLIENT-MIB",
1051
+ "description" :
1052
+ """This group is not required if the Dynamic
1053
+ Authorization Server cannot easily determine whether
1054
+ a session exists (e.g., in case of a RADIUS
1055
+ proxy).""",
1056
+ },
1057
+ }, # requires
1058
+ "refinements" : {
1059
+ "radiusDynAuthServerAddressType" : {
1060
+ "module" : "RADIUS-DYNAUTH-CLIENT-MIB",
1061
+ "syntax" : {
1062
+ "type" : {
1063
+ "basetype" : "Enumeration",
1064
+ "parent module" : {
1065
+ "name" : "INET-ADDRESS-MIB",
1066
+ "type" : "InetAddressType",
1067
+ },
1068
+ "ipv4" : {
1069
+ "nodetype" : "namednumber",
1070
+ "number" : "1"
1071
+ },
1072
+ "ipv6" : {
1073
+ "nodetype" : "namednumber",
1074
+ "number" : "2"
1075
+ },
1076
+ },
1077
+ }, # syntax
1078
+ "description" :
1079
+ """An implementation is only required to support IPv4 and
1080
+ globally unique IPv6 addresses.""",
1081
+ },
1082
+ "radiusDynAuthServerAddress" : {
1083
+ "module" : "RADIUS-DYNAUTH-CLIENT-MIB",
1084
+ "syntax" : {
1085
+ "type" : {
1086
+ "basetype" : "OctetString",
1087
+ "parent module" : {
1088
+ "name" : "INET-ADDRESS-MIB",
1089
+ "type" : "InetAddress",
1090
+ },
1091
+ "ranges" : [
1092
+ {
1093
+ "min" : "4",
1094
+ "max" : "4"
1095
+ },
1096
+ {
1097
+ "min" : "16",
1098
+ "max" : "16"
1099
+ },
1100
+ ],
1101
+ "range" : {
1102
+ "min" : "4",
1103
+ "max" : "16"
1104
+ },
1105
+ },
1106
+ }, # syntax
1107
+ "description" :
1108
+ """An implementation is only required to support IPv4 and
1109
+ globally unique IPv6 addresses.""",
1110
+ },
1111
+ }, # refinements
1112
+
1113
+ }, # compliance
1114
+ }, # compliances
1115
+
1116
+ }