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,1594 @@
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 MPLS-FTN-STD-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/MPLS-FTN-STD-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "MPLS-FTN-STD-MIB",
11
+
12
+ "MPLS-FTN-STD-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """Multiprotocol Label Switching (MPLS) Working Group""",
17
+ "contact" :
18
+ """
19
+ Thomas D. Nadeau
20
+ Postal: Cisco Systems, Inc.
21
+ 250 Apollo Drive
22
+ Chelmsford, MA 01824
23
+ Tel: +1-978-244-3051
24
+ Email: tnadeau@cisco.com
25
+
26
+ Cheenu Srinivasan
27
+ Postal: Bloomberg L.P.
28
+ 499 Park Avenue
29
+ New York, NY 10022
30
+ Tel: +1-212-893-3682
31
+ Email: cheenu@bloomberg.net
32
+
33
+ Arun Viswanathan
34
+ Postal: Force10 Networks, Inc.
35
+ 1440 McCarthy Blvd
36
+ Milpitas, CA 95035
37
+ Tel: +1-408-571-3516
38
+ Email: arunv@force10networks.com
39
+
40
+ IETF MPLS Working Group email: mpls@uu.net""",
41
+ "description" :
42
+ """Copyright (C) The Internet Society (2004). The
43
+ initial version of this MIB module was published
44
+ in RFC 3814. For full legal notices see the RFC
45
+ itself or see:
46
+ http://www.ietf.org/copyrights/ianamib.html
47
+
48
+ This MIB module contains managed object definitions for
49
+ specifying FEC to NHLFE (FTN) mappings and corresponding
50
+ performance for MPLS.""",
51
+ "revisions" : (
52
+ {
53
+ "date" : "2004-06-03 00:00",
54
+ "description" :
55
+ """Initial version issued as part of RFC 3814.""",
56
+ },
57
+ ),
58
+ "identity node" : "mplsFTNStdMIB",
59
+ },
60
+
61
+ "imports" : (
62
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
63
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
64
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
65
+ {"module" : "SNMPv2-SMI", "name" : "Counter64"},
66
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
67
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
68
+ {"module" : "SNMPv2-TC", "name" : "StorageType"},
69
+ {"module" : "SNMPv2-TC", "name" : "RowPointer"},
70
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
71
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
72
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
73
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
74
+ {"module" : "IF-MIB", "name" : "InterfaceIndexOrZero"},
75
+ {"module" : "IF-MIB", "name" : "ifGeneralInformationGroup"},
76
+ {"module" : "IF-MIB", "name" : "ifCounterDiscontinuityGroup"},
77
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
78
+ {"module" : "DIFFSERV-DSCP-TC", "name" : "Dscp"},
79
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddressType"},
80
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddress"},
81
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetPortNumber"},
82
+ {"module" : "MPLS-TC-STD-MIB", "name" : "mplsStdMIB"},
83
+ ),
84
+
85
+ "typedefs" : {
86
+ "MplsFTNEntryIndex" : {
87
+ "basetype" : "Unsigned32",
88
+ "status" : "current",
89
+ "ranges" : [
90
+ {
91
+ "min" : "1",
92
+ "max" : "4294967295"
93
+ },
94
+ ],
95
+ "range" : {
96
+ "min" : "1",
97
+ "max" : "4294967295"
98
+ },
99
+ "description" :
100
+ """Index for an entry in mplsFTNTable.""",
101
+ },
102
+ "MplsFTNEntryIndexOrZero" : {
103
+ "basetype" : "Unsigned32",
104
+ "status" : "current",
105
+ "ranges" : [
106
+ {
107
+ "min" : "0",
108
+ "max" : "4294967295"
109
+ },
110
+ ],
111
+ "range" : {
112
+ "min" : "0",
113
+ "max" : "4294967295"
114
+ },
115
+ "description" :
116
+ """Index for an entry in mplsFTNTable or the special value
117
+ zero. The value zero is object-specific and must
118
+ therefore be defined as part of the description of any
119
+ object which uses this syntax. Examples of the usage
120
+ of zero might include situations when none or all
121
+ entries in mplsFTNTable need to be referenced.""",
122
+ },
123
+ }, # typedefs
124
+
125
+ "nodes" : {
126
+ "mplsFTNStdMIB" : {
127
+ "nodetype" : "node",
128
+ "moduleName" : "MPLS-FTN-STD-MIB",
129
+ "oid" : "1.3.6.1.2.1.10.166.8",
130
+ "status" : "current",
131
+ }, # node
132
+ "mplsFTNNotifications" : {
133
+ "nodetype" : "node",
134
+ "moduleName" : "MPLS-FTN-STD-MIB",
135
+ "oid" : "1.3.6.1.2.1.10.166.8.0",
136
+ }, # node
137
+ "mplsFTNObjects" : {
138
+ "nodetype" : "node",
139
+ "moduleName" : "MPLS-FTN-STD-MIB",
140
+ "oid" : "1.3.6.1.2.1.10.166.8.1",
141
+ }, # node
142
+ "mplsFTNIndexNext" : {
143
+ "nodetype" : "scalar",
144
+ "moduleName" : "MPLS-FTN-STD-MIB",
145
+ "oid" : "1.3.6.1.2.1.10.166.8.1.1",
146
+ "status" : "current",
147
+ "syntax" : {
148
+ "type" : { "module" :"MPLS-FTN-STD-MIB", "name" : "MplsFTNEntryIndexOrZero"},
149
+ },
150
+ "access" : "readonly",
151
+ "description" :
152
+ """This object contains the next available valid value to
153
+ be used for mplsFTNIndex when creating entries in the
154
+ mplsFTNTable.
155
+
156
+ When creating a new conceptual row (configuration
157
+ entry) in mplsFTNTable with an SNMP SET operation the
158
+ command generator (Network Management Application) must
159
+ first issue a management protocol retrieval operation
160
+ to obtain the current value of this object.
161
+
162
+ If the command responder (agent) does not wish to allow
163
+ creation of more entries in mplsFTNTable, possibly
164
+ because of resource exhaustion, this object MUST return
165
+ a value of 0.
166
+
167
+ If a non-zero value is returned the Network Management
168
+
169
+
170
+
171
+ Application must determine whether the value is indeed
172
+ still unused since two Network Management Applications
173
+ may attempt to create a row simultaneously and use the
174
+ same value.
175
+
176
+ If it is currently unused and the SET succeeds, the
177
+ agent MUST change the value of this object to a
178
+ currently unused non-zero value (according to an
179
+ implementation specific algorithm) or zero (if no
180
+ further row creation will be permitted).
181
+
182
+ If the value is in use, however, the SET fails and the
183
+ Network Management Application must then reread this
184
+ object to obtain a new usable value.""",
185
+ }, # scalar
186
+ "mplsFTNTableLastChanged" : {
187
+ "nodetype" : "scalar",
188
+ "moduleName" : "MPLS-FTN-STD-MIB",
189
+ "oid" : "1.3.6.1.2.1.10.166.8.1.2",
190
+ "status" : "current",
191
+ "syntax" : {
192
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
193
+ },
194
+ "access" : "readonly",
195
+ "description" :
196
+ """Indicates the last time an entry was added, deleted or
197
+ modified in mplsFTNTable. Management stations should
198
+ consult this object to determine if mplsFTNTable
199
+ requires their attention. This object is particularly
200
+ useful for applications performing a retrieval on
201
+ mplsFTNTable to ensure that the table is not modified
202
+ during the retrieval operation.""",
203
+ }, # scalar
204
+ "mplsFTNTable" : {
205
+ "nodetype" : "table",
206
+ "moduleName" : "MPLS-FTN-STD-MIB",
207
+ "oid" : "1.3.6.1.2.1.10.166.8.1.3",
208
+ "status" : "current",
209
+ "description" :
210
+ """This table contains the currently defined FTN entries.
211
+ This table allows FEC to NHLFE mappings to be
212
+ specified. Each entry in this table defines a rule to
213
+ be applied to incoming packets (on interfaces that the
214
+ FTN entry is activated on using mplsFTNMapTable) and an
215
+ action to be taken on matching packets
216
+ (mplsFTNActionPointer).
217
+
218
+ This table supports 6-tuple matching rules based on one
219
+ or more of source address range, destination address
220
+ range, source port range, destination port range, IPv4
221
+
222
+
223
+
224
+ Protocol field or IPv6 next-header field and the
225
+ DiffServ Code Point (DSCP) to be specified.
226
+
227
+ The action pointer points either to instance of
228
+ mplsXCEntry in MPLS-LSR-STD-MIB when the NHLFE is a non-
229
+ TE LSP, or to an instance of mplsTunnelEntry in the
230
+ MPLS-TE-STD-MIB when the NHLFE is an originating TE
231
+ tunnel.""",
232
+ "reference" :
233
+ """J. Postel, Internet Protocol, RFC 791, STD 5, September
234
+ 1981
235
+
236
+ Deering, S., and R. Hinden, Internet Protocol, Version
237
+ 6 (IPv6) Specification, RFC 2460, December 1998
238
+
239
+ Nichols, K, Blake, S., Baker, F. and D. Black,
240
+ Definition of the Differentiated Services Field (DS
241
+ Field) in the IPv4 and IPv6 Headers, RFC 2474, December
242
+ 1998
243
+
244
+ Srinivasan, C., A. Viswanathan, and T. Nadeau, MPLS
245
+ Label Switch Router Management Information Base,
246
+ RFC 3813
247
+
248
+ Srinivasan, C., A. Viswanathan, and T. Nadeau, MPLS
249
+ Traffic Engineering Management Information Base,
250
+ RFC 3812""",
251
+ }, # table
252
+ "mplsFTNEntry" : {
253
+ "nodetype" : "row",
254
+ "moduleName" : "MPLS-FTN-STD-MIB",
255
+ "oid" : "1.3.6.1.2.1.10.166.8.1.3.1",
256
+ "create" : "true",
257
+ "status" : "current",
258
+ "linkage" : [
259
+ "mplsFTNIndex",
260
+ ],
261
+ "description" :
262
+ """Each entry represents one FTN entry which defines a
263
+ rule to compare incoming packets with and an action to
264
+ be taken on matching packets.""",
265
+ }, # row
266
+ "mplsFTNIndex" : {
267
+ "nodetype" : "column",
268
+ "moduleName" : "MPLS-FTN-STD-MIB",
269
+ "oid" : "1.3.6.1.2.1.10.166.8.1.3.1.1",
270
+ "status" : "current",
271
+ "syntax" : {
272
+ "type" : { "module" :"MPLS-FTN-STD-MIB", "name" : "MplsFTNEntryIndex"},
273
+ },
274
+ "access" : "noaccess",
275
+ "description" :
276
+ """This is the unique index for a conceptual row in
277
+ mplsFTNTable.
278
+
279
+ To create a new conceptual row in mplsFTNTable a
280
+ Network Management Application SHOULD retrieve the
281
+ current value of mplsFTNIndexNext to determine the next
282
+ valid available value of mplsFTNIndex.""",
283
+ }, # column
284
+ "mplsFTNRowStatus" : {
285
+ "nodetype" : "column",
286
+ "moduleName" : "MPLS-FTN-STD-MIB",
287
+ "oid" : "1.3.6.1.2.1.10.166.8.1.3.1.2",
288
+ "status" : "current",
289
+ "syntax" : {
290
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
291
+ },
292
+ "access" : "readwrite",
293
+ "description" :
294
+ """Used for controlling the creation and deletion of this
295
+ row. All writeable objects in this row may be modified
296
+ at any time. If a Network Management Application
297
+ attempts to delete a conceptual row by setting this
298
+ object to 'destroy' and there are one or more entries
299
+ in mplsFTNMapTable pointing to the row (i.e., when
300
+ mplsFTNIndex of the conceptual row being deleted is
301
+ equal to mplsFTNMapCurrIndex for one or more entries in
302
+ mplsFTNMapTable), the agent MUST also destroy the
303
+ corresponding entries in mplsFTNMapTable.""",
304
+ }, # column
305
+ "mplsFTNDescr" : {
306
+ "nodetype" : "column",
307
+ "moduleName" : "MPLS-FTN-STD-MIB",
308
+ "oid" : "1.3.6.1.2.1.10.166.8.1.3.1.3",
309
+ "status" : "current",
310
+ "syntax" : {
311
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
312
+ },
313
+ "access" : "readwrite",
314
+ "description" :
315
+ """The description of this FTN entry. Since the index for
316
+ this table has no particular significance or meaning,
317
+ this object should contain some meaningful text that an
318
+ operator could use to further distinguish entries in
319
+ this table.""",
320
+ }, # column
321
+ "mplsFTNMask" : {
322
+ "nodetype" : "column",
323
+ "moduleName" : "MPLS-FTN-STD-MIB",
324
+ "oid" : "1.3.6.1.2.1.10.166.8.1.3.1.4",
325
+ "status" : "current",
326
+ "syntax" : {
327
+ "type" : {
328
+ "basetype" : "Bits",
329
+ "sourceAddr" : {
330
+ "nodetype" : "namednumber",
331
+ "number" : "0"
332
+ },
333
+ "destAddr" : {
334
+ "nodetype" : "namednumber",
335
+ "number" : "1"
336
+ },
337
+ "sourcePort" : {
338
+ "nodetype" : "namednumber",
339
+ "number" : "2"
340
+ },
341
+ "destPort" : {
342
+ "nodetype" : "namednumber",
343
+ "number" : "3"
344
+ },
345
+ "protocol" : {
346
+ "nodetype" : "namednumber",
347
+ "number" : "4"
348
+ },
349
+ "dscp" : {
350
+ "nodetype" : "namednumber",
351
+ "number" : "5"
352
+ },
353
+ },
354
+ },
355
+ "access" : "readwrite",
356
+ "description" :
357
+ """This bit map indicates which of the fields described
358
+ next, namely source address range, destination address
359
+ range, source port range, destination port range, IPv4
360
+ Protocol field or IPv6 next-header field and
361
+ Differentiated Services Code Point (DSCP) is active for
362
+ this FTN entry. If a particular bit is set to zero then
363
+ the corresponding field in the packet MUST be ignored
364
+ for comparison purposes.""",
365
+ }, # column
366
+ "mplsFTNAddrType" : {
367
+ "nodetype" : "column",
368
+ "moduleName" : "MPLS-FTN-STD-MIB",
369
+ "oid" : "1.3.6.1.2.1.10.166.8.1.3.1.5",
370
+ "status" : "current",
371
+ "syntax" : {
372
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
373
+ },
374
+ "access" : "readwrite",
375
+ "description" :
376
+ """This object determines the type of address contained in
377
+ the source and destination address objects
378
+ (mplsFTNSourceAddrMin, mplsFTNSourceAddrMax,
379
+ mplsFTNDestAddrMin and mplsFTNDestAddrMax) of a
380
+ conceptual row.
381
+
382
+ This object MUST NOT be set to unknown(0) when
383
+ mplsFTNMask has bit positions sourceAddr(0) or
384
+ destAddr(1) set to one.
385
+
386
+ When both these bit positions of mplsFTNMask are set to
387
+ zero the value of mplsFTNAddrType SHOULD be set to
388
+ unknown(0) and the corresponding source and destination
389
+
390
+
391
+
392
+ address objects SHOULD be set to zero-length strings.""",
393
+ }, # column
394
+ "mplsFTNSourceAddrMin" : {
395
+ "nodetype" : "column",
396
+ "moduleName" : "MPLS-FTN-STD-MIB",
397
+ "oid" : "1.3.6.1.2.1.10.166.8.1.3.1.6",
398
+ "status" : "current",
399
+ "syntax" : {
400
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
401
+ },
402
+ "access" : "readwrite",
403
+ "description" :
404
+ """The lower end of the source address range. The type of
405
+ this object is determined by the corresponding
406
+ mplsFTNAddrType object.""",
407
+ }, # column
408
+ "mplsFTNSourceAddrMax" : {
409
+ "nodetype" : "column",
410
+ "moduleName" : "MPLS-FTN-STD-MIB",
411
+ "oid" : "1.3.6.1.2.1.10.166.8.1.3.1.7",
412
+ "status" : "current",
413
+ "syntax" : {
414
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
415
+ },
416
+ "access" : "readwrite",
417
+ "description" :
418
+ """The upper end of the source address range. The type of
419
+ this object is determined by the corresponding
420
+ mplsFTNAddrType object.""",
421
+ }, # column
422
+ "mplsFTNDestAddrMin" : {
423
+ "nodetype" : "column",
424
+ "moduleName" : "MPLS-FTN-STD-MIB",
425
+ "oid" : "1.3.6.1.2.1.10.166.8.1.3.1.8",
426
+ "status" : "current",
427
+ "syntax" : {
428
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
429
+ },
430
+ "access" : "readwrite",
431
+ "description" :
432
+ """The lower end of the destination address range. The
433
+ type of this object is determined by the corresponding
434
+ mplsFTNAddrType object.""",
435
+ }, # column
436
+ "mplsFTNDestAddrMax" : {
437
+ "nodetype" : "column",
438
+ "moduleName" : "MPLS-FTN-STD-MIB",
439
+ "oid" : "1.3.6.1.2.1.10.166.8.1.3.1.9",
440
+ "status" : "current",
441
+ "syntax" : {
442
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
443
+ },
444
+ "access" : "readwrite",
445
+ "description" :
446
+ """The higher end of the destination address range. The
447
+ type of this object is determined by the corresponding
448
+ mplsFTNAddrType object.""",
449
+ }, # column
450
+ "mplsFTNSourcePortMin" : {
451
+ "nodetype" : "column",
452
+ "moduleName" : "MPLS-FTN-STD-MIB",
453
+ "oid" : "1.3.6.1.2.1.10.166.8.1.3.1.10",
454
+ "status" : "current",
455
+ "syntax" : {
456
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetPortNumber"},
457
+ },
458
+ "access" : "readwrite",
459
+ "default" : "0",
460
+ "description" :
461
+ """The lower end of the source port range.""",
462
+ }, # column
463
+ "mplsFTNSourcePortMax" : {
464
+ "nodetype" : "column",
465
+ "moduleName" : "MPLS-FTN-STD-MIB",
466
+ "oid" : "1.3.6.1.2.1.10.166.8.1.3.1.11",
467
+ "status" : "current",
468
+ "syntax" : {
469
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetPortNumber"},
470
+ },
471
+ "access" : "readwrite",
472
+ "default" : "65535",
473
+ "description" :
474
+ """The higher end of the source port range """,
475
+ }, # column
476
+ "mplsFTNDestPortMin" : {
477
+ "nodetype" : "column",
478
+ "moduleName" : "MPLS-FTN-STD-MIB",
479
+ "oid" : "1.3.6.1.2.1.10.166.8.1.3.1.12",
480
+ "status" : "current",
481
+ "syntax" : {
482
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetPortNumber"},
483
+ },
484
+ "access" : "readwrite",
485
+ "default" : "0",
486
+ "description" :
487
+ """The lower end of the destination port range.""",
488
+ }, # column
489
+ "mplsFTNDestPortMax" : {
490
+ "nodetype" : "column",
491
+ "moduleName" : "MPLS-FTN-STD-MIB",
492
+ "oid" : "1.3.6.1.2.1.10.166.8.1.3.1.13",
493
+ "status" : "current",
494
+ "syntax" : {
495
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetPortNumber"},
496
+ },
497
+ "access" : "readwrite",
498
+ "default" : "65535",
499
+ "description" :
500
+ """The higher end of the destination port range.""",
501
+ }, # column
502
+ "mplsFTNProtocol" : {
503
+ "nodetype" : "column",
504
+ "moduleName" : "MPLS-FTN-STD-MIB",
505
+ "oid" : "1.3.6.1.2.1.10.166.8.1.3.1.14",
506
+ "status" : "current",
507
+ "syntax" : {
508
+ "type" : {
509
+ "basetype" : "Integer32",
510
+ "ranges" : [
511
+ {
512
+ "min" : "0",
513
+ "max" : "255"
514
+ },
515
+ ],
516
+ "range" : {
517
+ "min" : "0",
518
+ "max" : "255"
519
+ },
520
+ },
521
+ },
522
+ "access" : "readwrite",
523
+ "default" : "255",
524
+ "description" :
525
+ """The IP protocol to match against the IPv4 protocol
526
+ number or IPv6 Next-Header number in the packet. A
527
+ value of 255 means match all. Note that the protocol
528
+ number of 255 is reserved by IANA, and Next-Header
529
+ number of 0 is used in IPv6.""",
530
+ }, # column
531
+ "mplsFTNDscp" : {
532
+ "nodetype" : "column",
533
+ "moduleName" : "MPLS-FTN-STD-MIB",
534
+ "oid" : "1.3.6.1.2.1.10.166.8.1.3.1.15",
535
+ "status" : "current",
536
+ "syntax" : {
537
+ "type" : { "module" :"DIFFSERV-DSCP-TC", "name" : "Dscp"},
538
+ },
539
+ "access" : "readwrite",
540
+ "description" :
541
+ """The contents of the DSCP field.""",
542
+ "reference" :
543
+ """Nichols, K., Blake, S., Baker, F. and D. Black,
544
+ Definition of the Differentiated Services Field (DS
545
+ Field) in the IPv4 and IPv6 Headers, RFC 2474, December
546
+ 1998.""",
547
+ }, # column
548
+ "mplsFTNActionType" : {
549
+ "nodetype" : "column",
550
+ "moduleName" : "MPLS-FTN-STD-MIB",
551
+ "oid" : "1.3.6.1.2.1.10.166.8.1.3.1.16",
552
+ "status" : "current",
553
+ "syntax" : {
554
+ "type" : {
555
+ "basetype" : "Enumeration",
556
+ "redirectLsp" : {
557
+ "nodetype" : "namednumber",
558
+ "number" : "1"
559
+ },
560
+ "redirectTunnel" : {
561
+ "nodetype" : "namednumber",
562
+ "number" : "2"
563
+ },
564
+ },
565
+ },
566
+ "access" : "readwrite",
567
+ "description" :
568
+ """The type of action to be taken on packets matching this
569
+ FTN entry.""",
570
+ }, # column
571
+ "mplsFTNActionPointer" : {
572
+ "nodetype" : "column",
573
+ "moduleName" : "MPLS-FTN-STD-MIB",
574
+ "oid" : "1.3.6.1.2.1.10.166.8.1.3.1.17",
575
+ "status" : "current",
576
+ "syntax" : {
577
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowPointer"},
578
+ },
579
+ "access" : "readwrite",
580
+ "description" :
581
+ """If mplsFTNActionType is redirectLsp(1), then this
582
+ object MUST contain zeroDotZero or point to a instance
583
+ of mplsXCEntry indicating the LSP to redirect matching
584
+ packets to.
585
+
586
+ If mplsFTNActionType is redirectTunnel(2), then this
587
+ object MUST contain zeroDotZero or point to a instance
588
+ of mplsTunnelEntry indicating the MPLS TE tunnel to
589
+ redirect matching packets to.
590
+
591
+ If this object points to a conceptual row instance in a
592
+ table consistent with mplsFTNActionType but this
593
+ instance does not currently exist then no action will
594
+ be taken on packets matching such an FTN entry till
595
+ this instance comes into existence.
596
+
597
+ If this object contains zeroDotZero then no action will
598
+ be taken on packets matching such an FTN entry till it
599
+ is populated with a valid pointer consistent with the
600
+ value of mplsFTNActionType as explained above.""",
601
+ }, # column
602
+ "mplsFTNStorageType" : {
603
+ "nodetype" : "column",
604
+ "moduleName" : "MPLS-FTN-STD-MIB",
605
+ "oid" : "1.3.6.1.2.1.10.166.8.1.3.1.18",
606
+ "status" : "current",
607
+ "syntax" : {
608
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
609
+ },
610
+ "access" : "readwrite",
611
+ "default" : "nonVolatile",
612
+ "description" :
613
+ """The storage type for this FTN entry. Conceptual rows
614
+ having the value 'permanent' need not allow write-
615
+ access to any columnar objects in the row.""",
616
+ }, # column
617
+ "mplsFTNMapTableLastChanged" : {
618
+ "nodetype" : "scalar",
619
+ "moduleName" : "MPLS-FTN-STD-MIB",
620
+ "oid" : "1.3.6.1.2.1.10.166.8.1.4",
621
+ "status" : "current",
622
+ "syntax" : {
623
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
624
+ },
625
+ "access" : "readonly",
626
+ "description" :
627
+ """Indicates the last time an entry was added, deleted or
628
+ modified in mplsFTNMapTable. Management stations should
629
+ consult this object to determine if the table requires
630
+ their attention. This object is particularly useful
631
+ for applications performing a retrieval on
632
+ mplsFTNMapTable to ensure that the table is not
633
+ modified during the retrieval operation.""",
634
+ }, # scalar
635
+ "mplsFTNMapTable" : {
636
+ "nodetype" : "table",
637
+ "moduleName" : "MPLS-FTN-STD-MIB",
638
+ "oid" : "1.3.6.1.2.1.10.166.8.1.5",
639
+ "status" : "current",
640
+ "description" :
641
+ """This table contains objects which provide the
642
+ capability to apply or map FTN rules as defined by
643
+ entries in mplsFTNTable to specific interfaces in the
644
+ system. FTN rules are compared with incoming packets
645
+ in the order in which they are applied on an interface.
646
+
647
+ The indexing structure of mplsFTNMapTable is as
648
+ follows.
649
+
650
+ - mplsFTNMapIndex indicates the interface to which the
651
+ rule is being applied. A value of 0 represents the
652
+ application of the rule to all interfaces.
653
+
654
+
655
+
656
+
657
+ - mplsFTNMapPrevIndex specifies the rule on the
658
+ interface prior to the one being applied. A value of
659
+ 0 specifies that the rule is being inserted at the
660
+ head of the list of rules currently applied to the
661
+ interface.
662
+
663
+ - mplsFTNMapCurrIndex is the index in mplsFTNTable
664
+ corresponding to the rule being applied.
665
+
666
+ This indexing structure makes the entries in the table
667
+ behave like items in a linked-list. The object
668
+ mplsFTNMapPrevIndex in each conceptual row is a pointer
669
+ to the previous entry that is applied to a particular
670
+ interface. This allows a new entry to be 'inserted' at
671
+ an arbitrary position in a list of entries currently
672
+ applied to an interface. This object is self-
673
+ adjusting, i.e., its value is automatically adjusted by
674
+ the agent, if necessary, after an insertion or deletion
675
+ operation.
676
+
677
+ Using this linked-list structure, one can retrieve FTN
678
+ entries in the order of application on a per-interface
679
+ basis as follows:
680
+
681
+ - To determine the first FTN entry on an interface
682
+ with index ifIndex perform a GETNEXT retrieval
683
+ operation on mplsFTNMapRowStatus.ifIndex.0.0; the
684
+ returned object, if one exists, is (say)
685
+ mplsFTNMapRowStatus.ifIndex.0.n (mplsFTNMapRowStatus
686
+ is the first accessible columnar object in the
687
+ conceptual row). Then the index of the first FTN
688
+ entry applied on this interface is n.
689
+
690
+ - To determine the FTN entry applied to an interface
691
+ after the one indexed by n perform a GETNEXT
692
+ retrieval operation on
693
+ mplsFTNMapRowStatus.ifIndex.n.0. If such an entry
694
+ exists the returned object would be of the form
695
+ mplsFTNMapRowStatus.ifIndex.n.m. Then the index of
696
+ the next FTN entry applied on this interface is m.
697
+
698
+ - If the FTN entry indexed by n is the last entry
699
+ applied to the interface with index ifIndex then the
700
+ object returned would either be:
701
+
702
+ 1.mplsFTNMapRowStatus.ifIndexNext.0.k, where
703
+ ifIndexNext is the index of the next interface in
704
+
705
+
706
+
707
+ ifTable to which an FTN entry has been applied, in
708
+ which case k is the index of the first FTN entry
709
+ applied to the interface with index ifIndexNext;
710
+
711
+ or:
712
+
713
+ 2.mplsFTNMapStorageType.firstIfIndex.0.p, if there
714
+ are no more entries in mplsFTNMapTable, where
715
+ firstIfIndex is the first entry in ifTable to
716
+ which an FTN entry has been mapped.
717
+
718
+ Use the above steps to retrieve all the applied FTN
719
+ entries on a per-interface basis in application order.
720
+ Note that the number of retrieval operations is the
721
+ same as the number of applied FTN entries (i.e., the
722
+ minimum number of GETNEXT operations needed using any
723
+ indexing scheme).
724
+
725
+ Agents MUST NOT allow the same FTN entry as specified
726
+ by mplsFTNMapCurrIndex to be applied multiple times to
727
+ the same interface.
728
+
729
+ Agents MUST NOT allow the creation of rows in this
730
+ table until the corresponding rows are created in the
731
+ mplsFTNTable.
732
+
733
+ If a row in mplsFTNTable is destroyed, the agent MUST
734
+ destroy the corresponding entries (i.e., ones with a
735
+ matching value of mplsFTNCurrIndex) in this table as
736
+ well.""",
737
+ }, # table
738
+ "mplsFTNMapEntry" : {
739
+ "nodetype" : "row",
740
+ "moduleName" : "MPLS-FTN-STD-MIB",
741
+ "oid" : "1.3.6.1.2.1.10.166.8.1.5.1",
742
+ "create" : "true",
743
+ "status" : "current",
744
+ "linkage" : [
745
+ "mplsFTNMapIndex",
746
+ "mplsFTNMapPrevIndex",
747
+ "mplsFTNMapCurrIndex",
748
+ ],
749
+ "description" :
750
+ """Each conceptual row represents the application of an
751
+ FTN rule at a specific position in the list of FTN
752
+ rules applied on an interface. """,
753
+ }, # row
754
+ "mplsFTNMapIndex" : {
755
+ "nodetype" : "column",
756
+ "moduleName" : "MPLS-FTN-STD-MIB",
757
+ "oid" : "1.3.6.1.2.1.10.166.8.1.5.1.1",
758
+ "status" : "current",
759
+ "syntax" : {
760
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndexOrZero"},
761
+ },
762
+ "access" : "noaccess",
763
+ "description" :
764
+ """The interface index that this FTN entry is being
765
+ applied to. A value of zero indicates an entry that is
766
+ applied all interfaces.
767
+
768
+ Entries mapped to an interface by specifying its (non-
769
+ zero) interface index in mplsFTNMapIndex are applied
770
+ ahead of entries with mplsFTNMapIndex equal to zero.""",
771
+ }, # column
772
+ "mplsFTNMapPrevIndex" : {
773
+ "nodetype" : "column",
774
+ "moduleName" : "MPLS-FTN-STD-MIB",
775
+ "oid" : "1.3.6.1.2.1.10.166.8.1.5.1.2",
776
+ "status" : "current",
777
+ "syntax" : {
778
+ "type" : { "module" :"MPLS-FTN-STD-MIB", "name" : "MplsFTNEntryIndexOrZero"},
779
+ },
780
+ "access" : "noaccess",
781
+ "description" :
782
+ """The index of the previous FTN entry that was applied to
783
+ this interface. The special value zero indicates that
784
+ this should be the first FTN entry in the list.""",
785
+ }, # column
786
+ "mplsFTNMapCurrIndex" : {
787
+ "nodetype" : "column",
788
+ "moduleName" : "MPLS-FTN-STD-MIB",
789
+ "oid" : "1.3.6.1.2.1.10.166.8.1.5.1.3",
790
+ "status" : "current",
791
+ "syntax" : {
792
+ "type" : { "module" :"MPLS-FTN-STD-MIB", "name" : "MplsFTNEntryIndex"},
793
+ },
794
+ "access" : "noaccess",
795
+ "description" :
796
+ """Index of the current FTN entry that is being applied to
797
+ this interface.""",
798
+ }, # column
799
+ "mplsFTNMapRowStatus" : {
800
+ "nodetype" : "column",
801
+ "moduleName" : "MPLS-FTN-STD-MIB",
802
+ "oid" : "1.3.6.1.2.1.10.166.8.1.5.1.4",
803
+ "status" : "current",
804
+ "syntax" : {
805
+ "type" : {
806
+ "basetype" : "Enumeration",
807
+ "parent module" : {
808
+ "name" : "SNMPv2-TC",
809
+ "type" : "RowStatus",
810
+ },
811
+ "active" : {
812
+ "nodetype" : "namednumber",
813
+ "number" : "1"
814
+ },
815
+ "createAndGo" : {
816
+ "nodetype" : "namednumber",
817
+ "number" : "4"
818
+ },
819
+ "destroy" : {
820
+ "nodetype" : "namednumber",
821
+ "number" : "6"
822
+ },
823
+ },
824
+ },
825
+ "access" : "readwrite",
826
+ "description" :
827
+ """Used for controlling the creation and deletion of this
828
+ row.
829
+
830
+ All writable objects in this row may be modified at any
831
+ time.
832
+
833
+ If a conceptual row in mplsFTNMapTable points to a
834
+ conceptual row in mplsFTNTable which is subsequently
835
+ deleted, the corresponding conceptual row in
836
+ mplsFTNMapTable MUST also be deleted by the agent.""",
837
+ }, # column
838
+ "mplsFTNMapStorageType" : {
839
+ "nodetype" : "column",
840
+ "moduleName" : "MPLS-FTN-STD-MIB",
841
+ "oid" : "1.3.6.1.2.1.10.166.8.1.5.1.5",
842
+ "status" : "current",
843
+ "syntax" : {
844
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
845
+ },
846
+ "access" : "readwrite",
847
+ "default" : "nonVolatile",
848
+ "description" :
849
+ """The storage type for this entry. Conceptual rows
850
+ having the value 'permanent' need not allow write-
851
+ access to any columnar objects in this row.""",
852
+ }, # column
853
+ "mplsFTNPerfTable" : {
854
+ "nodetype" : "table",
855
+ "moduleName" : "MPLS-FTN-STD-MIB",
856
+ "oid" : "1.3.6.1.2.1.10.166.8.1.6",
857
+ "status" : "current",
858
+ "description" :
859
+ """This table contains performance statistics on FTN
860
+ entries on a per-interface basis.""",
861
+ }, # table
862
+ "mplsFTNPerfEntry" : {
863
+ "nodetype" : "row",
864
+ "moduleName" : "MPLS-FTN-STD-MIB",
865
+ "oid" : "1.3.6.1.2.1.10.166.8.1.6.1",
866
+ "status" : "current",
867
+ "linkage" : [
868
+ "mplsFTNPerfIndex",
869
+ "mplsFTNPerfCurrIndex",
870
+ ],
871
+ "description" :
872
+ """Each entry contains performance information for the
873
+ specified interface and an FTN entry mapped to this
874
+ interface.""",
875
+ }, # row
876
+ "mplsFTNPerfIndex" : {
877
+ "nodetype" : "column",
878
+ "moduleName" : "MPLS-FTN-STD-MIB",
879
+ "oid" : "1.3.6.1.2.1.10.166.8.1.6.1.1",
880
+ "status" : "current",
881
+ "syntax" : {
882
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndexOrZero"},
883
+ },
884
+ "access" : "noaccess",
885
+ "description" :
886
+ """The interface index of an interface that an FTN entry
887
+ has been applied/mapped to. Each instance of this
888
+ object corresponds to an instance of mplsFTNMapIndex.""",
889
+ }, # column
890
+ "mplsFTNPerfCurrIndex" : {
891
+ "nodetype" : "column",
892
+ "moduleName" : "MPLS-FTN-STD-MIB",
893
+ "oid" : "1.3.6.1.2.1.10.166.8.1.6.1.2",
894
+ "status" : "current",
895
+ "syntax" : {
896
+ "type" : { "module" :"MPLS-FTN-STD-MIB", "name" : "MplsFTNEntryIndex"},
897
+ },
898
+ "access" : "noaccess",
899
+ "description" :
900
+ """Index of an FTN entry that has been applied/mapped to
901
+ the specified interface. Each instance of this object
902
+ corresponds to an instance of mplsFTNMapCurrIndex.""",
903
+ }, # column
904
+ "mplsFTNPerfMatchedPackets" : {
905
+ "nodetype" : "column",
906
+ "moduleName" : "MPLS-FTN-STD-MIB",
907
+ "oid" : "1.3.6.1.2.1.10.166.8.1.6.1.3",
908
+ "status" : "current",
909
+ "syntax" : {
910
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
911
+ },
912
+ "access" : "readonly",
913
+ "description" :
914
+ """Number of packets that matched the specified FTN entry
915
+ if it is applied/mapped to the specified interface.
916
+ Discontinuities in the value of this counter can occur
917
+ at re-initialization of the management system, and at
918
+ other times as indicated by the value of
919
+ mplsFTNDiscontinuityTime.""",
920
+ }, # column
921
+ "mplsFTNPerfMatchedOctets" : {
922
+ "nodetype" : "column",
923
+ "moduleName" : "MPLS-FTN-STD-MIB",
924
+ "oid" : "1.3.6.1.2.1.10.166.8.1.6.1.4",
925
+ "status" : "current",
926
+ "syntax" : {
927
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
928
+ },
929
+ "access" : "readonly",
930
+ "description" :
931
+ """Number of octets that matched the specified FTN entry
932
+ if it is applied/mapped to the specified interface.
933
+
934
+
935
+
936
+ Discontinuities in the value of this counter can occur
937
+ at re-initialization of the management system, and at
938
+ other times as indicated by the value of
939
+ mplsFTNDiscontinuityTime.""",
940
+ }, # column
941
+ "mplsFTNPerfDiscontinuityTime" : {
942
+ "nodetype" : "column",
943
+ "moduleName" : "MPLS-FTN-STD-MIB",
944
+ "oid" : "1.3.6.1.2.1.10.166.8.1.6.1.5",
945
+ "status" : "current",
946
+ "syntax" : {
947
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
948
+ },
949
+ "access" : "readonly",
950
+ "description" :
951
+ """The value of sysUpTime on the most recent occasion at
952
+ which any one or more of this entry's counters suffered
953
+ a discontinuity. If no such discontinuities have
954
+ occurred since the last re-initialization of the local
955
+ management subsystem, then this object contains a zero
956
+ value.""",
957
+ }, # column
958
+ "mplsFTNConformance" : {
959
+ "nodetype" : "node",
960
+ "moduleName" : "MPLS-FTN-STD-MIB",
961
+ "oid" : "1.3.6.1.2.1.10.166.8.2",
962
+ }, # node
963
+ "mplsFTNGroups" : {
964
+ "nodetype" : "node",
965
+ "moduleName" : "MPLS-FTN-STD-MIB",
966
+ "oid" : "1.3.6.1.2.1.10.166.8.2.1",
967
+ }, # node
968
+ "mplsFTNCompliances" : {
969
+ "nodetype" : "node",
970
+ "moduleName" : "MPLS-FTN-STD-MIB",
971
+ "oid" : "1.3.6.1.2.1.10.166.8.2.2",
972
+ }, # node
973
+ }, # nodes
974
+
975
+ "groups" : {
976
+ "mplsFTNRuleGroup" : {
977
+ "nodetype" : "group",
978
+ "moduleName" : "MPLS-FTN-STD-MIB",
979
+ "oid" : "1.3.6.1.2.1.10.166.8.2.1.1",
980
+ "status" : "current",
981
+ "members" : {
982
+ "mplsFTNIndexNext" : {
983
+ "nodetype" : "member",
984
+ "module" : "MPLS-FTN-STD-MIB"
985
+ },
986
+ "mplsFTNTableLastChanged" : {
987
+ "nodetype" : "member",
988
+ "module" : "MPLS-FTN-STD-MIB"
989
+ },
990
+ "mplsFTNRowStatus" : {
991
+ "nodetype" : "member",
992
+ "module" : "MPLS-FTN-STD-MIB"
993
+ },
994
+ "mplsFTNDescr" : {
995
+ "nodetype" : "member",
996
+ "module" : "MPLS-FTN-STD-MIB"
997
+ },
998
+ "mplsFTNMask" : {
999
+ "nodetype" : "member",
1000
+ "module" : "MPLS-FTN-STD-MIB"
1001
+ },
1002
+ "mplsFTNAddrType" : {
1003
+ "nodetype" : "member",
1004
+ "module" : "MPLS-FTN-STD-MIB"
1005
+ },
1006
+ "mplsFTNSourceAddrMin" : {
1007
+ "nodetype" : "member",
1008
+ "module" : "MPLS-FTN-STD-MIB"
1009
+ },
1010
+ "mplsFTNSourceAddrMax" : {
1011
+ "nodetype" : "member",
1012
+ "module" : "MPLS-FTN-STD-MIB"
1013
+ },
1014
+ "mplsFTNDestAddrMin" : {
1015
+ "nodetype" : "member",
1016
+ "module" : "MPLS-FTN-STD-MIB"
1017
+ },
1018
+ "mplsFTNDestAddrMax" : {
1019
+ "nodetype" : "member",
1020
+ "module" : "MPLS-FTN-STD-MIB"
1021
+ },
1022
+ "mplsFTNSourcePortMin" : {
1023
+ "nodetype" : "member",
1024
+ "module" : "MPLS-FTN-STD-MIB"
1025
+ },
1026
+ "mplsFTNSourcePortMax" : {
1027
+ "nodetype" : "member",
1028
+ "module" : "MPLS-FTN-STD-MIB"
1029
+ },
1030
+ "mplsFTNDestPortMin" : {
1031
+ "nodetype" : "member",
1032
+ "module" : "MPLS-FTN-STD-MIB"
1033
+ },
1034
+ "mplsFTNDestPortMax" : {
1035
+ "nodetype" : "member",
1036
+ "module" : "MPLS-FTN-STD-MIB"
1037
+ },
1038
+ "mplsFTNProtocol" : {
1039
+ "nodetype" : "member",
1040
+ "module" : "MPLS-FTN-STD-MIB"
1041
+ },
1042
+ "mplsFTNActionType" : {
1043
+ "nodetype" : "member",
1044
+ "module" : "MPLS-FTN-STD-MIB"
1045
+ },
1046
+ "mplsFTNActionPointer" : {
1047
+ "nodetype" : "member",
1048
+ "module" : "MPLS-FTN-STD-MIB"
1049
+ },
1050
+ "mplsFTNDscp" : {
1051
+ "nodetype" : "member",
1052
+ "module" : "MPLS-FTN-STD-MIB"
1053
+ },
1054
+ "mplsFTNStorageType" : {
1055
+ "nodetype" : "member",
1056
+ "module" : "MPLS-FTN-STD-MIB"
1057
+ },
1058
+ }, # members
1059
+ "description" :
1060
+ """Collection of objects that implement MPLS FTN rules.""",
1061
+ }, # group
1062
+ "mplsFTNMapGroup" : {
1063
+ "nodetype" : "group",
1064
+ "moduleName" : "MPLS-FTN-STD-MIB",
1065
+ "oid" : "1.3.6.1.2.1.10.166.8.2.1.2",
1066
+ "status" : "current",
1067
+ "members" : {
1068
+ "mplsFTNMapTableLastChanged" : {
1069
+ "nodetype" : "member",
1070
+ "module" : "MPLS-FTN-STD-MIB"
1071
+ },
1072
+ "mplsFTNMapRowStatus" : {
1073
+ "nodetype" : "member",
1074
+ "module" : "MPLS-FTN-STD-MIB"
1075
+ },
1076
+ "mplsFTNMapStorageType" : {
1077
+ "nodetype" : "member",
1078
+ "module" : "MPLS-FTN-STD-MIB"
1079
+ },
1080
+ }, # members
1081
+ "description" :
1082
+ """Collection of objects that implement activation of MPLS
1083
+ FTN entries on interfaces.""",
1084
+ }, # group
1085
+ "mplsFTNPerfGroup" : {
1086
+ "nodetype" : "group",
1087
+ "moduleName" : "MPLS-FTN-STD-MIB",
1088
+ "oid" : "1.3.6.1.2.1.10.166.8.2.1.3",
1089
+ "status" : "current",
1090
+ "members" : {
1091
+ "mplsFTNPerfMatchedPackets" : {
1092
+ "nodetype" : "member",
1093
+ "module" : "MPLS-FTN-STD-MIB"
1094
+ },
1095
+ "mplsFTNPerfMatchedOctets" : {
1096
+ "nodetype" : "member",
1097
+ "module" : "MPLS-FTN-STD-MIB"
1098
+ },
1099
+ "mplsFTNPerfDiscontinuityTime" : {
1100
+ "nodetype" : "member",
1101
+ "module" : "MPLS-FTN-STD-MIB"
1102
+ },
1103
+ }, # members
1104
+ "description" :
1105
+ """Collection of objects providing MPLS FTN performance
1106
+ information.""",
1107
+ }, # group
1108
+ }, # groups
1109
+
1110
+ "compliances" : {
1111
+ "mplsFTNModuleFullCompliance" : {
1112
+ "nodetype" : "compliance",
1113
+ "moduleName" : "MPLS-FTN-STD-MIB",
1114
+ "oid" : "1.3.6.1.2.1.10.166.8.2.2.1",
1115
+ "status" : "current",
1116
+ "description" :
1117
+ """Compliance statement for agents that provide full
1118
+ support for MPLS-FTN-STD-MIB.""",
1119
+ "requires" : {
1120
+ "ifGeneralInformationGroup" : {
1121
+ "nodetype" : "mandatory",
1122
+ "module" : "IF-MIB"
1123
+ },
1124
+ "ifCounterDiscontinuityGroup" : {
1125
+ "nodetype" : "mandatory",
1126
+ "module" : "IF-MIB"
1127
+ },
1128
+ "mplsFTNRuleGroup" : {
1129
+ "nodetype" : "mandatory",
1130
+ "module" : "MPLS-FTN-STD-MIB"
1131
+ },
1132
+ "mplsFTNMapGroup" : {
1133
+ "nodetype" : "mandatory",
1134
+ "module" : "MPLS-FTN-STD-MIB"
1135
+ },
1136
+ "mplsFTNPerfGroup" : {
1137
+ "nodetype" : "mandatory",
1138
+ "module" : "MPLS-FTN-STD-MIB"
1139
+ },
1140
+ }, # requires
1141
+ "refinements" : {
1142
+ "mplsFTNAddrType" : {
1143
+ "module" : "MPLS-FTN-STD-MIB",
1144
+ "syntax" : {
1145
+ "type" : {
1146
+ "basetype" : "Enumeration",
1147
+ "parent module" : {
1148
+ "name" : "INET-ADDRESS-MIB",
1149
+ "type" : "InetAddressType",
1150
+ },
1151
+ "ipv4" : {
1152
+ "nodetype" : "namednumber",
1153
+ "number" : "1"
1154
+ },
1155
+ "ipv6" : {
1156
+ "nodetype" : "namednumber",
1157
+ "number" : "2"
1158
+ },
1159
+ },
1160
+ }, # syntax
1161
+ "description" :
1162
+ """An implementation is only required to support IPv4
1163
+ and/or IPv6 addresses. An implementation is only
1164
+ required to support the address types that are actually
1165
+ supported on the LSR.""",
1166
+ },
1167
+ "mplsFTNSourceAddrMin" : {
1168
+ "module" : "MPLS-FTN-STD-MIB",
1169
+ "syntax" : {
1170
+ "type" : {
1171
+ "basetype" : "OctetString",
1172
+ "parent module" : {
1173
+ "name" : "INET-ADDRESS-MIB",
1174
+ "type" : "InetAddress",
1175
+ },
1176
+ "ranges" : [
1177
+ {
1178
+ "min" : "4",
1179
+ "max" : "4"
1180
+ },
1181
+ {
1182
+ "min" : "20",
1183
+ "max" : "20"
1184
+ },
1185
+ ],
1186
+ "range" : {
1187
+ "min" : "4",
1188
+ "max" : "20"
1189
+ },
1190
+ },
1191
+ }, # syntax
1192
+ "description" :
1193
+ """An implementation is only required to support IPv4
1194
+ and/or IPv6 addresses. An implementation is only
1195
+ required to support the address types that are actually
1196
+ supported on the LSR.""",
1197
+ },
1198
+ "mplsFTNSourceAddrMax" : {
1199
+ "module" : "MPLS-FTN-STD-MIB",
1200
+ "syntax" : {
1201
+ "type" : {
1202
+ "basetype" : "OctetString",
1203
+ "parent module" : {
1204
+ "name" : "INET-ADDRESS-MIB",
1205
+ "type" : "InetAddress",
1206
+ },
1207
+ "ranges" : [
1208
+ {
1209
+ "min" : "4",
1210
+ "max" : "4"
1211
+ },
1212
+ {
1213
+ "min" : "20",
1214
+ "max" : "20"
1215
+ },
1216
+ ],
1217
+ "range" : {
1218
+ "min" : "4",
1219
+ "max" : "20"
1220
+ },
1221
+ },
1222
+ }, # syntax
1223
+ "description" :
1224
+ """An implementation is only required to support IPv4
1225
+ and/or IPv6 addresses. An implementation is only
1226
+ required to support the address types that are actually
1227
+ supported on the LSR.""",
1228
+ },
1229
+ "mplsFTNDestAddrMin" : {
1230
+ "module" : "MPLS-FTN-STD-MIB",
1231
+ "syntax" : {
1232
+ "type" : {
1233
+ "basetype" : "OctetString",
1234
+ "parent module" : {
1235
+ "name" : "INET-ADDRESS-MIB",
1236
+ "type" : "InetAddress",
1237
+ },
1238
+ "ranges" : [
1239
+ {
1240
+ "min" : "4",
1241
+ "max" : "4"
1242
+ },
1243
+ {
1244
+ "min" : "20",
1245
+ "max" : "20"
1246
+ },
1247
+ ],
1248
+ "range" : {
1249
+ "min" : "4",
1250
+ "max" : "20"
1251
+ },
1252
+ },
1253
+ }, # syntax
1254
+ "description" :
1255
+ """An implementation is only required to support IPv4
1256
+ and/or IPv6 addresses. An implementation is only
1257
+ required to support the address types that are actually
1258
+ supported on the LSR.""",
1259
+ },
1260
+ "mplsFTNDestAddrMax" : {
1261
+ "module" : "MPLS-FTN-STD-MIB",
1262
+ "syntax" : {
1263
+ "type" : {
1264
+ "basetype" : "OctetString",
1265
+ "parent module" : {
1266
+ "name" : "INET-ADDRESS-MIB",
1267
+ "type" : "InetAddress",
1268
+ },
1269
+ "ranges" : [
1270
+ {
1271
+ "min" : "4",
1272
+ "max" : "4"
1273
+ },
1274
+ {
1275
+ "min" : "20",
1276
+ "max" : "20"
1277
+ },
1278
+ ],
1279
+ "range" : {
1280
+ "min" : "4",
1281
+ "max" : "20"
1282
+ },
1283
+ },
1284
+ }, # syntax
1285
+ "description" :
1286
+ """An implementation is only required to support IPv4
1287
+ and/or IPv6 addresses. An implementation is only
1288
+ required to support the address types that are actually
1289
+ supported on the LSR.""",
1290
+ },
1291
+ }, # refinements
1292
+
1293
+ }, # compliance
1294
+ "mplsFTNModuleReadOnlyCompliance" : {
1295
+ "nodetype" : "compliance",
1296
+ "moduleName" : "MPLS-FTN-STD-MIB",
1297
+ "oid" : "1.3.6.1.2.1.10.166.8.2.2.2",
1298
+ "status" : "current",
1299
+ "description" :
1300
+ """Compliance requirement for implementations that only
1301
+
1302
+
1303
+
1304
+ provide read-only support for MPLS-FTN-STD-MIB. Such
1305
+ devices can then be monitored but cannot be configured
1306
+ using this MIB module.""",
1307
+ "requires" : {
1308
+ "ifGeneralInformationGroup" : {
1309
+ "nodetype" : "mandatory",
1310
+ "module" : "IF-MIB"
1311
+ },
1312
+ "ifCounterDiscontinuityGroup" : {
1313
+ "nodetype" : "mandatory",
1314
+ "module" : "IF-MIB"
1315
+ },
1316
+ "mplsFTNRuleGroup" : {
1317
+ "nodetype" : "mandatory",
1318
+ "module" : "MPLS-FTN-STD-MIB"
1319
+ },
1320
+ "mplsFTNMapGroup" : {
1321
+ "nodetype" : "mandatory",
1322
+ "module" : "MPLS-FTN-STD-MIB"
1323
+ },
1324
+ "mplsFTNPerfGroup" : {
1325
+ "nodetype" : "mandatory",
1326
+ "module" : "MPLS-FTN-STD-MIB"
1327
+ },
1328
+ }, # requires
1329
+ "refinements" : {
1330
+ "mplsFTNIndexNext" : {
1331
+ "module" : "MPLS-FTN-STD-MIB",
1332
+ "access" : "noaccess",
1333
+ "description" :
1334
+ """This object is not needed when mplsFTNTable is
1335
+ implemented as read-only.""",
1336
+ },
1337
+ "mplsFTNRowStatus" : {
1338
+ "module" : "MPLS-FTN-STD-MIB",
1339
+ "syntax" : {
1340
+ "type" : {
1341
+ "basetype" : "Enumeration",
1342
+ "parent module" : {
1343
+ "name" : "SNMPv2-TC",
1344
+ "type" : "RowStatus",
1345
+ },
1346
+ "active" : {
1347
+ "nodetype" : "namednumber",
1348
+ "number" : "1"
1349
+ },
1350
+ },
1351
+ }, # syntax
1352
+ "access" : "readonly",
1353
+ "description" :
1354
+ """Write access is not required, and active is the only
1355
+ status that needs to be supported.""",
1356
+ },
1357
+ "mplsFTNDescr" : {
1358
+ "module" : "MPLS-FTN-STD-MIB",
1359
+ "access" : "readonly",
1360
+ "description" :
1361
+ """Write access is not required.""",
1362
+ },
1363
+ "mplsFTNMask" : {
1364
+ "module" : "MPLS-FTN-STD-MIB",
1365
+ "access" : "readonly",
1366
+ "description" :
1367
+ """Write access is not required.""",
1368
+ },
1369
+ "mplsFTNAddrType" : {
1370
+ "module" : "MPLS-FTN-STD-MIB",
1371
+ "syntax" : {
1372
+ "type" : {
1373
+ "basetype" : "Enumeration",
1374
+ "parent module" : {
1375
+ "name" : "INET-ADDRESS-MIB",
1376
+ "type" : "InetAddressType",
1377
+ },
1378
+ "ipv4" : {
1379
+ "nodetype" : "namednumber",
1380
+ "number" : "1"
1381
+ },
1382
+ "ipv6" : {
1383
+ "nodetype" : "namednumber",
1384
+ "number" : "2"
1385
+ },
1386
+ },
1387
+ }, # syntax
1388
+ "access" : "readonly",
1389
+ "description" :
1390
+ """Write access is not required. An implementation is only
1391
+ required to support IPv4 and IPv6 addresses.""",
1392
+ },
1393
+ "mplsFTNSourceAddrMin" : {
1394
+ "module" : "MPLS-FTN-STD-MIB",
1395
+ "syntax" : {
1396
+ "type" : {
1397
+ "basetype" : "OctetString",
1398
+ "parent module" : {
1399
+ "name" : "INET-ADDRESS-MIB",
1400
+ "type" : "InetAddress",
1401
+ },
1402
+ "ranges" : [
1403
+ {
1404
+ "min" : "4",
1405
+ "max" : "4"
1406
+ },
1407
+ {
1408
+ "min" : "20",
1409
+ "max" : "20"
1410
+ },
1411
+ ],
1412
+ "range" : {
1413
+ "min" : "4",
1414
+ "max" : "20"
1415
+ },
1416
+ },
1417
+ }, # syntax
1418
+ "access" : "readonly",
1419
+ "description" :
1420
+ """Write access is not required. An implementation is only
1421
+ required to support IPv4 and IPv6 addresses.""",
1422
+ },
1423
+ "mplsFTNSourceAddrMax" : {
1424
+ "module" : "MPLS-FTN-STD-MIB",
1425
+ "syntax" : {
1426
+ "type" : {
1427
+ "basetype" : "OctetString",
1428
+ "parent module" : {
1429
+ "name" : "INET-ADDRESS-MIB",
1430
+ "type" : "InetAddress",
1431
+ },
1432
+ "ranges" : [
1433
+ {
1434
+ "min" : "4",
1435
+ "max" : "4"
1436
+ },
1437
+ {
1438
+ "min" : "20",
1439
+ "max" : "20"
1440
+ },
1441
+ ],
1442
+ "range" : {
1443
+ "min" : "4",
1444
+ "max" : "20"
1445
+ },
1446
+ },
1447
+ }, # syntax
1448
+ "access" : "readonly",
1449
+ "description" :
1450
+ """Write access is not required. An implementation is only
1451
+ required to support IPv4 and IPv6 addresses.""",
1452
+ },
1453
+ "mplsFTNDestAddrMin" : {
1454
+ "module" : "MPLS-FTN-STD-MIB",
1455
+ "syntax" : {
1456
+ "type" : {
1457
+ "basetype" : "OctetString",
1458
+ "parent module" : {
1459
+ "name" : "INET-ADDRESS-MIB",
1460
+ "type" : "InetAddress",
1461
+ },
1462
+ "ranges" : [
1463
+ {
1464
+ "min" : "4",
1465
+ "max" : "4"
1466
+ },
1467
+ {
1468
+ "min" : "20",
1469
+ "max" : "20"
1470
+ },
1471
+ ],
1472
+ "range" : {
1473
+ "min" : "4",
1474
+ "max" : "20"
1475
+ },
1476
+ },
1477
+ }, # syntax
1478
+ "access" : "readonly",
1479
+ "description" :
1480
+ """Write access is not required. An implementation is only
1481
+ required to support IPv4 and IPv6 addresses.""",
1482
+ },
1483
+ "mplsFTNDestAddrMax" : {
1484
+ "module" : "MPLS-FTN-STD-MIB",
1485
+ "syntax" : {
1486
+ "type" : {
1487
+ "basetype" : "OctetString",
1488
+ "parent module" : {
1489
+ "name" : "INET-ADDRESS-MIB",
1490
+ "type" : "InetAddress",
1491
+ },
1492
+ "ranges" : [
1493
+ {
1494
+ "min" : "4",
1495
+ "max" : "4"
1496
+ },
1497
+ {
1498
+ "min" : "20",
1499
+ "max" : "20"
1500
+ },
1501
+ ],
1502
+ "range" : {
1503
+ "min" : "4",
1504
+ "max" : "20"
1505
+ },
1506
+ },
1507
+ }, # syntax
1508
+ "access" : "readonly",
1509
+ "description" :
1510
+ """Write access is not required. An implementation is only
1511
+ required to support IPv4 and IPv6 addresses.""",
1512
+ },
1513
+ "mplsFTNSourcePortMin" : {
1514
+ "module" : "MPLS-FTN-STD-MIB",
1515
+ "access" : "readonly",
1516
+ "description" :
1517
+ """Write access is not required.""",
1518
+ },
1519
+ "mplsFTNSourcePortMax" : {
1520
+ "module" : "MPLS-FTN-STD-MIB",
1521
+ "access" : "readonly",
1522
+ "description" :
1523
+ """Write access is not required.""",
1524
+ },
1525
+ "mplsFTNDestPortMin" : {
1526
+ "module" : "MPLS-FTN-STD-MIB",
1527
+ "access" : "readonly",
1528
+ "description" :
1529
+ """Write access is not required.""",
1530
+ },
1531
+ "mplsFTNDestPortMax" : {
1532
+ "module" : "MPLS-FTN-STD-MIB",
1533
+ "access" : "readonly",
1534
+ "description" :
1535
+ """Write access is not required.""",
1536
+ },
1537
+ "mplsFTNProtocol" : {
1538
+ "module" : "MPLS-FTN-STD-MIB",
1539
+ "access" : "readonly",
1540
+ "description" :
1541
+ """Write access is not required.""",
1542
+ },
1543
+ "mplsFTNActionType" : {
1544
+ "module" : "MPLS-FTN-STD-MIB",
1545
+ "access" : "readonly",
1546
+ "description" :
1547
+ """Write access is not required.""",
1548
+ },
1549
+ "mplsFTNActionPointer" : {
1550
+ "module" : "MPLS-FTN-STD-MIB",
1551
+ "access" : "readonly",
1552
+ "description" :
1553
+ """Write access is not required.""",
1554
+ },
1555
+ "mplsFTNDscp" : {
1556
+ "module" : "MPLS-FTN-STD-MIB",
1557
+ "access" : "readonly",
1558
+ "description" :
1559
+ """Write access is not required.""",
1560
+ },
1561
+ "mplsFTNStorageType" : {
1562
+ "module" : "MPLS-FTN-STD-MIB",
1563
+ "access" : "readonly",
1564
+ "description" :
1565
+ """Write access is not required.""",
1566
+ },
1567
+ "mplsFTNMapRowStatus" : {
1568
+ "module" : "MPLS-FTN-STD-MIB",
1569
+ "syntax" : {
1570
+ "type" : {
1571
+ "basetype" : "Enumeration",
1572
+ "active" : {
1573
+ "nodetype" : "namednumber",
1574
+ "number" : "1"
1575
+ },
1576
+ },
1577
+ }, # syntax
1578
+ "access" : "readonly",
1579
+ "description" :
1580
+ """Write access is not required, and active(1) is the only
1581
+ status that needs to be supported.""",
1582
+ },
1583
+ "mplsFTNMapStorageType" : {
1584
+ "module" : "MPLS-FTN-STD-MIB",
1585
+ "access" : "readonly",
1586
+ "description" :
1587
+ """Write access is not required.""",
1588
+ },
1589
+ }, # refinements
1590
+
1591
+ }, # compliance
1592
+ }, # compliances
1593
+
1594
+ }