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,2635 @@
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 DISMAN-PING-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/DISMAN-PING-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "DISMAN-PING-MIB",
11
+
12
+ "DISMAN-PING-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF Distributed Management Working Group""",
17
+ "contact" :
18
+ """Juergen Quittek
19
+
20
+ NEC Europe Ltd.
21
+ Network Laboratories
22
+ Kurfuersten-Anlage 36
23
+ 69115 Heidelberg
24
+ Germany
25
+
26
+ Phone: +49 6221 4342-115
27
+
28
+
29
+
30
+ Email: quittek@netlab.nec.de""",
31
+ "description" :
32
+ """The Ping MIB (DISMAN-PING-MIB) provides the capability of
33
+ controlling the use of the ping function at a remote
34
+ host.
35
+
36
+ Copyright (C) The Internet Society (2006). This version of
37
+ this MIB module is part of RFC 4560; see the RFC itself for
38
+ full legal notices.""",
39
+ "revisions" : (
40
+ {
41
+ "date" : "2006-06-13 00:00",
42
+ "description" :
43
+ """Updated version, published as RFC 4560.
44
+ - Correctly considered IPv6 in DESCRIPTION
45
+ clause of pingCtlDataSize
46
+ - Replaced references to RFC 2575 by RFC 3415
47
+ - Replaced references to RFC 2571 by RFC 3411
48
+ - Replaced references to RFC 2851 by RFC 4001
49
+ - Added DEFVAL { {} } to definition of
50
+ pingCtlTrapGeneration
51
+ - Changed DEFVAL of object pingCtlDescr from
52
+ DEFVAL { '00'H } to DEFVAL { ''H }
53
+ - Changed DEFVAL of object pingCtlSourceAddressType
54
+ from DEFVAL { ipv4 } to DEFVAL { unknown }
55
+ - Extended DESCRIPTION clause of pingResultsTable
56
+ describing re-initialization of entries
57
+ - Changed SYNTAX of pingResultsProbeResponses and
58
+ pingResultsSentProbes from Unsigned32 to Gauge32
59
+ - Changed status of pingCompliance to deprecated
60
+ - Added pingFullCompliance and pingMinimumCompliance
61
+ - Changed status of pingGroup and pingTimeStampGroup
62
+ to deprecated
63
+ - Added pingMinimumGroup, pingCtlRowStatusGroup,
64
+ and pingHistoryGroup""",
65
+ },
66
+ {
67
+ "date" : "2000-09-21 00:00",
68
+ "description" :
69
+ """Initial version, published as RFC 2925.""",
70
+ },
71
+ ),
72
+ "identity node" : "pingMIB",
73
+ },
74
+
75
+ "imports" : (
76
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
77
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
78
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
79
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
80
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
81
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
82
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
83
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-IDENTITY"},
84
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
85
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
86
+ {"module" : "SNMPv2-TC", "name" : "StorageType"},
87
+ {"module" : "SNMPv2-TC", "name" : "DateAndTime"},
88
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
89
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
90
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
91
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
92
+ {"module" : "IF-MIB", "name" : "InterfaceIndexOrZero"},
93
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
94
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddressType"},
95
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddress"},
96
+ ),
97
+
98
+ "typedefs" : {
99
+ "OperationResponseStatus" : {
100
+ "basetype" : "Enumeration",
101
+ "status" : "current",
102
+ "responseReceived" : {
103
+ "nodetype" : "namednumber",
104
+ "number" : "1"
105
+ },
106
+ "unknown" : {
107
+ "nodetype" : "namednumber",
108
+ "number" : "2"
109
+ },
110
+ "internalError" : {
111
+ "nodetype" : "namednumber",
112
+ "number" : "3"
113
+ },
114
+ "requestTimedOut" : {
115
+ "nodetype" : "namednumber",
116
+ "number" : "4"
117
+ },
118
+ "unknownDestinationAddress" : {
119
+ "nodetype" : "namednumber",
120
+ "number" : "5"
121
+ },
122
+ "noRouteToTarget" : {
123
+ "nodetype" : "namednumber",
124
+ "number" : "6"
125
+ },
126
+ "interfaceInactiveToTarget" : {
127
+ "nodetype" : "namednumber",
128
+ "number" : "7"
129
+ },
130
+ "arpFailure" : {
131
+ "nodetype" : "namednumber",
132
+ "number" : "8"
133
+ },
134
+ "maxConcurrentLimitReached" : {
135
+ "nodetype" : "namednumber",
136
+ "number" : "9"
137
+ },
138
+ "unableToResolveDnsName" : {
139
+ "nodetype" : "namednumber",
140
+ "number" : "10"
141
+ },
142
+ "invalidHostAddress" : {
143
+ "nodetype" : "namednumber",
144
+ "number" : "11"
145
+ },
146
+ "description" :
147
+ """Used to report the result of an operation:
148
+
149
+ responseReceived(1) - Operation is completed successfully.
150
+ unknown(2) - Operation failed due to unknown error.
151
+ internalError(3) - An implementation detected an error
152
+ in its own processing that caused an operation
153
+ to fail.
154
+ requestTimedOut(4) - Operation failed to receive a
155
+ valid reply within the time limit imposed on it.
156
+ unknownDestinationAddress(5) - Invalid destination
157
+ address.
158
+ noRouteToTarget(6) - Could not find a route to target.
159
+ interfaceInactiveToTarget(7) - The interface to be
160
+ used in sending a probe is inactive, and an
161
+ alternate route does not exist.
162
+ arpFailure(8) - Unable to resolve a target address to a
163
+ media-specific address.
164
+ maxConcurrentLimitReached(9) - The maximum number of
165
+ concurrent active operations would have been exceeded
166
+ if the corresponding operation was allowed.
167
+ unableToResolveDnsName(10) - The DNS name specified was
168
+ unable to be mapped to an IP address.
169
+ invalidHostAddress(11) - The IP address for a host
170
+ has been determined to be invalid. Examples of this
171
+ are broadcast or multicast addresses.""",
172
+ },
173
+ }, # typedefs
174
+
175
+ "nodes" : {
176
+ "pingMIB" : {
177
+ "nodetype" : "node",
178
+ "moduleName" : "DISMAN-PING-MIB",
179
+ "oid" : "1.3.6.1.2.1.80",
180
+ "status" : "current",
181
+ }, # node
182
+ "pingNotifications" : {
183
+ "nodetype" : "node",
184
+ "moduleName" : "DISMAN-PING-MIB",
185
+ "oid" : "1.3.6.1.2.1.80.0",
186
+ }, # node
187
+ "pingObjects" : {
188
+ "nodetype" : "node",
189
+ "moduleName" : "DISMAN-PING-MIB",
190
+ "oid" : "1.3.6.1.2.1.80.1",
191
+ }, # node
192
+ "pingMaxConcurrentRequests" : {
193
+ "nodetype" : "scalar",
194
+ "moduleName" : "DISMAN-PING-MIB",
195
+ "oid" : "1.3.6.1.2.1.80.1.1",
196
+ "status" : "current",
197
+ "syntax" : {
198
+ "type" : { "module" :"", "name" : "Unsigned32"},
199
+ },
200
+ "access" : "readwrite",
201
+ "default" : "10",
202
+ "units" : "requests",
203
+ "description" :
204
+ """The maximum number of concurrent active ping requests
205
+ that are allowed within an agent implementation. A value
206
+ of 0 for this object implies that there is no limit for
207
+ the number of concurrent active requests in effect.
208
+
209
+
210
+
211
+
212
+ The limit applies only to new requests being activated.
213
+ When a new value is set, the agent will continue processing
214
+ all the requests already active, even if their number
215
+ exceeds the limit just imposed.""",
216
+ }, # scalar
217
+ "pingCtlTable" : {
218
+ "nodetype" : "table",
219
+ "moduleName" : "DISMAN-PING-MIB",
220
+ "oid" : "1.3.6.1.2.1.80.1.2",
221
+ "status" : "current",
222
+ "description" :
223
+ """Defines the ping Control Table for providing, via SNMP,
224
+ the capability of performing ping operations at
225
+ a remote host. The results of these operations are
226
+ stored in the pingResultsTable and the
227
+ pingProbeHistoryTable.""",
228
+ }, # table
229
+ "pingCtlEntry" : {
230
+ "nodetype" : "row",
231
+ "moduleName" : "DISMAN-PING-MIB",
232
+ "oid" : "1.3.6.1.2.1.80.1.2.1",
233
+ "create" : "true",
234
+ "status" : "current",
235
+ "linkage" : [
236
+ "pingCtlOwnerIndex",
237
+ "pingCtlTestName",
238
+ ],
239
+ "description" :
240
+ """Defines an entry in the pingCtlTable. The first index
241
+ element, pingCtlOwnerIndex, is of type SnmpAdminString,
242
+ a textual convention that allows for use of the SNMPv3
243
+ View-Based Access Control Model (RFC 3415, VACM)
244
+ and that allows a management application to identify its
245
+ entries. The second index, pingCtlTestName (also an
246
+ SnmpAdminString), enables the same management
247
+ application to have multiple outstanding requests.""",
248
+ }, # row
249
+ "pingCtlOwnerIndex" : {
250
+ "nodetype" : "column",
251
+ "moduleName" : "DISMAN-PING-MIB",
252
+ "oid" : "1.3.6.1.2.1.80.1.2.1.1",
253
+ "status" : "current",
254
+ "syntax" : {
255
+ "type" : {
256
+ "basetype" : "OctetString",
257
+ "parent module" : {
258
+ "name" : "SNMP-FRAMEWORK-MIB",
259
+ "type" : "SnmpAdminString",
260
+ },
261
+ "ranges" : [
262
+ {
263
+ "min" : "0",
264
+ "max" : "32"
265
+ },
266
+ ],
267
+ "range" : {
268
+ "min" : "0",
269
+ "max" : "32"
270
+ },
271
+ },
272
+ },
273
+ "access" : "noaccess",
274
+ "description" :
275
+ """To facilitate the provisioning of access control by a
276
+ security administrator using the View-Based Access
277
+ Control Model (RFC 2575, VACM) for tables in which
278
+ multiple users may need to create or
279
+ modify entries independently, the initial index is used
280
+ as an 'owner index'. Such an initial index has a syntax
281
+ of SnmpAdminString and can thus be trivially mapped to a
282
+ securityName or groupName defined in VACM, in
283
+ accordance with a security policy.
284
+
285
+ When used in conjunction with such a security policy, all
286
+ entries in the table belonging to a particular user (or
287
+ group) will have the same value for this initial index.
288
+ For a given user's entries in a particular table, the
289
+ object identifiers for the information in these entries
290
+ will have the same subidentifiers (except for the 'column'
291
+ subidentifier) up to the end of the encoded owner index.
292
+ To configure VACM to permit access to this portion of the
293
+ table, one would create vacmViewTreeFamilyTable entries
294
+ with the value of vacmViewTreeFamilySubtree including
295
+ the owner index portion, and vacmViewTreeFamilyMask
296
+ 'wildcarding' the column subidentifier. More elaborate
297
+ configurations are possible.""",
298
+ }, # column
299
+ "pingCtlTestName" : {
300
+ "nodetype" : "column",
301
+ "moduleName" : "DISMAN-PING-MIB",
302
+ "oid" : "1.3.6.1.2.1.80.1.2.1.2",
303
+ "status" : "current",
304
+ "syntax" : {
305
+ "type" : {
306
+ "basetype" : "OctetString",
307
+ "parent module" : {
308
+ "name" : "SNMP-FRAMEWORK-MIB",
309
+ "type" : "SnmpAdminString",
310
+ },
311
+ "ranges" : [
312
+ {
313
+ "min" : "0",
314
+ "max" : "32"
315
+ },
316
+ ],
317
+ "range" : {
318
+ "min" : "0",
319
+ "max" : "32"
320
+ },
321
+ },
322
+ },
323
+ "access" : "noaccess",
324
+ "description" :
325
+ """The name of the ping test. This is locally unique, within
326
+ the scope of a pingCtlOwnerIndex.""",
327
+ }, # column
328
+ "pingCtlTargetAddressType" : {
329
+ "nodetype" : "column",
330
+ "moduleName" : "DISMAN-PING-MIB",
331
+ "oid" : "1.3.6.1.2.1.80.1.2.1.3",
332
+ "status" : "current",
333
+ "syntax" : {
334
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
335
+ },
336
+ "access" : "readwrite",
337
+ "default" : "unknown",
338
+ "description" :
339
+ """Specifies the type of host address to be used at a remote
340
+ host for performing a ping operation.""",
341
+ }, # column
342
+ "pingCtlTargetAddress" : {
343
+ "nodetype" : "column",
344
+ "moduleName" : "DISMAN-PING-MIB",
345
+ "oid" : "1.3.6.1.2.1.80.1.2.1.4",
346
+ "status" : "current",
347
+ "syntax" : {
348
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
349
+ },
350
+ "access" : "readwrite",
351
+ "default" : "",
352
+ "description" :
353
+ """Specifies the host address to be used at a remote host for
354
+ performing a ping operation. The host address type is
355
+ determined by the value of the corresponding
356
+ pingCtlTargetAddressType.
357
+
358
+ A value for this object MUST be set prior to transitioning
359
+ its corresponding pingCtlEntry to active(1) via
360
+ pingCtlRowStatus.""",
361
+ }, # column
362
+ "pingCtlDataSize" : {
363
+ "nodetype" : "column",
364
+ "moduleName" : "DISMAN-PING-MIB",
365
+ "oid" : "1.3.6.1.2.1.80.1.2.1.5",
366
+ "status" : "current",
367
+ "syntax" : {
368
+ "type" : {
369
+ "basetype" : "Unsigned32",
370
+ "ranges" : [
371
+ {
372
+ "min" : "0",
373
+ "max" : "65507"
374
+ },
375
+ ],
376
+ "range" : {
377
+ "min" : "0",
378
+ "max" : "65507"
379
+ },
380
+ },
381
+ },
382
+ "access" : "readwrite",
383
+ "default" : "0",
384
+ "units" : "octets",
385
+ "description" :
386
+ """Specifies the size of the data portion to be
387
+ transmitted in a ping operation, in octets. Whether this
388
+ value can be applied depends on the selected
389
+ implementation method for performing a ping operation,
390
+ indicated by pingCtlType in the same conceptual row.
391
+ If the method used allows applying the value contained
392
+
393
+
394
+
395
+ in this object, then it MUST be applied. If the specified
396
+ size is not appropriate for the chosen ping method, the
397
+ implementation SHOULD use whatever size (appropriate to
398
+ the method) is closest to the specified size.
399
+
400
+ The maximum value for this object was computed by
401
+ subtracting the smallest possible IP header size of
402
+ 20 octets (IPv4 header with no options) and the UDP
403
+ header size of 8 octets from the maximum IP packet size.
404
+ An IP packet has a maximum size of 65535 octets
405
+ (excluding IPv6 Jumbograms).""",
406
+ }, # column
407
+ "pingCtlTimeOut" : {
408
+ "nodetype" : "column",
409
+ "moduleName" : "DISMAN-PING-MIB",
410
+ "oid" : "1.3.6.1.2.1.80.1.2.1.6",
411
+ "status" : "current",
412
+ "syntax" : {
413
+ "type" : {
414
+ "basetype" : "Unsigned32",
415
+ "ranges" : [
416
+ {
417
+ "min" : "1",
418
+ "max" : "60"
419
+ },
420
+ ],
421
+ "range" : {
422
+ "min" : "1",
423
+ "max" : "60"
424
+ },
425
+ },
426
+ },
427
+ "access" : "readwrite",
428
+ "default" : "3",
429
+ "units" : "seconds",
430
+ "description" :
431
+ """Specifies the time-out value, in seconds, for a
432
+ remote ping operation.""",
433
+ }, # column
434
+ "pingCtlProbeCount" : {
435
+ "nodetype" : "column",
436
+ "moduleName" : "DISMAN-PING-MIB",
437
+ "oid" : "1.3.6.1.2.1.80.1.2.1.7",
438
+ "status" : "current",
439
+ "syntax" : {
440
+ "type" : {
441
+ "basetype" : "Unsigned32",
442
+ "ranges" : [
443
+ {
444
+ "min" : "1",
445
+ "max" : "15"
446
+ },
447
+ ],
448
+ "range" : {
449
+ "min" : "1",
450
+ "max" : "15"
451
+ },
452
+ },
453
+ },
454
+ "access" : "readwrite",
455
+ "default" : "1",
456
+ "units" : "probes",
457
+ "description" :
458
+ """Specifies the number of times to perform a ping
459
+ operation at a remote host as part of a single ping test.""",
460
+ }, # column
461
+ "pingCtlAdminStatus" : {
462
+ "nodetype" : "column",
463
+ "moduleName" : "DISMAN-PING-MIB",
464
+ "oid" : "1.3.6.1.2.1.80.1.2.1.8",
465
+ "status" : "current",
466
+ "syntax" : {
467
+ "type" : {
468
+ "basetype" : "Enumeration",
469
+ "enabled" : {
470
+ "nodetype" : "namednumber",
471
+ "number" : "1"
472
+ },
473
+ "disabled" : {
474
+ "nodetype" : "namednumber",
475
+ "number" : "2"
476
+ },
477
+ },
478
+ },
479
+ "access" : "readwrite",
480
+ "default" : "disabled",
481
+ "description" :
482
+ """Reflects the desired state that a pingCtlEntry should be
483
+ in:
484
+
485
+
486
+
487
+
488
+ enabled(1) - Attempt to activate the test as defined by
489
+ this pingCtlEntry.
490
+ disabled(2) - Deactivate the test as defined by this
491
+ pingCtlEntry.
492
+
493
+ Refer to the corresponding pingResultsOperStatus to
494
+ determine the operational state of the test defined by
495
+ this entry.""",
496
+ }, # column
497
+ "pingCtlDataFill" : {
498
+ "nodetype" : "column",
499
+ "moduleName" : "DISMAN-PING-MIB",
500
+ "oid" : "1.3.6.1.2.1.80.1.2.1.9",
501
+ "status" : "current",
502
+ "syntax" : {
503
+ "type" : {
504
+ "basetype" : "OctetString",
505
+ "ranges" : [
506
+ {
507
+ "min" : "0",
508
+ "max" : "1024"
509
+ },
510
+ ],
511
+ "range" : {
512
+ "min" : "0",
513
+ "max" : "1024"
514
+ },
515
+ },
516
+ },
517
+ "access" : "readwrite",
518
+ "default" : "0x00",
519
+ "description" :
520
+ """The content of this object is used together with the
521
+ corresponding pingCtlDataSize value to determine how to
522
+ fill the data portion of a probe packet. The option of
523
+ selecting a data fill pattern can be useful when links
524
+ are compressed or have data pattern sensitivities. The
525
+ contents of pingCtlDataFill should be repeated in a ping
526
+ packet when the size of the data portion of the ping
527
+ packet is greater than the size of pingCtlDataFill.""",
528
+ }, # column
529
+ "pingCtlFrequency" : {
530
+ "nodetype" : "column",
531
+ "moduleName" : "DISMAN-PING-MIB",
532
+ "oid" : "1.3.6.1.2.1.80.1.2.1.10",
533
+ "status" : "current",
534
+ "syntax" : {
535
+ "type" : { "module" :"", "name" : "Unsigned32"},
536
+ },
537
+ "access" : "readwrite",
538
+ "default" : "0",
539
+ "units" : "seconds",
540
+ "description" :
541
+ """The number of seconds to wait before repeating a ping test
542
+ as defined by the value of the various objects in the
543
+ corresponding row.
544
+
545
+ A single ping test consists of a series of ping probes.
546
+ The number of probes is determined by the value of the
547
+ corresponding pingCtlProbeCount object. After a single
548
+ test is completed the number of seconds as defined by the
549
+ value of pingCtlFrequency MUST elapse before the
550
+ next ping test is started.
551
+
552
+ A value of 0 for this object implies that the test
553
+ as defined by the corresponding entry will not be
554
+ repeated.""",
555
+ }, # column
556
+ "pingCtlMaxRows" : {
557
+ "nodetype" : "column",
558
+ "moduleName" : "DISMAN-PING-MIB",
559
+ "oid" : "1.3.6.1.2.1.80.1.2.1.11",
560
+ "status" : "current",
561
+ "syntax" : {
562
+ "type" : { "module" :"", "name" : "Unsigned32"},
563
+ },
564
+ "access" : "readwrite",
565
+ "default" : "50",
566
+ "units" : "rows",
567
+ "description" :
568
+ """The maximum number of corresponding entries allowed
569
+ in the pingProbeHistoryTable. An implementation of this
570
+ MIB will remove the oldest corresponding entry in the
571
+ pingProbeHistoryTable to allow the addition of an
572
+ new entry once the number of corresponding rows in the
573
+ pingProbeHistoryTable reaches this value.
574
+
575
+ Old entries are not removed when a new test is
576
+ started. Entries are added to the pingProbeHistoryTable
577
+ until pingCtlMaxRows is reached before entries begin to
578
+ be removed.
579
+
580
+ A value of 0 for this object disables creation of
581
+ pingProbeHistoryTable entries.""",
582
+ }, # column
583
+ "pingCtlStorageType" : {
584
+ "nodetype" : "column",
585
+ "moduleName" : "DISMAN-PING-MIB",
586
+ "oid" : "1.3.6.1.2.1.80.1.2.1.12",
587
+ "status" : "current",
588
+ "syntax" : {
589
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
590
+ },
591
+ "access" : "readwrite",
592
+ "default" : "nonVolatile",
593
+ "description" :
594
+ """The storage type for this conceptual row.
595
+ Conceptual rows having the value 'permanent' need not
596
+ allow write-access to any columnar objects in the row.""",
597
+ }, # column
598
+ "pingCtlTrapGeneration" : {
599
+ "nodetype" : "column",
600
+ "moduleName" : "DISMAN-PING-MIB",
601
+ "oid" : "1.3.6.1.2.1.80.1.2.1.13",
602
+ "status" : "current",
603
+ "syntax" : {
604
+ "type" : {
605
+ "basetype" : "Bits",
606
+ "probeFailure" : {
607
+ "nodetype" : "namednumber",
608
+ "number" : "0"
609
+ },
610
+ "testFailure" : {
611
+ "nodetype" : "namednumber",
612
+ "number" : "1"
613
+ },
614
+ "testCompletion" : {
615
+ "nodetype" : "namednumber",
616
+ "number" : "2"
617
+ },
618
+ },
619
+ },
620
+ "access" : "readwrite",
621
+ "default" : "()",
622
+ "description" :
623
+ """The value of this object determines when and whether
624
+ to generate a notification for this entry:
625
+
626
+
627
+
628
+ probeFailure(0) - Generate a pingProbeFailed
629
+ notification subject to the value of
630
+ pingCtlTrapProbeFailureFilter. The object
631
+ pingCtlTrapProbeFailureFilter can be used
632
+ to specify the number of consecutive probe
633
+ failures that are required before a
634
+ pingProbeFailed notification can be generated.
635
+ testFailure(1) - Generate a pingTestFailed
636
+ notification. In this instance the object
637
+ pingCtlTrapTestFailureFilter can be used to
638
+ determine the number of probe failures that
639
+ signal when a test fails.
640
+ testCompletion(2) - Generate a pingTestCompleted
641
+ notification.
642
+
643
+ By default, no bits are set, indicating that
644
+ none of the above options is selected.""",
645
+ }, # column
646
+ "pingCtlTrapProbeFailureFilter" : {
647
+ "nodetype" : "column",
648
+ "moduleName" : "DISMAN-PING-MIB",
649
+ "oid" : "1.3.6.1.2.1.80.1.2.1.14",
650
+ "status" : "current",
651
+ "syntax" : {
652
+ "type" : {
653
+ "basetype" : "Unsigned32",
654
+ "ranges" : [
655
+ {
656
+ "min" : "0",
657
+ "max" : "15"
658
+ },
659
+ ],
660
+ "range" : {
661
+ "min" : "0",
662
+ "max" : "15"
663
+ },
664
+ },
665
+ },
666
+ "access" : "readwrite",
667
+ "default" : "1",
668
+ "description" :
669
+ """The value of this object is used to determine when
670
+ to generate a pingProbeFailed NOTIFICATION.
671
+
672
+ Setting BIT probeFailure(0) of object
673
+ pingCtlTrapGeneration to '1' implies that a
674
+ pingProbeFailed NOTIFICATION is generated only when
675
+
676
+ a number of consecutive ping probes equal to the
677
+ value of pingCtlTrapProbeFailureFilter fail within
678
+ a given ping test. After triggering the notification,
679
+ the probe failure counter is reset to zero.""",
680
+ }, # column
681
+ "pingCtlTrapTestFailureFilter" : {
682
+ "nodetype" : "column",
683
+ "moduleName" : "DISMAN-PING-MIB",
684
+ "oid" : "1.3.6.1.2.1.80.1.2.1.15",
685
+ "status" : "current",
686
+ "syntax" : {
687
+ "type" : {
688
+ "basetype" : "Unsigned32",
689
+ "ranges" : [
690
+ {
691
+ "min" : "0",
692
+ "max" : "15"
693
+ },
694
+ ],
695
+ "range" : {
696
+ "min" : "0",
697
+ "max" : "15"
698
+ },
699
+ },
700
+ },
701
+ "access" : "readwrite",
702
+ "default" : "1",
703
+ "description" :
704
+ """The value of this object is used to determine when
705
+ to generate a pingTestFailed NOTIFICATION.
706
+
707
+ Setting BIT testFailure(1) of object
708
+
709
+
710
+
711
+ pingCtlTrapGeneration to '1' implies that a
712
+ pingTestFailed NOTIFICATION is generated only when
713
+ a number of consecutive ping tests equal to the
714
+ value of pingCtlTrapProbeFailureFilter fail.
715
+ After triggering the notification, the test failure
716
+ counter is reset to zero.""",
717
+ }, # column
718
+ "pingCtlType" : {
719
+ "nodetype" : "column",
720
+ "moduleName" : "DISMAN-PING-MIB",
721
+ "oid" : "1.3.6.1.2.1.80.1.2.1.16",
722
+ "status" : "current",
723
+ "syntax" : {
724
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
725
+ },
726
+ "access" : "readwrite",
727
+ "default" : "1.3.6.1.2.1.80.3.1",
728
+ "description" :
729
+ """The value of this object is used either to report or
730
+ to select the implementation method to be used for
731
+ calculating a ping response time. The value of this
732
+ object MAY be selected from pingImplementationTypeDomains.
733
+
734
+ Additional implementation types SHOULD be allocated as
735
+ required by implementers of the DISMAN-PING-MIB under
736
+ their enterprise-specific registration point and not
737
+ beneath pingImplementationTypeDomains.""",
738
+ }, # column
739
+ "pingCtlDescr" : {
740
+ "nodetype" : "column",
741
+ "moduleName" : "DISMAN-PING-MIB",
742
+ "oid" : "1.3.6.1.2.1.80.1.2.1.17",
743
+ "status" : "current",
744
+ "syntax" : {
745
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
746
+ },
747
+ "access" : "readwrite",
748
+ "default" : "",
749
+ "description" :
750
+ """The purpose of this object is to provide a
751
+ descriptive name of the remote ping test.""",
752
+ }, # column
753
+ "pingCtlSourceAddressType" : {
754
+ "nodetype" : "column",
755
+ "moduleName" : "DISMAN-PING-MIB",
756
+ "oid" : "1.3.6.1.2.1.80.1.2.1.18",
757
+ "status" : "current",
758
+ "syntax" : {
759
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
760
+ },
761
+ "access" : "readwrite",
762
+ "default" : "unknown",
763
+ "description" :
764
+ """Specifies the type of the source address,
765
+ pingCtlSourceAddress, to be used at a remote host
766
+ when a ping operation is performed.""",
767
+ }, # column
768
+ "pingCtlSourceAddress" : {
769
+ "nodetype" : "column",
770
+ "moduleName" : "DISMAN-PING-MIB",
771
+ "oid" : "1.3.6.1.2.1.80.1.2.1.19",
772
+ "status" : "current",
773
+ "syntax" : {
774
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
775
+ },
776
+ "access" : "readwrite",
777
+ "default" : "",
778
+ "description" :
779
+ """Use the specified IP address (which must be given in
780
+ numeric form, not as a hostname) as the source address
781
+ in outgoing probe packets. On hosts with more than one
782
+ IP address, this option can be used to select the address
783
+ to be used. If the IP address is not one of this
784
+ machine's interface addresses, an error is returned and
785
+ nothing is sent. A zero-length octet string value for
786
+ this object disables source address specification.
787
+
788
+ The address type (InetAddressType) that relates to
789
+ this object is specified by the corresponding value
790
+ of pingCtlSourceAddressType.""",
791
+ }, # column
792
+ "pingCtlIfIndex" : {
793
+ "nodetype" : "column",
794
+ "moduleName" : "DISMAN-PING-MIB",
795
+ "oid" : "1.3.6.1.2.1.80.1.2.1.20",
796
+ "status" : "current",
797
+ "syntax" : {
798
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndexOrZero"},
799
+ },
800
+ "access" : "readwrite",
801
+ "default" : "0",
802
+ "description" :
803
+ """Setting this object to an interface's ifIndex prior
804
+ to starting a remote ping operation directs
805
+ the ping probes to be transmitted over the
806
+ specified interface. A value of zero for this object
807
+ means that this option is not enabled.""",
808
+ }, # column
809
+ "pingCtlByPassRouteTable" : {
810
+ "nodetype" : "column",
811
+ "moduleName" : "DISMAN-PING-MIB",
812
+ "oid" : "1.3.6.1.2.1.80.1.2.1.21",
813
+ "status" : "current",
814
+ "syntax" : {
815
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
816
+ },
817
+ "access" : "readwrite",
818
+ "default" : "false",
819
+ "description" :
820
+ """The purpose of this object is to enable optional
821
+ bypassing the route table. If enabled, the remote
822
+ host will bypass the normal routing tables and send
823
+ directly to a host on an attached network. If the
824
+ host is not on a directly attached network, an
825
+ error is returned. This option can be used to perform
826
+ the ping operation to a local host through an
827
+ interface that has no route defined (e.g., after the
828
+ interface was dropped by the routing daemon at the host).""",
829
+ }, # column
830
+ "pingCtlDSField" : {
831
+ "nodetype" : "column",
832
+ "moduleName" : "DISMAN-PING-MIB",
833
+ "oid" : "1.3.6.1.2.1.80.1.2.1.22",
834
+ "status" : "current",
835
+ "syntax" : {
836
+ "type" : {
837
+ "basetype" : "Unsigned32",
838
+ "ranges" : [
839
+ {
840
+ "min" : "0",
841
+ "max" : "255"
842
+ },
843
+ ],
844
+ "range" : {
845
+ "min" : "0",
846
+ "max" : "255"
847
+ },
848
+ },
849
+ },
850
+ "access" : "readwrite",
851
+ "default" : "0",
852
+ "description" :
853
+ """Specifies the value to store in the Type of Service
854
+ (TOS) octet in the IPv4 header or in the Traffic
855
+ Class octet in the IPv6 header, respectively, of the
856
+ IP packet used to encapsulate the ping probe.
857
+
858
+ The octet to be set in the IP header contains the
859
+ Differentiated Services (DS) Field in the six most
860
+ significant bits.
861
+
862
+ This option can be used to determine what effect an
863
+ explicit DS Field setting has on a ping response.
864
+ Not all values are legal or meaningful. A value of 0
865
+ means that the function represented by this option is
866
+ not supported. DS Field usage is often not supported
867
+ by IP implementations, and not all values are supported.
868
+ Refer to RFC 2474 and RFC 3260 for guidance on usage of
869
+ this field.""",
870
+ "reference" :
871
+ """Refer to RFC 1812 for the definition of the IPv4 TOS
872
+ octet and to RFC 2460 for the definition of the IPv6
873
+ Traffic Class octet. Refer to RFC 2474 and RFC 3260
874
+ for the definition of the Differentiated Services Field.""",
875
+ }, # column
876
+ "pingCtlRowStatus" : {
877
+ "nodetype" : "column",
878
+ "moduleName" : "DISMAN-PING-MIB",
879
+ "oid" : "1.3.6.1.2.1.80.1.2.1.23",
880
+ "status" : "current",
881
+ "syntax" : {
882
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
883
+ },
884
+ "access" : "readwrite",
885
+ "description" :
886
+ """This object allows entries to be created and deleted
887
+ in the pingCtlTable. Deletion of an entry in this
888
+ table results in the deletion of all corresponding (same
889
+ pingCtlOwnerIndex and pingCtlTestName index values)
890
+ pingResultsTable and pingProbeHistoryTable entries.
891
+
892
+ A value MUST be specified for pingCtlTargetAddress
893
+ prior to acceptance of a transition to active(1) state.
894
+
895
+ When a value for pingCtlTargetAddress is set,
896
+
897
+
898
+
899
+ the value of object pingCtlRowStatus changes
900
+ from notReady(3) to notInService(2).
901
+
902
+ Activation of a remote ping operation is controlled
903
+ via pingCtlAdminStatus, not by changing
904
+ this object's value to active(1).
905
+
906
+ Transitions in and out of active(1) state are not
907
+ allowed while an entry's pingResultsOperStatus is
908
+ active(1), with the exception that deletion of
909
+ an entry in this table by setting its RowStatus
910
+ object to destroy(6) will stop an active
911
+ ping operation.
912
+
913
+ The operational state of a ping operation
914
+ can be determined by examination of its
915
+ pingResultsOperStatus object.""",
916
+ "reference" :
917
+ """See definition of RowStatus in RFC 2579, 'Textual
918
+ Conventions for SMIv2.'""",
919
+ }, # column
920
+ "pingResultsTable" : {
921
+ "nodetype" : "table",
922
+ "moduleName" : "DISMAN-PING-MIB",
923
+ "oid" : "1.3.6.1.2.1.80.1.3",
924
+ "status" : "current",
925
+ "description" :
926
+ """Defines the Ping Results Table for providing
927
+ the capability of performing ping operations at
928
+ a remote host. The results of these operations are
929
+ stored in the pingResultsTable and the pingProbeHistoryTable.
930
+
931
+ An entry is added to the pingResultsTable when an
932
+ pingCtlEntry is started by successful transition
933
+ of its pingCtlAdminStatus object to enabled(1).
934
+
935
+ If the object pingCtlAdminStatus already has the value
936
+ enabled(1), and if the corresponding pingResultsOperStatus
937
+ object has the value completed(3), then successfully writing
938
+ enabled(1) to object pingCtlAdminStatus re-initializes the
939
+ already existing entry in the pingResultsTable. The values
940
+ of objects in the re-initialized entry are the same as the
941
+ values of objects in a new entry would be.
942
+
943
+ An entry is removed from the pingResultsTable when
944
+ its corresponding pingCtlEntry is deleted.""",
945
+ }, # table
946
+ "pingResultsEntry" : {
947
+ "nodetype" : "row",
948
+ "moduleName" : "DISMAN-PING-MIB",
949
+ "oid" : "1.3.6.1.2.1.80.1.3.1",
950
+ "status" : "current",
951
+ "linkage" : [
952
+ "pingCtlOwnerIndex",
953
+ "pingCtlTestName",
954
+ ],
955
+ "description" :
956
+ """Defines an entry in the pingResultsTable. The
957
+ pingResultsTable has the same indexing as the
958
+ pingCtlTable so that a pingResultsEntry
959
+ corresponds to the pingCtlEntry that caused it to
960
+ be created.""",
961
+ }, # row
962
+ "pingResultsOperStatus" : {
963
+ "nodetype" : "column",
964
+ "moduleName" : "DISMAN-PING-MIB",
965
+ "oid" : "1.3.6.1.2.1.80.1.3.1.1",
966
+ "status" : "current",
967
+ "syntax" : {
968
+ "type" : {
969
+ "basetype" : "Enumeration",
970
+ "enabled" : {
971
+ "nodetype" : "namednumber",
972
+ "number" : "1"
973
+ },
974
+ "disabled" : {
975
+ "nodetype" : "namednumber",
976
+ "number" : "2"
977
+ },
978
+ "completed" : {
979
+ "nodetype" : "namednumber",
980
+ "number" : "3"
981
+ },
982
+ },
983
+ },
984
+ "access" : "readonly",
985
+ "description" :
986
+ """Reflects the operational state of a pingCtlEntry:
987
+
988
+ enabled(1) - Test is active.
989
+ disabled(2) - Test has stopped.
990
+ completed(3) - Test is completed.""",
991
+ }, # column
992
+ "pingResultsIpTargetAddressType" : {
993
+ "nodetype" : "column",
994
+ "moduleName" : "DISMAN-PING-MIB",
995
+ "oid" : "1.3.6.1.2.1.80.1.3.1.2",
996
+ "status" : "current",
997
+ "syntax" : {
998
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
999
+ },
1000
+ "access" : "readonly",
1001
+ "default" : "unknown",
1002
+ "description" :
1003
+ """This object indicates the type of address stored
1004
+ in the corresponding pingResultsIpTargetAddress
1005
+ object.""",
1006
+ }, # column
1007
+ "pingResultsIpTargetAddress" : {
1008
+ "nodetype" : "column",
1009
+ "moduleName" : "DISMAN-PING-MIB",
1010
+ "oid" : "1.3.6.1.2.1.80.1.3.1.3",
1011
+ "status" : "current",
1012
+ "syntax" : {
1013
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
1014
+ },
1015
+ "access" : "readonly",
1016
+ "default" : "",
1017
+ "description" :
1018
+ """This object reports the IP address associated
1019
+ with a pingCtlTargetAddress value when the destination
1020
+ address is specified as a DNS name. The value of
1021
+ this object should be a zero-length octet string
1022
+ when a DNS name is not specified or when a
1023
+ specified DNS name fails to resolve.
1024
+
1025
+ The address type (InetAddressType) that relates to
1026
+ this object is specified by the corresponding value
1027
+ of pingResultsIpTargetAddressType.""",
1028
+ }, # column
1029
+ "pingResultsMinRtt" : {
1030
+ "nodetype" : "column",
1031
+ "moduleName" : "DISMAN-PING-MIB",
1032
+ "oid" : "1.3.6.1.2.1.80.1.3.1.4",
1033
+ "status" : "current",
1034
+ "syntax" : {
1035
+ "type" : { "module" :"", "name" : "Unsigned32"},
1036
+ },
1037
+ "access" : "readonly",
1038
+ "units" : "milliseconds",
1039
+ "description" :
1040
+ """The minimum ping round-trip-time (RTT) received. A value
1041
+ of 0 for this object implies that no RTT has been received.""",
1042
+ }, # column
1043
+ "pingResultsMaxRtt" : {
1044
+ "nodetype" : "column",
1045
+ "moduleName" : "DISMAN-PING-MIB",
1046
+ "oid" : "1.3.6.1.2.1.80.1.3.1.5",
1047
+ "status" : "current",
1048
+ "syntax" : {
1049
+ "type" : { "module" :"", "name" : "Unsigned32"},
1050
+ },
1051
+ "access" : "readonly",
1052
+ "units" : "milliseconds",
1053
+ "description" :
1054
+ """The maximum ping round-trip-time (RTT) received. A value
1055
+ of 0 for this object implies that no RTT has been received.""",
1056
+ }, # column
1057
+ "pingResultsAverageRtt" : {
1058
+ "nodetype" : "column",
1059
+ "moduleName" : "DISMAN-PING-MIB",
1060
+ "oid" : "1.3.6.1.2.1.80.1.3.1.6",
1061
+ "status" : "current",
1062
+ "syntax" : {
1063
+ "type" : { "module" :"", "name" : "Unsigned32"},
1064
+ },
1065
+ "access" : "readonly",
1066
+ "units" : "milliseconds",
1067
+ "description" :
1068
+ """The current average ping round-trip-time (RTT).""",
1069
+ }, # column
1070
+ "pingResultsProbeResponses" : {
1071
+ "nodetype" : "column",
1072
+ "moduleName" : "DISMAN-PING-MIB",
1073
+ "oid" : "1.3.6.1.2.1.80.1.3.1.7",
1074
+ "status" : "current",
1075
+ "syntax" : {
1076
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1077
+ },
1078
+ "access" : "readonly",
1079
+ "units" : "responses",
1080
+ "description" :
1081
+ """Number of responses received for the corresponding
1082
+ pingCtlEntry and pingResultsEntry. The value of this object
1083
+ MUST be reported as 0 when no probe responses have been
1084
+ received.""",
1085
+ }, # column
1086
+ "pingResultsSentProbes" : {
1087
+ "nodetype" : "column",
1088
+ "moduleName" : "DISMAN-PING-MIB",
1089
+ "oid" : "1.3.6.1.2.1.80.1.3.1.8",
1090
+ "status" : "current",
1091
+ "syntax" : {
1092
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1093
+ },
1094
+ "access" : "readonly",
1095
+ "units" : "probes",
1096
+ "description" :
1097
+ """The value of this object reflects the number of probes sent
1098
+ for the corresponding pingCtlEntry and pingResultsEntry.
1099
+ The value of this object MUST be reported as 0 when no probes
1100
+ have been sent.""",
1101
+ }, # column
1102
+ "pingResultsRttSumOfSquares" : {
1103
+ "nodetype" : "column",
1104
+ "moduleName" : "DISMAN-PING-MIB",
1105
+ "oid" : "1.3.6.1.2.1.80.1.3.1.9",
1106
+ "status" : "current",
1107
+ "syntax" : {
1108
+ "type" : { "module" :"", "name" : "Unsigned32"},
1109
+ },
1110
+ "access" : "readonly",
1111
+ "units" : "milliseconds",
1112
+ "description" :
1113
+ """This object contains the sum of the squares for all ping
1114
+ responses received. Its purpose is to enable standard
1115
+ deviation calculation. The value of this object MUST
1116
+ be reported as 0 when no ping responses have been
1117
+ received.""",
1118
+ }, # column
1119
+ "pingResultsLastGoodProbe" : {
1120
+ "nodetype" : "column",
1121
+ "moduleName" : "DISMAN-PING-MIB",
1122
+ "oid" : "1.3.6.1.2.1.80.1.3.1.10",
1123
+ "status" : "current",
1124
+ "syntax" : {
1125
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
1126
+ },
1127
+ "access" : "readonly",
1128
+ "description" :
1129
+ """Date and time when the last response was received for
1130
+ a probe.""",
1131
+ }, # column
1132
+ "pingProbeHistoryTable" : {
1133
+ "nodetype" : "table",
1134
+ "moduleName" : "DISMAN-PING-MIB",
1135
+ "oid" : "1.3.6.1.2.1.80.1.4",
1136
+ "status" : "current",
1137
+ "description" :
1138
+ """Defines a table for storing the results of ping
1139
+ operations. The number of entries in this table is
1140
+ limited per entry in the pingCtlTable by the value
1141
+ of the corresponding pingCtlMaxRows object.
1142
+
1143
+ An entry in this table is created when the result of
1144
+ a ping probe is determined. The initial 2 instance
1145
+ identifier index values identify the pingCtlEntry
1146
+ that a probe result (pingProbeHistoryEntry) belongs
1147
+ to. An entry is removed from this table when
1148
+ its corresponding pingCtlEntry is deleted.
1149
+
1150
+ An implementation of this MIB will remove the oldest
1151
+ entry in the pingProbeHistoryTable of the
1152
+ corresponding entry in the pingCtlTable to allow
1153
+ the addition of an new entry once the number of rows
1154
+ in the pingProbeHistoryTable reaches the value
1155
+ specified by pingCtlMaxRows for the corresponding
1156
+ entry in the pingCtlTable.""",
1157
+ }, # table
1158
+ "pingProbeHistoryEntry" : {
1159
+ "nodetype" : "row",
1160
+ "moduleName" : "DISMAN-PING-MIB",
1161
+ "oid" : "1.3.6.1.2.1.80.1.4.1",
1162
+ "status" : "current",
1163
+ "linkage" : [
1164
+ "pingCtlOwnerIndex",
1165
+ "pingCtlTestName",
1166
+ "pingProbeHistoryIndex",
1167
+ ],
1168
+ "description" :
1169
+ """Defines an entry in the pingProbeHistoryTable.
1170
+ The first two index elements identify the
1171
+ pingCtlEntry that a pingProbeHistoryEntry belongs
1172
+ to. The third index element selects a single
1173
+ probe result.""",
1174
+ }, # row
1175
+ "pingProbeHistoryIndex" : {
1176
+ "nodetype" : "column",
1177
+ "moduleName" : "DISMAN-PING-MIB",
1178
+ "oid" : "1.3.6.1.2.1.80.1.4.1.1",
1179
+ "status" : "current",
1180
+ "syntax" : {
1181
+ "type" : {
1182
+ "basetype" : "Unsigned32",
1183
+ "ranges" : [
1184
+ {
1185
+ "min" : "1",
1186
+ "max" : "4294967295"
1187
+ },
1188
+ ],
1189
+ "range" : {
1190
+ "min" : "1",
1191
+ "max" : "4294967295"
1192
+ },
1193
+ },
1194
+ },
1195
+ "access" : "noaccess",
1196
+ "description" :
1197
+ """An entry in this table is created when the result of
1198
+ a ping probe is determined. The initial 2 instance
1199
+ identifier index values identify the pingCtlEntry
1200
+ that a probe result (pingProbeHistoryEntry) belongs
1201
+ to.
1202
+
1203
+ An implementation MUST start assigning
1204
+ pingProbeHistoryIndex values at 1 and wrap after
1205
+ exceeding the maximum possible value as defined by
1206
+ the limit of this object ('ffffffff'h).""",
1207
+ }, # column
1208
+ "pingProbeHistoryResponse" : {
1209
+ "nodetype" : "column",
1210
+ "moduleName" : "DISMAN-PING-MIB",
1211
+ "oid" : "1.3.6.1.2.1.80.1.4.1.2",
1212
+ "status" : "current",
1213
+ "syntax" : {
1214
+ "type" : { "module" :"", "name" : "Unsigned32"},
1215
+ },
1216
+ "access" : "readonly",
1217
+ "units" : "milliseconds",
1218
+ "description" :
1219
+ """The amount of time measured in milliseconds from when
1220
+ a probe was sent to when its response was received or
1221
+ when it timed out. The value of this object is reported
1222
+ as 0 when it is not possible to transmit a probe.""",
1223
+ }, # column
1224
+ "pingProbeHistoryStatus" : {
1225
+ "nodetype" : "column",
1226
+ "moduleName" : "DISMAN-PING-MIB",
1227
+ "oid" : "1.3.6.1.2.1.80.1.4.1.3",
1228
+ "status" : "current",
1229
+ "syntax" : {
1230
+ "type" : { "module" :"DISMAN-PING-MIB", "name" : "OperationResponseStatus"},
1231
+ },
1232
+ "access" : "readonly",
1233
+ "description" :
1234
+ """The result of a particular probe done by a remote host.""",
1235
+ }, # column
1236
+ "pingProbeHistoryLastRC" : {
1237
+ "nodetype" : "column",
1238
+ "moduleName" : "DISMAN-PING-MIB",
1239
+ "oid" : "1.3.6.1.2.1.80.1.4.1.4",
1240
+ "status" : "current",
1241
+ "syntax" : {
1242
+ "type" : { "module" :"", "name" : "Integer32"},
1243
+ },
1244
+ "access" : "readonly",
1245
+ "description" :
1246
+ """The last implementation-method-specific reply code received.
1247
+ If the ICMP Echo capability is being used, then a successful
1248
+ probe ends when an ICMP response is received that contains
1249
+ the code ICMP_ECHOREPLY(0). The ICMP codes are maintained
1250
+ by IANA. Standardized ICMP codes are listed at
1251
+ http://www.iana.org/assignments/icmp-parameters.
1252
+ The ICMPv6 codes are listed at
1253
+ http://www.iana.org/assignments/icmpv6-parameters.""",
1254
+ }, # column
1255
+ "pingProbeHistoryTime" : {
1256
+ "nodetype" : "column",
1257
+ "moduleName" : "DISMAN-PING-MIB",
1258
+ "oid" : "1.3.6.1.2.1.80.1.4.1.5",
1259
+ "status" : "current",
1260
+ "syntax" : {
1261
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
1262
+ },
1263
+ "access" : "readonly",
1264
+ "description" :
1265
+ """Timestamp for when this probe result was determined.""",
1266
+ }, # column
1267
+ "pingConformance" : {
1268
+ "nodetype" : "node",
1269
+ "moduleName" : "DISMAN-PING-MIB",
1270
+ "oid" : "1.3.6.1.2.1.80.2",
1271
+ }, # node
1272
+ "pingCompliances" : {
1273
+ "nodetype" : "node",
1274
+ "moduleName" : "DISMAN-PING-MIB",
1275
+ "oid" : "1.3.6.1.2.1.80.2.1",
1276
+ }, # node
1277
+ "pingGroups" : {
1278
+ "nodetype" : "node",
1279
+ "moduleName" : "DISMAN-PING-MIB",
1280
+ "oid" : "1.3.6.1.2.1.80.2.2",
1281
+ }, # node
1282
+ "pingImplementationTypeDomains" : {
1283
+ "nodetype" : "node",
1284
+ "moduleName" : "DISMAN-PING-MIB",
1285
+ "oid" : "1.3.6.1.2.1.80.3",
1286
+ }, # node
1287
+ "pingIcmpEcho" : {
1288
+ "nodetype" : "node",
1289
+ "moduleName" : "DISMAN-PING-MIB",
1290
+ "oid" : "1.3.6.1.2.1.80.3.1",
1291
+ "status" : "current",
1292
+ "description" :
1293
+ """Indicates that an implementation is using the Internet
1294
+ Control Message Protocol (ICMP) 'ECHO' facility.""",
1295
+ }, # node
1296
+ "pingUdpEcho" : {
1297
+ "nodetype" : "node",
1298
+ "moduleName" : "DISMAN-PING-MIB",
1299
+ "oid" : "1.3.6.1.2.1.80.3.2",
1300
+ "status" : "current",
1301
+ "description" :
1302
+ """Indicates that an implementation is using the UDP echo
1303
+ port (7).""",
1304
+ "reference" :
1305
+ """RFC 862, 'Echo Protocol'.""",
1306
+ }, # node
1307
+ "pingSnmpQuery" : {
1308
+ "nodetype" : "node",
1309
+ "moduleName" : "DISMAN-PING-MIB",
1310
+ "oid" : "1.3.6.1.2.1.80.3.3",
1311
+ "status" : "current",
1312
+ "description" :
1313
+ """Indicates that an implementation is using an SNMP query
1314
+ to calculate a round trip time.""",
1315
+ }, # node
1316
+ "pingTcpConnectionAttempt" : {
1317
+ "nodetype" : "node",
1318
+ "moduleName" : "DISMAN-PING-MIB",
1319
+ "oid" : "1.3.6.1.2.1.80.3.4",
1320
+ "status" : "current",
1321
+ "description" :
1322
+ """Indicates that an implementation is attempting to
1323
+ connect to a TCP port in order to calculate a round
1324
+ trip time.""",
1325
+ }, # node
1326
+ }, # nodes
1327
+
1328
+ "notifications" : {
1329
+ "pingProbeFailed" : {
1330
+ "nodetype" : "notification",
1331
+ "moduleName" : "DISMAN-PING-MIB",
1332
+ "oid" : "1.3.6.1.2.1.80.0.1",
1333
+ "status" : "current",
1334
+ "objects" : {
1335
+ "pingCtlTargetAddressType" : {
1336
+ "nodetype" : "object",
1337
+ "module" : "DISMAN-PING-MIB"
1338
+ },
1339
+ "pingCtlTargetAddress" : {
1340
+ "nodetype" : "object",
1341
+ "module" : "DISMAN-PING-MIB"
1342
+ },
1343
+ "pingResultsOperStatus" : {
1344
+ "nodetype" : "object",
1345
+ "module" : "DISMAN-PING-MIB"
1346
+ },
1347
+ "pingResultsIpTargetAddressType" : {
1348
+ "nodetype" : "object",
1349
+ "module" : "DISMAN-PING-MIB"
1350
+ },
1351
+ "pingResultsIpTargetAddress" : {
1352
+ "nodetype" : "object",
1353
+ "module" : "DISMAN-PING-MIB"
1354
+ },
1355
+ "pingResultsMinRtt" : {
1356
+ "nodetype" : "object",
1357
+ "module" : "DISMAN-PING-MIB"
1358
+ },
1359
+ "pingResultsMaxRtt" : {
1360
+ "nodetype" : "object",
1361
+ "module" : "DISMAN-PING-MIB"
1362
+ },
1363
+ "pingResultsAverageRtt" : {
1364
+ "nodetype" : "object",
1365
+ "module" : "DISMAN-PING-MIB"
1366
+ },
1367
+ "pingResultsProbeResponses" : {
1368
+ "nodetype" : "object",
1369
+ "module" : "DISMAN-PING-MIB"
1370
+ },
1371
+ "pingResultsSentProbes" : {
1372
+ "nodetype" : "object",
1373
+ "module" : "DISMAN-PING-MIB"
1374
+ },
1375
+ "pingResultsRttSumOfSquares" : {
1376
+ "nodetype" : "object",
1377
+ "module" : "DISMAN-PING-MIB"
1378
+ },
1379
+ "pingResultsLastGoodProbe" : {
1380
+ "nodetype" : "object",
1381
+ "module" : "DISMAN-PING-MIB"
1382
+ },
1383
+ },
1384
+ "description" :
1385
+ """Generated when a probe failure is detected, when the
1386
+
1387
+
1388
+
1389
+ corresponding pingCtlTrapGeneration object is set to
1390
+ probeFailure(0), subject to the value of
1391
+ pingCtlTrapProbeFailureFilter. The object
1392
+ pingCtlTrapProbeFailureFilter can be used to specify the
1393
+ number of consecutive probe failures that are required
1394
+ before this notification can be generated.""",
1395
+ }, # notification
1396
+ "pingTestFailed" : {
1397
+ "nodetype" : "notification",
1398
+ "moduleName" : "DISMAN-PING-MIB",
1399
+ "oid" : "1.3.6.1.2.1.80.0.2",
1400
+ "status" : "current",
1401
+ "objects" : {
1402
+ "pingCtlTargetAddressType" : {
1403
+ "nodetype" : "object",
1404
+ "module" : "DISMAN-PING-MIB"
1405
+ },
1406
+ "pingCtlTargetAddress" : {
1407
+ "nodetype" : "object",
1408
+ "module" : "DISMAN-PING-MIB"
1409
+ },
1410
+ "pingResultsOperStatus" : {
1411
+ "nodetype" : "object",
1412
+ "module" : "DISMAN-PING-MIB"
1413
+ },
1414
+ "pingResultsIpTargetAddressType" : {
1415
+ "nodetype" : "object",
1416
+ "module" : "DISMAN-PING-MIB"
1417
+ },
1418
+ "pingResultsIpTargetAddress" : {
1419
+ "nodetype" : "object",
1420
+ "module" : "DISMAN-PING-MIB"
1421
+ },
1422
+ "pingResultsMinRtt" : {
1423
+ "nodetype" : "object",
1424
+ "module" : "DISMAN-PING-MIB"
1425
+ },
1426
+ "pingResultsMaxRtt" : {
1427
+ "nodetype" : "object",
1428
+ "module" : "DISMAN-PING-MIB"
1429
+ },
1430
+ "pingResultsAverageRtt" : {
1431
+ "nodetype" : "object",
1432
+ "module" : "DISMAN-PING-MIB"
1433
+ },
1434
+ "pingResultsProbeResponses" : {
1435
+ "nodetype" : "object",
1436
+ "module" : "DISMAN-PING-MIB"
1437
+ },
1438
+ "pingResultsSentProbes" : {
1439
+ "nodetype" : "object",
1440
+ "module" : "DISMAN-PING-MIB"
1441
+ },
1442
+ "pingResultsRttSumOfSquares" : {
1443
+ "nodetype" : "object",
1444
+ "module" : "DISMAN-PING-MIB"
1445
+ },
1446
+ "pingResultsLastGoodProbe" : {
1447
+ "nodetype" : "object",
1448
+ "module" : "DISMAN-PING-MIB"
1449
+ },
1450
+ },
1451
+ "description" :
1452
+ """Generated when a ping test is determined to have failed,
1453
+ when the corresponding pingCtlTrapGeneration object is
1454
+ set to testFailure(1). In this instance,
1455
+ pingCtlTrapTestFailureFilter should specify the number of
1456
+ probes in a test required to have failed in order to
1457
+ consider the test failed.""",
1458
+ }, # notification
1459
+ "pingTestCompleted" : {
1460
+ "nodetype" : "notification",
1461
+ "moduleName" : "DISMAN-PING-MIB",
1462
+ "oid" : "1.3.6.1.2.1.80.0.3",
1463
+ "status" : "current",
1464
+ "objects" : {
1465
+ "pingCtlTargetAddressType" : {
1466
+ "nodetype" : "object",
1467
+ "module" : "DISMAN-PING-MIB"
1468
+ },
1469
+ "pingCtlTargetAddress" : {
1470
+ "nodetype" : "object",
1471
+ "module" : "DISMAN-PING-MIB"
1472
+ },
1473
+ "pingResultsOperStatus" : {
1474
+ "nodetype" : "object",
1475
+ "module" : "DISMAN-PING-MIB"
1476
+ },
1477
+ "pingResultsIpTargetAddressType" : {
1478
+ "nodetype" : "object",
1479
+ "module" : "DISMAN-PING-MIB"
1480
+ },
1481
+ "pingResultsIpTargetAddress" : {
1482
+ "nodetype" : "object",
1483
+ "module" : "DISMAN-PING-MIB"
1484
+ },
1485
+ "pingResultsMinRtt" : {
1486
+ "nodetype" : "object",
1487
+ "module" : "DISMAN-PING-MIB"
1488
+ },
1489
+ "pingResultsMaxRtt" : {
1490
+ "nodetype" : "object",
1491
+ "module" : "DISMAN-PING-MIB"
1492
+ },
1493
+ "pingResultsAverageRtt" : {
1494
+ "nodetype" : "object",
1495
+ "module" : "DISMAN-PING-MIB"
1496
+ },
1497
+ "pingResultsProbeResponses" : {
1498
+ "nodetype" : "object",
1499
+ "module" : "DISMAN-PING-MIB"
1500
+ },
1501
+ "pingResultsSentProbes" : {
1502
+ "nodetype" : "object",
1503
+ "module" : "DISMAN-PING-MIB"
1504
+ },
1505
+ "pingResultsRttSumOfSquares" : {
1506
+ "nodetype" : "object",
1507
+ "module" : "DISMAN-PING-MIB"
1508
+ },
1509
+ "pingResultsLastGoodProbe" : {
1510
+ "nodetype" : "object",
1511
+ "module" : "DISMAN-PING-MIB"
1512
+ },
1513
+ },
1514
+ "description" :
1515
+ """Generated at the completion of a ping test when the
1516
+ corresponding pingCtlTrapGeneration object has the
1517
+ testCompletion(2) bit set.""",
1518
+ }, # notification
1519
+ }, # notifications
1520
+
1521
+ "groups" : {
1522
+ "pingGroup" : {
1523
+ "nodetype" : "group",
1524
+ "moduleName" : "DISMAN-PING-MIB",
1525
+ "oid" : "1.3.6.1.2.1.80.2.2.1",
1526
+ "status" : "deprecated",
1527
+ "members" : {
1528
+ "pingMaxConcurrentRequests" : {
1529
+ "nodetype" : "member",
1530
+ "module" : "DISMAN-PING-MIB"
1531
+ },
1532
+ "pingCtlTargetAddressType" : {
1533
+ "nodetype" : "member",
1534
+ "module" : "DISMAN-PING-MIB"
1535
+ },
1536
+ "pingCtlTargetAddress" : {
1537
+ "nodetype" : "member",
1538
+ "module" : "DISMAN-PING-MIB"
1539
+ },
1540
+ "pingCtlDataSize" : {
1541
+ "nodetype" : "member",
1542
+ "module" : "DISMAN-PING-MIB"
1543
+ },
1544
+ "pingCtlTimeOut" : {
1545
+ "nodetype" : "member",
1546
+ "module" : "DISMAN-PING-MIB"
1547
+ },
1548
+ "pingCtlProbeCount" : {
1549
+ "nodetype" : "member",
1550
+ "module" : "DISMAN-PING-MIB"
1551
+ },
1552
+ "pingCtlAdminStatus" : {
1553
+ "nodetype" : "member",
1554
+ "module" : "DISMAN-PING-MIB"
1555
+ },
1556
+ "pingCtlDataFill" : {
1557
+ "nodetype" : "member",
1558
+ "module" : "DISMAN-PING-MIB"
1559
+ },
1560
+ "pingCtlFrequency" : {
1561
+ "nodetype" : "member",
1562
+ "module" : "DISMAN-PING-MIB"
1563
+ },
1564
+ "pingCtlMaxRows" : {
1565
+ "nodetype" : "member",
1566
+ "module" : "DISMAN-PING-MIB"
1567
+ },
1568
+ "pingCtlStorageType" : {
1569
+ "nodetype" : "member",
1570
+ "module" : "DISMAN-PING-MIB"
1571
+ },
1572
+ "pingCtlTrapGeneration" : {
1573
+ "nodetype" : "member",
1574
+ "module" : "DISMAN-PING-MIB"
1575
+ },
1576
+ "pingCtlTrapProbeFailureFilter" : {
1577
+ "nodetype" : "member",
1578
+ "module" : "DISMAN-PING-MIB"
1579
+ },
1580
+ "pingCtlTrapTestFailureFilter" : {
1581
+ "nodetype" : "member",
1582
+ "module" : "DISMAN-PING-MIB"
1583
+ },
1584
+ "pingCtlType" : {
1585
+ "nodetype" : "member",
1586
+ "module" : "DISMAN-PING-MIB"
1587
+ },
1588
+ "pingCtlDescr" : {
1589
+ "nodetype" : "member",
1590
+ "module" : "DISMAN-PING-MIB"
1591
+ },
1592
+ "pingCtlByPassRouteTable" : {
1593
+ "nodetype" : "member",
1594
+ "module" : "DISMAN-PING-MIB"
1595
+ },
1596
+ "pingCtlSourceAddressType" : {
1597
+ "nodetype" : "member",
1598
+ "module" : "DISMAN-PING-MIB"
1599
+ },
1600
+ "pingCtlSourceAddress" : {
1601
+ "nodetype" : "member",
1602
+ "module" : "DISMAN-PING-MIB"
1603
+ },
1604
+ "pingCtlIfIndex" : {
1605
+ "nodetype" : "member",
1606
+ "module" : "DISMAN-PING-MIB"
1607
+ },
1608
+ "pingCtlDSField" : {
1609
+ "nodetype" : "member",
1610
+ "module" : "DISMAN-PING-MIB"
1611
+ },
1612
+ "pingCtlRowStatus" : {
1613
+ "nodetype" : "member",
1614
+ "module" : "DISMAN-PING-MIB"
1615
+ },
1616
+ "pingResultsOperStatus" : {
1617
+ "nodetype" : "member",
1618
+ "module" : "DISMAN-PING-MIB"
1619
+ },
1620
+ "pingResultsIpTargetAddressType" : {
1621
+ "nodetype" : "member",
1622
+ "module" : "DISMAN-PING-MIB"
1623
+ },
1624
+ "pingResultsIpTargetAddress" : {
1625
+ "nodetype" : "member",
1626
+ "module" : "DISMAN-PING-MIB"
1627
+ },
1628
+ "pingResultsMinRtt" : {
1629
+ "nodetype" : "member",
1630
+ "module" : "DISMAN-PING-MIB"
1631
+ },
1632
+ "pingResultsMaxRtt" : {
1633
+ "nodetype" : "member",
1634
+ "module" : "DISMAN-PING-MIB"
1635
+ },
1636
+ "pingResultsAverageRtt" : {
1637
+ "nodetype" : "member",
1638
+ "module" : "DISMAN-PING-MIB"
1639
+ },
1640
+ "pingResultsProbeResponses" : {
1641
+ "nodetype" : "member",
1642
+ "module" : "DISMAN-PING-MIB"
1643
+ },
1644
+ "pingResultsSentProbes" : {
1645
+ "nodetype" : "member",
1646
+ "module" : "DISMAN-PING-MIB"
1647
+ },
1648
+ "pingResultsRttSumOfSquares" : {
1649
+ "nodetype" : "member",
1650
+ "module" : "DISMAN-PING-MIB"
1651
+ },
1652
+ "pingProbeHistoryResponse" : {
1653
+ "nodetype" : "member",
1654
+ "module" : "DISMAN-PING-MIB"
1655
+ },
1656
+ "pingProbeHistoryStatus" : {
1657
+ "nodetype" : "member",
1658
+ "module" : "DISMAN-PING-MIB"
1659
+ },
1660
+ "pingProbeHistoryLastRC" : {
1661
+ "nodetype" : "member",
1662
+ "module" : "DISMAN-PING-MIB"
1663
+ },
1664
+ }, # members
1665
+ "description" :
1666
+ """The group of objects that constitute the remote ping
1667
+ capability.""",
1668
+ }, # group
1669
+ "pingTimeStampGroup" : {
1670
+ "nodetype" : "group",
1671
+ "moduleName" : "DISMAN-PING-MIB",
1672
+ "oid" : "1.3.6.1.2.1.80.2.2.2",
1673
+ "status" : "deprecated",
1674
+ "members" : {
1675
+ "pingResultsLastGoodProbe" : {
1676
+ "nodetype" : "member",
1677
+ "module" : "DISMAN-PING-MIB"
1678
+ },
1679
+ "pingProbeHistoryTime" : {
1680
+ "nodetype" : "member",
1681
+ "module" : "DISMAN-PING-MIB"
1682
+ },
1683
+ }, # members
1684
+ "description" :
1685
+ """The group of DateAndTime objects.""",
1686
+ }, # group
1687
+ "pingNotificationsGroup" : {
1688
+ "nodetype" : "group",
1689
+ "moduleName" : "DISMAN-PING-MIB",
1690
+ "oid" : "1.3.6.1.2.1.80.2.2.3",
1691
+ "status" : "current",
1692
+ "members" : {
1693
+ "pingProbeFailed" : {
1694
+ "nodetype" : "member",
1695
+ "module" : "DISMAN-PING-MIB"
1696
+ },
1697
+ "pingTestFailed" : {
1698
+ "nodetype" : "member",
1699
+ "module" : "DISMAN-PING-MIB"
1700
+ },
1701
+ "pingTestCompleted" : {
1702
+ "nodetype" : "member",
1703
+ "module" : "DISMAN-PING-MIB"
1704
+ },
1705
+ }, # members
1706
+ "description" :
1707
+ """The notification that are required to be supported by
1708
+ implementations of this MIB.""",
1709
+ }, # group
1710
+ "pingMinimumGroup" : {
1711
+ "nodetype" : "group",
1712
+ "moduleName" : "DISMAN-PING-MIB",
1713
+ "oid" : "1.3.6.1.2.1.80.2.2.4",
1714
+ "status" : "current",
1715
+ "members" : {
1716
+ "pingMaxConcurrentRequests" : {
1717
+ "nodetype" : "member",
1718
+ "module" : "DISMAN-PING-MIB"
1719
+ },
1720
+ "pingCtlTargetAddressType" : {
1721
+ "nodetype" : "member",
1722
+ "module" : "DISMAN-PING-MIB"
1723
+ },
1724
+ "pingCtlTargetAddress" : {
1725
+ "nodetype" : "member",
1726
+ "module" : "DISMAN-PING-MIB"
1727
+ },
1728
+ "pingCtlDataSize" : {
1729
+ "nodetype" : "member",
1730
+ "module" : "DISMAN-PING-MIB"
1731
+ },
1732
+ "pingCtlTimeOut" : {
1733
+ "nodetype" : "member",
1734
+ "module" : "DISMAN-PING-MIB"
1735
+ },
1736
+ "pingCtlProbeCount" : {
1737
+ "nodetype" : "member",
1738
+ "module" : "DISMAN-PING-MIB"
1739
+ },
1740
+ "pingCtlAdminStatus" : {
1741
+ "nodetype" : "member",
1742
+ "module" : "DISMAN-PING-MIB"
1743
+ },
1744
+ "pingCtlDataFill" : {
1745
+ "nodetype" : "member",
1746
+ "module" : "DISMAN-PING-MIB"
1747
+ },
1748
+ "pingCtlFrequency" : {
1749
+ "nodetype" : "member",
1750
+ "module" : "DISMAN-PING-MIB"
1751
+ },
1752
+ "pingCtlMaxRows" : {
1753
+ "nodetype" : "member",
1754
+ "module" : "DISMAN-PING-MIB"
1755
+ },
1756
+ "pingCtlStorageType" : {
1757
+ "nodetype" : "member",
1758
+ "module" : "DISMAN-PING-MIB"
1759
+ },
1760
+ "pingCtlTrapGeneration" : {
1761
+ "nodetype" : "member",
1762
+ "module" : "DISMAN-PING-MIB"
1763
+ },
1764
+ "pingCtlTrapProbeFailureFilter" : {
1765
+ "nodetype" : "member",
1766
+ "module" : "DISMAN-PING-MIB"
1767
+ },
1768
+ "pingCtlTrapTestFailureFilter" : {
1769
+ "nodetype" : "member",
1770
+ "module" : "DISMAN-PING-MIB"
1771
+ },
1772
+ "pingCtlType" : {
1773
+ "nodetype" : "member",
1774
+ "module" : "DISMAN-PING-MIB"
1775
+ },
1776
+ "pingCtlDescr" : {
1777
+ "nodetype" : "member",
1778
+ "module" : "DISMAN-PING-MIB"
1779
+ },
1780
+ "pingCtlByPassRouteTable" : {
1781
+ "nodetype" : "member",
1782
+ "module" : "DISMAN-PING-MIB"
1783
+ },
1784
+ "pingCtlSourceAddressType" : {
1785
+ "nodetype" : "member",
1786
+ "module" : "DISMAN-PING-MIB"
1787
+ },
1788
+ "pingCtlSourceAddress" : {
1789
+ "nodetype" : "member",
1790
+ "module" : "DISMAN-PING-MIB"
1791
+ },
1792
+ "pingCtlIfIndex" : {
1793
+ "nodetype" : "member",
1794
+ "module" : "DISMAN-PING-MIB"
1795
+ },
1796
+ "pingCtlDSField" : {
1797
+ "nodetype" : "member",
1798
+ "module" : "DISMAN-PING-MIB"
1799
+ },
1800
+ "pingResultsOperStatus" : {
1801
+ "nodetype" : "member",
1802
+ "module" : "DISMAN-PING-MIB"
1803
+ },
1804
+ "pingResultsIpTargetAddressType" : {
1805
+ "nodetype" : "member",
1806
+ "module" : "DISMAN-PING-MIB"
1807
+ },
1808
+ "pingResultsIpTargetAddress" : {
1809
+ "nodetype" : "member",
1810
+ "module" : "DISMAN-PING-MIB"
1811
+ },
1812
+ "pingResultsMinRtt" : {
1813
+ "nodetype" : "member",
1814
+ "module" : "DISMAN-PING-MIB"
1815
+ },
1816
+ "pingResultsMaxRtt" : {
1817
+ "nodetype" : "member",
1818
+ "module" : "DISMAN-PING-MIB"
1819
+ },
1820
+ "pingResultsAverageRtt" : {
1821
+ "nodetype" : "member",
1822
+ "module" : "DISMAN-PING-MIB"
1823
+ },
1824
+ "pingResultsProbeResponses" : {
1825
+ "nodetype" : "member",
1826
+ "module" : "DISMAN-PING-MIB"
1827
+ },
1828
+ "pingResultsSentProbes" : {
1829
+ "nodetype" : "member",
1830
+ "module" : "DISMAN-PING-MIB"
1831
+ },
1832
+ "pingResultsRttSumOfSquares" : {
1833
+ "nodetype" : "member",
1834
+ "module" : "DISMAN-PING-MIB"
1835
+ },
1836
+ "pingResultsLastGoodProbe" : {
1837
+ "nodetype" : "member",
1838
+ "module" : "DISMAN-PING-MIB"
1839
+ },
1840
+ }, # members
1841
+ "description" :
1842
+ """The group of objects that constitute the remote ping
1843
+ capability.""",
1844
+ }, # group
1845
+ "pingCtlRowStatusGroup" : {
1846
+ "nodetype" : "group",
1847
+ "moduleName" : "DISMAN-PING-MIB",
1848
+ "oid" : "1.3.6.1.2.1.80.2.2.5",
1849
+ "status" : "current",
1850
+ "members" : {
1851
+ "pingCtlRowStatus" : {
1852
+ "nodetype" : "member",
1853
+ "module" : "DISMAN-PING-MIB"
1854
+ },
1855
+ }, # members
1856
+ "description" :
1857
+ """The RowStatus object of the pingCtlTable.""",
1858
+ }, # group
1859
+ "pingHistoryGroup" : {
1860
+ "nodetype" : "group",
1861
+ "moduleName" : "DISMAN-PING-MIB",
1862
+ "oid" : "1.3.6.1.2.1.80.2.2.6",
1863
+ "status" : "current",
1864
+ "members" : {
1865
+ "pingProbeHistoryResponse" : {
1866
+ "nodetype" : "member",
1867
+ "module" : "DISMAN-PING-MIB"
1868
+ },
1869
+ "pingProbeHistoryStatus" : {
1870
+ "nodetype" : "member",
1871
+ "module" : "DISMAN-PING-MIB"
1872
+ },
1873
+ "pingProbeHistoryLastRC" : {
1874
+ "nodetype" : "member",
1875
+ "module" : "DISMAN-PING-MIB"
1876
+ },
1877
+ "pingProbeHistoryTime" : {
1878
+ "nodetype" : "member",
1879
+ "module" : "DISMAN-PING-MIB"
1880
+ },
1881
+ }, # members
1882
+ "description" :
1883
+ """The group of objects that constitute the history
1884
+ capability.""",
1885
+ }, # group
1886
+ }, # groups
1887
+
1888
+ "compliances" : {
1889
+ "pingCompliance" : {
1890
+ "nodetype" : "compliance",
1891
+ "moduleName" : "DISMAN-PING-MIB",
1892
+ "oid" : "1.3.6.1.2.1.80.2.1.1",
1893
+ "status" : "deprecated",
1894
+ "description" :
1895
+ """The compliance statement for the DISMAN-PING-MIB. This
1896
+ compliance statement has been deprecated because the
1897
+ group pingGroup and the pingTimeStampGroup have been
1898
+ split and deprecated. The pingFullCompliance statement
1899
+ is semantically identical to the deprecated
1900
+ pingCompliance statement.""",
1901
+ "requires" : {
1902
+ "pingGroup" : {
1903
+ "nodetype" : "mandatory",
1904
+ "module" : "DISMAN-PING-MIB"
1905
+ },
1906
+ "pingNotificationsGroup" : {
1907
+ "nodetype" : "mandatory",
1908
+ "module" : "DISMAN-PING-MIB"
1909
+ },
1910
+ "pingTimeStampGroup" : {
1911
+ "nodetype" : "optional",
1912
+ "module" : "DISMAN-PING-MIB",
1913
+ "description" :
1914
+ """This group is mandatory for implementations that have
1915
+ access to a system clock and that are capable of setting
1916
+ the values for DateAndTime objects. It is RECOMMENDED
1917
+ that when this group is not supported the values
1918
+ for the objects in this group be reported as
1919
+ '0000000000000000'H.""",
1920
+ },
1921
+ }, # requires
1922
+ "refinements" : {
1923
+ "pingMaxConcurrentRequests" : {
1924
+ "module" : "DISMAN-PING-MIB",
1925
+ "access" : "readonly",
1926
+ "description" :
1927
+ """The agent is not required to support set
1928
+ operations to this object.""",
1929
+ },
1930
+ "pingCtlStorageType" : {
1931
+ "module" : "DISMAN-PING-MIB",
1932
+ "access" : "readonly",
1933
+ "description" :
1934
+ """Write access is not required. It is also allowed
1935
+ that implementations support only the volatile
1936
+ StorageType enumeration.""",
1937
+ },
1938
+ "pingCtlType" : {
1939
+ "module" : "DISMAN-PING-MIB",
1940
+ "access" : "readonly",
1941
+ "description" :
1942
+ """Write access is not required. In addition, the only
1943
+ value that MUST be supported by an implementation is
1944
+ pingIcmpEcho.""",
1945
+ },
1946
+ "pingCtlByPassRouteTable" : {
1947
+ "module" : "DISMAN-PING-MIB",
1948
+ "access" : "readonly",
1949
+ "description" :
1950
+ """This object is not required by implementations that
1951
+ are not capable of its implementation. The function
1952
+ represented by this object is implementable if the
1953
+ setsockopt SOL_SOCKET SO_DONTROUTE option is
1954
+ supported.""",
1955
+ },
1956
+ "pingCtlSourceAddressType" : {
1957
+ "module" : "DISMAN-PING-MIB",
1958
+ "syntax" : {
1959
+ "type" : {
1960
+ "basetype" : "Enumeration",
1961
+ "parent module" : {
1962
+ "name" : "INET-ADDRESS-MIB",
1963
+ "type" : "InetAddressType",
1964
+ },
1965
+ "unknown" : {
1966
+ "nodetype" : "namednumber",
1967
+ "number" : "0"
1968
+ },
1969
+ "ipv4" : {
1970
+ "nodetype" : "namednumber",
1971
+ "number" : "1"
1972
+ },
1973
+ "ipv6" : {
1974
+ "nodetype" : "namednumber",
1975
+ "number" : "2"
1976
+ },
1977
+ },
1978
+ }, # syntax
1979
+ "access" : "readonly",
1980
+ "description" :
1981
+ """This object is not required by implementations that
1982
+ are not capable of binding the send socket with a
1983
+ source address. An implementation is only required to
1984
+ support IPv4 and IPv6 addresses.""",
1985
+ },
1986
+ "pingCtlSourceAddress" : {
1987
+ "module" : "DISMAN-PING-MIB",
1988
+ "syntax" : {
1989
+ "type" : {
1990
+ "basetype" : "OctetString",
1991
+ "parent module" : {
1992
+ "name" : "INET-ADDRESS-MIB",
1993
+ "type" : "InetAddress",
1994
+ },
1995
+ "ranges" : [
1996
+ {
1997
+ "min" : "0",
1998
+ "max" : "0"
1999
+ },
2000
+ {
2001
+ "min" : "4",
2002
+ "max" : "4"
2003
+ },
2004
+ {
2005
+ "min" : "16",
2006
+ "max" : "16"
2007
+ },
2008
+ ],
2009
+ "range" : {
2010
+ "min" : "0",
2011
+ "max" : "16"
2012
+ },
2013
+ },
2014
+ }, # syntax
2015
+ "access" : "readonly",
2016
+ "description" :
2017
+ """This object is not required by implementations that
2018
+ are not capable of binding the send socket with a
2019
+ source address. An implementation is only required to
2020
+ support IPv4 and globally unique IPv6 addresses.""",
2021
+ },
2022
+ "pingCtlIfIndex" : {
2023
+ "module" : "DISMAN-PING-MIB",
2024
+ "access" : "readonly",
2025
+ "description" :
2026
+ """Write access is not required. When write access is
2027
+ not supported, return a 0 as the value of this object.
2028
+ A value of 0 means that the function represented by
2029
+ this option is not supported.""",
2030
+ },
2031
+ "pingCtlDSField" : {
2032
+ "module" : "DISMAN-PING-MIB",
2033
+ "access" : "readonly",
2034
+ "description" :
2035
+ """Write access is not required. When write access is
2036
+ not supported, return a 0 as the value of this object.
2037
+ A value of 0 means that the function represented by
2038
+ this option is not supported.""",
2039
+ },
2040
+ "pingResultsIpTargetAddressType" : {
2041
+ "module" : "DISMAN-PING-MIB",
2042
+ "syntax" : {
2043
+ "type" : {
2044
+ "basetype" : "Enumeration",
2045
+ "parent module" : {
2046
+ "name" : "INET-ADDRESS-MIB",
2047
+ "type" : "InetAddressType",
2048
+ },
2049
+ "unknown" : {
2050
+ "nodetype" : "namednumber",
2051
+ "number" : "0"
2052
+ },
2053
+ "ipv4" : {
2054
+ "nodetype" : "namednumber",
2055
+ "number" : "1"
2056
+ },
2057
+ "ipv6" : {
2058
+ "nodetype" : "namednumber",
2059
+ "number" : "2"
2060
+ },
2061
+ },
2062
+ }, # syntax
2063
+ "description" :
2064
+ """An implementation is only required to
2065
+ support IPv4 and IPv6 addresses.""",
2066
+ },
2067
+ "pingResultsIpTargetAddress" : {
2068
+ "module" : "DISMAN-PING-MIB",
2069
+ "syntax" : {
2070
+ "type" : {
2071
+ "basetype" : "OctetString",
2072
+ "parent module" : {
2073
+ "name" : "INET-ADDRESS-MIB",
2074
+ "type" : "InetAddress",
2075
+ },
2076
+ "ranges" : [
2077
+ {
2078
+ "min" : "0",
2079
+ "max" : "0"
2080
+ },
2081
+ {
2082
+ "min" : "4",
2083
+ "max" : "4"
2084
+ },
2085
+ {
2086
+ "min" : "16",
2087
+ "max" : "16"
2088
+ },
2089
+ ],
2090
+ "range" : {
2091
+ "min" : "0",
2092
+ "max" : "16"
2093
+ },
2094
+ },
2095
+ }, # syntax
2096
+ "description" :
2097
+ """An implementation is only required to
2098
+ support IPv4 and globally unique IPv6 addresses.""",
2099
+ },
2100
+ }, # refinements
2101
+
2102
+ }, # compliance
2103
+ "pingFullCompliance" : {
2104
+ "nodetype" : "compliance",
2105
+ "moduleName" : "DISMAN-PING-MIB",
2106
+ "oid" : "1.3.6.1.2.1.80.2.1.2",
2107
+ "status" : "current",
2108
+ "description" :
2109
+ """The compliance statement for SNMP entities that
2110
+ fully implement the DISMAN-PING-MIB.""",
2111
+ "requires" : {
2112
+ "pingMinimumGroup" : {
2113
+ "nodetype" : "mandatory",
2114
+ "module" : "DISMAN-PING-MIB"
2115
+ },
2116
+ "pingCtlRowStatusGroup" : {
2117
+ "nodetype" : "mandatory",
2118
+ "module" : "DISMAN-PING-MIB"
2119
+ },
2120
+ "pingHistoryGroup" : {
2121
+ "nodetype" : "mandatory",
2122
+ "module" : "DISMAN-PING-MIB"
2123
+ },
2124
+ "pingNotificationsGroup" : {
2125
+ "nodetype" : "mandatory",
2126
+ "module" : "DISMAN-PING-MIB"
2127
+ },
2128
+ }, # requires
2129
+ "refinements" : {
2130
+ "pingMaxConcurrentRequests" : {
2131
+ "module" : "DISMAN-PING-MIB",
2132
+ "access" : "readonly",
2133
+ "description" :
2134
+ """The agent is not required to support set
2135
+ operations to this object.""",
2136
+ },
2137
+ "pingCtlStorageType" : {
2138
+ "module" : "DISMAN-PING-MIB",
2139
+ "access" : "readonly",
2140
+ "description" :
2141
+ """Write access is not required.""",
2142
+ },
2143
+ "pingCtlType" : {
2144
+ "module" : "DISMAN-PING-MIB",
2145
+ "access" : "readonly",
2146
+ "description" :
2147
+ """Write access is not required. In addition, the only
2148
+ value that MUST be supported by an implementation is
2149
+ pingIcmpEcho.""",
2150
+ },
2151
+ "pingCtlSourceAddressType" : {
2152
+ "module" : "DISMAN-PING-MIB",
2153
+ "syntax" : {
2154
+ "type" : {
2155
+ "basetype" : "Enumeration",
2156
+ "parent module" : {
2157
+ "name" : "INET-ADDRESS-MIB",
2158
+ "type" : "InetAddressType",
2159
+ },
2160
+ "unknown" : {
2161
+ "nodetype" : "namednumber",
2162
+ "number" : "0"
2163
+ },
2164
+ "ipv4" : {
2165
+ "nodetype" : "namednumber",
2166
+ "number" : "1"
2167
+ },
2168
+ "ipv6" : {
2169
+ "nodetype" : "namednumber",
2170
+ "number" : "2"
2171
+ },
2172
+ },
2173
+ }, # syntax
2174
+ "access" : "readonly",
2175
+ "description" :
2176
+ """Write access to this object is not required by
2177
+ implementations that are not capable of binding the
2178
+ send socket with a source address. An implementation
2179
+ is only required to support IPv4 and IPv6 addresses.""",
2180
+ },
2181
+ "pingCtlSourceAddress" : {
2182
+ "module" : "DISMAN-PING-MIB",
2183
+ "syntax" : {
2184
+ "type" : {
2185
+ "basetype" : "OctetString",
2186
+ "parent module" : {
2187
+ "name" : "INET-ADDRESS-MIB",
2188
+ "type" : "InetAddress",
2189
+ },
2190
+ "ranges" : [
2191
+ {
2192
+ "min" : "0",
2193
+ "max" : "0"
2194
+ },
2195
+ {
2196
+ "min" : "4",
2197
+ "max" : "4"
2198
+ },
2199
+ {
2200
+ "min" : "16",
2201
+ "max" : "16"
2202
+ },
2203
+ ],
2204
+ "range" : {
2205
+ "min" : "0",
2206
+ "max" : "16"
2207
+ },
2208
+ },
2209
+ }, # syntax
2210
+ "access" : "readonly",
2211
+ "description" :
2212
+ """Write access to this object is not required by
2213
+ implementations that are not capable of binding the
2214
+ send socket with a source address. An implementation
2215
+ is only required to support IPv4 and IPv6 addresses.""",
2216
+ },
2217
+ "pingCtlIfIndex" : {
2218
+ "module" : "DISMAN-PING-MIB",
2219
+ "access" : "readonly",
2220
+ "description" :
2221
+ """Write access is not required. If write access is
2222
+ not supported, return a 0 as the value of this object.
2223
+ A value of 0 means that the function represented by
2224
+ this option is not supported.""",
2225
+ },
2226
+ "pingCtlByPassRouteTable" : {
2227
+ "module" : "DISMAN-PING-MIB",
2228
+ "access" : "readonly",
2229
+ "description" :
2230
+ """Write access to this object is not required by
2231
+ implementations that are not capable of its
2232
+ implementation. The function represented by this
2233
+ object is implementable if the setsockopt
2234
+ SOL_SOCKET SO_DONTROUTE option is supported.""",
2235
+ },
2236
+ "pingCtlDSField" : {
2237
+ "module" : "DISMAN-PING-MIB",
2238
+ "access" : "readonly",
2239
+ "description" :
2240
+ """Write access is not required. If write access is
2241
+ not supported, return a 0 as the value of this object.
2242
+ A value of 0 means that the function represented by
2243
+ this option is not supported.""",
2244
+ },
2245
+ "pingResultsIpTargetAddressType" : {
2246
+ "module" : "DISMAN-PING-MIB",
2247
+ "syntax" : {
2248
+ "type" : {
2249
+ "basetype" : "Enumeration",
2250
+ "parent module" : {
2251
+ "name" : "INET-ADDRESS-MIB",
2252
+ "type" : "InetAddressType",
2253
+ },
2254
+ "unknown" : {
2255
+ "nodetype" : "namednumber",
2256
+ "number" : "0"
2257
+ },
2258
+ "ipv4" : {
2259
+ "nodetype" : "namednumber",
2260
+ "number" : "1"
2261
+ },
2262
+ "ipv6" : {
2263
+ "nodetype" : "namednumber",
2264
+ "number" : "2"
2265
+ },
2266
+ },
2267
+ }, # syntax
2268
+ "description" :
2269
+ """An implementation is only required to
2270
+
2271
+
2272
+
2273
+ support IPv4 and IPv6 addresses.""",
2274
+ },
2275
+ "pingResultsIpTargetAddress" : {
2276
+ "module" : "DISMAN-PING-MIB",
2277
+ "syntax" : {
2278
+ "type" : {
2279
+ "basetype" : "OctetString",
2280
+ "parent module" : {
2281
+ "name" : "INET-ADDRESS-MIB",
2282
+ "type" : "InetAddress",
2283
+ },
2284
+ "ranges" : [
2285
+ {
2286
+ "min" : "0",
2287
+ "max" : "0"
2288
+ },
2289
+ {
2290
+ "min" : "4",
2291
+ "max" : "4"
2292
+ },
2293
+ {
2294
+ "min" : "16",
2295
+ "max" : "16"
2296
+ },
2297
+ ],
2298
+ "range" : {
2299
+ "min" : "0",
2300
+ "max" : "16"
2301
+ },
2302
+ },
2303
+ }, # syntax
2304
+ "description" :
2305
+ """An implementation is only required to
2306
+ support IPv4 and globally unique IPv6 addresses.""",
2307
+ },
2308
+ "pingResultsLastGoodProbe" : {
2309
+ "module" : "DISMAN-PING-MIB",
2310
+ "description" :
2311
+ """This object is mandatory for implementations that have
2312
+ access to a system clock and that are capable of setting
2313
+ the values for DateAndTime objects. It is RECOMMENDED
2314
+ that when this object is not supported its values
2315
+ be reported as '0000000000000000'H.""",
2316
+ },
2317
+ "pingProbeHistoryTime" : {
2318
+ "module" : "DISMAN-PING-MIB",
2319
+ "description" :
2320
+ """This object is mandatory for implementations that have
2321
+ access to a system clock and that are capable of setting
2322
+ the values for DateAndTime objects. It is RECOMMENDED
2323
+ that when this object is not supported its values
2324
+ be reported as '0000000000000000'H.""",
2325
+ },
2326
+ }, # refinements
2327
+
2328
+ }, # compliance
2329
+ "pingMinimumCompliance" : {
2330
+ "nodetype" : "compliance",
2331
+ "moduleName" : "DISMAN-PING-MIB",
2332
+ "oid" : "1.3.6.1.2.1.80.2.1.3",
2333
+ "status" : "current",
2334
+ "description" :
2335
+ """The minimum compliance statement for SNMP entities
2336
+ that implement the minimal subset of the
2337
+ DISMAN-PING-MIB. Implementors might choose this
2338
+ subset for small devices with limited resources.""",
2339
+ "requires" : {
2340
+ "pingMinimumGroup" : {
2341
+ "nodetype" : "mandatory",
2342
+ "module" : "DISMAN-PING-MIB"
2343
+ },
2344
+ "pingCtlRowStatusGroup" : {
2345
+ "nodetype" : "optional",
2346
+ "module" : "DISMAN-PING-MIB",
2347
+ "description" :
2348
+ """A compliant implementation does not have to implement
2349
+ the pingCtlRowStatusGroup.""",
2350
+ },
2351
+ "pingHistoryGroup" : {
2352
+ "nodetype" : "optional",
2353
+ "module" : "DISMAN-PING-MIB",
2354
+ "description" :
2355
+ """A compliant implementation does not have to implement
2356
+ the pingHistoryGroup.""",
2357
+ },
2358
+ "pingNotificationsGroup" : {
2359
+ "nodetype" : "optional",
2360
+ "module" : "DISMAN-PING-MIB",
2361
+ "description" :
2362
+ """A compliant implementation does not have to implement
2363
+
2364
+
2365
+
2366
+ the pingNotificationsGroup.""",
2367
+ },
2368
+ }, # requires
2369
+ "refinements" : {
2370
+ "pingMaxConcurrentRequests" : {
2371
+ "module" : "DISMAN-PING-MIB",
2372
+ "access" : "readonly",
2373
+ "description" :
2374
+ """The agent is not required to support set
2375
+ operations to this object.""",
2376
+ },
2377
+ "pingCtlDataFill" : {
2378
+ "module" : "DISMAN-PING-MIB",
2379
+ "access" : "readonly",
2380
+ "description" :
2381
+ """The agent is not required to support set
2382
+ operations to this object.""",
2383
+ },
2384
+ "pingCtlFrequency" : {
2385
+ "module" : "DISMAN-PING-MIB",
2386
+ "access" : "readonly",
2387
+ "description" :
2388
+ """Write access is not required. If write access is
2389
+ not supported, return a 0 as the value of this object.
2390
+ A value of 0 means that the function represented by
2391
+ this option is not supported.""",
2392
+ },
2393
+ "pingCtlMaxRows" : {
2394
+ "module" : "DISMAN-PING-MIB",
2395
+ "access" : "readonly",
2396
+ "description" :
2397
+ """Write access is not required. If the
2398
+ pingHistoryGroup is not implemented, then write
2399
+ access to this object MUST be disabled, and the object
2400
+ MUST return a value of 0 when retrieved.""",
2401
+ },
2402
+ "pingCtlStorageType" : {
2403
+ "module" : "DISMAN-PING-MIB",
2404
+ "access" : "readonly",
2405
+ "description" :
2406
+ """Write access is not required.""",
2407
+ },
2408
+ "pingCtlTrapGeneration" : {
2409
+ "module" : "DISMAN-PING-MIB",
2410
+ "access" : "readonly",
2411
+ "description" :
2412
+ """Write access is not required. If the
2413
+ pingNotificationsGroup is not implemented, then write
2414
+ access to this object MUST be disabled, and the object
2415
+ MUST return a value with no bit set when retrieved.
2416
+ No bit set indicates that not notification is
2417
+ generated.""",
2418
+ },
2419
+ "pingCtlTrapProbeFailureFilter" : {
2420
+ "module" : "DISMAN-PING-MIB",
2421
+ "access" : "readonly",
2422
+ "description" :
2423
+ """If write access to pingCtlTrapGeneration is not
2424
+ supported, then write access to this object must also
2425
+ not be supported. In this case, return 0 as the value
2426
+ of this object.""",
2427
+ },
2428
+ "pingCtlTrapTestFailureFilter" : {
2429
+ "module" : "DISMAN-PING-MIB",
2430
+ "access" : "readonly",
2431
+ "description" :
2432
+ """If write access to pingCtlTrapGeneration is not
2433
+ supported, then write access to this object must also
2434
+ not be supported. In this case, return 0 as the value
2435
+ of this object.""",
2436
+ },
2437
+ "pingCtlType" : {
2438
+ "module" : "DISMAN-PING-MIB",
2439
+ "access" : "readonly",
2440
+ "description" :
2441
+ """Write access is not required. In addition, the only
2442
+ value that MUST be supported by an implementation is
2443
+ pingIcmpEcho.""",
2444
+ },
2445
+ "pingCtlDescr" : {
2446
+ "module" : "DISMAN-PING-MIB",
2447
+ "access" : "readonly",
2448
+ "description" :
2449
+ """The agent is not required to support set
2450
+ operations to this object.""",
2451
+ },
2452
+ "pingCtlSourceAddressType" : {
2453
+ "module" : "DISMAN-PING-MIB",
2454
+ "syntax" : {
2455
+ "type" : {
2456
+ "basetype" : "Enumeration",
2457
+ "parent module" : {
2458
+ "name" : "INET-ADDRESS-MIB",
2459
+ "type" : "InetAddressType",
2460
+ },
2461
+ "unknown" : {
2462
+ "nodetype" : "namednumber",
2463
+ "number" : "0"
2464
+ },
2465
+ "ipv4" : {
2466
+ "nodetype" : "namednumber",
2467
+ "number" : "1"
2468
+ },
2469
+ "ipv6" : {
2470
+ "nodetype" : "namednumber",
2471
+ "number" : "2"
2472
+ },
2473
+ },
2474
+ }, # syntax
2475
+ "access" : "readonly",
2476
+ "description" :
2477
+ """Write access to this object is not required by
2478
+ implementations that are not capable of binding the
2479
+ send socket with a source address. An implementation
2480
+ is only required to support IPv4 and IPv6 addresses.""",
2481
+ },
2482
+ "pingCtlSourceAddress" : {
2483
+ "module" : "DISMAN-PING-MIB",
2484
+ "syntax" : {
2485
+ "type" : {
2486
+ "basetype" : "OctetString",
2487
+ "parent module" : {
2488
+ "name" : "INET-ADDRESS-MIB",
2489
+ "type" : "InetAddress",
2490
+ },
2491
+ "ranges" : [
2492
+ {
2493
+ "min" : "0",
2494
+ "max" : "0"
2495
+ },
2496
+ {
2497
+ "min" : "4",
2498
+ "max" : "4"
2499
+ },
2500
+ {
2501
+ "min" : "16",
2502
+ "max" : "16"
2503
+ },
2504
+ ],
2505
+ "range" : {
2506
+ "min" : "0",
2507
+ "max" : "16"
2508
+ },
2509
+ },
2510
+ }, # syntax
2511
+ "access" : "readonly",
2512
+ "description" :
2513
+ """Write access to this object is not required by
2514
+ implementations that are not capable of binding the
2515
+ send socket with a source address. An implementation
2516
+ is only required to support IPv4 and IPv6 addresses.""",
2517
+ },
2518
+ "pingCtlIfIndex" : {
2519
+ "module" : "DISMAN-PING-MIB",
2520
+ "access" : "readonly",
2521
+ "description" :
2522
+ """Write access is not required. If write access is
2523
+
2524
+
2525
+
2526
+ not supported, return a 0 as the value of this object.
2527
+ A value of 0 means that the function represented by
2528
+ this option is not supported.""",
2529
+ },
2530
+ "pingCtlByPassRouteTable" : {
2531
+ "module" : "DISMAN-PING-MIB",
2532
+ "access" : "readonly",
2533
+ "description" :
2534
+ """Write access is not required. If write access is
2535
+ not supported, return false(2) as the value of this
2536
+ object. A value of false(2) means that the function
2537
+ represented by this option is not supported.""",
2538
+ },
2539
+ "pingCtlDSField" : {
2540
+ "module" : "DISMAN-PING-MIB",
2541
+ "access" : "readonly",
2542
+ "description" :
2543
+ """Write access is not required. If write access is
2544
+ not supported, return a 0 as the value of this object.
2545
+ A value of 0 means that the function represented by
2546
+ this option is not supported.""",
2547
+ },
2548
+ "pingResultsIpTargetAddressType" : {
2549
+ "module" : "DISMAN-PING-MIB",
2550
+ "syntax" : {
2551
+ "type" : {
2552
+ "basetype" : "Enumeration",
2553
+ "parent module" : {
2554
+ "name" : "INET-ADDRESS-MIB",
2555
+ "type" : "InetAddressType",
2556
+ },
2557
+ "unknown" : {
2558
+ "nodetype" : "namednumber",
2559
+ "number" : "0"
2560
+ },
2561
+ "ipv4" : {
2562
+ "nodetype" : "namednumber",
2563
+ "number" : "1"
2564
+ },
2565
+ "ipv6" : {
2566
+ "nodetype" : "namednumber",
2567
+ "number" : "2"
2568
+ },
2569
+ },
2570
+ }, # syntax
2571
+ "description" :
2572
+ """An implementation is only required to
2573
+ support IPv4 and IPv6 addresses.""",
2574
+ },
2575
+ "pingResultsIpTargetAddress" : {
2576
+ "module" : "DISMAN-PING-MIB",
2577
+ "syntax" : {
2578
+ "type" : {
2579
+ "basetype" : "OctetString",
2580
+ "parent module" : {
2581
+ "name" : "INET-ADDRESS-MIB",
2582
+ "type" : "InetAddress",
2583
+ },
2584
+ "ranges" : [
2585
+ {
2586
+ "min" : "0",
2587
+ "max" : "0"
2588
+ },
2589
+ {
2590
+ "min" : "4",
2591
+ "max" : "4"
2592
+ },
2593
+ {
2594
+ "min" : "16",
2595
+ "max" : "16"
2596
+ },
2597
+ ],
2598
+ "range" : {
2599
+ "min" : "0",
2600
+ "max" : "16"
2601
+ },
2602
+ },
2603
+ }, # syntax
2604
+ "description" :
2605
+ """An implementation is only required to
2606
+ support IPv4 and globally unique IPv6 addresses.""",
2607
+ },
2608
+ "pingResultsLastGoodProbe" : {
2609
+ "module" : "DISMAN-PING-MIB",
2610
+ "description" :
2611
+ """This object is mandatory for implementations that have
2612
+ access to a system clock and that are capable of setting
2613
+ the values for DateAndTime objects. It is RECOMMENDED
2614
+ that when this object is not supported its values
2615
+ be reported as '0000000000000000'H.""",
2616
+ },
2617
+ "pingProbeHistoryTime" : {
2618
+ "module" : "DISMAN-PING-MIB",
2619
+ "description" :
2620
+ """If the pingHistoryGroup is implemented, then this
2621
+ object is mandatory for implementations that have
2622
+ access to a system clock and that are capable of setting
2623
+ the values for DateAndTime objects. It is RECOMMENDED
2624
+ that when this object is not supported its values
2625
+
2626
+
2627
+
2628
+ be reported as '0000000000000000'H.""",
2629
+ },
2630
+ }, # refinements
2631
+
2632
+ }, # compliance
2633
+ }, # compliances
2634
+
2635
+ }