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,1270 @@
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 COPS-CLIENT-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/COPS-CLIENT-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "COPS-CLIENT-MIB",
11
+
12
+ "COPS-CLIENT-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF RSVP Admission Policy Working Group""",
17
+ "contact" :
18
+ """ Andrew Smith (WG co-chair)
19
+ Phone: +1 408 579 2821
20
+ Email: ah_smith@pacbell.net
21
+
22
+ Mark Stevens (WG co-chair)
23
+ Phone: +1 978 287 9102
24
+ Email: markstevens@lucent.com
25
+
26
+ Editor: Andrew Smith
27
+ Phone: +1 408 579 2821
28
+ Email: ah_smith@pacbell.net
29
+
30
+ Editor: David Partain
31
+ Phone: +46 13 28 41 44
32
+ Email: David.Partain@ericsson.com
33
+
34
+ Editor: John Seligson
35
+ Phone: +1 408 495 2992
36
+ Email: jseligso@nortelnetworks.com""",
37
+ "description" :
38
+ """The COPS Client MIB module""",
39
+ "revisions" : (
40
+ {
41
+ "date" : "2000-09-28 00:00",
42
+ "description" :
43
+ """This version published as RFC 2940""",
44
+ },
45
+ ),
46
+ "identity node" : "copsClientMIB",
47
+ },
48
+
49
+ "imports" : (
50
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
51
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
52
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
53
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
54
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
55
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
56
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
57
+ {"module" : "SNMPv2-TC", "name" : "TimeInterval"},
58
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
59
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
60
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
61
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
62
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddressType"},
63
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddress"},
64
+ ),
65
+
66
+ "typedefs" : {
67
+ "CopsClientState" : {
68
+ "basetype" : "Enumeration",
69
+ "status" : "current",
70
+ "copsClientInvalid" : {
71
+ "nodetype" : "namednumber",
72
+ "number" : "1"
73
+ },
74
+ "copsClientTcpconnected" : {
75
+ "nodetype" : "namednumber",
76
+ "number" : "2"
77
+ },
78
+ "copsClientAuthenticating" : {
79
+ "nodetype" : "namednumber",
80
+ "number" : "3"
81
+ },
82
+ "copsClientSecAccepted" : {
83
+ "nodetype" : "namednumber",
84
+ "number" : "4"
85
+ },
86
+ "copsClientAccepted" : {
87
+ "nodetype" : "namednumber",
88
+ "number" : "5"
89
+ },
90
+ "copsClientTimingout" : {
91
+ "nodetype" : "namednumber",
92
+ "number" : "6"
93
+ },
94
+ "description" :
95
+ """A value indicating the state of a COPS client.""",
96
+ },
97
+ "CopsServerEntryType" : {
98
+ "basetype" : "Enumeration",
99
+ "status" : "current",
100
+ "copsServerStatic" : {
101
+ "nodetype" : "namednumber",
102
+ "number" : "1"
103
+ },
104
+ "copsServerRedirect" : {
105
+ "nodetype" : "namednumber",
106
+ "number" : "2"
107
+ },
108
+ "description" :
109
+ """A value indicating how a COPS server entry came into existence.""",
110
+ },
111
+ "CopsErrorCode" : {
112
+ "basetype" : "Enumeration",
113
+ "status" : "current",
114
+ "errorOther" : {
115
+ "nodetype" : "namednumber",
116
+ "number" : "0"
117
+ },
118
+ "errorBadHandle" : {
119
+ "nodetype" : "namednumber",
120
+ "number" : "1"
121
+ },
122
+ "errorInvalidHandleReference" : {
123
+ "nodetype" : "namednumber",
124
+ "number" : "2"
125
+ },
126
+ "errorBadMessageFormat" : {
127
+ "nodetype" : "namednumber",
128
+ "number" : "3"
129
+ },
130
+ "errorUnableToProcess" : {
131
+ "nodetype" : "namednumber",
132
+ "number" : "4"
133
+ },
134
+ "errorMandatoryClientSiMissing" : {
135
+ "nodetype" : "namednumber",
136
+ "number" : "5"
137
+ },
138
+ "errorUnsupportedClientType" : {
139
+ "nodetype" : "namednumber",
140
+ "number" : "6"
141
+ },
142
+ "errorMandatoryCopsObjectMissing" : {
143
+ "nodetype" : "namednumber",
144
+ "number" : "7"
145
+ },
146
+ "errorClientFailure" : {
147
+ "nodetype" : "namednumber",
148
+ "number" : "8"
149
+ },
150
+ "errorCommunicationFailure" : {
151
+ "nodetype" : "namednumber",
152
+ "number" : "9"
153
+ },
154
+ "errorUnspecified" : {
155
+ "nodetype" : "namednumber",
156
+ "number" : "10"
157
+ },
158
+ "errorShuttingDown" : {
159
+ "nodetype" : "namednumber",
160
+ "number" : "11"
161
+ },
162
+ "errorRedirectToPreferredServer" : {
163
+ "nodetype" : "namednumber",
164
+ "number" : "12"
165
+ },
166
+ "errorUnknownCopsObject" : {
167
+ "nodetype" : "namednumber",
168
+ "number" : "13"
169
+ },
170
+ "errorAuthenticationFailure" : {
171
+ "nodetype" : "namednumber",
172
+ "number" : "14"
173
+ },
174
+ "errorAuthenticationMissing" : {
175
+ "nodetype" : "namednumber",
176
+ "number" : "15"
177
+ },
178
+ "description" :
179
+ """A value describing a COPS protocol error. Codes are identical
180
+ to those used by the COPS protocol itself.""",
181
+ },
182
+ "CopsTcpPort" : {
183
+ "basetype" : "Integer32",
184
+ "status" : "current",
185
+ "ranges" : [
186
+ {
187
+ "min" : "0",
188
+ "max" : "65535"
189
+ },
190
+ ],
191
+ "range" : {
192
+ "min" : "0",
193
+ "max" : "65535"
194
+ },
195
+ "description" :
196
+ """A value indicating a TCP protocol port number.""",
197
+ },
198
+ "CopsAuthType" : {
199
+ "basetype" : "Enumeration",
200
+ "status" : "current",
201
+ "authNone" : {
202
+ "nodetype" : "namednumber",
203
+ "number" : "0"
204
+ },
205
+ "authOther" : {
206
+ "nodetype" : "namednumber",
207
+ "number" : "1"
208
+ },
209
+ "authIpSecAh" : {
210
+ "nodetype" : "namednumber",
211
+ "number" : "2"
212
+ },
213
+ "authIpSecEsp" : {
214
+ "nodetype" : "namednumber",
215
+ "number" : "3"
216
+ },
217
+ "authTls" : {
218
+ "nodetype" : "namednumber",
219
+ "number" : "4"
220
+ },
221
+ "authCopsIntegrity" : {
222
+ "nodetype" : "namednumber",
223
+ "number" : "5"
224
+ },
225
+ "description" :
226
+ """A value indicating a type of security authentication mechanism.""",
227
+ },
228
+ }, # typedefs
229
+
230
+ "nodes" : {
231
+ "copsClientMIB" : {
232
+ "nodetype" : "node",
233
+ "moduleName" : "COPS-CLIENT-MIB",
234
+ "oid" : "1.3.6.1.2.1.89",
235
+ "status" : "current",
236
+ }, # node
237
+ "copsClientMIBObjects" : {
238
+ "nodetype" : "node",
239
+ "moduleName" : "COPS-CLIENT-MIB",
240
+ "oid" : "1.3.6.1.2.1.89.1",
241
+ }, # node
242
+ "copsClientCapabilitiesGroup" : {
243
+ "nodetype" : "node",
244
+ "moduleName" : "COPS-CLIENT-MIB",
245
+ "oid" : "1.3.6.1.2.1.89.1.1",
246
+ }, # node
247
+ "copsClientCapabilities" : {
248
+ "nodetype" : "scalar",
249
+ "moduleName" : "COPS-CLIENT-MIB",
250
+ "oid" : "1.3.6.1.2.1.89.1.1.1",
251
+ "status" : "current",
252
+ "syntax" : {
253
+ "type" : {
254
+ "basetype" : "Bits",
255
+ "copsClientVersion1" : {
256
+ "nodetype" : "namednumber",
257
+ "number" : "0"
258
+ },
259
+ "copsClientAuthIpSecAh" : {
260
+ "nodetype" : "namednumber",
261
+ "number" : "1"
262
+ },
263
+ "copsClientAuthIpSecEsp" : {
264
+ "nodetype" : "namednumber",
265
+ "number" : "2"
266
+ },
267
+ "copsClientAuthTls" : {
268
+ "nodetype" : "namednumber",
269
+ "number" : "3"
270
+ },
271
+ "copsClientAuthInteg" : {
272
+ "nodetype" : "namednumber",
273
+ "number" : "4"
274
+ },
275
+ },
276
+ },
277
+ "access" : "readonly",
278
+ "description" :
279
+ """A list of the optional capabilities that this COPS client
280
+ supports.""",
281
+ }, # scalar
282
+ "copsClientStatusGroup" : {
283
+ "nodetype" : "node",
284
+ "moduleName" : "COPS-CLIENT-MIB",
285
+ "oid" : "1.3.6.1.2.1.89.1.2",
286
+ }, # node
287
+ "copsClientServerCurrentTable" : {
288
+ "nodetype" : "table",
289
+ "moduleName" : "COPS-CLIENT-MIB",
290
+ "oid" : "1.3.6.1.2.1.89.1.2.1",
291
+ "status" : "current",
292
+ "description" :
293
+ """A table of information regarding COPS servers as seen from the
294
+ point of view of a COPS client. This table contains entries
295
+ for both statically-configured and dynamically-learned servers
296
+ (from a PDP Redirect operation). One entry exists in this table
297
+ for each COPS Client-Type served by the COPS server. In addition,
298
+ an entry will exist with copsClientServerClientType 0 (zero)
299
+ representing information about the underlying connection itself:
300
+ this is consistent with the COPS specification which reserves
301
+ this value for this purpose.""",
302
+ }, # table
303
+ "copsClientServerCurrentEntry" : {
304
+ "nodetype" : "row",
305
+ "moduleName" : "COPS-CLIENT-MIB",
306
+ "oid" : "1.3.6.1.2.1.89.1.2.1.1",
307
+ "status" : "current",
308
+ "linkage" : [
309
+ "copsClientServerAddressType",
310
+ "copsClientServerAddress",
311
+ "copsClientServerClientType",
312
+ ],
313
+ "description" :
314
+ """A set of information regarding a single COPS server serving
315
+ a single COPS Client-Type from the point of view of a COPS
316
+ client.""",
317
+ }, # row
318
+ "copsClientServerAddressType" : {
319
+ "nodetype" : "column",
320
+ "moduleName" : "COPS-CLIENT-MIB",
321
+ "oid" : "1.3.6.1.2.1.89.1.2.1.1.1",
322
+ "status" : "current",
323
+ "syntax" : {
324
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
325
+ },
326
+ "access" : "noaccess",
327
+ "description" :
328
+ """The type of address in copsClientServerAddress.""",
329
+ }, # column
330
+ "copsClientServerAddress" : {
331
+ "nodetype" : "column",
332
+ "moduleName" : "COPS-CLIENT-MIB",
333
+ "oid" : "1.3.6.1.2.1.89.1.2.1.1.2",
334
+ "status" : "current",
335
+ "syntax" : {
336
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
337
+ },
338
+ "access" : "noaccess",
339
+ "description" :
340
+ """The IPv4, IPv6 or DNS address of a COPS Server. Note that,
341
+ since this is an index to the table, the DNS name must be
342
+ short enough to fit into the maximum length of indices allowed
343
+ by the management protocol in use.""",
344
+ "reference" :
345
+ """RFC 2748 section 2.3""",
346
+ }, # column
347
+ "copsClientServerClientType" : {
348
+ "nodetype" : "column",
349
+ "moduleName" : "COPS-CLIENT-MIB",
350
+ "oid" : "1.3.6.1.2.1.89.1.2.1.1.3",
351
+ "status" : "current",
352
+ "syntax" : {
353
+ "type" : {
354
+ "basetype" : "Integer32",
355
+ "ranges" : [
356
+ {
357
+ "min" : "0",
358
+ "max" : "65535"
359
+ },
360
+ ],
361
+ "range" : {
362
+ "min" : "0",
363
+ "max" : "65535"
364
+ },
365
+ },
366
+ },
367
+ "access" : "noaccess",
368
+ "description" :
369
+ """The COPS protocol Client-Type for which this entry
370
+ applies. Multiple Client-Types can be served by a single
371
+ COPS server. The value 0 (zero) indicates that this
372
+ entry contains information about the underlying connection
373
+ itself.""",
374
+ "reference" :
375
+ """RFC 2748 section 6, IANA""",
376
+ }, # column
377
+ "copsClientServerTcpPort" : {
378
+ "nodetype" : "column",
379
+ "moduleName" : "COPS-CLIENT-MIB",
380
+ "oid" : "1.3.6.1.2.1.89.1.2.1.1.4",
381
+ "status" : "current",
382
+ "syntax" : {
383
+ "type" : { "module" :"COPS-CLIENT-MIB", "name" : "CopsTcpPort"},
384
+ },
385
+ "access" : "readonly",
386
+ "description" :
387
+ """The TCP port number on the COPS server to which the
388
+ client should connect/is connected.""",
389
+ }, # column
390
+ "copsClientServerType" : {
391
+ "nodetype" : "column",
392
+ "moduleName" : "COPS-CLIENT-MIB",
393
+ "oid" : "1.3.6.1.2.1.89.1.2.1.1.5",
394
+ "status" : "current",
395
+ "syntax" : {
396
+ "type" : { "module" :"COPS-CLIENT-MIB", "name" : "CopsServerEntryType"},
397
+ },
398
+ "access" : "readonly",
399
+ "description" :
400
+ """Indicator of the source of this COPS server information.
401
+ COPS servers may be configured by network management
402
+ into copsClientServerConfigTable and appear in this entry
403
+ with type copsServerStatic(1). Alternatively, the may be
404
+ notified from another COPS server by means of the COPS
405
+ PDP-Redirect mechanism and appear as copsServerRedirect(2).""",
406
+ }, # column
407
+ "copsClientServerAuthType" : {
408
+ "nodetype" : "column",
409
+ "moduleName" : "COPS-CLIENT-MIB",
410
+ "oid" : "1.3.6.1.2.1.89.1.2.1.1.6",
411
+ "status" : "current",
412
+ "syntax" : {
413
+ "type" : { "module" :"COPS-CLIENT-MIB", "name" : "CopsAuthType"},
414
+ },
415
+ "access" : "readonly",
416
+ "description" :
417
+ """Indicator of the current security mode in use between
418
+ client and this COPS server.""",
419
+ }, # column
420
+ "copsClientServerLastConnAttempt" : {
421
+ "nodetype" : "column",
422
+ "moduleName" : "COPS-CLIENT-MIB",
423
+ "oid" : "1.3.6.1.2.1.89.1.2.1.1.7",
424
+ "status" : "current",
425
+ "syntax" : {
426
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
427
+ },
428
+ "access" : "readonly",
429
+ "description" :
430
+ """Timestamp of the last time that this client attempted to
431
+ connect to this COPS server.""",
432
+ }, # column
433
+ "copsClientState" : {
434
+ "nodetype" : "column",
435
+ "moduleName" : "COPS-CLIENT-MIB",
436
+ "oid" : "1.3.6.1.2.1.89.1.2.1.1.8",
437
+ "status" : "current",
438
+ "syntax" : {
439
+ "type" : { "module" :"COPS-CLIENT-MIB", "name" : "CopsClientState"},
440
+ },
441
+ "access" : "readonly",
442
+ "description" :
443
+ """The state of the connection and COPS protocol with respect
444
+
445
+
446
+ to this COPS server.""",
447
+ }, # column
448
+ "copsClientServerKeepaliveTime" : {
449
+ "nodetype" : "column",
450
+ "moduleName" : "COPS-CLIENT-MIB",
451
+ "oid" : "1.3.6.1.2.1.89.1.2.1.1.9",
452
+ "status" : "current",
453
+ "syntax" : {
454
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeInterval"},
455
+ },
456
+ "access" : "readonly",
457
+ "description" :
458
+ """The value of the COPS protocol Keepalive timeout, in
459
+ centiseconds, currently in use by this client, as
460
+ specified by this COPS server in the Client-Accept operation.
461
+ A value of zero indicates no keepalive activity is expected.""",
462
+ "reference" :
463
+ """RFC 2748 section 3.7, 4.4""",
464
+ }, # column
465
+ "copsClientServerAccountingTime" : {
466
+ "nodetype" : "column",
467
+ "moduleName" : "COPS-CLIENT-MIB",
468
+ "oid" : "1.3.6.1.2.1.89.1.2.1.1.10",
469
+ "status" : "current",
470
+ "syntax" : {
471
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeInterval"},
472
+ },
473
+ "access" : "readonly",
474
+ "description" :
475
+ """The value of the COPS protocol Accounting timeout, in
476
+ centiseconds, currently in use by this client, as specified
477
+ by the COPS server in the Client-Accept operation. A value
478
+ of zero indicates no accounting activity is to be performed.""",
479
+ "reference" :
480
+ """RFC 2748 section 3.7""",
481
+ }, # column
482
+ "copsClientInPkts" : {
483
+ "nodetype" : "column",
484
+ "moduleName" : "COPS-CLIENT-MIB",
485
+ "oid" : "1.3.6.1.2.1.89.1.2.1.1.11",
486
+ "status" : "current",
487
+ "syntax" : {
488
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
489
+ },
490
+ "access" : "readonly",
491
+ "description" :
492
+ """A count of the total number of COPS messages that this client
493
+ has received from this COPS server marked for this Client-Type.
494
+ This value is cumulative since agent restart and is not zeroed
495
+ on new connections.""",
496
+ }, # column
497
+ "copsClientOutPkts" : {
498
+ "nodetype" : "column",
499
+ "moduleName" : "COPS-CLIENT-MIB",
500
+ "oid" : "1.3.6.1.2.1.89.1.2.1.1.12",
501
+ "status" : "current",
502
+ "syntax" : {
503
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
504
+ },
505
+ "access" : "readonly",
506
+ "description" :
507
+ """A count of the total number of COPS messages that this client
508
+ has sent to this COPS server marked for this Client-Type. This
509
+ value is cumulative since agent restart and is not zeroed on new
510
+
511
+
512
+ connections.""",
513
+ }, # column
514
+ "copsClientInErrs" : {
515
+ "nodetype" : "column",
516
+ "moduleName" : "COPS-CLIENT-MIB",
517
+ "oid" : "1.3.6.1.2.1.89.1.2.1.1.13",
518
+ "status" : "current",
519
+ "syntax" : {
520
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
521
+ },
522
+ "access" : "readonly",
523
+ "description" :
524
+ """A count of the total number of COPS messages that this client
525
+ has received from this COPS server marked for this Client-Type
526
+ that contained errors in syntax. This value is cumulative since
527
+ agent restart and is not zeroed on new connections.""",
528
+ }, # column
529
+ "copsClientLastError" : {
530
+ "nodetype" : "column",
531
+ "moduleName" : "COPS-CLIENT-MIB",
532
+ "oid" : "1.3.6.1.2.1.89.1.2.1.1.14",
533
+ "status" : "current",
534
+ "syntax" : {
535
+ "type" : { "module" :"COPS-CLIENT-MIB", "name" : "CopsErrorCode"},
536
+ },
537
+ "access" : "readonly",
538
+ "description" :
539
+ """The code contained in the last COPS protocol Error Object
540
+ received by this client from this COPS server marked for this
541
+ Client-Type. This value is not zeroed on COPS Client-Open
542
+ operations.""",
543
+ "reference" :
544
+ """RFC 2748 section 2.2.8""",
545
+ }, # column
546
+ "copsClientTcpConnectAttempts" : {
547
+ "nodetype" : "column",
548
+ "moduleName" : "COPS-CLIENT-MIB",
549
+ "oid" : "1.3.6.1.2.1.89.1.2.1.1.15",
550
+ "status" : "current",
551
+ "syntax" : {
552
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
553
+ },
554
+ "access" : "readonly",
555
+ "description" :
556
+ """A count of the number of times that this COPS client has tried
557
+ (successfully or otherwise) to open an TCP connection to a COPS
558
+ server. This value is cumulative since agent restart and is not
559
+ zeroed on new connections. This value is not incremented for
560
+ entries representing a non-zero Client-Type.""",
561
+ }, # column
562
+ "copsClientTcpConnectFailures" : {
563
+ "nodetype" : "column",
564
+ "moduleName" : "COPS-CLIENT-MIB",
565
+ "oid" : "1.3.6.1.2.1.89.1.2.1.1.16",
566
+ "status" : "current",
567
+ "syntax" : {
568
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
569
+ },
570
+ "access" : "readonly",
571
+ "description" :
572
+ """A count of the number of times that this COPS client has failed
573
+ to open an TCP connection to a COPS server. This value is
574
+ cumulative since agent restart and is not zeroed on new
575
+ connections. This value is not incremented for
576
+
577
+
578
+ entries representing a non-zero Client-Type.""",
579
+ }, # column
580
+ "copsClientOpenAttempts" : {
581
+ "nodetype" : "column",
582
+ "moduleName" : "COPS-CLIENT-MIB",
583
+ "oid" : "1.3.6.1.2.1.89.1.2.1.1.17",
584
+ "status" : "current",
585
+ "syntax" : {
586
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
587
+ },
588
+ "access" : "readonly",
589
+ "description" :
590
+ """A count of the number of times that this COPS client has tried
591
+ to perform a COPS Client-Open to a COPS server for this
592
+ Client-Type. This value is cumulative since agent restart and is
593
+ not zeroed on new connections.""",
594
+ }, # column
595
+ "copsClientOpenFailures" : {
596
+ "nodetype" : "column",
597
+ "moduleName" : "COPS-CLIENT-MIB",
598
+ "oid" : "1.3.6.1.2.1.89.1.2.1.1.18",
599
+ "status" : "current",
600
+ "syntax" : {
601
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
602
+ },
603
+ "access" : "readonly",
604
+ "description" :
605
+ """A count of the number of times that this COPS client has failed
606
+ to perform a COPS Client-Open to a COPS server for this
607
+ Client-Type. This value is cumulative since agent restart and is
608
+ not zeroed on new connections.""",
609
+ }, # column
610
+ "copsClientErrUnsupportClienttype" : {
611
+ "nodetype" : "column",
612
+ "moduleName" : "COPS-CLIENT-MIB",
613
+ "oid" : "1.3.6.1.2.1.89.1.2.1.1.19",
614
+ "status" : "current",
615
+ "syntax" : {
616
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
617
+ },
618
+ "access" : "readonly",
619
+ "description" :
620
+ """A count of the total number of COPS messages that this client
621
+ has received from COPS servers that referred to Client-Types
622
+ that are unsupported by this client. This value is cumulative
623
+ since agent restart and is not zeroed on new connections. This
624
+ value is not incremented for entries representing a non-zero
625
+ Client-Type.""",
626
+ }, # column
627
+ "copsClientErrUnsupportedVersion" : {
628
+ "nodetype" : "column",
629
+ "moduleName" : "COPS-CLIENT-MIB",
630
+ "oid" : "1.3.6.1.2.1.89.1.2.1.1.20",
631
+ "status" : "current",
632
+ "syntax" : {
633
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
634
+ },
635
+ "access" : "readonly",
636
+ "description" :
637
+ """A count of the total number of COPS messages that this client
638
+ has received from COPS servers marked for this Client-Type that
639
+ had a COPS protocol Version number that is unsupported by this
640
+ client. This value is cumulative since agent restart and is not
641
+ zeroed on new connections.""",
642
+ }, # column
643
+ "copsClientErrLengthMismatch" : {
644
+ "nodetype" : "column",
645
+ "moduleName" : "COPS-CLIENT-MIB",
646
+ "oid" : "1.3.6.1.2.1.89.1.2.1.1.21",
647
+ "status" : "current",
648
+ "syntax" : {
649
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
650
+ },
651
+ "access" : "readonly",
652
+ "description" :
653
+ """A count of the total number of COPS messages that this client
654
+ has received from COPS servers marked for this Client-Type that
655
+ had a COPS protocol Message Length that did not match the actual
656
+ received message. This value is cumulative since agent restart
657
+ and is not zeroed on new connections.""",
658
+ }, # column
659
+ "copsClientErrUnknownOpcode" : {
660
+ "nodetype" : "column",
661
+ "moduleName" : "COPS-CLIENT-MIB",
662
+ "oid" : "1.3.6.1.2.1.89.1.2.1.1.22",
663
+ "status" : "current",
664
+ "syntax" : {
665
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
666
+ },
667
+ "access" : "readonly",
668
+ "description" :
669
+ """A count of the total number of COPS messages that this client
670
+ has received from COPS servers marked for this Client-Type that
671
+ had a COPS protocol Op Code that was unrecognised by this
672
+ client. This value is cumulative since agent restart and is not
673
+ zeroed on new connections.""",
674
+ }, # column
675
+ "copsClientErrUnknownCnum" : {
676
+ "nodetype" : "column",
677
+ "moduleName" : "COPS-CLIENT-MIB",
678
+ "oid" : "1.3.6.1.2.1.89.1.2.1.1.23",
679
+ "status" : "current",
680
+ "syntax" : {
681
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
682
+ },
683
+ "access" : "readonly",
684
+ "description" :
685
+ """A count of the total number of COPS messages that this client
686
+ has received from COPS servers marked for this Client-Type that
687
+ contained a COPS protocol object C-Num that was unrecognised by
688
+ this client. This value is cumulative since agent restart and is
689
+ not zeroed on new connections.""",
690
+ }, # column
691
+ "copsClientErrBadCtype" : {
692
+ "nodetype" : "column",
693
+ "moduleName" : "COPS-CLIENT-MIB",
694
+ "oid" : "1.3.6.1.2.1.89.1.2.1.1.24",
695
+ "status" : "current",
696
+ "syntax" : {
697
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
698
+ },
699
+ "access" : "readonly",
700
+ "description" :
701
+ """A count of the total number of COPS messages that this client
702
+ has received from COPS servers marked for this Client-Type that
703
+ contained a COPS protocol object C-Type that was not defined for
704
+ the C-Nums known by this client. This value is cumulative since
705
+ agent restart and is not zeroed on new connections.""",
706
+ }, # column
707
+ "copsClientErrBadSends" : {
708
+ "nodetype" : "column",
709
+ "moduleName" : "COPS-CLIENT-MIB",
710
+ "oid" : "1.3.6.1.2.1.89.1.2.1.1.25",
711
+ "status" : "current",
712
+ "syntax" : {
713
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
714
+ },
715
+ "access" : "readonly",
716
+ "description" :
717
+ """A count of the total number of COPS messages that this client
718
+ attempted to send to COPS servers marked for this Client-Type
719
+ that resulted in a transmit error. This value is cumulative
720
+ since agent restart and is not zeroed on new connections.""",
721
+ }, # column
722
+ "copsClientErrWrongObjects" : {
723
+ "nodetype" : "column",
724
+ "moduleName" : "COPS-CLIENT-MIB",
725
+ "oid" : "1.3.6.1.2.1.89.1.2.1.1.26",
726
+ "status" : "current",
727
+ "syntax" : {
728
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
729
+ },
730
+ "access" : "readonly",
731
+ "description" :
732
+ """A count of the total number of COPS messages that this client
733
+ has received from COPS servers marked for this Client-Type that
734
+ did not contain a permitted set of COPS protocol objects. This
735
+ value is cumulative since agent restart and is not zeroed on new
736
+ connections.""",
737
+ }, # column
738
+ "copsClientErrWrongOpcode" : {
739
+ "nodetype" : "column",
740
+ "moduleName" : "COPS-CLIENT-MIB",
741
+ "oid" : "1.3.6.1.2.1.89.1.2.1.1.27",
742
+ "status" : "current",
743
+ "syntax" : {
744
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
745
+ },
746
+ "access" : "readonly",
747
+ "description" :
748
+ """A count of the total number of COPS messages that this client
749
+ has received from COPS servers marked for this Client-Type that
750
+ had a COPS protocol Op Code that should not have been sent to a
751
+ COPS client e.g. Open-Requests. This value is cumulative since
752
+ agent restart and is not zeroed on new connections.""",
753
+ }, # column
754
+ "copsClientKaTimedoutClients" : {
755
+ "nodetype" : "column",
756
+ "moduleName" : "COPS-CLIENT-MIB",
757
+ "oid" : "1.3.6.1.2.1.89.1.2.1.1.28",
758
+ "status" : "current",
759
+ "syntax" : {
760
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
761
+ },
762
+ "access" : "readonly",
763
+ "description" :
764
+ """A count of the total number of times that this client has
765
+ been shut down for this Client-Type by COPS servers that had
766
+ detected a COPS protocol Keepalive timeout. This value is
767
+ cumulative since agent restart and is not zeroed on new
768
+ connections.""",
769
+ }, # column
770
+ "copsClientErrAuthFailures" : {
771
+ "nodetype" : "column",
772
+ "moduleName" : "COPS-CLIENT-MIB",
773
+ "oid" : "1.3.6.1.2.1.89.1.2.1.1.29",
774
+ "status" : "current",
775
+ "syntax" : {
776
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
777
+ },
778
+ "access" : "readonly",
779
+ "description" :
780
+ """A count of the total number of times that this client has
781
+ received a COPS message marked for this Client-Type which
782
+ could not be authenticated using the authentication mechanism
783
+ used by this client.""",
784
+ }, # column
785
+ "copsClientErrAuthMissing" : {
786
+ "nodetype" : "column",
787
+ "moduleName" : "COPS-CLIENT-MIB",
788
+ "oid" : "1.3.6.1.2.1.89.1.2.1.1.30",
789
+ "status" : "current",
790
+ "syntax" : {
791
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
792
+ },
793
+ "access" : "readonly",
794
+ "description" :
795
+ """A count of the total number of times that this client has
796
+ received a COPS message marked for this Client-Type which did not
797
+ contain authentication information.""",
798
+ }, # column
799
+ "copsClientConfigGroup" : {
800
+ "nodetype" : "node",
801
+ "moduleName" : "COPS-CLIENT-MIB",
802
+ "oid" : "1.3.6.1.2.1.89.1.3",
803
+ }, # node
804
+ "copsClientServerConfigTable" : {
805
+ "nodetype" : "table",
806
+ "moduleName" : "COPS-CLIENT-MIB",
807
+ "oid" : "1.3.6.1.2.1.89.1.3.1",
808
+ "status" : "current",
809
+ "description" :
810
+ """Table of possible COPS servers to try to connect to in order
811
+ of copsClientServerConfigPriority. There may be multiple
812
+ entries in this table for the same server and client-type which
813
+ specify different security mechanisms: these mechanisms will
814
+ be attempted by the client in the priority order given. Note
815
+ that a server learned by means of PDPRedirect always takes
816
+ priority over any of these configured entries.""",
817
+ }, # table
818
+ "copsClientServerConfigEntry" : {
819
+ "nodetype" : "row",
820
+ "moduleName" : "COPS-CLIENT-MIB",
821
+ "oid" : "1.3.6.1.2.1.89.1.3.1.1",
822
+ "create" : "true",
823
+ "status" : "current",
824
+ "linkage" : [
825
+ "copsClientServerConfigAddrType",
826
+ "copsClientServerConfigAddress",
827
+ "copsClientServerConfigClientType",
828
+ "copsClientServerConfigAuthType",
829
+ ],
830
+ "description" :
831
+ """A set of configuration information regarding a single
832
+
833
+
834
+ COPS server from the point of view of a COPS client.""",
835
+ }, # row
836
+ "copsClientServerConfigAddrType" : {
837
+ "nodetype" : "column",
838
+ "moduleName" : "COPS-CLIENT-MIB",
839
+ "oid" : "1.3.6.1.2.1.89.1.3.1.1.1",
840
+ "status" : "current",
841
+ "syntax" : {
842
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
843
+ },
844
+ "access" : "noaccess",
845
+ "description" :
846
+ """The type of address in copsClientServerConfigAddress.""",
847
+ }, # column
848
+ "copsClientServerConfigAddress" : {
849
+ "nodetype" : "column",
850
+ "moduleName" : "COPS-CLIENT-MIB",
851
+ "oid" : "1.3.6.1.2.1.89.1.3.1.1.2",
852
+ "status" : "current",
853
+ "syntax" : {
854
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
855
+ },
856
+ "access" : "noaccess",
857
+ "description" :
858
+ """The IPv4, IPv6 or DNS address of a COPS Server. Note that,
859
+ since this is an index to the table, the DNS name must be
860
+ short enough to fit into the maximum length of indices allowed
861
+ by the management protocol in use.""",
862
+ "reference" :
863
+ """RFC 2748 section 2.3""",
864
+ }, # column
865
+ "copsClientServerConfigClientType" : {
866
+ "nodetype" : "column",
867
+ "moduleName" : "COPS-CLIENT-MIB",
868
+ "oid" : "1.3.6.1.2.1.89.1.3.1.1.3",
869
+ "status" : "current",
870
+ "syntax" : {
871
+ "type" : {
872
+ "basetype" : "Integer32",
873
+ "ranges" : [
874
+ {
875
+ "min" : "0",
876
+ "max" : "65535"
877
+ },
878
+ ],
879
+ "range" : {
880
+ "min" : "0",
881
+ "max" : "65535"
882
+ },
883
+ },
884
+ },
885
+ "access" : "noaccess",
886
+ "description" :
887
+ """The COPS protocol Client-Type for which this entry
888
+ applies and for which this COPS server is capable
889
+ of serving. Multiple Client-Types can be served by a
890
+ single COPS server.""",
891
+ "reference" :
892
+ """RFC 2748 section 6, IANA""",
893
+ }, # column
894
+ "copsClientServerConfigAuthType" : {
895
+ "nodetype" : "column",
896
+ "moduleName" : "COPS-CLIENT-MIB",
897
+ "oid" : "1.3.6.1.2.1.89.1.3.1.1.4",
898
+ "status" : "current",
899
+ "syntax" : {
900
+ "type" : { "module" :"COPS-CLIENT-MIB", "name" : "CopsAuthType"},
901
+ },
902
+ "access" : "noaccess",
903
+ "description" :
904
+ """The type of authentication mechanism for this COPS client
905
+ to request when negotiating security at the start of a
906
+ connection to a COPS server.""",
907
+ "reference" :
908
+ """RFC 2748 section 4.""",
909
+ }, # column
910
+ "copsClientServerConfigTcpPort" : {
911
+ "nodetype" : "column",
912
+ "moduleName" : "COPS-CLIENT-MIB",
913
+ "oid" : "1.3.6.1.2.1.89.1.3.1.1.5",
914
+ "status" : "current",
915
+ "syntax" : {
916
+ "type" : { "module" :"COPS-CLIENT-MIB", "name" : "CopsTcpPort"},
917
+ },
918
+ "access" : "readwrite",
919
+ "description" :
920
+ """The TCP port number on the COPS server to which the
921
+ client should connect.""",
922
+ }, # column
923
+ "copsClientServerConfigPriority" : {
924
+ "nodetype" : "column",
925
+ "moduleName" : "COPS-CLIENT-MIB",
926
+ "oid" : "1.3.6.1.2.1.89.1.3.1.1.6",
927
+ "status" : "current",
928
+ "syntax" : {
929
+ "type" : { "module" :"", "name" : "Integer32"},
930
+ },
931
+ "access" : "readwrite",
932
+ "description" :
933
+ """The priority of this entry relative to other entries.
934
+ COPS client will attempt to contact COPS servers for the
935
+ appropriate Client-Type. Higher numbers are tried first. The
936
+ order to be used amongst server entries with the same priority
937
+ is undefined. COPS servers that are notified to the client using
938
+ the COPS protocol PDP-Redirect mechanism are always used in
939
+ preference to any entries in this table.""",
940
+ }, # column
941
+ "copsClientServerConfigRowStatus" : {
942
+ "nodetype" : "column",
943
+ "moduleName" : "COPS-CLIENT-MIB",
944
+ "oid" : "1.3.6.1.2.1.89.1.3.1.1.7",
945
+ "status" : "current",
946
+ "syntax" : {
947
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
948
+ },
949
+ "access" : "readwrite",
950
+ "description" :
951
+ """State of this entry in the table.""",
952
+ }, # column
953
+ "copsClientServerConfigRetryAlgrm" : {
954
+ "nodetype" : "scalar",
955
+ "moduleName" : "COPS-CLIENT-MIB",
956
+ "oid" : "1.3.6.1.2.1.89.1.3.2",
957
+ "status" : "current",
958
+ "syntax" : {
959
+ "type" : {
960
+ "basetype" : "Enumeration",
961
+ "other" : {
962
+ "nodetype" : "namednumber",
963
+ "number" : "1"
964
+ },
965
+ "sequential" : {
966
+ "nodetype" : "namednumber",
967
+ "number" : "2"
968
+ },
969
+ "roundRobin" : {
970
+ "nodetype" : "namednumber",
971
+ "number" : "3"
972
+ },
973
+ },
974
+ },
975
+ "access" : "readwrite",
976
+ "default" : "sequential",
977
+ "description" :
978
+ """The algorithm by which the client should retry when it
979
+ fails to connect to a COPS server.""",
980
+ }, # scalar
981
+ "copsClientServerConfigRetryCount" : {
982
+ "nodetype" : "scalar",
983
+ "moduleName" : "COPS-CLIENT-MIB",
984
+ "oid" : "1.3.6.1.2.1.89.1.3.3",
985
+ "status" : "current",
986
+ "syntax" : {
987
+ "type" : { "module" :"", "name" : "Unsigned32"},
988
+ },
989
+ "access" : "readwrite",
990
+ "default" : "1",
991
+ "description" :
992
+ """A retry count for use by the retry algorithm. Each retry
993
+ algorithm needs to specify how it uses this value.
994
+
995
+ For the 'sequential(2)' algorithm, this value is the
996
+ number of times the client should retry to connect
997
+ to one COPS server before moving on to another.
998
+ For the 'roundRobin(3)' algorithm, this value is not used.""",
999
+ }, # scalar
1000
+ "copsClientServerConfigRetryIntvl" : {
1001
+ "nodetype" : "scalar",
1002
+ "moduleName" : "COPS-CLIENT-MIB",
1003
+ "oid" : "1.3.6.1.2.1.89.1.3.4",
1004
+ "status" : "current",
1005
+ "syntax" : {
1006
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeInterval"},
1007
+ },
1008
+ "access" : "readwrite",
1009
+ "default" : "1000",
1010
+ "units" : "centi-seconds",
1011
+ "description" :
1012
+ """A retry interval for use by the retry algorithm. Each retry
1013
+ algorithm needs to specify how it uses this value.
1014
+
1015
+ For the 'sequential(2)' algorithm, this value is the time to
1016
+ wait between retries of a connection to the same COPS server.
1017
+
1018
+ For the 'roundRobin(3)' algorithm, the client always attempts
1019
+ to connect to each Server in turn, until one succeeds or they
1020
+ all fail; if they all fail, then the client waits for the value
1021
+ of this interval before restarting the algorithm.""",
1022
+ }, # scalar
1023
+ "copsClientConformance" : {
1024
+ "nodetype" : "node",
1025
+ "moduleName" : "COPS-CLIENT-MIB",
1026
+ "oid" : "1.3.6.1.2.1.89.2",
1027
+ }, # node
1028
+ "copsClientGroups" : {
1029
+ "nodetype" : "node",
1030
+ "moduleName" : "COPS-CLIENT-MIB",
1031
+ "oid" : "1.3.6.1.2.1.89.2.1",
1032
+ }, # node
1033
+ "copsClientCompliances" : {
1034
+ "nodetype" : "node",
1035
+ "moduleName" : "COPS-CLIENT-MIB",
1036
+ "oid" : "1.3.6.1.2.1.89.2.2",
1037
+ }, # node
1038
+ }, # nodes
1039
+
1040
+ "groups" : {
1041
+ "copsDeviceStatusGroup" : {
1042
+ "nodetype" : "group",
1043
+ "moduleName" : "COPS-CLIENT-MIB",
1044
+ "oid" : "1.3.6.1.2.1.89.2.1.1",
1045
+ "status" : "current",
1046
+ "members" : {
1047
+ "copsClientCapabilities" : {
1048
+ "nodetype" : "member",
1049
+ "module" : "COPS-CLIENT-MIB"
1050
+ },
1051
+ "copsClientServerTcpPort" : {
1052
+ "nodetype" : "member",
1053
+ "module" : "COPS-CLIENT-MIB"
1054
+ },
1055
+ "copsClientServerType" : {
1056
+ "nodetype" : "member",
1057
+ "module" : "COPS-CLIENT-MIB"
1058
+ },
1059
+ "copsClientServerAuthType" : {
1060
+ "nodetype" : "member",
1061
+ "module" : "COPS-CLIENT-MIB"
1062
+ },
1063
+ "copsClientServerLastConnAttempt" : {
1064
+ "nodetype" : "member",
1065
+ "module" : "COPS-CLIENT-MIB"
1066
+ },
1067
+ "copsClientState" : {
1068
+ "nodetype" : "member",
1069
+ "module" : "COPS-CLIENT-MIB"
1070
+ },
1071
+ "copsClientServerKeepaliveTime" : {
1072
+ "nodetype" : "member",
1073
+ "module" : "COPS-CLIENT-MIB"
1074
+ },
1075
+ "copsClientServerAccountingTime" : {
1076
+ "nodetype" : "member",
1077
+ "module" : "COPS-CLIENT-MIB"
1078
+ },
1079
+ "copsClientInPkts" : {
1080
+ "nodetype" : "member",
1081
+ "module" : "COPS-CLIENT-MIB"
1082
+ },
1083
+ "copsClientOutPkts" : {
1084
+ "nodetype" : "member",
1085
+ "module" : "COPS-CLIENT-MIB"
1086
+ },
1087
+ "copsClientInErrs" : {
1088
+ "nodetype" : "member",
1089
+ "module" : "COPS-CLIENT-MIB"
1090
+ },
1091
+ "copsClientLastError" : {
1092
+ "nodetype" : "member",
1093
+ "module" : "COPS-CLIENT-MIB"
1094
+ },
1095
+ "copsClientTcpConnectAttempts" : {
1096
+ "nodetype" : "member",
1097
+ "module" : "COPS-CLIENT-MIB"
1098
+ },
1099
+ "copsClientTcpConnectFailures" : {
1100
+ "nodetype" : "member",
1101
+ "module" : "COPS-CLIENT-MIB"
1102
+ },
1103
+ "copsClientOpenAttempts" : {
1104
+ "nodetype" : "member",
1105
+ "module" : "COPS-CLIENT-MIB"
1106
+ },
1107
+ "copsClientOpenFailures" : {
1108
+ "nodetype" : "member",
1109
+ "module" : "COPS-CLIENT-MIB"
1110
+ },
1111
+ "copsClientErrUnsupportClienttype" : {
1112
+ "nodetype" : "member",
1113
+ "module" : "COPS-CLIENT-MIB"
1114
+ },
1115
+ "copsClientErrUnsupportedVersion" : {
1116
+ "nodetype" : "member",
1117
+ "module" : "COPS-CLIENT-MIB"
1118
+ },
1119
+ "copsClientErrLengthMismatch" : {
1120
+ "nodetype" : "member",
1121
+ "module" : "COPS-CLIENT-MIB"
1122
+ },
1123
+ "copsClientErrUnknownOpcode" : {
1124
+ "nodetype" : "member",
1125
+ "module" : "COPS-CLIENT-MIB"
1126
+ },
1127
+ "copsClientErrUnknownCnum" : {
1128
+ "nodetype" : "member",
1129
+ "module" : "COPS-CLIENT-MIB"
1130
+ },
1131
+ "copsClientErrBadCtype" : {
1132
+ "nodetype" : "member",
1133
+ "module" : "COPS-CLIENT-MIB"
1134
+ },
1135
+ "copsClientErrBadSends" : {
1136
+ "nodetype" : "member",
1137
+ "module" : "COPS-CLIENT-MIB"
1138
+ },
1139
+ "copsClientErrWrongObjects" : {
1140
+ "nodetype" : "member",
1141
+ "module" : "COPS-CLIENT-MIB"
1142
+ },
1143
+ "copsClientErrWrongOpcode" : {
1144
+ "nodetype" : "member",
1145
+ "module" : "COPS-CLIENT-MIB"
1146
+ },
1147
+ "copsClientKaTimedoutClients" : {
1148
+ "nodetype" : "member",
1149
+ "module" : "COPS-CLIENT-MIB"
1150
+ },
1151
+ "copsClientErrAuthFailures" : {
1152
+ "nodetype" : "member",
1153
+ "module" : "COPS-CLIENT-MIB"
1154
+ },
1155
+ "copsClientErrAuthMissing" : {
1156
+ "nodetype" : "member",
1157
+ "module" : "COPS-CLIENT-MIB"
1158
+ },
1159
+ }, # members
1160
+ "description" :
1161
+ """A collection of objects for monitoring the status of
1162
+ connections to COPS servers and statistics for a COPS client.""",
1163
+ }, # group
1164
+ "copsDeviceConfigGroup" : {
1165
+ "nodetype" : "group",
1166
+ "moduleName" : "COPS-CLIENT-MIB",
1167
+ "oid" : "1.3.6.1.2.1.89.2.1.2",
1168
+ "status" : "current",
1169
+ "members" : {
1170
+ "copsClientServerConfigTcpPort" : {
1171
+ "nodetype" : "member",
1172
+ "module" : "COPS-CLIENT-MIB"
1173
+ },
1174
+ "copsClientServerConfigPriority" : {
1175
+ "nodetype" : "member",
1176
+ "module" : "COPS-CLIENT-MIB"
1177
+ },
1178
+ "copsClientServerConfigRowStatus" : {
1179
+ "nodetype" : "member",
1180
+ "module" : "COPS-CLIENT-MIB"
1181
+ },
1182
+ "copsClientServerConfigRetryAlgrm" : {
1183
+ "nodetype" : "member",
1184
+ "module" : "COPS-CLIENT-MIB"
1185
+ },
1186
+ "copsClientServerConfigRetryCount" : {
1187
+ "nodetype" : "member",
1188
+ "module" : "COPS-CLIENT-MIB"
1189
+ },
1190
+ "copsClientServerConfigRetryIntvl" : {
1191
+ "nodetype" : "member",
1192
+ "module" : "COPS-CLIENT-MIB"
1193
+ },
1194
+ }, # members
1195
+ "description" :
1196
+ """A collection of objects for configuring COPS server
1197
+
1198
+
1199
+ information.""",
1200
+ }, # group
1201
+ }, # groups
1202
+
1203
+ "compliances" : {
1204
+ "copsClientCompliance" : {
1205
+ "nodetype" : "compliance",
1206
+ "moduleName" : "COPS-CLIENT-MIB",
1207
+ "oid" : "1.3.6.1.2.1.89.2.2.1",
1208
+ "status" : "current",
1209
+ "description" :
1210
+ """The compliance statement for device support of
1211
+ management of the COPS client.""",
1212
+ "requires" : {
1213
+ "copsDeviceStatusGroup" : {
1214
+ "nodetype" : "mandatory",
1215
+ "module" : "COPS-CLIENT-MIB"
1216
+ },
1217
+ "copsDeviceConfigGroup" : {
1218
+ "nodetype" : "mandatory",
1219
+ "module" : "COPS-CLIENT-MIB"
1220
+ },
1221
+ }, # requires
1222
+ "refinements" : {
1223
+ "copsClientServerConfigTcpPort" : {
1224
+ "module" : "COPS-CLIENT-MIB",
1225
+ "access" : "readonly",
1226
+ "description" :
1227
+ """Write access is required only if the device supports the
1228
+ configuration of COPS server information.""",
1229
+ },
1230
+ "copsClientServerConfigPriority" : {
1231
+ "module" : "COPS-CLIENT-MIB",
1232
+ "access" : "readonly",
1233
+ "description" :
1234
+ """Write access is required only if the device supports the
1235
+ configuration of COPS server information.""",
1236
+ },
1237
+ "copsClientServerConfigRowStatus" : {
1238
+ "module" : "COPS-CLIENT-MIB",
1239
+ "access" : "readonly",
1240
+ "description" :
1241
+ """Write access is required only if the device supports the
1242
+ configuration of COPS server information.""",
1243
+ },
1244
+ "copsClientServerConfigRetryAlgrm" : {
1245
+ "module" : "COPS-CLIENT-MIB",
1246
+ "access" : "readonly",
1247
+ "description" :
1248
+ """Write access is required only if the device supports the
1249
+ configuration of COPS server information.""",
1250
+ },
1251
+ "copsClientServerConfigRetryCount" : {
1252
+ "module" : "COPS-CLIENT-MIB",
1253
+ "access" : "readonly",
1254
+ "description" :
1255
+ """Write access is required only if the device supports the
1256
+ configuration of COPS server information.""",
1257
+ },
1258
+ "copsClientServerConfigRetryIntvl" : {
1259
+ "module" : "COPS-CLIENT-MIB",
1260
+ "access" : "readonly",
1261
+ "description" :
1262
+ """Write access is required only if the device supports the
1263
+ configuration of COPS server information.""",
1264
+ },
1265
+ }, # refinements
1266
+
1267
+ }, # compliance
1268
+ }, # compliances
1269
+
1270
+ }