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,1702 @@
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 CLNS-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/CLNS-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "CLNS-MIB",
11
+
12
+ "CLNS-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv1",
15
+ },
16
+
17
+ "imports" : (
18
+ {"module" : "RFC1155-SMI", "name" : "experimental"},
19
+ {"module" : "RFC1155-SMI", "name" : "Counter"},
20
+ {"module" : "RFC1213-MIB", "name" : "PhysAddress"},
21
+ {"module" : "RFC-1212", "name" : "OBJECT-TYPE"},
22
+ ),
23
+
24
+ "typedefs" : {
25
+ "ClnpAddress" : {
26
+ "basetype" : "OctetString",
27
+ "ranges" : [
28
+ {
29
+ "min" : "1",
30
+ "max" : "21"
31
+ },
32
+ ],
33
+ "range" : {
34
+ "min" : "1",
35
+ "max" : "21"
36
+ },
37
+ },
38
+ }, # typedefs
39
+
40
+ "nodes" : {
41
+ "clns" : {
42
+ "nodetype" : "node",
43
+ "moduleName" : "CLNS-MIB",
44
+ "oid" : "1.3.6.1.3.1",
45
+ }, # node
46
+ "clnp" : {
47
+ "nodetype" : "node",
48
+ "moduleName" : "CLNS-MIB",
49
+ "oid" : "1.3.6.1.3.1.1",
50
+ }, # node
51
+ "clnpForwarding" : {
52
+ "nodetype" : "scalar",
53
+ "moduleName" : "CLNS-MIB",
54
+ "oid" : "1.3.6.1.3.1.1.1",
55
+ "status" : "current",
56
+ "syntax" : {
57
+ "type" : {
58
+ "basetype" : "Enumeration",
59
+ "is" : {
60
+ "nodetype" : "namednumber",
61
+ "number" : "1"
62
+ },
63
+ "es" : {
64
+ "nodetype" : "namednumber",
65
+ "number" : "2"
66
+ },
67
+ },
68
+ },
69
+ "access" : "readwrite",
70
+ "description" :
71
+ """The indication of whether this entity is active
72
+ as an intermediate or end system. Only
73
+ intermediate systems will forward PDUs onward that
74
+ are not addressed to them.""",
75
+ }, # scalar
76
+ "clnpDefaultLifeTime" : {
77
+ "nodetype" : "scalar",
78
+ "moduleName" : "CLNS-MIB",
79
+ "oid" : "1.3.6.1.3.1.1.2",
80
+ "status" : "current",
81
+ "syntax" : {
82
+ "type" : { "module" :"", "name" : "Integer32"},
83
+ },
84
+ "access" : "readwrite",
85
+ "description" :
86
+ """The default value inserted into the Lifetime
87
+ field of the CLNP PDU header of PDUs sourced by
88
+ this entity.""",
89
+ }, # scalar
90
+ "clnpInReceives" : {
91
+ "nodetype" : "scalar",
92
+ "moduleName" : "CLNS-MIB",
93
+ "oid" : "1.3.6.1.3.1.1.3",
94
+ "status" : "current",
95
+ "syntax" : {
96
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
97
+ },
98
+ "access" : "readonly",
99
+ "description" :
100
+ """The total number of input PDUs received from all
101
+ connected network interfaces running CLNP,
102
+ including errors.""",
103
+ }, # scalar
104
+ "clnpInHdrErrors" : {
105
+ "nodetype" : "scalar",
106
+ "moduleName" : "CLNS-MIB",
107
+ "oid" : "1.3.6.1.3.1.1.4",
108
+ "status" : "current",
109
+ "syntax" : {
110
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
111
+ },
112
+ "access" : "readonly",
113
+ "description" :
114
+ """The number of input PDUs discarded due to errors
115
+ in the CLNP header, including bad checksums,
116
+ version mismatch, lifetime exceeded, errors
117
+ discovered in processing options, etc.""",
118
+ }, # scalar
119
+ "clnpInAddrErrors" : {
120
+ "nodetype" : "scalar",
121
+ "moduleName" : "CLNS-MIB",
122
+ "oid" : "1.3.6.1.3.1.1.5",
123
+ "status" : "current",
124
+ "syntax" : {
125
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
126
+ },
127
+ "access" : "readonly",
128
+ "description" :
129
+ """The number of input PDUs discarded because the
130
+ NSAP address in the CLNP header's destination
131
+ field was not a valid NSAP to be received at this
132
+ entity. This count includes addresses not
133
+ understood. For end systems, this is a count of
134
+ PDUs which arrived with a destination NSAP which
135
+ was not local.""",
136
+ }, # scalar
137
+ "clnpForwPDUs" : {
138
+ "nodetype" : "scalar",
139
+ "moduleName" : "CLNS-MIB",
140
+ "oid" : "1.3.6.1.3.1.1.6",
141
+ "status" : "current",
142
+ "syntax" : {
143
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
144
+ },
145
+ "access" : "readonly",
146
+ "description" :
147
+ """The number of input PDUs for which this entity
148
+ was not the final destination and which an attempt
149
+ was made to forward them onward.""",
150
+ }, # scalar
151
+ "clnpInUnknownNLPs" : {
152
+ "nodetype" : "scalar",
153
+ "moduleName" : "CLNS-MIB",
154
+ "oid" : "1.3.6.1.3.1.1.7",
155
+ "status" : "current",
156
+ "syntax" : {
157
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
158
+ },
159
+ "access" : "readonly",
160
+ "description" :
161
+ """The number of locally-addressed PDUs successfully
162
+ received but discarded because the network layer
163
+ protocol was unknown or unsupported (e.g., not
164
+ CLNP or ES-IS).""",
165
+ }, # scalar
166
+ "clnpInUnknownULPs" : {
167
+ "nodetype" : "scalar",
168
+ "moduleName" : "CLNS-MIB",
169
+ "oid" : "1.3.6.1.3.1.1.8",
170
+ "status" : "current",
171
+ "syntax" : {
172
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
173
+ },
174
+ "access" : "readonly",
175
+ "description" :
176
+ """The number of locally-addressed PDUs successfully
177
+ received but discarded because the upper layer
178
+ protocol was unknown or unsupported (e.g., not
179
+ TP4).""",
180
+ }, # scalar
181
+ "clnpInDiscards" : {
182
+ "nodetype" : "scalar",
183
+ "moduleName" : "CLNS-MIB",
184
+ "oid" : "1.3.6.1.3.1.1.9",
185
+ "status" : "current",
186
+ "syntax" : {
187
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
188
+ },
189
+ "access" : "readonly",
190
+ "description" :
191
+ """The number of input CLNP PDUs for which no
192
+ problems were encountered to prevent their
193
+ continued processing, but were discarded (e.g.,
194
+ for lack of buffer space). Note that this counter
195
+ does not include any PDUs discarded while awaiting
196
+ re-assembly.""",
197
+ }, # scalar
198
+ "clnpInDelivers" : {
199
+ "nodetype" : "scalar",
200
+ "moduleName" : "CLNS-MIB",
201
+ "oid" : "1.3.6.1.3.1.1.10",
202
+ "status" : "current",
203
+ "syntax" : {
204
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
205
+ },
206
+ "access" : "readonly",
207
+ "description" :
208
+ """The total number of input PDUs successfully
209
+ delivered to the CLNS transport user.""",
210
+ }, # scalar
211
+ "clnpOutRequests" : {
212
+ "nodetype" : "scalar",
213
+ "moduleName" : "CLNS-MIB",
214
+ "oid" : "1.3.6.1.3.1.1.11",
215
+ "status" : "current",
216
+ "syntax" : {
217
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
218
+ },
219
+ "access" : "readonly",
220
+ "description" :
221
+ """The total number of CLNP PDUs which local CLNS
222
+ user protocols supplied to CLNP for transmission
223
+ requests. This counter does not include any PDUs
224
+ counted in clnpForwPDUs.""",
225
+ }, # scalar
226
+ "clnpOutDiscards" : {
227
+ "nodetype" : "scalar",
228
+ "moduleName" : "CLNS-MIB",
229
+ "oid" : "1.3.6.1.3.1.1.12",
230
+ "status" : "current",
231
+ "syntax" : {
232
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
233
+ },
234
+ "access" : "readonly",
235
+ "description" :
236
+ """The number of output CLNP PDUs for which no other
237
+ problem was encountered to prevent their
238
+ transmission but were discarded (e.g., for lack of
239
+ buffer space). Note this counter includes PDUs
240
+ counted in clnpForwPDUs.""",
241
+ }, # scalar
242
+ "clnpOutNoRoutes" : {
243
+ "nodetype" : "scalar",
244
+ "moduleName" : "CLNS-MIB",
245
+ "oid" : "1.3.6.1.3.1.1.13",
246
+ "status" : "current",
247
+ "syntax" : {
248
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
249
+ },
250
+ "access" : "readonly",
251
+ "description" :
252
+ """The number of CLNP PDUs discarded because no
253
+ route could be found to transmit them to their
254
+ destination. This counter includes any PDUs
255
+ counted in clnpForwPDUs.""",
256
+ }, # scalar
257
+ "clnpReasmTimeout" : {
258
+ "nodetype" : "scalar",
259
+ "moduleName" : "CLNS-MIB",
260
+ "oid" : "1.3.6.1.3.1.1.14",
261
+ "status" : "current",
262
+ "syntax" : {
263
+ "type" : { "module" :"", "name" : "Integer32"},
264
+ },
265
+ "access" : "readonly",
266
+ "description" :
267
+ """The maximum number of seconds which received
268
+ segments are held while they are awaiting
269
+ reassembly at this entity.""",
270
+ }, # scalar
271
+ "clnpReasmReqds" : {
272
+ "nodetype" : "scalar",
273
+ "moduleName" : "CLNS-MIB",
274
+ "oid" : "1.3.6.1.3.1.1.15",
275
+ "status" : "current",
276
+ "syntax" : {
277
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
278
+ },
279
+ "access" : "readonly",
280
+ "description" :
281
+ """The number of CLNP segments received which needed
282
+ to be reassembled at this entity.""",
283
+ }, # scalar
284
+ "clnpReasmOKs" : {
285
+ "nodetype" : "scalar",
286
+ "moduleName" : "CLNS-MIB",
287
+ "oid" : "1.3.6.1.3.1.1.16",
288
+ "status" : "current",
289
+ "syntax" : {
290
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
291
+ },
292
+ "access" : "readonly",
293
+ "description" :
294
+ """The number of CLNP PDUs successfully re-assembled
295
+ at this entity.""",
296
+ }, # scalar
297
+ "clnpReasmFails" : {
298
+ "nodetype" : "scalar",
299
+ "moduleName" : "CLNS-MIB",
300
+ "oid" : "1.3.6.1.3.1.1.17",
301
+ "status" : "current",
302
+ "syntax" : {
303
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
304
+ },
305
+ "access" : "readonly",
306
+ "description" :
307
+ """The number of failures detected by the CLNP
308
+ reassembly algorithm (for any reason: timed out,
309
+ buffer size, etc).""",
310
+ }, # scalar
311
+ "clnpSegOKs" : {
312
+ "nodetype" : "scalar",
313
+ "moduleName" : "CLNS-MIB",
314
+ "oid" : "1.3.6.1.3.1.1.18",
315
+ "status" : "current",
316
+ "syntax" : {
317
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
318
+ },
319
+ "access" : "readonly",
320
+ "description" :
321
+ """The number of CLNP PDUs that have been
322
+ successfully segmented at this entity.""",
323
+ }, # scalar
324
+ "clnpSegFails" : {
325
+ "nodetype" : "scalar",
326
+ "moduleName" : "CLNS-MIB",
327
+ "oid" : "1.3.6.1.3.1.1.19",
328
+ "status" : "current",
329
+ "syntax" : {
330
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
331
+ },
332
+ "access" : "readonly",
333
+ "description" :
334
+ """The number of CLNP PDUs that have been discarded
335
+ because they needed to be fragmented at this
336
+ entity but could not.""",
337
+ }, # scalar
338
+ "clnpSegCreates" : {
339
+ "nodetype" : "scalar",
340
+ "moduleName" : "CLNS-MIB",
341
+ "oid" : "1.3.6.1.3.1.1.20",
342
+ "status" : "current",
343
+ "syntax" : {
344
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
345
+ },
346
+ "access" : "readonly",
347
+ "description" :
348
+ """The number of CLNP PDU segments that have been
349
+ generated as a result of segmentation at this
350
+ entity.""",
351
+ }, # scalar
352
+ "clnpAddrTable" : {
353
+ "nodetype" : "table",
354
+ "moduleName" : "CLNS-MIB",
355
+ "oid" : "1.3.6.1.3.1.1.21",
356
+ "status" : "current",
357
+ "description" :
358
+ """The table of addressing information relevant to
359
+ this entity's CLNP addresses. """,
360
+ }, # table
361
+ "clnpAddrEntry" : {
362
+ "nodetype" : "row",
363
+ "moduleName" : "CLNS-MIB",
364
+ "oid" : "1.3.6.1.3.1.1.21.1",
365
+ "status" : "current",
366
+ "linkage" : [
367
+ "clnpAdEntAddr",
368
+ ],
369
+ "description" :
370
+ """The addressing information for one of this
371
+ entity's CLNP addresses.""",
372
+ }, # row
373
+ "clnpAdEntAddr" : {
374
+ "nodetype" : "column",
375
+ "moduleName" : "CLNS-MIB",
376
+ "oid" : "1.3.6.1.3.1.1.21.1.1",
377
+ "status" : "current",
378
+ "syntax" : {
379
+ "type" : { "module" :"CLNS-MIB", "name" : "ClnpAddress"},
380
+ },
381
+ "access" : "readonly",
382
+ "description" :
383
+ """The CLNP address to which this entry's addressing
384
+ information pertains.""",
385
+ }, # column
386
+ "clnpAdEntIfIndex" : {
387
+ "nodetype" : "column",
388
+ "moduleName" : "CLNS-MIB",
389
+ "oid" : "1.3.6.1.3.1.1.21.1.2",
390
+ "status" : "current",
391
+ "syntax" : {
392
+ "type" : { "module" :"", "name" : "Integer32"},
393
+ },
394
+ "access" : "readonly",
395
+ "description" :
396
+ """The index value which uniquely identifies the
397
+ interface to which this entry is applicable. The
398
+ interface identified by a particular value of this
399
+ index is the same interface as identified by the
400
+ same value of ifIndex.""",
401
+ }, # column
402
+ "clnpAdEntReasmMaxSize" : {
403
+ "nodetype" : "column",
404
+ "moduleName" : "CLNS-MIB",
405
+ "oid" : "1.3.6.1.3.1.1.21.1.3",
406
+ "status" : "current",
407
+ "syntax" : {
408
+ "type" : {
409
+ "basetype" : "Integer32",
410
+ "ranges" : [
411
+ {
412
+ "min" : "0",
413
+ "max" : "65535"
414
+ },
415
+ ],
416
+ "range" : {
417
+ "min" : "0",
418
+ "max" : "65535"
419
+ },
420
+ },
421
+ },
422
+ "access" : "readonly",
423
+ "description" :
424
+ """The size of the largest CLNP PDU which this
425
+ entity can re-assemble from incoming CLNP
426
+ segmented PDUs received on this interface.""",
427
+ }, # column
428
+ "clnpRoutingTable" : {
429
+ "nodetype" : "table",
430
+ "moduleName" : "CLNS-MIB",
431
+ "oid" : "1.3.6.1.3.1.1.22",
432
+ "status" : "current",
433
+ "description" :
434
+ """This entity's CLNP routing table.""",
435
+ }, # table
436
+ "clnpRouteEntry" : {
437
+ "nodetype" : "row",
438
+ "moduleName" : "CLNS-MIB",
439
+ "oid" : "1.3.6.1.3.1.1.22.1",
440
+ "status" : "current",
441
+ "linkage" : [
442
+ "clnpRouteDest",
443
+ ],
444
+ "description" :
445
+ """A route to a particular destination.""",
446
+ }, # row
447
+ "clnpRouteDest" : {
448
+ "nodetype" : "column",
449
+ "moduleName" : "CLNS-MIB",
450
+ "oid" : "1.3.6.1.3.1.1.22.1.1",
451
+ "status" : "current",
452
+ "syntax" : {
453
+ "type" : { "module" :"CLNS-MIB", "name" : "ClnpAddress"},
454
+ },
455
+ "access" : "readwrite",
456
+ "description" :
457
+ """The destination CLNP address of this route.""",
458
+ }, # column
459
+ "clnpRouteIfIndex" : {
460
+ "nodetype" : "column",
461
+ "moduleName" : "CLNS-MIB",
462
+ "oid" : "1.3.6.1.3.1.1.22.1.2",
463
+ "status" : "current",
464
+ "syntax" : {
465
+ "type" : { "module" :"", "name" : "Integer32"},
466
+ },
467
+ "access" : "readwrite",
468
+ "description" :
469
+ """The index value which uniquely identifies the
470
+ local interface through which the next hop of this
471
+ route should be reached. The interface identified
472
+ by a particular value of this index is the same as
473
+ identified by the same value of ifIndex.""",
474
+ }, # column
475
+ "clnpRouteMetric1" : {
476
+ "nodetype" : "column",
477
+ "moduleName" : "CLNS-MIB",
478
+ "oid" : "1.3.6.1.3.1.1.22.1.3",
479
+ "status" : "current",
480
+ "syntax" : {
481
+ "type" : { "module" :"", "name" : "Integer32"},
482
+ },
483
+ "access" : "readwrite",
484
+ "description" :
485
+ """The primary routing metric for this route. The
486
+ semantics of this metric are determined by the
487
+ routing-protocol specified in the route's
488
+ clnpRouteProto value. If this metric is not used,
489
+ its value should be set to -1.""",
490
+ }, # column
491
+ "clnpRouteMetric2" : {
492
+ "nodetype" : "column",
493
+ "moduleName" : "CLNS-MIB",
494
+ "oid" : "1.3.6.1.3.1.1.22.1.4",
495
+ "status" : "current",
496
+ "syntax" : {
497
+ "type" : { "module" :"", "name" : "Integer32"},
498
+ },
499
+ "access" : "readwrite",
500
+ "description" :
501
+ """An alternate routing metric for this route. The
502
+ semantics of this metric are determined by the
503
+ routing-protocol specified in the route's
504
+ clnpRouteProto value. If this metric is not used,
505
+ its value should be set to -1.""",
506
+ }, # column
507
+ "clnpRouteMetric3" : {
508
+ "nodetype" : "column",
509
+ "moduleName" : "CLNS-MIB",
510
+ "oid" : "1.3.6.1.3.1.1.22.1.5",
511
+ "status" : "current",
512
+ "syntax" : {
513
+ "type" : { "module" :"", "name" : "Integer32"},
514
+ },
515
+ "access" : "readwrite",
516
+ "description" :
517
+ """An alternate routing metric for this route. The
518
+ semantics of this metric are determined by the
519
+ routing-protocol specified in the route's
520
+ clnpRouteProto value. If this metric is not used,
521
+ its value should be set to -1.""",
522
+ }, # column
523
+ "clnpRouteMetric4" : {
524
+ "nodetype" : "column",
525
+ "moduleName" : "CLNS-MIB",
526
+ "oid" : "1.3.6.1.3.1.1.22.1.6",
527
+ "status" : "current",
528
+ "syntax" : {
529
+ "type" : { "module" :"", "name" : "Integer32"},
530
+ },
531
+ "access" : "readwrite",
532
+ "description" :
533
+ """An alternate routing metric for this route. The
534
+ semantics of this metric are determined by the
535
+ routing-protocol specified in the route's
536
+ clnpRouteProto value. If this metric is not used,
537
+ its value should be set to -1.""",
538
+ }, # column
539
+ "clnpRouteNextHop" : {
540
+ "nodetype" : "column",
541
+ "moduleName" : "CLNS-MIB",
542
+ "oid" : "1.3.6.1.3.1.1.22.1.7",
543
+ "status" : "current",
544
+ "syntax" : {
545
+ "type" : { "module" :"CLNS-MIB", "name" : "ClnpAddress"},
546
+ },
547
+ "access" : "readwrite",
548
+ "description" :
549
+ """The CLNP address of the next hop of this route.""",
550
+ }, # column
551
+ "clnpRouteType" : {
552
+ "nodetype" : "column",
553
+ "moduleName" : "CLNS-MIB",
554
+ "oid" : "1.3.6.1.3.1.1.22.1.8",
555
+ "status" : "current",
556
+ "syntax" : {
557
+ "type" : {
558
+ "basetype" : "Enumeration",
559
+ "other" : {
560
+ "nodetype" : "namednumber",
561
+ "number" : "1"
562
+ },
563
+ "invalid" : {
564
+ "nodetype" : "namednumber",
565
+ "number" : "2"
566
+ },
567
+ "direct" : {
568
+ "nodetype" : "namednumber",
569
+ "number" : "3"
570
+ },
571
+ "remote" : {
572
+ "nodetype" : "namednumber",
573
+ "number" : "4"
574
+ },
575
+ },
576
+ },
577
+ "access" : "readwrite",
578
+ "description" :
579
+ """The type of route.
580
+
581
+ Setting this object to the value invalid(2) has
582
+ the effect of invaliding the corresponding entry
583
+ in the clnpRoutingTable. That is, it effectively
584
+ dissasociates the destination identified with said
585
+ entry from the route identified with said entry.
586
+ It is an implementation-specific matter as to
587
+ whether the agent removes an invalidated entry
588
+ from the table. Accordingly, management stations
589
+ must be prepared to receive tabular information
590
+ from agents that corresponds to entries not
591
+ currently in use. Proper interpretation of such
592
+ entries requires examination of the relevant
593
+ clnpRouteType object.""",
594
+ }, # column
595
+ "clnpRouteProto" : {
596
+ "nodetype" : "column",
597
+ "moduleName" : "CLNS-MIB",
598
+ "oid" : "1.3.6.1.3.1.1.22.1.9",
599
+ "status" : "current",
600
+ "syntax" : {
601
+ "type" : {
602
+ "basetype" : "Enumeration",
603
+ "other" : {
604
+ "nodetype" : "namednumber",
605
+ "number" : "1"
606
+ },
607
+ "local" : {
608
+ "nodetype" : "namednumber",
609
+ "number" : "2"
610
+ },
611
+ "netmgmt" : {
612
+ "nodetype" : "namednumber",
613
+ "number" : "3"
614
+ },
615
+ "is-is" : {
616
+ "nodetype" : "namednumber",
617
+ "number" : "9"
618
+ },
619
+ "ciscoIgrp" : {
620
+ "nodetype" : "namednumber",
621
+ "number" : "11"
622
+ },
623
+ "bbnSpfIgp" : {
624
+ "nodetype" : "namednumber",
625
+ "number" : "12"
626
+ },
627
+ "ospf" : {
628
+ "nodetype" : "namednumber",
629
+ "number" : "13"
630
+ },
631
+ "bgp" : {
632
+ "nodetype" : "namednumber",
633
+ "number" : "14"
634
+ },
635
+ },
636
+ },
637
+ "access" : "readonly",
638
+ "description" :
639
+ """The routing mechanism via which this route was
640
+ learned. Inclusion of values for gateway routing
641
+ protocols is not intended to imply that hosts
642
+ should support those protocols.""",
643
+ }, # column
644
+ "clnpRouteAge" : {
645
+ "nodetype" : "column",
646
+ "moduleName" : "CLNS-MIB",
647
+ "oid" : "1.3.6.1.3.1.1.22.1.10",
648
+ "status" : "current",
649
+ "syntax" : {
650
+ "type" : { "module" :"", "name" : "Integer32"},
651
+ },
652
+ "access" : "readwrite",
653
+ "description" :
654
+ """The number of seconds since this route was last
655
+ updated or otherwise determined to be correct.
656
+ Note that no semantics of `too old' can be implied
657
+ except through knowledge of the routing protocol
658
+ by which the route was learned.""",
659
+ }, # column
660
+ "clnpRouteMetric5" : {
661
+ "nodetype" : "column",
662
+ "moduleName" : "CLNS-MIB",
663
+ "oid" : "1.3.6.1.3.1.1.22.1.11",
664
+ "status" : "current",
665
+ "syntax" : {
666
+ "type" : { "module" :"", "name" : "Integer32"},
667
+ },
668
+ "access" : "readwrite",
669
+ "description" :
670
+ """An alternate routing metric for this route. The
671
+ semantics of this metric are determined by the
672
+ routing-protocol specified in the route's
673
+ clnpRouteProto value. If this metric is not used,
674
+ its value should be set to -1.""",
675
+ }, # column
676
+ "clnpRouteInfo" : {
677
+ "nodetype" : "column",
678
+ "moduleName" : "CLNS-MIB",
679
+ "oid" : "1.3.6.1.3.1.1.22.1.12",
680
+ "status" : "current",
681
+ "syntax" : {
682
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
683
+ },
684
+ "access" : "readonly",
685
+ "description" :
686
+ """A reference to MIB definitions specific to the
687
+ particular routing protocol which is responsible
688
+ for this route, as determined by the value
689
+ specified in the route's clnpRouteProto value. If
690
+ this information is not present, its value should
691
+ be set to the OBJECT IDENTIFIER { 0 0 }, which is
692
+ a syntatically valid object identifier, and any
693
+ conformant implementation of ASN.1 and BER must be
694
+ able to generate and recognize this value.""",
695
+ }, # column
696
+ "clnpNetToMediaTable" : {
697
+ "nodetype" : "table",
698
+ "moduleName" : "CLNS-MIB",
699
+ "oid" : "1.3.6.1.3.1.1.23",
700
+ "status" : "current",
701
+ "description" :
702
+ """The CLNP Address Translation table used for
703
+ mapping from CLNP addresses to physical
704
+ addresses.""",
705
+ }, # table
706
+ "clnpNetToMediaEntry" : {
707
+ "nodetype" : "row",
708
+ "moduleName" : "CLNS-MIB",
709
+ "oid" : "1.3.6.1.3.1.1.23.1",
710
+ "status" : "current",
711
+ "linkage" : [
712
+ "clnpNetToMediaIfIndex",
713
+ "clnpNetToMediaNetAddress",
714
+ ],
715
+ "description" :
716
+ """Each entry contains one CLNP address to
717
+ `physical' address equivalence.""",
718
+ }, # row
719
+ "clnpNetToMediaIfIndex" : {
720
+ "nodetype" : "column",
721
+ "moduleName" : "CLNS-MIB",
722
+ "oid" : "1.3.6.1.3.1.1.23.1.1",
723
+ "status" : "current",
724
+ "syntax" : {
725
+ "type" : { "module" :"", "name" : "Integer32"},
726
+ },
727
+ "access" : "readwrite",
728
+ "description" :
729
+ """The interface on which this entry's equivalence
730
+ is effective. The interface identified by a
731
+ particular value of this index is the same
732
+ interface as identified by the same value of
733
+ ifIndex.""",
734
+ }, # column
735
+ "clnpNetToMediaPhysAddress" : {
736
+ "nodetype" : "column",
737
+ "moduleName" : "CLNS-MIB",
738
+ "oid" : "1.3.6.1.3.1.1.23.1.2",
739
+ "status" : "current",
740
+ "syntax" : {
741
+ "type" : { "module" :"RFC1213-MIB", "name" : "PhysAddress"},
742
+ },
743
+ "access" : "readwrite",
744
+ "description" :
745
+ """The media-dependent `physical' address.""",
746
+ }, # column
747
+ "clnpNetToMediaNetAddress" : {
748
+ "nodetype" : "column",
749
+ "moduleName" : "CLNS-MIB",
750
+ "oid" : "1.3.6.1.3.1.1.23.1.3",
751
+ "status" : "current",
752
+ "syntax" : {
753
+ "type" : { "module" :"CLNS-MIB", "name" : "ClnpAddress"},
754
+ },
755
+ "access" : "readwrite",
756
+ "description" :
757
+ """The CLNP address corresponding to the media-
758
+ dependent `physical' address.""",
759
+ }, # column
760
+ "clnpNetToMediaType" : {
761
+ "nodetype" : "column",
762
+ "moduleName" : "CLNS-MIB",
763
+ "oid" : "1.3.6.1.3.1.1.23.1.4",
764
+ "status" : "current",
765
+ "syntax" : {
766
+ "type" : {
767
+ "basetype" : "Enumeration",
768
+ "other" : {
769
+ "nodetype" : "namednumber",
770
+ "number" : "1"
771
+ },
772
+ "invalid" : {
773
+ "nodetype" : "namednumber",
774
+ "number" : "2"
775
+ },
776
+ "dynamic" : {
777
+ "nodetype" : "namednumber",
778
+ "number" : "3"
779
+ },
780
+ "static" : {
781
+ "nodetype" : "namednumber",
782
+ "number" : "4"
783
+ },
784
+ },
785
+ },
786
+ "access" : "readwrite",
787
+ "description" :
788
+ """The type of mapping.
789
+
790
+ Setting this object to the value invalid(2) has
791
+ the effect of invalidating the corresponding entry
792
+ in the clnpNetToMediaTable. That is, it
793
+ effectively dissassociates the interface
794
+ identified with said entry from the mapping
795
+ identified with said entry. It is an
796
+ implementation-specific matter as to whether the
797
+ agent removes an invalidated entry from the table.
798
+ Accordingly, management stations must be prepared
799
+ to receive tabular information from agents that
800
+ corresponds to entries not currently in use.
801
+ Proper interpretation of such entries requires
802
+ examination of the relevant clnpNetToMediaType
803
+ object.""",
804
+ }, # column
805
+ "clnpNetToMediaAge" : {
806
+ "nodetype" : "column",
807
+ "moduleName" : "CLNS-MIB",
808
+ "oid" : "1.3.6.1.3.1.1.23.1.5",
809
+ "status" : "current",
810
+ "syntax" : {
811
+ "type" : { "module" :"", "name" : "Integer32"},
812
+ },
813
+ "access" : "readwrite",
814
+ "description" :
815
+ """The number of seconds since this entry was last
816
+ updated or otherwise determined to be correct.
817
+ Note that no semantics of `too old' can be implied
818
+ except through knowledge of the type of entry.""",
819
+ }, # column
820
+ "clnpNetToMediaHoldTime" : {
821
+ "nodetype" : "column",
822
+ "moduleName" : "CLNS-MIB",
823
+ "oid" : "1.3.6.1.3.1.1.23.1.6",
824
+ "status" : "current",
825
+ "syntax" : {
826
+ "type" : { "module" :"", "name" : "Integer32"},
827
+ },
828
+ "access" : "readwrite",
829
+ "description" :
830
+ """The time in seconds this entry will be valid.
831
+ Static entries should always report this field as
832
+ -1.""",
833
+ }, # column
834
+ "clnpMediaToNetTable" : {
835
+ "nodetype" : "table",
836
+ "moduleName" : "CLNS-MIB",
837
+ "oid" : "1.3.6.1.3.1.1.24",
838
+ "status" : "current",
839
+ "description" :
840
+ """The CLNP Address Translation table used for
841
+ mapping from physical addresses to CLNP
842
+ addresses.""",
843
+ }, # table
844
+ "clnpMediaToNetEntry" : {
845
+ "nodetype" : "row",
846
+ "moduleName" : "CLNS-MIB",
847
+ "oid" : "1.3.6.1.3.1.1.24.1",
848
+ "status" : "current",
849
+ "linkage" : [
850
+ "clnpMediaToNetIfIndex",
851
+ "clnpMediaToNetPhysAddress",
852
+ ],
853
+ "description" :
854
+ """Each entry contains on ClnpAddress to `physical'
855
+ address equivalence.""",
856
+ }, # row
857
+ "clnpMediaToNetIfIndex" : {
858
+ "nodetype" : "column",
859
+ "moduleName" : "CLNS-MIB",
860
+ "oid" : "1.3.6.1.3.1.1.24.1.1",
861
+ "status" : "current",
862
+ "syntax" : {
863
+ "type" : { "module" :"", "name" : "Integer32"},
864
+ },
865
+ "access" : "readwrite",
866
+ "description" :
867
+ """The interface on which this entry's equivalence
868
+ is effective. The interface identified by a
869
+ particular value of this index is the same
870
+ interface as identified by the same value of
871
+ ifIndex.""",
872
+ }, # column
873
+ "clnpMediaToNetAddress" : {
874
+ "nodetype" : "column",
875
+ "moduleName" : "CLNS-MIB",
876
+ "oid" : "1.3.6.1.3.1.1.24.1.2",
877
+ "status" : "current",
878
+ "syntax" : {
879
+ "type" : { "module" :"CLNS-MIB", "name" : "ClnpAddress"},
880
+ },
881
+ "access" : "readwrite",
882
+ "description" :
883
+ """The ClnpAddress corresponding to the media-
884
+ dependent `physical' address.""",
885
+ }, # column
886
+ "clnpMediaToNetPhysAddress" : {
887
+ "nodetype" : "column",
888
+ "moduleName" : "CLNS-MIB",
889
+ "oid" : "1.3.6.1.3.1.1.24.1.3",
890
+ "status" : "current",
891
+ "syntax" : {
892
+ "type" : { "module" :"RFC1213-MIB", "name" : "PhysAddress"},
893
+ },
894
+ "access" : "readwrite",
895
+ "description" :
896
+ """The media-dependent `physical' address.""",
897
+ }, # column
898
+ "clnpMediaToNetType" : {
899
+ "nodetype" : "column",
900
+ "moduleName" : "CLNS-MIB",
901
+ "oid" : "1.3.6.1.3.1.1.24.1.4",
902
+ "status" : "current",
903
+ "syntax" : {
904
+ "type" : {
905
+ "basetype" : "Enumeration",
906
+ "other" : {
907
+ "nodetype" : "namednumber",
908
+ "number" : "1"
909
+ },
910
+ "invalid" : {
911
+ "nodetype" : "namednumber",
912
+ "number" : "2"
913
+ },
914
+ "dynamic" : {
915
+ "nodetype" : "namednumber",
916
+ "number" : "3"
917
+ },
918
+ "static" : {
919
+ "nodetype" : "namednumber",
920
+ "number" : "4"
921
+ },
922
+ },
923
+ },
924
+ "access" : "readwrite",
925
+ "description" :
926
+ """The type of mapping.
927
+
928
+ Setting this object to the value invalid(2) has
929
+ the effect of invalidating the corresponding entry
930
+ in the clnpMediaToNetTable. That is, it
931
+ effectively dissassociates the interface
932
+ identified with said entry from the mapping
933
+ identified with said entry. It is an
934
+ implementation-specific matter as to whether the
935
+ agent removes an invalidated entry from the table.
936
+ Accordingly, management stations must be prepared
937
+ to receive tabular information from agents that
938
+ corresponds to entries not currently in use.
939
+ Proper interpretation of such entries requires
940
+ examination of the relevant clnpMediaToNetType
941
+ object.""",
942
+ }, # column
943
+ "clnpMediaToNetAge" : {
944
+ "nodetype" : "column",
945
+ "moduleName" : "CLNS-MIB",
946
+ "oid" : "1.3.6.1.3.1.1.24.1.5",
947
+ "status" : "current",
948
+ "syntax" : {
949
+ "type" : { "module" :"", "name" : "Integer32"},
950
+ },
951
+ "access" : "readwrite",
952
+ "description" :
953
+ """The number of seconds since this entry was last
954
+ updated or otherwise determined to be correct.
955
+ Note that no semantics of `too old' can be implied
956
+ except through knowledge of the type of entry.""",
957
+ }, # column
958
+ "clnpMediaToNetHoldTime" : {
959
+ "nodetype" : "column",
960
+ "moduleName" : "CLNS-MIB",
961
+ "oid" : "1.3.6.1.3.1.1.24.1.6",
962
+ "status" : "current",
963
+ "syntax" : {
964
+ "type" : { "module" :"", "name" : "Integer32"},
965
+ },
966
+ "access" : "readwrite",
967
+ "description" :
968
+ """The time in seconds this entry will be valid.
969
+ Static entries should always report this field as
970
+ -1.""",
971
+ }, # column
972
+ "clnpInOpts" : {
973
+ "nodetype" : "scalar",
974
+ "moduleName" : "CLNS-MIB",
975
+ "oid" : "1.3.6.1.3.1.1.25",
976
+ "status" : "current",
977
+ "syntax" : {
978
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
979
+ },
980
+ "access" : "readonly",
981
+ "description" :
982
+ """The number of CLNP PDU segments that have been
983
+ input with options at this entity.""",
984
+ }, # scalar
985
+ "clnpOutOpts" : {
986
+ "nodetype" : "scalar",
987
+ "moduleName" : "CLNS-MIB",
988
+ "oid" : "1.3.6.1.3.1.1.26",
989
+ "status" : "current",
990
+ "syntax" : {
991
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
992
+ },
993
+ "access" : "readonly",
994
+ "description" :
995
+ """The number of CLNP PDU segments that have been
996
+ generated with options by this entity.""",
997
+ }, # scalar
998
+ "clnpRoutingDiscards" : {
999
+ "nodetype" : "scalar",
1000
+ "moduleName" : "CLNS-MIB",
1001
+ "oid" : "1.3.6.1.3.1.1.27",
1002
+ "status" : "current",
1003
+ "syntax" : {
1004
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1005
+ },
1006
+ "access" : "readonly",
1007
+ "description" :
1008
+ """The number of routing entries which were chosen
1009
+ to be discarded even though they are valid. One
1010
+ possible reason for discarding such an entry could
1011
+ be to free-up buffer space for other routing
1012
+ entries.""",
1013
+ }, # scalar
1014
+ "error" : {
1015
+ "nodetype" : "node",
1016
+ "moduleName" : "CLNS-MIB",
1017
+ "oid" : "1.3.6.1.3.1.2",
1018
+ }, # node
1019
+ "clnpInErrors" : {
1020
+ "nodetype" : "scalar",
1021
+ "moduleName" : "CLNS-MIB",
1022
+ "oid" : "1.3.6.1.3.1.2.1",
1023
+ "status" : "current",
1024
+ "syntax" : {
1025
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1026
+ },
1027
+ "access" : "readonly",
1028
+ "description" :
1029
+ """The number of CLNP Error PDUs received by this
1030
+ entity.""",
1031
+ }, # scalar
1032
+ "clnpOutErrors" : {
1033
+ "nodetype" : "scalar",
1034
+ "moduleName" : "CLNS-MIB",
1035
+ "oid" : "1.3.6.1.3.1.2.2",
1036
+ "status" : "current",
1037
+ "syntax" : {
1038
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1039
+ },
1040
+ "access" : "readonly",
1041
+ "description" :
1042
+ """The number of CLNP Error PDUs sent by this
1043
+ entity.""",
1044
+ }, # scalar
1045
+ "clnpInErrUnspecs" : {
1046
+ "nodetype" : "scalar",
1047
+ "moduleName" : "CLNS-MIB",
1048
+ "oid" : "1.3.6.1.3.1.2.3",
1049
+ "status" : "current",
1050
+ "syntax" : {
1051
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1052
+ },
1053
+ "access" : "readonly",
1054
+ "description" :
1055
+ """The number of unspecified CLNP Error PDUs
1056
+ received by this entity.""",
1057
+ }, # scalar
1058
+ "clnpInErrProcs" : {
1059
+ "nodetype" : "scalar",
1060
+ "moduleName" : "CLNS-MIB",
1061
+ "oid" : "1.3.6.1.3.1.2.4",
1062
+ "status" : "current",
1063
+ "syntax" : {
1064
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1065
+ },
1066
+ "access" : "readonly",
1067
+ "description" :
1068
+ """The number of protocol procedure CLNP Error PDUs
1069
+ received by this entity.""",
1070
+ }, # scalar
1071
+ "clnpInErrCksums" : {
1072
+ "nodetype" : "scalar",
1073
+ "moduleName" : "CLNS-MIB",
1074
+ "oid" : "1.3.6.1.3.1.2.5",
1075
+ "status" : "current",
1076
+ "syntax" : {
1077
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1078
+ },
1079
+ "access" : "readonly",
1080
+ "description" :
1081
+ """The number of checksum CLNP Error PDUs received
1082
+ by this entity.""",
1083
+ }, # scalar
1084
+ "clnpInErrCongests" : {
1085
+ "nodetype" : "scalar",
1086
+ "moduleName" : "CLNS-MIB",
1087
+ "oid" : "1.3.6.1.3.1.2.6",
1088
+ "status" : "current",
1089
+ "syntax" : {
1090
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1091
+ },
1092
+ "access" : "readonly",
1093
+ "description" :
1094
+ """The number of congestion drop CLNP Error PDUs
1095
+ received by this entity.""",
1096
+ }, # scalar
1097
+ "clnpInErrHdrs" : {
1098
+ "nodetype" : "scalar",
1099
+ "moduleName" : "CLNS-MIB",
1100
+ "oid" : "1.3.6.1.3.1.2.7",
1101
+ "status" : "current",
1102
+ "syntax" : {
1103
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1104
+ },
1105
+ "access" : "readonly",
1106
+ "description" :
1107
+ """The number of header syntax CLNP Error PDUs
1108
+ received by this entity.""",
1109
+ }, # scalar
1110
+ "clnpInErrSegs" : {
1111
+ "nodetype" : "scalar",
1112
+ "moduleName" : "CLNS-MIB",
1113
+ "oid" : "1.3.6.1.3.1.2.8",
1114
+ "status" : "current",
1115
+ "syntax" : {
1116
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1117
+ },
1118
+ "access" : "readonly",
1119
+ "description" :
1120
+ """The number of segmentation disallowed CLNP Error
1121
+ PDUs received by this entity.""",
1122
+ }, # scalar
1123
+ "clnpInErrIncomps" : {
1124
+ "nodetype" : "scalar",
1125
+ "moduleName" : "CLNS-MIB",
1126
+ "oid" : "1.3.6.1.3.1.2.9",
1127
+ "status" : "current",
1128
+ "syntax" : {
1129
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1130
+ },
1131
+ "access" : "readonly",
1132
+ "description" :
1133
+ """The number of incomplete PDU CLNP Error PDUs
1134
+ received by this entity.""",
1135
+ }, # scalar
1136
+ "clnpInErrDups" : {
1137
+ "nodetype" : "scalar",
1138
+ "moduleName" : "CLNS-MIB",
1139
+ "oid" : "1.3.6.1.3.1.2.10",
1140
+ "status" : "current",
1141
+ "syntax" : {
1142
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1143
+ },
1144
+ "access" : "readonly",
1145
+ "description" :
1146
+ """The number of duplicate option CLNP Error PDUs
1147
+ received by this entity.""",
1148
+ }, # scalar
1149
+ "clnpInErrUnreachDsts" : {
1150
+ "nodetype" : "scalar",
1151
+ "moduleName" : "CLNS-MIB",
1152
+ "oid" : "1.3.6.1.3.1.2.11",
1153
+ "status" : "current",
1154
+ "syntax" : {
1155
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1156
+ },
1157
+ "access" : "readonly",
1158
+ "description" :
1159
+ """The number of unreachable destination CLNP Error
1160
+ PDUs received by this entity.""",
1161
+ }, # scalar
1162
+ "clnpInErrUnknownDsts" : {
1163
+ "nodetype" : "scalar",
1164
+ "moduleName" : "CLNS-MIB",
1165
+ "oid" : "1.3.6.1.3.1.2.12",
1166
+ "status" : "current",
1167
+ "syntax" : {
1168
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1169
+ },
1170
+ "access" : "readonly",
1171
+ "description" :
1172
+ """The number of unknown destination CLNP Error PDUs
1173
+ received by this entity.""",
1174
+ }, # scalar
1175
+ "clnpInErrSRUnspecs" : {
1176
+ "nodetype" : "scalar",
1177
+ "moduleName" : "CLNS-MIB",
1178
+ "oid" : "1.3.6.1.3.1.2.13",
1179
+ "status" : "current",
1180
+ "syntax" : {
1181
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1182
+ },
1183
+ "access" : "readonly",
1184
+ "description" :
1185
+ """The number of unspecified source route CLNP Error
1186
+ PDUs received by this entity.""",
1187
+ }, # scalar
1188
+ "clnpInErrSRSyntaxes" : {
1189
+ "nodetype" : "scalar",
1190
+ "moduleName" : "CLNS-MIB",
1191
+ "oid" : "1.3.6.1.3.1.2.14",
1192
+ "status" : "current",
1193
+ "syntax" : {
1194
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1195
+ },
1196
+ "access" : "readonly",
1197
+ "description" :
1198
+ """The number of source route syntax CLNP Error PDUs
1199
+ received by this entity.""",
1200
+ }, # scalar
1201
+ "clnpInErrSRUnkAddrs" : {
1202
+ "nodetype" : "scalar",
1203
+ "moduleName" : "CLNS-MIB",
1204
+ "oid" : "1.3.6.1.3.1.2.15",
1205
+ "status" : "current",
1206
+ "syntax" : {
1207
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1208
+ },
1209
+ "access" : "readonly",
1210
+ "description" :
1211
+ """The number of source route unknown address CLNP
1212
+ Error PDUs received by this entity.""",
1213
+ }, # scalar
1214
+ "clnpInErrSRBadPaths" : {
1215
+ "nodetype" : "scalar",
1216
+ "moduleName" : "CLNS-MIB",
1217
+ "oid" : "1.3.6.1.3.1.2.16",
1218
+ "status" : "current",
1219
+ "syntax" : {
1220
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1221
+ },
1222
+ "access" : "readonly",
1223
+ "description" :
1224
+ """The number of source route bad path CLNP Error
1225
+ PDUs received by this entity.""",
1226
+ }, # scalar
1227
+ "clnpInErrHops" : {
1228
+ "nodetype" : "scalar",
1229
+ "moduleName" : "CLNS-MIB",
1230
+ "oid" : "1.3.6.1.3.1.2.17",
1231
+ "status" : "current",
1232
+ "syntax" : {
1233
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1234
+ },
1235
+ "access" : "readonly",
1236
+ "description" :
1237
+ """The number of hop count exceeded CLNP Error PDUs
1238
+ received by this entity.""",
1239
+ }, # scalar
1240
+ "clnpInErrHopReassms" : {
1241
+ "nodetype" : "scalar",
1242
+ "moduleName" : "CLNS-MIB",
1243
+ "oid" : "1.3.6.1.3.1.2.18",
1244
+ "status" : "current",
1245
+ "syntax" : {
1246
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1247
+ },
1248
+ "access" : "readonly",
1249
+ "description" :
1250
+ """The number of hop count exceeded while
1251
+ reassembling CLNP Error PDUs received by this
1252
+ entity.""",
1253
+ }, # scalar
1254
+ "clnpInErrUnsOptions" : {
1255
+ "nodetype" : "scalar",
1256
+ "moduleName" : "CLNS-MIB",
1257
+ "oid" : "1.3.6.1.3.1.2.19",
1258
+ "status" : "current",
1259
+ "syntax" : {
1260
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1261
+ },
1262
+ "access" : "readonly",
1263
+ "description" :
1264
+ """The number of unsupported option CLNP Error PDUs
1265
+ received by this entity.""",
1266
+ }, # scalar
1267
+ "clnpInErrUnsVersions" : {
1268
+ "nodetype" : "scalar",
1269
+ "moduleName" : "CLNS-MIB",
1270
+ "oid" : "1.3.6.1.3.1.2.20",
1271
+ "status" : "current",
1272
+ "syntax" : {
1273
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1274
+ },
1275
+ "access" : "readonly",
1276
+ "description" :
1277
+ """The number of version mismatch CLNP Error PDUs
1278
+ received by this entity.""",
1279
+ }, # scalar
1280
+ "clnpInErrUnsSecurities" : {
1281
+ "nodetype" : "scalar",
1282
+ "moduleName" : "CLNS-MIB",
1283
+ "oid" : "1.3.6.1.3.1.2.21",
1284
+ "status" : "current",
1285
+ "syntax" : {
1286
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1287
+ },
1288
+ "access" : "readonly",
1289
+ "description" :
1290
+ """The number of unsupported security option CLNP
1291
+ Error PDUs received by this entity.""",
1292
+ }, # scalar
1293
+ "clnpInErrUnsSRs" : {
1294
+ "nodetype" : "scalar",
1295
+ "moduleName" : "CLNS-MIB",
1296
+ "oid" : "1.3.6.1.3.1.2.22",
1297
+ "status" : "current",
1298
+ "syntax" : {
1299
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1300
+ },
1301
+ "access" : "readonly",
1302
+ "description" :
1303
+ """The number of unsupported source route option
1304
+ CLNP Error PDUs received by this entity.""",
1305
+ }, # scalar
1306
+ "clnpInErrUnsRRs" : {
1307
+ "nodetype" : "scalar",
1308
+ "moduleName" : "CLNS-MIB",
1309
+ "oid" : "1.3.6.1.3.1.2.23",
1310
+ "status" : "current",
1311
+ "syntax" : {
1312
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1313
+ },
1314
+ "access" : "readonly",
1315
+ "description" :
1316
+ """The number of unsupported record route option
1317
+ CLNP Error PDUs received by this entity.""",
1318
+ }, # scalar
1319
+ "clnpInErrInterferences" : {
1320
+ "nodetype" : "scalar",
1321
+ "moduleName" : "CLNS-MIB",
1322
+ "oid" : "1.3.6.1.3.1.2.24",
1323
+ "status" : "current",
1324
+ "syntax" : {
1325
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1326
+ },
1327
+ "access" : "readonly",
1328
+ "description" :
1329
+ """The number of reassembly interference CLNP Error
1330
+ PDUs received by this entity.""",
1331
+ }, # scalar
1332
+ "clnpOutErrUnspecs" : {
1333
+ "nodetype" : "scalar",
1334
+ "moduleName" : "CLNS-MIB",
1335
+ "oid" : "1.3.6.1.3.1.2.25",
1336
+ "status" : "current",
1337
+ "syntax" : {
1338
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1339
+ },
1340
+ "access" : "readonly",
1341
+ "description" :
1342
+ """The number of unspecified CLNP Error PDUs sent by
1343
+ this entity.""",
1344
+ }, # scalar
1345
+ "clnpOutErrProcs" : {
1346
+ "nodetype" : "scalar",
1347
+ "moduleName" : "CLNS-MIB",
1348
+ "oid" : "1.3.6.1.3.1.2.26",
1349
+ "status" : "current",
1350
+ "syntax" : {
1351
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1352
+ },
1353
+ "access" : "readonly",
1354
+ "description" :
1355
+ """The number of protocol procedure CLNP Error PDUs
1356
+ sent by this entity.""",
1357
+ }, # scalar
1358
+ "clnpOutErrCksums" : {
1359
+ "nodetype" : "scalar",
1360
+ "moduleName" : "CLNS-MIB",
1361
+ "oid" : "1.3.6.1.3.1.2.27",
1362
+ "status" : "current",
1363
+ "syntax" : {
1364
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1365
+ },
1366
+ "access" : "readonly",
1367
+ "description" :
1368
+ """The number of checksum CLNP Error PDUs sent by
1369
+ this entity.""",
1370
+ }, # scalar
1371
+ "clnpOutErrCongests" : {
1372
+ "nodetype" : "scalar",
1373
+ "moduleName" : "CLNS-MIB",
1374
+ "oid" : "1.3.6.1.3.1.2.28",
1375
+ "status" : "current",
1376
+ "syntax" : {
1377
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1378
+ },
1379
+ "access" : "readonly",
1380
+ "description" :
1381
+ """The number of congestion drop CLNP Error PDUs
1382
+ sent by this entity.""",
1383
+ }, # scalar
1384
+ "clnpOutErrHdrs" : {
1385
+ "nodetype" : "scalar",
1386
+ "moduleName" : "CLNS-MIB",
1387
+ "oid" : "1.3.6.1.3.1.2.29",
1388
+ "status" : "current",
1389
+ "syntax" : {
1390
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1391
+ },
1392
+ "access" : "readonly",
1393
+ "description" :
1394
+ """The number of header syntax CLNP Error PDUs sent
1395
+ by this entity.""",
1396
+ }, # scalar
1397
+ "clnpOutErrSegs" : {
1398
+ "nodetype" : "scalar",
1399
+ "moduleName" : "CLNS-MIB",
1400
+ "oid" : "1.3.6.1.3.1.2.30",
1401
+ "status" : "current",
1402
+ "syntax" : {
1403
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1404
+ },
1405
+ "access" : "readonly",
1406
+ "description" :
1407
+ """The number of segmentation disallowed CLNP Error
1408
+ PDUs sent by this entity.""",
1409
+ }, # scalar
1410
+ "clnpOutErrIncomps" : {
1411
+ "nodetype" : "scalar",
1412
+ "moduleName" : "CLNS-MIB",
1413
+ "oid" : "1.3.6.1.3.1.2.31",
1414
+ "status" : "current",
1415
+ "syntax" : {
1416
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1417
+ },
1418
+ "access" : "readonly",
1419
+ "description" :
1420
+ """The number of incomplete PDU CLNP Error PDUs sent
1421
+ by this entity.""",
1422
+ }, # scalar
1423
+ "clnpOutErrDups" : {
1424
+ "nodetype" : "scalar",
1425
+ "moduleName" : "CLNS-MIB",
1426
+ "oid" : "1.3.6.1.3.1.2.32",
1427
+ "status" : "current",
1428
+ "syntax" : {
1429
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1430
+ },
1431
+ "access" : "readonly",
1432
+ "description" :
1433
+ """The number of duplicate option CLNP Error PDUs
1434
+ sent by this entity.""",
1435
+ }, # scalar
1436
+ "clnpOutErrUnreachDsts" : {
1437
+ "nodetype" : "scalar",
1438
+ "moduleName" : "CLNS-MIB",
1439
+ "oid" : "1.3.6.1.3.1.2.33",
1440
+ "status" : "current",
1441
+ "syntax" : {
1442
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1443
+ },
1444
+ "access" : "readonly",
1445
+ "description" :
1446
+ """The number of unreachable destination CLNP Error
1447
+ PDUs sent by this entity.""",
1448
+ }, # scalar
1449
+ "clnpOutErrUnknownDsts" : {
1450
+ "nodetype" : "scalar",
1451
+ "moduleName" : "CLNS-MIB",
1452
+ "oid" : "1.3.6.1.3.1.2.34",
1453
+ "status" : "current",
1454
+ "syntax" : {
1455
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1456
+ },
1457
+ "access" : "readonly",
1458
+ "description" :
1459
+ """The number of unknown destination CLNP Error PDUs
1460
+ sent by this entity.""",
1461
+ }, # scalar
1462
+ "clnpOutErrSRUnspecs" : {
1463
+ "nodetype" : "scalar",
1464
+ "moduleName" : "CLNS-MIB",
1465
+ "oid" : "1.3.6.1.3.1.2.35",
1466
+ "status" : "current",
1467
+ "syntax" : {
1468
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1469
+ },
1470
+ "access" : "readonly",
1471
+ "description" :
1472
+ """The number of unspecified source route CLNP Error
1473
+ PDUs sent by this entity.""",
1474
+ }, # scalar
1475
+ "clnpOutErrSRSyntaxes" : {
1476
+ "nodetype" : "scalar",
1477
+ "moduleName" : "CLNS-MIB",
1478
+ "oid" : "1.3.6.1.3.1.2.36",
1479
+ "status" : "current",
1480
+ "syntax" : {
1481
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1482
+ },
1483
+ "access" : "readonly",
1484
+ "description" :
1485
+ """The number of source route syntax CLNP Error PDUs
1486
+ sent by this entity.""",
1487
+ }, # scalar
1488
+ "clnpOutErrSRUnkAddrs" : {
1489
+ "nodetype" : "scalar",
1490
+ "moduleName" : "CLNS-MIB",
1491
+ "oid" : "1.3.6.1.3.1.2.37",
1492
+ "status" : "current",
1493
+ "syntax" : {
1494
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1495
+ },
1496
+ "access" : "readonly",
1497
+ "description" :
1498
+ """The number of source route unknown address CLNP
1499
+ Error PDUs sent by this entity.""",
1500
+ }, # scalar
1501
+ "clnpOutErrSRBadPaths" : {
1502
+ "nodetype" : "scalar",
1503
+ "moduleName" : "CLNS-MIB",
1504
+ "oid" : "1.3.6.1.3.1.2.38",
1505
+ "status" : "current",
1506
+ "syntax" : {
1507
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1508
+ },
1509
+ "access" : "readonly",
1510
+ "description" :
1511
+ """The number of source route bad path CLNP Error
1512
+ PDUs sent by this entity.""",
1513
+ }, # scalar
1514
+ "clnpOutErrHops" : {
1515
+ "nodetype" : "scalar",
1516
+ "moduleName" : "CLNS-MIB",
1517
+ "oid" : "1.3.6.1.3.1.2.39",
1518
+ "status" : "current",
1519
+ "syntax" : {
1520
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1521
+ },
1522
+ "access" : "readonly",
1523
+ "description" :
1524
+ """The number of hop count exceeded CLNP Error PDUs
1525
+ sent by this entity.""",
1526
+ }, # scalar
1527
+ "clnpOutErrHopReassms" : {
1528
+ "nodetype" : "scalar",
1529
+ "moduleName" : "CLNS-MIB",
1530
+ "oid" : "1.3.6.1.3.1.2.40",
1531
+ "status" : "current",
1532
+ "syntax" : {
1533
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1534
+ },
1535
+ "access" : "readonly",
1536
+ "description" :
1537
+ """The number of hop count exceeded while
1538
+ reassembling CLNP Error PDUs sent by this entity.""",
1539
+ }, # scalar
1540
+ "clnpOutErrUnsOptions" : {
1541
+ "nodetype" : "scalar",
1542
+ "moduleName" : "CLNS-MIB",
1543
+ "oid" : "1.3.6.1.3.1.2.41",
1544
+ "status" : "current",
1545
+ "syntax" : {
1546
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1547
+ },
1548
+ "access" : "readonly",
1549
+ "description" :
1550
+ """The number of unsupported option CLNP Error PDUs
1551
+ sent by this entity.""",
1552
+ }, # scalar
1553
+ "clnpOutErrUnsVersions" : {
1554
+ "nodetype" : "scalar",
1555
+ "moduleName" : "CLNS-MIB",
1556
+ "oid" : "1.3.6.1.3.1.2.42",
1557
+ "status" : "current",
1558
+ "syntax" : {
1559
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1560
+ },
1561
+ "access" : "readonly",
1562
+ "description" :
1563
+ """The number of version mismatch CLNP Error PDUs
1564
+ sent by this entity.""",
1565
+ }, # scalar
1566
+ "clnpOutErrUnsSecurities" : {
1567
+ "nodetype" : "scalar",
1568
+ "moduleName" : "CLNS-MIB",
1569
+ "oid" : "1.3.6.1.3.1.2.43",
1570
+ "status" : "current",
1571
+ "syntax" : {
1572
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1573
+ },
1574
+ "access" : "readonly",
1575
+ "description" :
1576
+ """The number of unsupported security option CLNP
1577
+ Error PDUs sent by this entity.""",
1578
+ }, # scalar
1579
+ "clnpOutErrUnsSRs" : {
1580
+ "nodetype" : "scalar",
1581
+ "moduleName" : "CLNS-MIB",
1582
+ "oid" : "1.3.6.1.3.1.2.44",
1583
+ "status" : "current",
1584
+ "syntax" : {
1585
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1586
+ },
1587
+ "access" : "readonly",
1588
+ "description" :
1589
+ """The number of unsupported source route option
1590
+ CLNP Error PDUs sent by this entity.""",
1591
+ }, # scalar
1592
+ "clnpOutErrUnsRRs" : {
1593
+ "nodetype" : "scalar",
1594
+ "moduleName" : "CLNS-MIB",
1595
+ "oid" : "1.3.6.1.3.1.2.45",
1596
+ "status" : "current",
1597
+ "syntax" : {
1598
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1599
+ },
1600
+ "access" : "readonly",
1601
+ "description" :
1602
+ """The number of unsupported record route option
1603
+ CLNP Error PDUs sent by this entity.""",
1604
+ }, # scalar
1605
+ "clnpOutErrInterferences" : {
1606
+ "nodetype" : "scalar",
1607
+ "moduleName" : "CLNS-MIB",
1608
+ "oid" : "1.3.6.1.3.1.2.46",
1609
+ "status" : "current",
1610
+ "syntax" : {
1611
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1612
+ },
1613
+ "access" : "readonly",
1614
+ "description" :
1615
+ """The number of reassembly interference CLNP Error
1616
+ PDUs sent by this entity.""",
1617
+ }, # scalar
1618
+ "echo" : {
1619
+ "nodetype" : "node",
1620
+ "moduleName" : "CLNS-MIB",
1621
+ "oid" : "1.3.6.1.3.1.3",
1622
+ }, # node
1623
+ "es-is" : {
1624
+ "nodetype" : "node",
1625
+ "moduleName" : "CLNS-MIB",
1626
+ "oid" : "1.3.6.1.3.1.4",
1627
+ }, # node
1628
+ "esisESHins" : {
1629
+ "nodetype" : "scalar",
1630
+ "moduleName" : "CLNS-MIB",
1631
+ "oid" : "1.3.6.1.3.1.4.1",
1632
+ "status" : "current",
1633
+ "syntax" : {
1634
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1635
+ },
1636
+ "access" : "readonly",
1637
+ "description" :
1638
+ """The number of ESH PDUs received by this entity.""",
1639
+ }, # scalar
1640
+ "esisESHouts" : {
1641
+ "nodetype" : "scalar",
1642
+ "moduleName" : "CLNS-MIB",
1643
+ "oid" : "1.3.6.1.3.1.4.2",
1644
+ "status" : "current",
1645
+ "syntax" : {
1646
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1647
+ },
1648
+ "access" : "readonly",
1649
+ "description" :
1650
+ """The number of ESH PDUs sent by this entity.""",
1651
+ }, # scalar
1652
+ "esisISHins" : {
1653
+ "nodetype" : "scalar",
1654
+ "moduleName" : "CLNS-MIB",
1655
+ "oid" : "1.3.6.1.3.1.4.3",
1656
+ "status" : "current",
1657
+ "syntax" : {
1658
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1659
+ },
1660
+ "access" : "readonly",
1661
+ "description" :
1662
+ """The number of ISH PDUs received by this entity.""",
1663
+ }, # scalar
1664
+ "esisISHouts" : {
1665
+ "nodetype" : "scalar",
1666
+ "moduleName" : "CLNS-MIB",
1667
+ "oid" : "1.3.6.1.3.1.4.4",
1668
+ "status" : "current",
1669
+ "syntax" : {
1670
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1671
+ },
1672
+ "access" : "readonly",
1673
+ "description" :
1674
+ """The number of ISH PDUs sent by this entity.""",
1675
+ }, # scalar
1676
+ "esisRDUins" : {
1677
+ "nodetype" : "scalar",
1678
+ "moduleName" : "CLNS-MIB",
1679
+ "oid" : "1.3.6.1.3.1.4.5",
1680
+ "status" : "current",
1681
+ "syntax" : {
1682
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1683
+ },
1684
+ "access" : "readonly",
1685
+ "description" :
1686
+ """The number of RDU PDUs received by this entity.""",
1687
+ }, # scalar
1688
+ "esisRDUouts" : {
1689
+ "nodetype" : "scalar",
1690
+ "moduleName" : "CLNS-MIB",
1691
+ "oid" : "1.3.6.1.3.1.4.6",
1692
+ "status" : "current",
1693
+ "syntax" : {
1694
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1695
+ },
1696
+ "access" : "readonly",
1697
+ "description" :
1698
+ """The number of RDU PDUs sent by this entity.""",
1699
+ }, # scalar
1700
+ }, # nodes
1701
+
1702
+ }