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,1530 @@
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 SSPM-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/SSPM-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "SSPM-MIB",
11
+
12
+ "SSPM-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF RMON MIB working group""",
17
+ "contact" :
18
+ """ Carl W. Kalbfleisch
19
+ Consultant
20
+
21
+ E-mail: ietf@kalbfleisch.us
22
+
23
+ Working group mailing list: rmonmib@ietf.org
24
+ To subscribe send email to rmonmib-request@ietf.org""",
25
+ "description" :
26
+ """This SSPM MIB module is applicable to probes
27
+ implementing Synthetic Source for Performance
28
+ Monitoring functions.
29
+
30
+ Copyright (C) The Internet Society (2005). This version
31
+ of this MIB module is part of RFC 4149; see the RFC
32
+ itself for full legal notices.""",
33
+ "revisions" : (
34
+ {
35
+ "date" : "2005-07-28 00:00",
36
+ "description" :
37
+ """The original version of this MIB module,
38
+ was published as RFC4149.""",
39
+ },
40
+ ),
41
+ "identity node" : "sspmMIB",
42
+ },
43
+
44
+ "imports" : (
45
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
46
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
47
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
48
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
49
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
50
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
51
+ {"module" : "SNMPv2-TC", "name" : "StorageType"},
52
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
53
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
54
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
55
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
56
+ {"module" : "RMON-MIB", "name" : "OwnerString"},
57
+ {"module" : "RMON-MIB", "name" : "rmon"},
58
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddressType"},
59
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddress"},
60
+ {"module" : "IF-MIB", "name" : "InterfaceIndexOrZero"},
61
+ {"module" : "APM-MIB", "name" : "AppLocalIndex"},
62
+ {"module" : "SYSAPPL-MIB", "name" : "Utf8String"},
63
+ ),
64
+
65
+ "typedefs" : {
66
+ "SspmMicroSeconds" : {
67
+ "basetype" : "Unsigned32",
68
+ "status" : "current",
69
+ "format" : "d",
70
+ "description" :
71
+ """A unit of time with resolution of MicroSeconds.""",
72
+ },
73
+ "SspmClockSource" : {
74
+ "basetype" : "Integer32",
75
+ "status" : "current",
76
+ "ranges" : [
77
+ {
78
+ "min" : "0",
79
+ "max" : "255"
80
+ },
81
+ ],
82
+ "range" : {
83
+ "min" : "0",
84
+ "max" : "255"
85
+ },
86
+ "format" : "d",
87
+ "description" :
88
+ """An indication of the source of the clock as defined by the
89
+ NTP specification RFC1305 [RFC1305] definition of stratum:
90
+
91
+ Stratum (sys.stratum, peer.stratum, pkt.stratum): This is
92
+ an integer indicating the stratum of the local clock,
93
+ with values defined as follows:
94
+
95
+ 0 unspecified
96
+
97
+ 1 primary reference (e.g., calibrated atomic clock,
98
+ radio clock)
99
+
100
+ 2-255 secondary reference (via NTP).""",
101
+ "reference" :
102
+ """RFC1305.""",
103
+ },
104
+ "SspmClockMaxSkew" : {
105
+ "basetype" : "Integer32",
106
+ "status" : "current",
107
+ "ranges" : [
108
+ {
109
+ "min" : "1",
110
+ "max" : "65535"
111
+ },
112
+ ],
113
+ "range" : {
114
+ "min" : "1",
115
+ "max" : "65535"
116
+ },
117
+ "format" : "d",
118
+ "description" :
119
+ """An indication of the accuracy of the clock as defined by
120
+ RFC1305. This variable indicates the maximum offset
121
+ error due to skew of the local clock over the
122
+ time interval 86400 seconds, in seconds.""",
123
+ "reference" :
124
+ """RFC1305.""",
125
+ },
126
+ }, # typedefs
127
+
128
+ "nodes" : {
129
+ "sspmMIB" : {
130
+ "nodetype" : "node",
131
+ "moduleName" : "SSPM-MIB",
132
+ "oid" : "1.3.6.1.2.1.16.28",
133
+ "status" : "current",
134
+ }, # node
135
+ "sspmMIBObjects" : {
136
+ "nodetype" : "node",
137
+ "moduleName" : "SSPM-MIB",
138
+ "oid" : "1.3.6.1.2.1.16.28.1",
139
+ }, # node
140
+ "sspmGeneral" : {
141
+ "nodetype" : "node",
142
+ "moduleName" : "SSPM-MIB",
143
+ "oid" : "1.3.6.1.2.1.16.28.1.1",
144
+ }, # node
145
+ "sspmGeneralClockResolution" : {
146
+ "nodetype" : "scalar",
147
+ "moduleName" : "SSPM-MIB",
148
+ "oid" : "1.3.6.1.2.1.16.28.1.1.1",
149
+ "status" : "current",
150
+ "syntax" : {
151
+ "type" : { "module" :"SSPM-MIB", "name" : "SspmMicroSeconds"},
152
+ },
153
+ "access" : "readonly",
154
+ "description" :
155
+ """A read-only variable indicating the resolution
156
+ of the measurements possible by this device.""",
157
+ }, # scalar
158
+ "sspmGeneralClockMaxSkew" : {
159
+ "nodetype" : "scalar",
160
+ "moduleName" : "SSPM-MIB",
161
+ "oid" : "1.3.6.1.2.1.16.28.1.1.2",
162
+ "status" : "current",
163
+ "syntax" : {
164
+ "type" : { "module" :"SSPM-MIB", "name" : "SspmClockMaxSkew"},
165
+ },
166
+ "access" : "readonly",
167
+ "description" :
168
+ """A read-only variable indicating the maximum offset
169
+ error due to skew of the local clock over the
170
+ time interval 86400 seconds, in seconds.""",
171
+ }, # scalar
172
+ "sspmGeneralClockSource" : {
173
+ "nodetype" : "scalar",
174
+ "moduleName" : "SSPM-MIB",
175
+ "oid" : "1.3.6.1.2.1.16.28.1.1.3",
176
+ "status" : "current",
177
+ "syntax" : {
178
+ "type" : { "module" :"SSPM-MIB", "name" : "SspmClockSource"},
179
+ },
180
+ "access" : "readonly",
181
+ "description" :
182
+ """A read-only variable indicating the source of the clock.
183
+ This is provided to allow a user to determine how accurate
184
+ the timing mechanism is compared with other devices. This
185
+ is needed for the coordination of time values
186
+ between probes for one-way measurements.""",
187
+ }, # scalar
188
+ "sspmGeneralMinFrequency" : {
189
+ "nodetype" : "scalar",
190
+ "moduleName" : "SSPM-MIB",
191
+ "oid" : "1.3.6.1.2.1.16.28.1.1.4",
192
+ "status" : "current",
193
+ "syntax" : {
194
+ "type" : { "module" :"SSPM-MIB", "name" : "SspmMicroSeconds"},
195
+ },
196
+ "access" : "readonly",
197
+ "description" :
198
+ """A read-only variable that indicates the devices'
199
+ capability for the minimum supported
200
+ sspmSourceFrequency. If sspmSourceFrequency is
201
+ set to a value lower than the value reported
202
+ by this attribute, then the set of sspmSourceFrequency
203
+ will fail with an inconsistent value error.""",
204
+ }, # scalar
205
+ "sspmCapabilitiesTable" : {
206
+ "nodetype" : "table",
207
+ "moduleName" : "SSPM-MIB",
208
+ "oid" : "1.3.6.1.2.1.16.28.1.1.5",
209
+ "status" : "current",
210
+ "description" :
211
+ """The table of SSPM capabilities.""",
212
+ }, # table
213
+ "sspmCapabilitiesEntry" : {
214
+ "nodetype" : "row",
215
+ "moduleName" : "SSPM-MIB",
216
+ "oid" : "1.3.6.1.2.1.16.28.1.1.5.1",
217
+ "status" : "current",
218
+ "linkage" : [
219
+ "sspmCapabilitiesInstance",
220
+ ],
221
+ "description" :
222
+ """Details about a particular SSPM capability.""",
223
+ }, # row
224
+ "sspmCapabilitiesInstance" : {
225
+ "nodetype" : "column",
226
+ "moduleName" : "SSPM-MIB",
227
+ "oid" : "1.3.6.1.2.1.16.28.1.1.5.1.1",
228
+ "status" : "current",
229
+ "syntax" : {
230
+ "type" : { "module" :"APM-MIB", "name" : "AppLocalIndex"},
231
+ },
232
+ "access" : "readonly",
233
+ "description" :
234
+ """Indicates whether SSPM configuration of the corresponding
235
+ AppLocalIndex is supported by this device. Generally,
236
+ entries in this table are only made by the device when the
237
+ configuration of the measurement is available.""",
238
+ }, # column
239
+ "sspmSource" : {
240
+ "nodetype" : "node",
241
+ "moduleName" : "SSPM-MIB",
242
+ "oid" : "1.3.6.1.2.1.16.28.1.2",
243
+ }, # node
244
+ "sspmSourceProfileTable" : {
245
+ "nodetype" : "table",
246
+ "moduleName" : "SSPM-MIB",
247
+ "oid" : "1.3.6.1.2.1.16.28.1.2.1",
248
+ "status" : "current",
249
+ "description" :
250
+ """The table of SSPM Source Profiles configured.""",
251
+ }, # table
252
+ "sspmSourceProfileEntry" : {
253
+ "nodetype" : "row",
254
+ "moduleName" : "SSPM-MIB",
255
+ "oid" : "1.3.6.1.2.1.16.28.1.2.1.1",
256
+ "create" : "true",
257
+ "status" : "current",
258
+ "linkage" : [
259
+ "sspmSourceProfileInstance",
260
+ ],
261
+ "description" :
262
+ """Details about a particular SSPM Source Profile
263
+ configuration. Entries must exist in this table
264
+ in order to be referenced by rows in the
265
+ sspmSourceControlTable.""",
266
+ }, # row
267
+ "sspmSourceProfileInstance" : {
268
+ "nodetype" : "column",
269
+ "moduleName" : "SSPM-MIB",
270
+ "oid" : "1.3.6.1.2.1.16.28.1.2.1.1.1",
271
+ "status" : "current",
272
+ "syntax" : {
273
+ "type" : {
274
+ "basetype" : "Unsigned32",
275
+ "ranges" : [
276
+ {
277
+ "min" : "1",
278
+ "max" : "65535"
279
+ },
280
+ ],
281
+ "range" : {
282
+ "min" : "1",
283
+ "max" : "65535"
284
+ },
285
+ },
286
+ },
287
+ "access" : "noaccess",
288
+ "description" :
289
+ """An arbitrary index.""",
290
+ }, # column
291
+ "sspmSourceProfileType" : {
292
+ "nodetype" : "column",
293
+ "moduleName" : "SSPM-MIB",
294
+ "oid" : "1.3.6.1.2.1.16.28.1.2.1.1.2",
295
+ "status" : "current",
296
+ "syntax" : {
297
+ "type" : { "module" :"APM-MIB", "name" : "AppLocalIndex"},
298
+ },
299
+ "access" : "readwrite",
300
+ "description" :
301
+ """The AppLocalIndex value that uniquely identifies the
302
+ measurement per the APM-MIB. In order to create a row
303
+ in this table, there must be a corresponding row in the
304
+ sspmCapabilitiesTable.
305
+
306
+ When attempting to set this object, if no
307
+ corresponding row exists in the sspmCapabilitiesTable,
308
+ then the agent should return a 'badValue' error.""",
309
+ }, # column
310
+ "sspmSourceProfilePacketSize" : {
311
+ "nodetype" : "column",
312
+ "moduleName" : "SSPM-MIB",
313
+ "oid" : "1.3.6.1.2.1.16.28.1.2.1.1.3",
314
+ "status" : "current",
315
+ "syntax" : {
316
+ "type" : { "module" :"", "name" : "Unsigned32"},
317
+ },
318
+ "access" : "readwrite",
319
+ "description" :
320
+ """The size of packet to be transmitted in bytes. The
321
+ size accounts for all data within the IPv4 or IPv6
322
+ payloads, excluding the IP headers, IP header options
323
+ and link-level protocol headers.
324
+
325
+ If the size is set smaller than the minimum allowed
326
+ packet size or greater than the maximum allowed
327
+ packet size, then the set should fail, and the agent
328
+ should return a 'badValue' error.""",
329
+ }, # column
330
+ "sspmSourceProfilePacketFillType" : {
331
+ "nodetype" : "column",
332
+ "moduleName" : "SSPM-MIB",
333
+ "oid" : "1.3.6.1.2.1.16.28.1.2.1.1.4",
334
+ "status" : "current",
335
+ "syntax" : {
336
+ "type" : {
337
+ "basetype" : "Enumeration",
338
+ "random" : {
339
+ "nodetype" : "namednumber",
340
+ "number" : "1"
341
+ },
342
+ "pattern" : {
343
+ "nodetype" : "namednumber",
344
+ "number" : "2"
345
+ },
346
+ "url" : {
347
+ "nodetype" : "namednumber",
348
+ "number" : "3"
349
+ },
350
+ },
351
+ },
352
+ "access" : "readwrite",
353
+ "description" :
354
+ """Indicates how the packet is filled.
355
+
356
+ 'random' indicates that the packet contains random
357
+ data patterns. This is probe and implementation
358
+ dependent.
359
+
360
+
361
+
362
+
363
+ 'pattern' indicates that the pattern defined in the
364
+ sspmSourceProfilePacketFillValue attribute is used to
365
+ fill the packet.
366
+
367
+ 'url' indicates that the value of
368
+ sspmSourceProfilePacketFillValue should
369
+ contain a URL. The contents of the document
370
+ at that URL are retrieved when sspmSourceStatus becomes
371
+ active and utilized in the packet. If the attempt to
372
+ access that URL fails, then the row status is set to
373
+ 'notReady', and the set should fail with
374
+ 'inconsistentValue'. This value must contain a
375
+ dereferencable URL of the type 'http:', 'https:', or
376
+ 'ftp:' only.""",
377
+ }, # column
378
+ "sspmSourceProfilePacketFillValue" : {
379
+ "nodetype" : "column",
380
+ "moduleName" : "SSPM-MIB",
381
+ "oid" : "1.3.6.1.2.1.16.28.1.2.1.1.5",
382
+ "status" : "current",
383
+ "syntax" : {
384
+ "type" : {
385
+ "basetype" : "OctetString",
386
+ "ranges" : [
387
+ {
388
+ "min" : "0",
389
+ "max" : "255"
390
+ },
391
+ ],
392
+ "range" : {
393
+ "min" : "0",
394
+ "max" : "255"
395
+ },
396
+ },
397
+ },
398
+ "access" : "readwrite",
399
+ "description" :
400
+ """The string value with which to fill the packet. If
401
+ sspmSourceProfilePacketFillType is set to 'pattern',
402
+ then this pattern is repeated until the packet is
403
+ sspmSourcePacketSize in bytes. Note that if the
404
+ length of the octet string specified for this
405
+ value does not divide evenly into the packet
406
+ size, then an incomplete last copy of this data
407
+ may be copied into the packet. If the value of
408
+ sspmSourceProfilePacketFillType is set to 'random', then
409
+ this attribute is unused. If the value of the
410
+ sspmSourceProfilePacketFillType is set to 'url', then
411
+ the URL specified in this attribute is retrieved
412
+ and used by the probe. In the case of a URL, this value
413
+ must contain a dereferencable URL of the type
414
+ 'http:', 'https:', or 'ftp:' only.""",
415
+ }, # column
416
+ "sspmSourceProfileTOS" : {
417
+ "nodetype" : "column",
418
+ "moduleName" : "SSPM-MIB",
419
+ "oid" : "1.3.6.1.2.1.16.28.1.2.1.1.6",
420
+ "status" : "current",
421
+ "syntax" : {
422
+ "type" : {
423
+ "basetype" : "Integer32",
424
+ "ranges" : [
425
+ {
426
+ "min" : "0",
427
+ "max" : "255"
428
+ },
429
+ ],
430
+ "range" : {
431
+ "min" : "0",
432
+ "max" : "255"
433
+ },
434
+ },
435
+ },
436
+ "access" : "readwrite",
437
+ "default" : "0",
438
+ "description" :
439
+ """Represents the TOS field in the IP packet header. The
440
+ value of this object defaults to zero if not set.""",
441
+ }, # column
442
+ "sspmSourceProfileFlowLabel" : {
443
+ "nodetype" : "column",
444
+ "moduleName" : "SSPM-MIB",
445
+ "oid" : "1.3.6.1.2.1.16.28.1.2.1.1.7",
446
+ "status" : "current",
447
+ "syntax" : {
448
+ "type" : {
449
+ "basetype" : "Integer32",
450
+ "ranges" : [
451
+ {
452
+ "min" : "0",
453
+ "max" : "1048575"
454
+ },
455
+ ],
456
+ "range" : {
457
+ "min" : "0",
458
+ "max" : "1048575"
459
+ },
460
+ },
461
+ },
462
+ "access" : "readwrite",
463
+ "default" : "0",
464
+ "description" :
465
+ """This object is used to specify the Flow Label in a IPv6
466
+ packet (RFC 2460) to force special handling by the IPv6
467
+ routers; e.g., non-default quality-of-service handling.
468
+
469
+ This object is meaningful only when the object
470
+ sspmSourceDestAddressType is IPv6(2).
471
+ The value of this object defaults to zero if not set.""",
472
+ }, # column
473
+ "sspmSourceProfileLooseSrcRteFill" : {
474
+ "nodetype" : "column",
475
+ "moduleName" : "SSPM-MIB",
476
+ "oid" : "1.3.6.1.2.1.16.28.1.2.1.1.8",
477
+ "status" : "current",
478
+ "syntax" : {
479
+ "type" : {
480
+ "basetype" : "OctetString",
481
+ "ranges" : [
482
+ {
483
+ "min" : "0",
484
+ "max" : "240"
485
+ },
486
+ ],
487
+ "range" : {
488
+ "min" : "0",
489
+ "max" : "240"
490
+ },
491
+ },
492
+ },
493
+ "access" : "readwrite",
494
+ "description" :
495
+ """In the event that the test should run over a
496
+ specific route, the intent is to force the route using the
497
+ Loose Source Route option in IPv4 [RFC791] and
498
+ IPv6 [RFC2460]. This object contains a
499
+ series of IP addresses along the path that would be
500
+ put into the loose source route option in the IP header.
501
+
502
+ The IPv4 addresses are to be listed as 32-bit
503
+ address values, and the IPv6 addresses are to be
504
+ listed as a string of 128-bit addresses. The
505
+ maximum length allowed within the IPv4 source route
506
+ option is 63 addresses. To simply account for
507
+ IPv6 addresses as well, the maximum length of the
508
+ octet string is 240. This allows up to 60
509
+ IPv4 addresses or up to 15 IPv6 addresses in the
510
+ string.""",
511
+ }, # column
512
+ "sspmSourceProfileLooseSrcRteLen" : {
513
+ "nodetype" : "column",
514
+ "moduleName" : "SSPM-MIB",
515
+ "oid" : "1.3.6.1.2.1.16.28.1.2.1.1.9",
516
+ "status" : "current",
517
+ "syntax" : {
518
+ "type" : {
519
+ "basetype" : "Integer32",
520
+ "ranges" : [
521
+ {
522
+ "min" : "0",
523
+ "max" : "240"
524
+ },
525
+ ],
526
+ "range" : {
527
+ "min" : "0",
528
+ "max" : "240"
529
+ },
530
+ },
531
+ },
532
+ "access" : "readwrite",
533
+ "description" :
534
+ """In the event that the test should run over a
535
+ specific route, the intent is to force the route.
536
+ This attribute specifies the length of data to
537
+ be copied from the sspmSourceProfileLooseSrcRteFill
538
+ into the route data fields of the loose source route
539
+
540
+
541
+
542
+ options in the IPv4 or IPv6 headers.""",
543
+ }, # column
544
+ "sspmSourceProfileTTL" : {
545
+ "nodetype" : "column",
546
+ "moduleName" : "SSPM-MIB",
547
+ "oid" : "1.3.6.1.2.1.16.28.1.2.1.1.10",
548
+ "status" : "current",
549
+ "syntax" : {
550
+ "type" : {
551
+ "basetype" : "Integer32",
552
+ "ranges" : [
553
+ {
554
+ "min" : "1",
555
+ "max" : "255"
556
+ },
557
+ ],
558
+ "range" : {
559
+ "min" : "1",
560
+ "max" : "255"
561
+ },
562
+ },
563
+ },
564
+ "access" : "readwrite",
565
+ "description" :
566
+ """If non-zero, this specifies the value to place into
567
+ the TTL field on transmission.""",
568
+ }, # column
569
+ "sspmSourceProfileNoFrag" : {
570
+ "nodetype" : "column",
571
+ "moduleName" : "SSPM-MIB",
572
+ "oid" : "1.3.6.1.2.1.16.28.1.2.1.1.11",
573
+ "status" : "current",
574
+ "syntax" : {
575
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
576
+ },
577
+ "access" : "readwrite",
578
+ "description" :
579
+ """When true, the 'Don't Fragment Bit' should be set
580
+ on the packet header.""",
581
+ }, # column
582
+ "sspmSourceProfile8021Tagging" : {
583
+ "nodetype" : "column",
584
+ "moduleName" : "SSPM-MIB",
585
+ "oid" : "1.3.6.1.2.1.16.28.1.2.1.1.12",
586
+ "status" : "current",
587
+ "syntax" : {
588
+ "type" : {
589
+ "basetype" : "Integer32",
590
+ "ranges" : [
591
+ {
592
+ "min" : "-1",
593
+ "max" : "65535"
594
+ },
595
+ ],
596
+ "range" : {
597
+ "min" : "-1",
598
+ "max" : "65535"
599
+ },
600
+ },
601
+ },
602
+ "access" : "readwrite",
603
+ "description" :
604
+ """IEEE 802.1Q tagging used in IEEE 802.1D bridged
605
+ environments.
606
+
607
+ A value of -1 indicates that the packets are untagged.
608
+
609
+ A value of 0 to 65535 is the value of the tag to be
610
+ inserted in the tagged packets.
611
+
612
+ Note that according to IEEE 802.1Q, VLAN-ID tags with
613
+ a value of 4095 shall not be transmitted on the wire.
614
+ As the VLAN-ID is encoded in the 12 least significant
615
+ bits on the tag, values that translate in a binary
616
+ representation of all 1's in the last 12 bits
617
+ SHALL NOT be configured. In this case, the set should
618
+ fail, and return an error-status of 'inconsistentValue'.""",
619
+ }, # column
620
+ "sspmSourceProfileUsername" : {
621
+ "nodetype" : "column",
622
+ "moduleName" : "SSPM-MIB",
623
+ "oid" : "1.3.6.1.2.1.16.28.1.2.1.1.13",
624
+ "status" : "current",
625
+ "syntax" : {
626
+ "type" : { "module" :"SYSAPPL-MIB", "name" : "Utf8String"},
627
+ },
628
+ "access" : "readwrite",
629
+ "description" :
630
+ """An optional username used by the application protocol.""",
631
+ }, # column
632
+ "sspmSourceProfilePassword" : {
633
+ "nodetype" : "column",
634
+ "moduleName" : "SSPM-MIB",
635
+ "oid" : "1.3.6.1.2.1.16.28.1.2.1.1.14",
636
+ "status" : "current",
637
+ "syntax" : {
638
+ "type" : { "module" :"SYSAPPL-MIB", "name" : "Utf8String"},
639
+ },
640
+ "access" : "readwrite",
641
+ "description" :
642
+ """An optional password used by the application protocol.""",
643
+ }, # column
644
+ "sspmSourceProfileParameter" : {
645
+ "nodetype" : "column",
646
+ "moduleName" : "SSPM-MIB",
647
+ "oid" : "1.3.6.1.2.1.16.28.1.2.1.1.15",
648
+ "status" : "current",
649
+ "syntax" : {
650
+ "type" : {
651
+ "basetype" : "OctetString",
652
+ "ranges" : [
653
+ {
654
+ "min" : "0",
655
+ "max" : "65535"
656
+ },
657
+ ],
658
+ "range" : {
659
+ "min" : "0",
660
+ "max" : "65535"
661
+ },
662
+ },
663
+ },
664
+ "access" : "readwrite",
665
+ "description" :
666
+ """An optional parameter used by the application protocol.
667
+ For DNS, this would be the hostname or IP. For HTTP,
668
+ this would be the URL. For nntp, this would be the
669
+ news group. For TCP, this would be the port number.
670
+ For SMTP, this would be the recipient (and could
671
+ assume the message is predefined).""",
672
+ }, # column
673
+ "sspmSourceProfileOwner" : {
674
+ "nodetype" : "column",
675
+ "moduleName" : "SSPM-MIB",
676
+ "oid" : "1.3.6.1.2.1.16.28.1.2.1.1.16",
677
+ "status" : "current",
678
+ "syntax" : {
679
+ "type" : { "module" :"RMON-MIB", "name" : "OwnerString"},
680
+ },
681
+ "access" : "readwrite",
682
+ "description" :
683
+ """Name of the management station/application that
684
+ set up the profile.""",
685
+ }, # column
686
+ "sspmSourceProfileStorageType" : {
687
+ "nodetype" : "column",
688
+ "moduleName" : "SSPM-MIB",
689
+ "oid" : "1.3.6.1.2.1.16.28.1.2.1.1.17",
690
+ "status" : "current",
691
+ "syntax" : {
692
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
693
+ },
694
+ "access" : "readwrite",
695
+ "description" :
696
+ """The storage type of this sspmSourceProfileEntry. If the
697
+ value of this object is 'permanent', no objects in this row
698
+ need to be writable.""",
699
+ }, # column
700
+ "sspmSourceProfileStatus" : {
701
+ "nodetype" : "column",
702
+ "moduleName" : "SSPM-MIB",
703
+ "oid" : "1.3.6.1.2.1.16.28.1.2.1.1.18",
704
+ "status" : "current",
705
+ "syntax" : {
706
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
707
+ },
708
+ "access" : "readwrite",
709
+ "description" :
710
+ """Status of this profile.
711
+
712
+ An entry may not exist in the active state unless all
713
+ objects in the entry have an appropriate value.
714
+
715
+ Once this object is set to active(1), no objects in the
716
+ sspmSourceProfileTable can be changed.""",
717
+ }, # column
718
+ "sspmSourceControlTable" : {
719
+ "nodetype" : "table",
720
+ "moduleName" : "SSPM-MIB",
721
+ "oid" : "1.3.6.1.2.1.16.28.1.2.2",
722
+ "status" : "current",
723
+ "description" :
724
+ """The table of SSPM measurements configured.""",
725
+ }, # table
726
+ "sspmSourceControlEntry" : {
727
+ "nodetype" : "row",
728
+ "moduleName" : "SSPM-MIB",
729
+ "oid" : "1.3.6.1.2.1.16.28.1.2.2.1",
730
+ "create" : "true",
731
+ "status" : "current",
732
+ "linkage" : [
733
+ "sspmSourceControlInstance",
734
+ ],
735
+ "description" :
736
+ """Details about a particular SSPM configuration.""",
737
+ }, # row
738
+ "sspmSourceControlInstance" : {
739
+ "nodetype" : "column",
740
+ "moduleName" : "SSPM-MIB",
741
+ "oid" : "1.3.6.1.2.1.16.28.1.2.2.1.1",
742
+ "status" : "current",
743
+ "syntax" : {
744
+ "type" : {
745
+ "basetype" : "Unsigned32",
746
+ "ranges" : [
747
+ {
748
+ "min" : "1",
749
+ "max" : "65535"
750
+ },
751
+ ],
752
+ "range" : {
753
+ "min" : "1",
754
+ "max" : "65535"
755
+ },
756
+ },
757
+ },
758
+ "access" : "noaccess",
759
+ "description" :
760
+ """An arbitrary index.""",
761
+ }, # column
762
+ "sspmSourceControlProfile" : {
763
+ "nodetype" : "column",
764
+ "moduleName" : "SSPM-MIB",
765
+ "oid" : "1.3.6.1.2.1.16.28.1.2.2.1.2",
766
+ "status" : "current",
767
+ "syntax" : {
768
+ "type" : {
769
+ "basetype" : "Integer32",
770
+ "ranges" : [
771
+ {
772
+ "min" : "1",
773
+ "max" : "65535"
774
+ },
775
+ ],
776
+ "range" : {
777
+ "min" : "1",
778
+ "max" : "65535"
779
+ },
780
+ },
781
+ },
782
+ "access" : "readwrite",
783
+ "description" :
784
+ """A pointer to the profile (sspmSourceProfileEntry) that
785
+ this control entry uses to define the test being
786
+ performed.""",
787
+ }, # column
788
+ "sspmSourceControlSrc" : {
789
+ "nodetype" : "column",
790
+ "moduleName" : "SSPM-MIB",
791
+ "oid" : "1.3.6.1.2.1.16.28.1.2.2.1.3",
792
+ "status" : "current",
793
+ "syntax" : {
794
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndexOrZero"},
795
+ },
796
+ "access" : "readwrite",
797
+ "description" :
798
+ """The ifIndex where the packet should originate from the
799
+ probe (if it matters). A value of zero indicates that
800
+ it does not matter and that the device decides.""",
801
+ }, # column
802
+ "sspmSourceControlDestAddrType" : {
803
+ "nodetype" : "column",
804
+ "moduleName" : "SSPM-MIB",
805
+ "oid" : "1.3.6.1.2.1.16.28.1.2.2.1.4",
806
+ "status" : "current",
807
+ "syntax" : {
808
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
809
+ },
810
+ "access" : "readwrite",
811
+ "description" :
812
+ """The type of Internet address by which the destination
813
+ is accessed.""",
814
+ }, # column
815
+ "sspmSourceControlDestAddr" : {
816
+ "nodetype" : "column",
817
+ "moduleName" : "SSPM-MIB",
818
+ "oid" : "1.3.6.1.2.1.16.28.1.2.2.1.5",
819
+ "status" : "current",
820
+ "syntax" : {
821
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
822
+ },
823
+ "access" : "readwrite",
824
+ "description" :
825
+ """The Internet address for the destination. The formatting
826
+ of this object is controlled by the
827
+ sspmSourceControlDestAddrType object above.
828
+
829
+
830
+
831
+
832
+ When this object contains a DNS name, then the name is
833
+ resolved to an address each time measurement is to be made.
834
+ Further, the agent should not cache this address,
835
+ but instead should perform the resolution prior to each
836
+ measurement.""",
837
+ }, # column
838
+ "sspmSourceControlEnabled" : {
839
+ "nodetype" : "column",
840
+ "moduleName" : "SSPM-MIB",
841
+ "oid" : "1.3.6.1.2.1.16.28.1.2.2.1.6",
842
+ "status" : "current",
843
+ "syntax" : {
844
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
845
+ },
846
+ "access" : "readwrite",
847
+ "description" :
848
+ """When set to 'true', this test is enabled. When set to
849
+ 'false', it is disabled.""",
850
+ }, # column
851
+ "sspmSourceControlTimeOut" : {
852
+ "nodetype" : "column",
853
+ "moduleName" : "SSPM-MIB",
854
+ "oid" : "1.3.6.1.2.1.16.28.1.2.2.1.7",
855
+ "status" : "current",
856
+ "syntax" : {
857
+ "type" : { "module" :"SSPM-MIB", "name" : "SspmMicroSeconds"},
858
+ },
859
+ "access" : "readwrite",
860
+ "description" :
861
+ """Timeout value for the measurement response. If no
862
+ response is received in the time specified, then
863
+ the test fails.""",
864
+ }, # column
865
+ "sspmSourceControlSamplingDist" : {
866
+ "nodetype" : "column",
867
+ "moduleName" : "SSPM-MIB",
868
+ "oid" : "1.3.6.1.2.1.16.28.1.2.2.1.8",
869
+ "status" : "current",
870
+ "syntax" : {
871
+ "type" : {
872
+ "basetype" : "Enumeration",
873
+ "deterministic" : {
874
+ "nodetype" : "namednumber",
875
+ "number" : "1"
876
+ },
877
+ "poisson" : {
878
+ "nodetype" : "namednumber",
879
+ "number" : "2"
880
+ },
881
+ },
882
+ },
883
+ "access" : "readwrite",
884
+ "description" :
885
+ """When this attribute is set to 'deterministic', then
886
+ packets are generated at with a fixed inter-packet
887
+ injection time specified by sspmSourceFrequency.
888
+
889
+ When this attribute is set to 'Poisson', then packets
890
+ are generated with inter-packet injection times sampled
891
+ from an exponential distribution with the single
892
+ distributional parameter determined by the inverse
893
+ frequency).""",
894
+ }, # column
895
+ "sspmSourceControlFrequency" : {
896
+ "nodetype" : "column",
897
+ "moduleName" : "SSPM-MIB",
898
+ "oid" : "1.3.6.1.2.1.16.28.1.2.2.1.9",
899
+ "status" : "current",
900
+ "syntax" : {
901
+ "type" : { "module" :"SSPM-MIB", "name" : "SspmMicroSeconds"},
902
+ },
903
+ "access" : "readwrite",
904
+ "description" :
905
+ """The inverse of this value is the rate at which packets
906
+ are generated. Refer to sspmSourceSamplingDistribution.
907
+ If the value set is less than the value of
908
+ sspmGeneralMinFrequency, then the set will fail with an
909
+ error-status of 'inconsistentValue'.""",
910
+ }, # column
911
+ "sspmSourceControlFirstSeqNum" : {
912
+ "nodetype" : "column",
913
+ "moduleName" : "SSPM-MIB",
914
+ "oid" : "1.3.6.1.2.1.16.28.1.2.2.1.10",
915
+ "status" : "current",
916
+ "syntax" : {
917
+ "type" : { "module" :"", "name" : "Unsigned32"},
918
+ },
919
+ "access" : "readwrite",
920
+ "description" :
921
+ """The first sequence number of packets to be transmitted.""",
922
+ }, # column
923
+ "sspmSourceControlLastSeqNum" : {
924
+ "nodetype" : "column",
925
+ "moduleName" : "SSPM-MIB",
926
+ "oid" : "1.3.6.1.2.1.16.28.1.2.2.1.11",
927
+ "status" : "current",
928
+ "syntax" : {
929
+ "type" : { "module" :"", "name" : "Unsigned32"},
930
+ },
931
+ "access" : "readonly",
932
+ "description" :
933
+ """The last sequence number transmitted. This value is updated
934
+ by the agent after packet generation.""",
935
+ }, # column
936
+ "sspmSourceControlOwner" : {
937
+ "nodetype" : "column",
938
+ "moduleName" : "SSPM-MIB",
939
+ "oid" : "1.3.6.1.2.1.16.28.1.2.2.1.12",
940
+ "status" : "current",
941
+ "syntax" : {
942
+ "type" : { "module" :"RMON-MIB", "name" : "OwnerString"},
943
+ },
944
+ "access" : "readwrite",
945
+ "description" :
946
+ """Name of the management station/application that set
947
+ up the test.""",
948
+ }, # column
949
+ "sspmSourceControlStorageType" : {
950
+ "nodetype" : "column",
951
+ "moduleName" : "SSPM-MIB",
952
+ "oid" : "1.3.6.1.2.1.16.28.1.2.2.1.13",
953
+ "status" : "current",
954
+ "syntax" : {
955
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
956
+ },
957
+ "access" : "readwrite",
958
+ "description" :
959
+ """The storage type of this sspmSourceControlEntry. If the
960
+ value of this object is 'permanent', no objects in this row
961
+ need to be writable.""",
962
+ }, # column
963
+ "sspmSourceControlStatus" : {
964
+ "nodetype" : "column",
965
+ "moduleName" : "SSPM-MIB",
966
+ "oid" : "1.3.6.1.2.1.16.28.1.2.2.1.14",
967
+ "status" : "current",
968
+ "syntax" : {
969
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
970
+ },
971
+ "access" : "readwrite",
972
+ "description" :
973
+ """Status of this source control entry.
974
+
975
+ An entry may not exist in the active state unless all
976
+ objects in the entry have an appropriate value.
977
+
978
+ When this attribute has the value of
979
+ 'active', none of the read-write or read-create attributes
980
+ in this table may be modified, with the exception of
981
+ sspmSourceControlEnabled.""",
982
+ }, # column
983
+ "sspmSink" : {
984
+ "nodetype" : "node",
985
+ "moduleName" : "SSPM-MIB",
986
+ "oid" : "1.3.6.1.2.1.16.28.1.5",
987
+ }, # node
988
+ "sspmSinkTable" : {
989
+ "nodetype" : "table",
990
+ "moduleName" : "SSPM-MIB",
991
+ "oid" : "1.3.6.1.2.1.16.28.1.5.1",
992
+ "status" : "current",
993
+ "description" :
994
+ """A table configuring the sink for measurements.""",
995
+ }, # table
996
+ "sspmSinkEntry" : {
997
+ "nodetype" : "row",
998
+ "moduleName" : "SSPM-MIB",
999
+ "oid" : "1.3.6.1.2.1.16.28.1.5.1.1",
1000
+ "create" : "true",
1001
+ "status" : "current",
1002
+ "linkage" : [
1003
+ "sspmSinkInstance",
1004
+ ],
1005
+ "description" :
1006
+ """The details of a particular sink entry. If the measurement
1007
+ is a round-trip type, then the sink entry will be on the
1008
+ same probe as the corresponding sspmSourceEntry. If the
1009
+ measurement is a one-way, type then the sink entry will be
1010
+ on a different probe.""",
1011
+ }, # row
1012
+ "sspmSinkInstance" : {
1013
+ "nodetype" : "column",
1014
+ "moduleName" : "SSPM-MIB",
1015
+ "oid" : "1.3.6.1.2.1.16.28.1.5.1.1.1",
1016
+ "status" : "current",
1017
+ "syntax" : {
1018
+ "type" : {
1019
+ "basetype" : "Unsigned32",
1020
+ "ranges" : [
1021
+ {
1022
+ "min" : "1",
1023
+ "max" : "65535"
1024
+ },
1025
+ ],
1026
+ "range" : {
1027
+ "min" : "1",
1028
+ "max" : "65535"
1029
+ },
1030
+ },
1031
+ },
1032
+ "access" : "noaccess",
1033
+ "description" :
1034
+ """An index. When the measurement is for a round-trip
1035
+ measurement, then this table entry is on the same probe as
1036
+ the corresponding sspmSourceEntry, and the value of this
1037
+ attribute should correspond to the value of
1038
+ sspmSourceInstance. Management applications configuring
1039
+ sinks for one-way measurements could define some
1040
+ scheme whereby the sspmSinkInstance is unique across
1041
+ all probes. Note that the unique key to this entry is
1042
+ also constructed with sspmSinkType,
1043
+ sspmSinkSourceAddressType, and sspmSinkSourceAddress.
1044
+ To make the implementation simpler, those other
1045
+ attributes are not included in the index but uniqueness
1046
+ is still needed to receive all the packets.""",
1047
+ }, # column
1048
+ "sspmSinkType" : {
1049
+ "nodetype" : "column",
1050
+ "moduleName" : "SSPM-MIB",
1051
+ "oid" : "1.3.6.1.2.1.16.28.1.5.1.1.2",
1052
+ "status" : "current",
1053
+ "syntax" : {
1054
+ "type" : { "module" :"APM-MIB", "name" : "AppLocalIndex"},
1055
+ },
1056
+ "access" : "readwrite",
1057
+ "description" :
1058
+ """The AppLocalIndex value that uniquely identifies the
1059
+ measurement per the APM-MIB. In order to create a row
1060
+ in this table, there must be a corresponding row in the
1061
+ sspmCapabilitiesTable. If there is no corresponding
1062
+ row in the sspmCapabilitiestable, then the agent will
1063
+ return an error-status of 'inconsistentValue'.""",
1064
+ }, # column
1065
+ "sspmSinkSourceAddressType" : {
1066
+ "nodetype" : "column",
1067
+ "moduleName" : "SSPM-MIB",
1068
+ "oid" : "1.3.6.1.2.1.16.28.1.5.1.1.3",
1069
+ "status" : "current",
1070
+ "syntax" : {
1071
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
1072
+ },
1073
+ "access" : "readwrite",
1074
+ "description" :
1075
+ """The type of Internet address of the source.""",
1076
+ }, # column
1077
+ "sspmSinkSourceAddress" : {
1078
+ "nodetype" : "column",
1079
+ "moduleName" : "SSPM-MIB",
1080
+ "oid" : "1.3.6.1.2.1.16.28.1.5.1.1.4",
1081
+ "status" : "current",
1082
+ "syntax" : {
1083
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
1084
+ },
1085
+ "access" : "readwrite",
1086
+ "description" :
1087
+ """The Internet address of the source. The formatting
1088
+ of this object is controlled by the sspmSinkSourceAddressType
1089
+ object above.
1090
+
1091
+ This object should be set only to a valid device address
1092
+ that has been administratively configured into the
1093
+ device. If a set attempts to set this object to an
1094
+ address that does not belong (i.e., is not administratively
1095
+ configured into the device), the set should fail, and the
1096
+ agent should return a error-status of 'inconsistentValue'.""",
1097
+ }, # column
1098
+ "sspmSinkExpectedRate" : {
1099
+ "nodetype" : "column",
1100
+ "moduleName" : "SSPM-MIB",
1101
+ "oid" : "1.3.6.1.2.1.16.28.1.5.1.1.5",
1102
+ "status" : "current",
1103
+ "syntax" : {
1104
+ "type" : { "module" :"SSPM-MIB", "name" : "SspmMicroSeconds"},
1105
+ },
1106
+ "access" : "readwrite",
1107
+ "description" :
1108
+ """The expected rate at which packets will arrive.""",
1109
+ }, # column
1110
+ "sspmSinkEnable" : {
1111
+ "nodetype" : "column",
1112
+ "moduleName" : "SSPM-MIB",
1113
+ "oid" : "1.3.6.1.2.1.16.28.1.5.1.1.6",
1114
+ "status" : "current",
1115
+ "syntax" : {
1116
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1117
+ },
1118
+ "access" : "readwrite",
1119
+ "description" :
1120
+ """Indicates if the sink is enabled or not.""",
1121
+ }, # column
1122
+ "sspmSinkExpectedFirstSequenceNum" : {
1123
+ "nodetype" : "column",
1124
+ "moduleName" : "SSPM-MIB",
1125
+ "oid" : "1.3.6.1.2.1.16.28.1.5.1.1.7",
1126
+ "status" : "current",
1127
+ "syntax" : {
1128
+ "type" : { "module" :"", "name" : "Unsigned32"},
1129
+ },
1130
+ "access" : "readwrite",
1131
+ "description" :
1132
+ """The expected first sequence number of packets.
1133
+ This is used by the sink to determine if packets
1134
+ were lost at the initiation of the test.""",
1135
+ }, # column
1136
+ "sspmSinkLastSequenceNumber" : {
1137
+ "nodetype" : "column",
1138
+ "moduleName" : "SSPM-MIB",
1139
+ "oid" : "1.3.6.1.2.1.16.28.1.5.1.1.8",
1140
+ "status" : "current",
1141
+ "syntax" : {
1142
+ "type" : { "module" :"", "name" : "Unsigned32"},
1143
+ },
1144
+ "access" : "readonly",
1145
+ "description" :
1146
+ """The last sequence number received.""",
1147
+ }, # column
1148
+ "sspmSinkLastSequenceInvalid" : {
1149
+ "nodetype" : "column",
1150
+ "moduleName" : "SSPM-MIB",
1151
+ "oid" : "1.3.6.1.2.1.16.28.1.5.1.1.9",
1152
+ "status" : "current",
1153
+ "syntax" : {
1154
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1155
+ },
1156
+ "access" : "readonly",
1157
+ "description" :
1158
+ """The number of packets that arrived whose
1159
+ sequence number was not one plus the value of
1160
+ sspmSinkLastSequenceNumber.""",
1161
+ }, # column
1162
+ "sspmSinkStorageType" : {
1163
+ "nodetype" : "column",
1164
+ "moduleName" : "SSPM-MIB",
1165
+ "oid" : "1.3.6.1.2.1.16.28.1.5.1.1.10",
1166
+ "status" : "current",
1167
+ "syntax" : {
1168
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
1169
+ },
1170
+ "access" : "readwrite",
1171
+ "description" :
1172
+ """The storage type of this sspmSinkEntry. If the value
1173
+ of this object is 'permanent', no objects in this row
1174
+ need to be writable.""",
1175
+ }, # column
1176
+ "sspmSinkStatus" : {
1177
+ "nodetype" : "column",
1178
+ "moduleName" : "SSPM-MIB",
1179
+ "oid" : "1.3.6.1.2.1.16.28.1.5.1.1.11",
1180
+ "status" : "current",
1181
+ "syntax" : {
1182
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1183
+ },
1184
+ "access" : "readwrite",
1185
+ "description" :
1186
+ """Status of this conceptual row.
1187
+ An entry may not exist in the active state unless all
1188
+ objects in the entry have an appropriate value.
1189
+
1190
+ Once this object is set to active(1), no objects with
1191
+ MAX-ACCESS of read-create in the sspmSinkTable can
1192
+ be changed.""",
1193
+ }, # column
1194
+ "sspmMIBNotifications" : {
1195
+ "nodetype" : "node",
1196
+ "moduleName" : "SSPM-MIB",
1197
+ "oid" : "1.3.6.1.2.1.16.28.2",
1198
+ }, # node
1199
+ "sspmMIBConformance" : {
1200
+ "nodetype" : "node",
1201
+ "moduleName" : "SSPM-MIB",
1202
+ "oid" : "1.3.6.1.2.1.16.28.3",
1203
+ }, # node
1204
+ "sspmCompliances" : {
1205
+ "nodetype" : "node",
1206
+ "moduleName" : "SSPM-MIB",
1207
+ "oid" : "1.3.6.1.2.1.16.28.3.1",
1208
+ }, # node
1209
+ "sspmGroups" : {
1210
+ "nodetype" : "node",
1211
+ "moduleName" : "SSPM-MIB",
1212
+ "oid" : "1.3.6.1.2.1.16.28.3.2",
1213
+ }, # node
1214
+ }, # nodes
1215
+
1216
+ "groups" : {
1217
+ "sspmGeneralGroup" : {
1218
+ "nodetype" : "group",
1219
+ "moduleName" : "SSPM-MIB",
1220
+ "oid" : "1.3.6.1.2.1.16.28.3.2.1",
1221
+ "status" : "current",
1222
+ "members" : {
1223
+ "sspmGeneralClockResolution" : {
1224
+ "nodetype" : "member",
1225
+ "module" : "SSPM-MIB"
1226
+ },
1227
+ "sspmGeneralClockMaxSkew" : {
1228
+ "nodetype" : "member",
1229
+ "module" : "SSPM-MIB"
1230
+ },
1231
+ "sspmGeneralClockSource" : {
1232
+ "nodetype" : "member",
1233
+ "module" : "SSPM-MIB"
1234
+ },
1235
+ "sspmGeneralMinFrequency" : {
1236
+ "nodetype" : "member",
1237
+ "module" : "SSPM-MIB"
1238
+ },
1239
+ "sspmCapabilitiesInstance" : {
1240
+ "nodetype" : "member",
1241
+ "module" : "SSPM-MIB"
1242
+ },
1243
+ }, # members
1244
+ "description" :
1245
+ """The objects in the SSPM General Group.""",
1246
+ }, # group
1247
+ "sspmSourceGroup" : {
1248
+ "nodetype" : "group",
1249
+ "moduleName" : "SSPM-MIB",
1250
+ "oid" : "1.3.6.1.2.1.16.28.3.2.2",
1251
+ "status" : "current",
1252
+ "members" : {
1253
+ "sspmSourceProfileType" : {
1254
+ "nodetype" : "member",
1255
+ "module" : "SSPM-MIB"
1256
+ },
1257
+ "sspmSourceProfilePacketSize" : {
1258
+ "nodetype" : "member",
1259
+ "module" : "SSPM-MIB"
1260
+ },
1261
+ "sspmSourceProfilePacketFillType" : {
1262
+ "nodetype" : "member",
1263
+ "module" : "SSPM-MIB"
1264
+ },
1265
+ "sspmSourceProfilePacketFillValue" : {
1266
+ "nodetype" : "member",
1267
+ "module" : "SSPM-MIB"
1268
+ },
1269
+ "sspmSourceProfileTOS" : {
1270
+ "nodetype" : "member",
1271
+ "module" : "SSPM-MIB"
1272
+ },
1273
+ "sspmSourceProfileFlowLabel" : {
1274
+ "nodetype" : "member",
1275
+ "module" : "SSPM-MIB"
1276
+ },
1277
+ "sspmSourceProfileLooseSrcRteFill" : {
1278
+ "nodetype" : "member",
1279
+ "module" : "SSPM-MIB"
1280
+ },
1281
+ "sspmSourceProfileLooseSrcRteLen" : {
1282
+ "nodetype" : "member",
1283
+ "module" : "SSPM-MIB"
1284
+ },
1285
+ "sspmSourceProfileTTL" : {
1286
+ "nodetype" : "member",
1287
+ "module" : "SSPM-MIB"
1288
+ },
1289
+ "sspmSourceProfileNoFrag" : {
1290
+ "nodetype" : "member",
1291
+ "module" : "SSPM-MIB"
1292
+ },
1293
+ "sspmSourceProfile8021Tagging" : {
1294
+ "nodetype" : "member",
1295
+ "module" : "SSPM-MIB"
1296
+ },
1297
+ "sspmSourceProfileUsername" : {
1298
+ "nodetype" : "member",
1299
+ "module" : "SSPM-MIB"
1300
+ },
1301
+ "sspmSourceProfilePassword" : {
1302
+ "nodetype" : "member",
1303
+ "module" : "SSPM-MIB"
1304
+ },
1305
+ "sspmSourceProfileParameter" : {
1306
+ "nodetype" : "member",
1307
+ "module" : "SSPM-MIB"
1308
+ },
1309
+ "sspmSourceProfileOwner" : {
1310
+ "nodetype" : "member",
1311
+ "module" : "SSPM-MIB"
1312
+ },
1313
+ "sspmSourceProfileStorageType" : {
1314
+ "nodetype" : "member",
1315
+ "module" : "SSPM-MIB"
1316
+ },
1317
+ "sspmSourceProfileStatus" : {
1318
+ "nodetype" : "member",
1319
+ "module" : "SSPM-MIB"
1320
+ },
1321
+ "sspmSourceControlProfile" : {
1322
+ "nodetype" : "member",
1323
+ "module" : "SSPM-MIB"
1324
+ },
1325
+ "sspmSourceControlSrc" : {
1326
+ "nodetype" : "member",
1327
+ "module" : "SSPM-MIB"
1328
+ },
1329
+ "sspmSourceControlDestAddrType" : {
1330
+ "nodetype" : "member",
1331
+ "module" : "SSPM-MIB"
1332
+ },
1333
+ "sspmSourceControlDestAddr" : {
1334
+ "nodetype" : "member",
1335
+ "module" : "SSPM-MIB"
1336
+ },
1337
+ "sspmSourceControlEnabled" : {
1338
+ "nodetype" : "member",
1339
+ "module" : "SSPM-MIB"
1340
+ },
1341
+ "sspmSourceControlTimeOut" : {
1342
+ "nodetype" : "member",
1343
+ "module" : "SSPM-MIB"
1344
+ },
1345
+ "sspmSourceControlSamplingDist" : {
1346
+ "nodetype" : "member",
1347
+ "module" : "SSPM-MIB"
1348
+ },
1349
+ "sspmSourceControlFrequency" : {
1350
+ "nodetype" : "member",
1351
+ "module" : "SSPM-MIB"
1352
+ },
1353
+ "sspmSourceControlFirstSeqNum" : {
1354
+ "nodetype" : "member",
1355
+ "module" : "SSPM-MIB"
1356
+ },
1357
+ "sspmSourceControlLastSeqNum" : {
1358
+ "nodetype" : "member",
1359
+ "module" : "SSPM-MIB"
1360
+ },
1361
+ "sspmSourceControlOwner" : {
1362
+ "nodetype" : "member",
1363
+ "module" : "SSPM-MIB"
1364
+ },
1365
+ "sspmSourceControlStorageType" : {
1366
+ "nodetype" : "member",
1367
+ "module" : "SSPM-MIB"
1368
+ },
1369
+ "sspmSourceControlStatus" : {
1370
+ "nodetype" : "member",
1371
+ "module" : "SSPM-MIB"
1372
+ },
1373
+ }, # members
1374
+ "description" :
1375
+ """The objects in the SSPM Source Group.""",
1376
+ }, # group
1377
+ "sspmUserPassGroup" : {
1378
+ "nodetype" : "group",
1379
+ "moduleName" : "SSPM-MIB",
1380
+ "oid" : "1.3.6.1.2.1.16.28.3.2.3",
1381
+ "status" : "current",
1382
+ "members" : {
1383
+ "sspmSourceProfileUsername" : {
1384
+ "nodetype" : "member",
1385
+ "module" : "SSPM-MIB"
1386
+ },
1387
+ "sspmSourceProfilePassword" : {
1388
+ "nodetype" : "member",
1389
+ "module" : "SSPM-MIB"
1390
+ },
1391
+ }, # members
1392
+ "description" :
1393
+ """The objects in the SSPM Username and password group.""",
1394
+ }, # group
1395
+ "sspmSinkGroup" : {
1396
+ "nodetype" : "group",
1397
+ "moduleName" : "SSPM-MIB",
1398
+ "oid" : "1.3.6.1.2.1.16.28.3.2.4",
1399
+ "status" : "current",
1400
+ "members" : {
1401
+ "sspmSinkType" : {
1402
+ "nodetype" : "member",
1403
+ "module" : "SSPM-MIB"
1404
+ },
1405
+ "sspmSinkSourceAddressType" : {
1406
+ "nodetype" : "member",
1407
+ "module" : "SSPM-MIB"
1408
+ },
1409
+ "sspmSinkSourceAddress" : {
1410
+ "nodetype" : "member",
1411
+ "module" : "SSPM-MIB"
1412
+ },
1413
+ "sspmSinkExpectedRate" : {
1414
+ "nodetype" : "member",
1415
+ "module" : "SSPM-MIB"
1416
+ },
1417
+ "sspmSinkEnable" : {
1418
+ "nodetype" : "member",
1419
+ "module" : "SSPM-MIB"
1420
+ },
1421
+ "sspmSinkExpectedFirstSequenceNum" : {
1422
+ "nodetype" : "member",
1423
+ "module" : "SSPM-MIB"
1424
+ },
1425
+ "sspmSinkLastSequenceNumber" : {
1426
+ "nodetype" : "member",
1427
+ "module" : "SSPM-MIB"
1428
+ },
1429
+ "sspmSinkLastSequenceInvalid" : {
1430
+ "nodetype" : "member",
1431
+ "module" : "SSPM-MIB"
1432
+ },
1433
+ "sspmSinkStorageType" : {
1434
+ "nodetype" : "member",
1435
+ "module" : "SSPM-MIB"
1436
+ },
1437
+ "sspmSinkStatus" : {
1438
+ "nodetype" : "member",
1439
+ "module" : "SSPM-MIB"
1440
+ },
1441
+ }, # members
1442
+ "description" :
1443
+ """The objects in the SSPM Sink Group.""",
1444
+ }, # group
1445
+ }, # groups
1446
+
1447
+ "compliances" : {
1448
+ "sspmGeneralCompliance" : {
1449
+ "nodetype" : "compliance",
1450
+ "moduleName" : "SSPM-MIB",
1451
+ "oid" : "1.3.6.1.2.1.16.28.3.1.1",
1452
+ "status" : "current",
1453
+ "description" :
1454
+ """A general compliance that allows all things to be optional.""",
1455
+ "requires" : {
1456
+ "sspmGeneralGroup" : {
1457
+ "nodetype" : "mandatory",
1458
+ "module" : "SSPM-MIB"
1459
+ },
1460
+ "sspmSourceGroup" : {
1461
+ "nodetype" : "optional",
1462
+ "module" : "SSPM-MIB",
1463
+ "description" :
1464
+ """The SSPM Source Group is optional.""",
1465
+ },
1466
+ "sspmSinkGroup" : {
1467
+ "nodetype" : "optional",
1468
+ "module" : "SSPM-MIB",
1469
+ "description" :
1470
+ """The SSPM Sink Group is optional.""",
1471
+ },
1472
+ "sspmUserPassGroup" : {
1473
+ "nodetype" : "optional",
1474
+ "module" : "SSPM-MIB",
1475
+ "description" :
1476
+ """The SSPM User Pass Group is optional.""",
1477
+ },
1478
+ }, # requires
1479
+ }, # compliance
1480
+ "sspmSourceFullCompliance" : {
1481
+ "nodetype" : "compliance",
1482
+ "moduleName" : "SSPM-MIB",
1483
+ "oid" : "1.3.6.1.2.1.16.28.3.1.2",
1484
+ "status" : "current",
1485
+ "description" :
1486
+ """A source compliance. Use this compliance when implementing
1487
+ a traffic-source-only device. This is useful for implementing
1488
+ devices that probe other devices for intrusive application
1489
+ monitoring. It is also useful for implementing the source
1490
+ of one-way tests used with a sink-only device.""",
1491
+ "requires" : {
1492
+ "sspmGeneralGroup" : {
1493
+ "nodetype" : "mandatory",
1494
+ "module" : "SSPM-MIB"
1495
+ },
1496
+ "sspmSourceGroup" : {
1497
+ "nodetype" : "mandatory",
1498
+ "module" : "SSPM-MIB"
1499
+ },
1500
+ "sspmUserPassGroup" : {
1501
+ "nodetype" : "optional",
1502
+ "module" : "SSPM-MIB",
1503
+ "description" :
1504
+ """The SSPM User Pass Group is optional.""",
1505
+ },
1506
+ }, # requires
1507
+ }, # compliance
1508
+ "sspmSinkFullCompliance" : {
1509
+ "nodetype" : "compliance",
1510
+ "moduleName" : "SSPM-MIB",
1511
+ "oid" : "1.3.6.1.2.1.16.28.3.1.3",
1512
+ "status" : "current",
1513
+ "description" :
1514
+ """A sink-only compliance. Use this compliance when implementing a
1515
+ sink-only device. This is useful for devices to receive one-way
1516
+ measurements.""",
1517
+ "requires" : {
1518
+ "sspmGeneralGroup" : {
1519
+ "nodetype" : "mandatory",
1520
+ "module" : "SSPM-MIB"
1521
+ },
1522
+ "sspmSinkGroup" : {
1523
+ "nodetype" : "mandatory",
1524
+ "module" : "SSPM-MIB"
1525
+ },
1526
+ }, # requires
1527
+ }, # compliance
1528
+ }, # compliances
1529
+
1530
+ }