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,3239 @@
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-TRACEROUTE-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/DISMAN-TRACEROUTE-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
11
+
12
+ "DISMAN-TRACEROUTE-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
+ Email: quittek@netlab.nec.de""",
28
+ "description" :
29
+ """The Traceroute MIB (DISMAN-TRACEROUTE-MIB) provides
30
+ access to the traceroute capability at a remote host.
31
+
32
+ Copyright (C) The Internet Society (2006). This version of
33
+ this MIB module is part of RFC 4560; see the RFC itself for
34
+ full legal notices.""",
35
+ "revisions" : (
36
+ {
37
+ "date" : "2006-06-13 00:00",
38
+ "description" :
39
+ """Updated version, published as RFC 4560.
40
+ - Correctly considered IPv6 in DESCRIPTION clause of
41
+ object traceRouteCtlDataSize
42
+ - Replaced references to RFC 2575 by RFC 3415
43
+ - Replaced references to RFC 2571 by RFC 3411
44
+ - Replaced references to RFC 2851 by RFC 4001
45
+ - Clarified DESCRIPTION clause of object
46
+ traceRouteResultsLastGoodPath
47
+ - Changed range of object traceRouteCtlInitialTtl
48
+ from (0..255) to (1..255)
49
+ - Extended DESCRIPTION clause of traceRouteResultsTable
50
+ describing re-initialization of entries
51
+ - Changed SYNTAX of traceRouteResultsTestAttempts and
52
+ traceRouteResultsTestSuccesses from Unsigned32 to
53
+ Gauge32
54
+ - Changed status of traceRouteCompliance to deprecated
55
+ - Added traceRouteFullCompliance and
56
+ traceRouteMinimumCompliance
57
+ - Changed status of traceRouteGroup and
58
+ traceRouteTimeStampGroup to deprecated
59
+ - Added traceRouteMinimumGroup,
60
+ traceRouteCtlRowStatusGroup, and
61
+ traceRouteHistoryGroup
62
+ - Changed DEFVAL of object
63
+ traceRouteCtlTargetAddressType from { ipv4 }
64
+ to { unknown }
65
+ - Changed DEFVAL of object traceRouteCtlDescr
66
+ from { '00'H } to { ''H }
67
+ - Added DEFVAL for object traceRouteCtlTrapGeneration
68
+ of DEFVAL { { } }""",
69
+ },
70
+ {
71
+ "date" : "2000-09-21 00:00",
72
+ "description" :
73
+ """Initial version, published as RFC 2925.""",
74
+ },
75
+ ),
76
+ "identity node" : "traceRouteMIB",
77
+ },
78
+
79
+ "imports" : (
80
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
81
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
82
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
83
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
84
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
85
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
86
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
87
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-IDENTITY"},
88
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
89
+ {"module" : "SNMPv2-TC", "name" : "StorageType"},
90
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
91
+ {"module" : "SNMPv2-TC", "name" : "DateAndTime"},
92
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
93
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
94
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
95
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
96
+ {"module" : "IF-MIB", "name" : "InterfaceIndexOrZero"},
97
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddressType"},
98
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddress"},
99
+ {"module" : "DISMAN-PING-MIB", "name" : "OperationResponseStatus"},
100
+ ),
101
+
102
+ "nodes" : {
103
+ "traceRouteMIB" : {
104
+ "nodetype" : "node",
105
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
106
+ "oid" : "1.3.6.1.2.1.81",
107
+ "status" : "current",
108
+ }, # node
109
+ "traceRouteNotifications" : {
110
+ "nodetype" : "node",
111
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
112
+ "oid" : "1.3.6.1.2.1.81.0",
113
+ }, # node
114
+ "traceRouteObjects" : {
115
+ "nodetype" : "node",
116
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
117
+ "oid" : "1.3.6.1.2.1.81.1",
118
+ }, # node
119
+ "traceRouteMaxConcurrentRequests" : {
120
+ "nodetype" : "scalar",
121
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
122
+ "oid" : "1.3.6.1.2.1.81.1.1",
123
+ "status" : "current",
124
+ "syntax" : {
125
+ "type" : { "module" :"", "name" : "Unsigned32"},
126
+ },
127
+ "access" : "readwrite",
128
+ "default" : "10",
129
+ "units" : "requests",
130
+ "description" :
131
+ """The maximum number of concurrent active traceroute requests
132
+ that are allowed within an agent implementation. A value
133
+ of 0 for this object implies that there is no limit for
134
+ the number of concurrent active requests in effect.
135
+
136
+ The limit applies only to new requests being activated.
137
+ When a new value is set, the agent will continue processing
138
+ all the requests already active, even if their number
139
+ exceeds the limit just imposed.""",
140
+ }, # scalar
141
+ "traceRouteCtlTable" : {
142
+ "nodetype" : "table",
143
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
144
+ "oid" : "1.3.6.1.2.1.81.1.2",
145
+ "status" : "current",
146
+ "description" :
147
+ """Defines the Remote Operations Traceroute Control Table for
148
+ providing the capability of invoking traceroute from a remote
149
+ host. The results of traceroute operations can be stored in
150
+ the traceRouteResultsTable, traceRouteProbeHistoryTable, and
151
+ the traceRouteHopsTable.""",
152
+ }, # table
153
+ "traceRouteCtlEntry" : {
154
+ "nodetype" : "row",
155
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
156
+ "oid" : "1.3.6.1.2.1.81.1.2.1",
157
+ "create" : "true",
158
+ "status" : "current",
159
+ "linkage" : [
160
+ "traceRouteCtlOwnerIndex",
161
+ "traceRouteCtlTestName",
162
+ ],
163
+ "description" :
164
+ """Defines an entry in the traceRouteCtlTable. The first
165
+ index element, traceRouteCtlOwnerIndex, is of type
166
+ SnmpAdminString, a textual convention that allows for
167
+ use of the SNMPv3 View-Based Access Control Model
168
+ (RFC 3415, VACM) and that allows a management
169
+ application to identify its entries. The second index,
170
+ traceRouteCtlTestName (also an SnmpAdminString),
171
+ enables the same management application to have
172
+ multiple requests outstanding.""",
173
+ }, # row
174
+ "traceRouteCtlOwnerIndex" : {
175
+ "nodetype" : "column",
176
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
177
+ "oid" : "1.3.6.1.2.1.81.1.2.1.1",
178
+ "status" : "current",
179
+ "syntax" : {
180
+ "type" : {
181
+ "basetype" : "OctetString",
182
+ "parent module" : {
183
+ "name" : "SNMP-FRAMEWORK-MIB",
184
+ "type" : "SnmpAdminString",
185
+ },
186
+ "ranges" : [
187
+ {
188
+ "min" : "0",
189
+ "max" : "32"
190
+ },
191
+ ],
192
+ "range" : {
193
+ "min" : "0",
194
+ "max" : "32"
195
+ },
196
+ },
197
+ },
198
+ "access" : "noaccess",
199
+ "description" :
200
+ """To facilitate the provisioning of access control by a
201
+ security administrator using the View-Based Access
202
+ Control Model (RFC 3415, VACM) for tables in which
203
+ multiple users may need to create or
204
+ modify entries independently, the initial index is used as
205
+ an 'owner index'. Such an initial index has a syntax of
206
+ SnmpAdminString and can thus be trivially mapped to a
207
+ securityName or groupName defined in VACM, in
208
+ accordance with a security policy.
209
+
210
+ When used in conjunction with such a security policy,
211
+ all entries in the table belonging to a particular user
212
+ (or group) will have the same value for this initial
213
+ index. For a given user's entries in a particular
214
+ table, the object identifiers for the information in
215
+ these entries will have the same subidentifiers (except
216
+ for the 'column' subidentifier) up to the end of the
217
+ encoded owner index. To configure VACM to permit access
218
+ to this portion of the table, one would create
219
+ vacmViewTreeFamilyTable entries with the value of
220
+ vacmViewTreeFamilySubtree including the owner index
221
+ portion, and vacmViewTreeFamilyMask 'wildcarding' the
222
+ column subidentifier. More elaborate configurations
223
+ are possible.""",
224
+ }, # column
225
+ "traceRouteCtlTestName" : {
226
+ "nodetype" : "column",
227
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
228
+ "oid" : "1.3.6.1.2.1.81.1.2.1.2",
229
+ "status" : "current",
230
+ "syntax" : {
231
+ "type" : {
232
+ "basetype" : "OctetString",
233
+ "parent module" : {
234
+ "name" : "SNMP-FRAMEWORK-MIB",
235
+ "type" : "SnmpAdminString",
236
+ },
237
+ "ranges" : [
238
+ {
239
+ "min" : "0",
240
+ "max" : "32"
241
+ },
242
+ ],
243
+ "range" : {
244
+ "min" : "0",
245
+ "max" : "32"
246
+ },
247
+ },
248
+ },
249
+ "access" : "noaccess",
250
+ "description" :
251
+ """The name of a traceroute test. This is locally unique,
252
+ within the scope of a traceRouteCtlOwnerIndex.""",
253
+ }, # column
254
+ "traceRouteCtlTargetAddressType" : {
255
+ "nodetype" : "column",
256
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
257
+ "oid" : "1.3.6.1.2.1.81.1.2.1.3",
258
+ "status" : "current",
259
+ "syntax" : {
260
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
261
+ },
262
+ "access" : "readwrite",
263
+ "default" : "unknown",
264
+ "description" :
265
+ """Specifies the type of host address to be used on the
266
+ traceroute request at the remote host.""",
267
+ }, # column
268
+ "traceRouteCtlTargetAddress" : {
269
+ "nodetype" : "column",
270
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
271
+ "oid" : "1.3.6.1.2.1.81.1.2.1.4",
272
+ "status" : "current",
273
+ "syntax" : {
274
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
275
+ },
276
+ "access" : "readwrite",
277
+ "description" :
278
+ """Specifies the host address used on the
279
+ traceroute request at the remote host. The
280
+ host address type can be determined by
281
+ examining the value of the corresponding
282
+ traceRouteCtlTargetAddressType.
283
+
284
+ A value for this object MUST be set prior to
285
+ transitioning its corresponding traceRouteCtlEntry to
286
+ active(1) via traceRouteCtlRowStatus.""",
287
+ }, # column
288
+ "traceRouteCtlByPassRouteTable" : {
289
+ "nodetype" : "column",
290
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
291
+ "oid" : "1.3.6.1.2.1.81.1.2.1.5",
292
+ "status" : "current",
293
+ "syntax" : {
294
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
295
+ },
296
+ "access" : "readwrite",
297
+ "default" : "false",
298
+ "description" :
299
+ """The purpose of this object is to enable optional
300
+ bypassing the route table. If enabled, the remote
301
+ host will bypass the normal routing tables and send
302
+ directly to a host on an attached network. If the
303
+ host is not on a directly attached network, an
304
+ error is returned. This option can be used to perform
305
+ the traceroute operation to a local host through an
306
+ interface that has no route defined (e.g., after the
307
+ interface was dropped by the routing daemon at the host).""",
308
+ }, # column
309
+ "traceRouteCtlDataSize" : {
310
+ "nodetype" : "column",
311
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
312
+ "oid" : "1.3.6.1.2.1.81.1.2.1.6",
313
+ "status" : "current",
314
+ "syntax" : {
315
+ "type" : {
316
+ "basetype" : "Unsigned32",
317
+ "ranges" : [
318
+ {
319
+ "min" : "0",
320
+ "max" : "65507"
321
+ },
322
+ ],
323
+ "range" : {
324
+ "min" : "0",
325
+ "max" : "65507"
326
+ },
327
+ },
328
+ },
329
+ "access" : "readwrite",
330
+ "default" : "0",
331
+ "units" : "octets",
332
+ "description" :
333
+ """Specifies the size of the data portion of a traceroute
334
+ request, in octets. If the RECOMMENDED traceroute method
335
+ (UDP datagrams as probes) is used, then the value
336
+ contained in this object MUST be applied. If another
337
+ traceroute method is used for which the specified size
338
+ is not appropriate, then the implementation SHOULD use
339
+ whatever size (appropriate to the method) is closest to
340
+ the specified size.
341
+
342
+
343
+
344
+
345
+ The maximum value for this object was computed by
346
+ subtracting the smallest possible IP header size of
347
+ 20 octets (IPv4 header with no options) and the UDP
348
+ header size of 8 octets from the maximum IP packet size.
349
+ An IP packet has a maximum size of 65535 octets
350
+ (excluding IPv6 Jumbograms).""",
351
+ }, # column
352
+ "traceRouteCtlTimeOut" : {
353
+ "nodetype" : "column",
354
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
355
+ "oid" : "1.3.6.1.2.1.81.1.2.1.7",
356
+ "status" : "current",
357
+ "syntax" : {
358
+ "type" : {
359
+ "basetype" : "Unsigned32",
360
+ "ranges" : [
361
+ {
362
+ "min" : "1",
363
+ "max" : "60"
364
+ },
365
+ ],
366
+ "range" : {
367
+ "min" : "1",
368
+ "max" : "60"
369
+ },
370
+ },
371
+ },
372
+ "access" : "readwrite",
373
+ "default" : "3",
374
+ "units" : "seconds",
375
+ "description" :
376
+ """Specifies the time-out value, in seconds, for
377
+ a traceroute request.""",
378
+ }, # column
379
+ "traceRouteCtlProbesPerHop" : {
380
+ "nodetype" : "column",
381
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
382
+ "oid" : "1.3.6.1.2.1.81.1.2.1.8",
383
+ "status" : "current",
384
+ "syntax" : {
385
+ "type" : {
386
+ "basetype" : "Unsigned32",
387
+ "ranges" : [
388
+ {
389
+ "min" : "1",
390
+ "max" : "10"
391
+ },
392
+ ],
393
+ "range" : {
394
+ "min" : "1",
395
+ "max" : "10"
396
+ },
397
+ },
398
+ },
399
+ "access" : "readwrite",
400
+ "default" : "3",
401
+ "units" : "probes",
402
+ "description" :
403
+ """Specifies the number of times to reissue a traceroute
404
+ request with the same time-to-live (TTL) value.""",
405
+ }, # column
406
+ "traceRouteCtlPort" : {
407
+ "nodetype" : "column",
408
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
409
+ "oid" : "1.3.6.1.2.1.81.1.2.1.9",
410
+ "status" : "current",
411
+ "syntax" : {
412
+ "type" : {
413
+ "basetype" : "Unsigned32",
414
+ "ranges" : [
415
+ {
416
+ "min" : "1",
417
+ "max" : "65535"
418
+ },
419
+ ],
420
+ "range" : {
421
+ "min" : "1",
422
+ "max" : "65535"
423
+ },
424
+ },
425
+ },
426
+ "access" : "readwrite",
427
+ "default" : "33434",
428
+ "units" : "UDP Port",
429
+ "description" :
430
+ """Specifies the (initial) UDP port to send the traceroute
431
+ request to. A port needs to be specified that is not in
432
+ use at the destination (target) host. The default
433
+ value for this object is the IANA assigned port,
434
+ 33434, for the traceroute function.""",
435
+ }, # column
436
+ "traceRouteCtlMaxTtl" : {
437
+ "nodetype" : "column",
438
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
439
+ "oid" : "1.3.6.1.2.1.81.1.2.1.10",
440
+ "status" : "current",
441
+ "syntax" : {
442
+ "type" : {
443
+ "basetype" : "Unsigned32",
444
+ "ranges" : [
445
+ {
446
+ "min" : "1",
447
+ "max" : "255"
448
+ },
449
+ ],
450
+ "range" : {
451
+ "min" : "1",
452
+ "max" : "255"
453
+ },
454
+ },
455
+ },
456
+ "access" : "readwrite",
457
+ "default" : "30",
458
+ "units" : "time-to-live value",
459
+ "description" :
460
+ """Specifies the maximum time-to-live value.""",
461
+ }, # column
462
+ "traceRouteCtlDSField" : {
463
+ "nodetype" : "column",
464
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
465
+ "oid" : "1.3.6.1.2.1.81.1.2.1.11",
466
+ "status" : "current",
467
+ "syntax" : {
468
+ "type" : {
469
+ "basetype" : "Unsigned32",
470
+ "ranges" : [
471
+ {
472
+ "min" : "0",
473
+ "max" : "255"
474
+ },
475
+ ],
476
+ "range" : {
477
+ "min" : "0",
478
+ "max" : "255"
479
+ },
480
+ },
481
+ },
482
+ "access" : "readwrite",
483
+ "default" : "0",
484
+ "description" :
485
+ """Specifies the value to store in the Type of Service
486
+ (TOS) octet in the IPv4 header or in the Traffic
487
+ Class octet in the IPv6 header, respectively, of the
488
+ IP packet used to encapsulate the traceroute probe.
489
+
490
+ The octet to be set in the IP header contains the
491
+ Differentiated Services (DS) Field in the six most
492
+ significant bits.
493
+
494
+ This option can be used to determine what effect an
495
+ explicit DS Field setting has on a traceroute response.
496
+ Not all values are legal or meaningful. A value of 0
497
+ means that the function represented by this option is
498
+ not supported. DS Field usage is often not supported
499
+ by IP implementations, and not all values are supported.
500
+ Refer to RFC 2474 and RFC 3260 for guidance on usage of
501
+ this field.""",
502
+ "reference" :
503
+ """Refer to RFC 1812 for the definition of the IPv4 TOS
504
+ octet and to RFC 2460 for the definition of the IPv6
505
+ Traffic Class octet. Refer to RFC 2474 and RFC 3260
506
+ for the definition of the Differentiated Services Field.""",
507
+ }, # column
508
+ "traceRouteCtlSourceAddressType" : {
509
+ "nodetype" : "column",
510
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
511
+ "oid" : "1.3.6.1.2.1.81.1.2.1.12",
512
+ "status" : "current",
513
+ "syntax" : {
514
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
515
+ },
516
+ "access" : "readwrite",
517
+ "default" : "unknown",
518
+ "description" :
519
+ """Specifies the type of the source address,
520
+ traceRouteCtlSourceAddress, to be used at a remote host
521
+ when a traceroute operation is performed.""",
522
+ }, # column
523
+ "traceRouteCtlSourceAddress" : {
524
+ "nodetype" : "column",
525
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
526
+ "oid" : "1.3.6.1.2.1.81.1.2.1.13",
527
+ "status" : "current",
528
+ "syntax" : {
529
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
530
+ },
531
+ "access" : "readwrite",
532
+ "default" : "",
533
+ "description" :
534
+ """Use the specified IP address (which must be given as an
535
+ IP number, not a hostname) as the source address in
536
+ outgoing probe packets. On hosts with more than one IP
537
+ address, this option can be used to select the address
538
+ to be used. If the IP address is not one of this
539
+ machine's interface addresses, an error is returned, and
540
+ nothing is sent. A zero-length octet string value for
541
+ this object disables source address specification.
542
+ The address type (InetAddressType) that relates to
543
+ this object is specified by the corresponding value
544
+ of traceRouteCtlSourceAddressType.""",
545
+ }, # column
546
+ "traceRouteCtlIfIndex" : {
547
+ "nodetype" : "column",
548
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
549
+ "oid" : "1.3.6.1.2.1.81.1.2.1.14",
550
+ "status" : "current",
551
+ "syntax" : {
552
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndexOrZero"},
553
+ },
554
+ "access" : "readwrite",
555
+ "default" : "0",
556
+ "description" :
557
+ """Setting this object to an interface's ifIndex prior
558
+ to starting a remote traceroute operation directs
559
+ the traceroute probes to be transmitted over the
560
+ specified interface. A value of zero for this object
561
+ implies that this option is not enabled.""",
562
+ }, # column
563
+ "traceRouteCtlMiscOptions" : {
564
+ "nodetype" : "column",
565
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
566
+ "oid" : "1.3.6.1.2.1.81.1.2.1.15",
567
+ "status" : "current",
568
+ "syntax" : {
569
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
570
+ },
571
+ "access" : "readwrite",
572
+ "default" : "",
573
+ "description" :
574
+ """Enables an application to specify implementation-dependent
575
+ options.""",
576
+ }, # column
577
+ "traceRouteCtlMaxFailures" : {
578
+ "nodetype" : "column",
579
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
580
+ "oid" : "1.3.6.1.2.1.81.1.2.1.16",
581
+ "status" : "current",
582
+ "syntax" : {
583
+ "type" : {
584
+ "basetype" : "Unsigned32",
585
+ "ranges" : [
586
+ {
587
+ "min" : "0",
588
+ "max" : "255"
589
+ },
590
+ ],
591
+ "range" : {
592
+ "min" : "0",
593
+ "max" : "255"
594
+ },
595
+ },
596
+ },
597
+ "access" : "readwrite",
598
+ "default" : "5",
599
+ "units" : "timeouts",
600
+ "description" :
601
+ """The value of this object indicates the maximum number
602
+ of consecutive timeouts allowed before a remote traceroute
603
+ request is terminated. A value of either 255 (maximum
604
+ hop count/possible TTL value) or 0 indicates that the
605
+ function of terminating a remote traceroute request when a
606
+ specific number of consecutive timeouts are detected is
607
+ disabled.""",
608
+ }, # column
609
+ "traceRouteCtlDontFragment" : {
610
+ "nodetype" : "column",
611
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
612
+ "oid" : "1.3.6.1.2.1.81.1.2.1.17",
613
+ "status" : "current",
614
+ "syntax" : {
615
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
616
+ },
617
+ "access" : "readwrite",
618
+ "default" : "false",
619
+ "description" :
620
+ """This object enables setting of the don't fragment flag (DF)
621
+ in the IP header for a probe. Use of this object enables
622
+ a manual PATH MTU test is performed.""",
623
+ }, # column
624
+ "traceRouteCtlInitialTtl" : {
625
+ "nodetype" : "column",
626
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
627
+ "oid" : "1.3.6.1.2.1.81.1.2.1.18",
628
+ "status" : "current",
629
+ "syntax" : {
630
+ "type" : {
631
+ "basetype" : "Unsigned32",
632
+ "ranges" : [
633
+ {
634
+ "min" : "1",
635
+ "max" : "255"
636
+ },
637
+ ],
638
+ "range" : {
639
+ "min" : "1",
640
+ "max" : "255"
641
+ },
642
+ },
643
+ },
644
+ "access" : "readwrite",
645
+ "default" : "1",
646
+ "description" :
647
+ """The value of this object specifies the initial TTL value to
648
+ use. This enables bypassing the initial (often well known)
649
+ portion of a path.""",
650
+ }, # column
651
+ "traceRouteCtlFrequency" : {
652
+ "nodetype" : "column",
653
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
654
+ "oid" : "1.3.6.1.2.1.81.1.2.1.19",
655
+ "status" : "current",
656
+ "syntax" : {
657
+ "type" : { "module" :"", "name" : "Unsigned32"},
658
+ },
659
+ "access" : "readwrite",
660
+ "default" : "0",
661
+ "units" : "seconds",
662
+ "description" :
663
+ """The number of seconds to wait before repeating a
664
+ traceroute test, as defined by the value of the
665
+ various objects in the corresponding row.
666
+
667
+ After a single test is completed the number of seconds
668
+ as defined by the value of traceRouteCtlFrequency MUST
669
+ elapse before the next traceroute test is started.
670
+
671
+ A value of 0 for this object implies that the test
672
+ as defined by the corresponding entry will not be
673
+
674
+
675
+ repeated.""",
676
+ }, # column
677
+ "traceRouteCtlStorageType" : {
678
+ "nodetype" : "column",
679
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
680
+ "oid" : "1.3.6.1.2.1.81.1.2.1.20",
681
+ "status" : "current",
682
+ "syntax" : {
683
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
684
+ },
685
+ "access" : "readwrite",
686
+ "default" : "nonVolatile",
687
+ "description" :
688
+ """The storage type for this conceptual row.
689
+ Conceptual rows having the value 'permanent' need not
690
+ allow write-access to any columnar objects in the row.""",
691
+ }, # column
692
+ "traceRouteCtlAdminStatus" : {
693
+ "nodetype" : "column",
694
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
695
+ "oid" : "1.3.6.1.2.1.81.1.2.1.21",
696
+ "status" : "current",
697
+ "syntax" : {
698
+ "type" : {
699
+ "basetype" : "Enumeration",
700
+ "enabled" : {
701
+ "nodetype" : "namednumber",
702
+ "number" : "1"
703
+ },
704
+ "disabled" : {
705
+ "nodetype" : "namednumber",
706
+ "number" : "2"
707
+ },
708
+ },
709
+ },
710
+ "access" : "readwrite",
711
+ "default" : "disabled",
712
+ "description" :
713
+ """Reflects the desired state that an traceRouteCtlEntry
714
+ should be in:
715
+
716
+ enabled(1) - Attempt to activate the test as defined by
717
+ this traceRouteCtlEntry.
718
+ disabled(2) - Deactivate the test as defined by this
719
+ traceRouteCtlEntry.
720
+
721
+ Refer to the corresponding traceRouteResultsOperStatus to
722
+ determine the operational state of the test defined by
723
+ this entry.""",
724
+ }, # column
725
+ "traceRouteCtlDescr" : {
726
+ "nodetype" : "column",
727
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
728
+ "oid" : "1.3.6.1.2.1.81.1.2.1.22",
729
+ "status" : "current",
730
+ "syntax" : {
731
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
732
+ },
733
+ "access" : "readwrite",
734
+ "default" : "",
735
+ "description" :
736
+ """The purpose of this object is to provide a
737
+ descriptive name of the remote traceroute
738
+ test.""",
739
+ }, # column
740
+ "traceRouteCtlMaxRows" : {
741
+ "nodetype" : "column",
742
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
743
+ "oid" : "1.3.6.1.2.1.81.1.2.1.23",
744
+ "status" : "current",
745
+ "syntax" : {
746
+ "type" : { "module" :"", "name" : "Unsigned32"},
747
+ },
748
+ "access" : "readwrite",
749
+ "default" : "50",
750
+ "units" : "rows",
751
+ "description" :
752
+ """The maximum number of corresponding entries allowed
753
+ in the traceRouteProbeHistoryTable. An implementation
754
+ of this MIB will remove the oldest corresponding entry
755
+ in the traceRouteProbeHistoryTable to allow the
756
+ addition of an new entry once the number of
757
+ corresponding rows in the traceRouteProbeHistoryTable
758
+ reaches this value.
759
+
760
+ Old entries are not removed when a new test is
761
+ started. Entries are added to the
762
+ traceRouteProbeHistoryTable until traceRouteCtlMaxRows
763
+ is reached before entries begin to be removed.
764
+ A value of 0 for this object disables creation of
765
+ traceRouteProbeHistoryTable entries.""",
766
+ }, # column
767
+ "traceRouteCtlTrapGeneration" : {
768
+ "nodetype" : "column",
769
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
770
+ "oid" : "1.3.6.1.2.1.81.1.2.1.24",
771
+ "status" : "current",
772
+ "syntax" : {
773
+ "type" : {
774
+ "basetype" : "Bits",
775
+ "pathChange" : {
776
+ "nodetype" : "namednumber",
777
+ "number" : "0"
778
+ },
779
+ "testFailure" : {
780
+ "nodetype" : "namednumber",
781
+ "number" : "1"
782
+ },
783
+ "testCompletion" : {
784
+ "nodetype" : "namednumber",
785
+ "number" : "2"
786
+ },
787
+ },
788
+ },
789
+ "access" : "readwrite",
790
+ "default" : "()",
791
+ "description" :
792
+ """The value of this object determines when and whether to
793
+ generate a notification for this entry:
794
+
795
+ pathChange(0) - Generate a traceRoutePathChange
796
+ notification when the current path varies from a
797
+ previously determined path.
798
+ testFailure(1) - Generate a traceRouteTestFailed
799
+ notification when the full path to a target
800
+ can't be determined.
801
+ testCompletion(2) - Generate a traceRouteTestCompleted
802
+ notification when the path to a target has been
803
+ determined.
804
+
805
+ The value of this object defaults to an empty set,
806
+ indicating that none of the above options has been
807
+ selected.""",
808
+ }, # column
809
+ "traceRouteCtlCreateHopsEntries" : {
810
+ "nodetype" : "column",
811
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
812
+ "oid" : "1.3.6.1.2.1.81.1.2.1.25",
813
+ "status" : "current",
814
+ "syntax" : {
815
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
816
+ },
817
+ "access" : "readwrite",
818
+ "default" : "false",
819
+ "description" :
820
+ """The current path for a traceroute test is kept in the
821
+ traceRouteHopsTable on a per-hop basis when the value of
822
+ this object is true(1).""",
823
+ }, # column
824
+ "traceRouteCtlType" : {
825
+ "nodetype" : "column",
826
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
827
+ "oid" : "1.3.6.1.2.1.81.1.2.1.26",
828
+ "status" : "current",
829
+ "syntax" : {
830
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
831
+ },
832
+ "access" : "readwrite",
833
+ "default" : "1.3.6.1.2.1.81.3.1",
834
+ "description" :
835
+ """The value of this object is used either to report or to
836
+ select the implementation method to be used for
837
+ performing a traceroute operation. The value of this
838
+ object may be selected from
839
+ traceRouteImplementationTypeDomains.
840
+
841
+ Additional implementation types should be allocated as
842
+ required by implementers of the DISMAN-TRACEROUTE-MIB
843
+ under their enterprise specific registration point,
844
+ not beneath traceRouteImplementationTypeDomains.""",
845
+ }, # column
846
+ "traceRouteCtlRowStatus" : {
847
+ "nodetype" : "column",
848
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
849
+ "oid" : "1.3.6.1.2.1.81.1.2.1.27",
850
+ "status" : "current",
851
+ "syntax" : {
852
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
853
+ },
854
+ "access" : "readwrite",
855
+ "description" :
856
+ """This object allows entries to be created and deleted
857
+ in the traceRouteCtlTable. Deletion of an entry in
858
+ this table results in a deletion of all corresponding (same
859
+ traceRouteCtlOwnerIndex and traceRouteCtlTestName
860
+ index values) traceRouteResultsTable,
861
+ traceRouteProbeHistoryTable, and traceRouteHopsTable
862
+ entries.
863
+
864
+ A value MUST be specified for traceRouteCtlTargetAddress
865
+ prior to acceptance of a transition to active(1) state.
866
+
867
+
868
+
869
+
870
+ When a value for pingCtlTargetAddress is set,
871
+ the value of object pingCtlRowStatus changes
872
+ from notReady(3) to notInService(2).
873
+
874
+ Activation of a remote traceroute operation is
875
+ controlled via traceRouteCtlAdminStatus, and not
876
+ by transitioning of this object's value to active(1).
877
+
878
+ Transitions in and out of active(1) state are not
879
+ allowed while an entry's traceRouteResultsOperStatus
880
+ is active(1), with the exception that deletion of
881
+ an entry in this table by setting its RowStatus
882
+ object to destroy(6) will stop an active
883
+ traceroute operation.
884
+
885
+ The operational state of an traceroute operation
886
+ can be determined by examination of the corresponding
887
+ traceRouteResultsOperStatus object.""",
888
+ "reference" :
889
+ """See definition of RowStatus in RFC 2579, 'Textual
890
+ Conventions for SMIv2.'""",
891
+ }, # column
892
+ "traceRouteResultsTable" : {
893
+ "nodetype" : "table",
894
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
895
+ "oid" : "1.3.6.1.2.1.81.1.3",
896
+ "status" : "current",
897
+ "description" :
898
+ """Defines the Remote Operations Traceroute Results Table for
899
+ keeping track of the status of a traceRouteCtlEntry.
900
+
901
+ An entry is added to the traceRouteResultsTable when an
902
+ traceRouteCtlEntry is started by successful transition
903
+ of its traceRouteCtlAdminStatus object to enabled(1).
904
+
905
+ If the object traceRouteCtlAdminStatus already has the value
906
+ enabled(1), and if the corresponding
907
+ traceRouteResultsOperStatus object has the value
908
+ completed(3), then successfully writing enabled(1) to the
909
+ object traceRouteCtlAdminStatus re-initializes the already
910
+ existing entry in the traceRouteResultsTable. The values of
911
+ objects in the re-initialized entry are the same as
912
+ the values of objects in a new entry would be.
913
+
914
+ An entry is removed from the traceRouteResultsTable when
915
+
916
+
917
+
918
+ its corresponding traceRouteCtlEntry is deleted.""",
919
+ }, # table
920
+ "traceRouteResultsEntry" : {
921
+ "nodetype" : "row",
922
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
923
+ "oid" : "1.3.6.1.2.1.81.1.3.1",
924
+ "status" : "current",
925
+ "linkage" : [
926
+ "traceRouteCtlOwnerIndex",
927
+ "traceRouteCtlTestName",
928
+ ],
929
+ "description" :
930
+ """Defines an entry in the traceRouteResultsTable. The
931
+ traceRouteResultsTable has the same indexing as the
932
+ traceRouteCtlTable so that a traceRouteResultsEntry
933
+ corresponds to the traceRouteCtlEntry that caused it to
934
+ be created.""",
935
+ }, # row
936
+ "traceRouteResultsOperStatus" : {
937
+ "nodetype" : "column",
938
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
939
+ "oid" : "1.3.6.1.2.1.81.1.3.1.1",
940
+ "status" : "current",
941
+ "syntax" : {
942
+ "type" : {
943
+ "basetype" : "Enumeration",
944
+ "enabled" : {
945
+ "nodetype" : "namednumber",
946
+ "number" : "1"
947
+ },
948
+ "disabled" : {
949
+ "nodetype" : "namednumber",
950
+ "number" : "2"
951
+ },
952
+ "completed" : {
953
+ "nodetype" : "namednumber",
954
+ "number" : "3"
955
+ },
956
+ },
957
+ },
958
+ "access" : "readonly",
959
+ "description" :
960
+ """Reflects the operational state of an traceRouteCtlEntry:
961
+
962
+ enabled(1) - Test is active.
963
+ disabled(2) - Test has stopped.
964
+ completed(3) - Test is completed.""",
965
+ }, # column
966
+ "traceRouteResultsCurHopCount" : {
967
+ "nodetype" : "column",
968
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
969
+ "oid" : "1.3.6.1.2.1.81.1.3.1.2",
970
+ "status" : "current",
971
+ "syntax" : {
972
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
973
+ },
974
+ "access" : "readonly",
975
+ "units" : "hops",
976
+ "description" :
977
+ """Reflects the current TTL value (from 1 to
978
+ 255) for a remote traceroute operation.
979
+ Maximum TTL value is determined by
980
+ traceRouteCtlMaxTtl.""",
981
+ }, # column
982
+ "traceRouteResultsCurProbeCount" : {
983
+ "nodetype" : "column",
984
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
985
+ "oid" : "1.3.6.1.2.1.81.1.3.1.3",
986
+ "status" : "current",
987
+ "syntax" : {
988
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
989
+ },
990
+ "access" : "readonly",
991
+ "units" : "probes",
992
+ "description" :
993
+ """Reflects the current probe count (1..10) for
994
+ a remote traceroute operation. The maximum
995
+ probe count is determined by
996
+ traceRouteCtlProbesPerHop.""",
997
+ }, # column
998
+ "traceRouteResultsIpTgtAddrType" : {
999
+ "nodetype" : "column",
1000
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
1001
+ "oid" : "1.3.6.1.2.1.81.1.3.1.4",
1002
+ "status" : "current",
1003
+ "syntax" : {
1004
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
1005
+ },
1006
+ "access" : "readonly",
1007
+ "description" :
1008
+ """This object indicates the type of address stored
1009
+ in the corresponding traceRouteResultsIpTgtAddr
1010
+ object.""",
1011
+ }, # column
1012
+ "traceRouteResultsIpTgtAddr" : {
1013
+ "nodetype" : "column",
1014
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
1015
+ "oid" : "1.3.6.1.2.1.81.1.3.1.5",
1016
+ "status" : "current",
1017
+ "syntax" : {
1018
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
1019
+ },
1020
+ "access" : "readonly",
1021
+ "description" :
1022
+ """This object reports the IP address associated
1023
+ with a traceRouteCtlTargetAddress value when the
1024
+ destination address is specified as a DNS name.
1025
+ The value of this object should be a zero-length
1026
+ octet string when a DNS name is not specified or
1027
+ when a specified DNS name fails to resolve.""",
1028
+ }, # column
1029
+ "traceRouteResultsTestAttempts" : {
1030
+ "nodetype" : "column",
1031
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
1032
+ "oid" : "1.3.6.1.2.1.81.1.3.1.6",
1033
+ "status" : "current",
1034
+ "syntax" : {
1035
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1036
+ },
1037
+ "access" : "readonly",
1038
+ "units" : "tests",
1039
+ "description" :
1040
+ """The current number of attempts to determine a path
1041
+ to a target. The value of this object MUST be started
1042
+ at 0.""",
1043
+ }, # column
1044
+ "traceRouteResultsTestSuccesses" : {
1045
+ "nodetype" : "column",
1046
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
1047
+ "oid" : "1.3.6.1.2.1.81.1.3.1.7",
1048
+ "status" : "current",
1049
+ "syntax" : {
1050
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1051
+ },
1052
+ "access" : "readonly",
1053
+ "units" : "tests",
1054
+ "description" :
1055
+ """The current number of attempts to determine a path
1056
+ to a target that have succeeded. The value of this
1057
+ object MUST be reported as 0 when no attempts have
1058
+ succeeded.""",
1059
+ }, # column
1060
+ "traceRouteResultsLastGoodPath" : {
1061
+ "nodetype" : "column",
1062
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
1063
+ "oid" : "1.3.6.1.2.1.81.1.3.1.8",
1064
+ "status" : "current",
1065
+ "syntax" : {
1066
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
1067
+ },
1068
+ "access" : "readonly",
1069
+ "description" :
1070
+ """The date and time when the last complete path
1071
+ was determined. A path is complete if responses
1072
+ were received or timeout occurred for each hop on
1073
+ the path; i.e., for each TTL value from the value
1074
+ of the corresponding traceRouteCtlInitialTtl object
1075
+ up to the end of the path or (if no reply from the
1076
+ target IP address was received) up to the value of
1077
+ the corresponding traceRouteCtlMaxTtl object.""",
1078
+ }, # column
1079
+ "traceRouteProbeHistoryTable" : {
1080
+ "nodetype" : "table",
1081
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
1082
+ "oid" : "1.3.6.1.2.1.81.1.4",
1083
+ "status" : "current",
1084
+ "description" :
1085
+ """Defines the Remote Operations Traceroute Results Table
1086
+ for storing the results of a traceroute operation.
1087
+
1088
+ An implementation of this MIB will remove the oldest
1089
+
1090
+
1091
+ entry in the traceRouteProbeHistoryTable of the
1092
+ corresponding entry in the traceRouteCtlTable to allow
1093
+ the addition of a new entry once the number of rows in
1094
+ the traceRouteProbeHistoryTable reaches the value specified
1095
+ by traceRouteCtlMaxRows for the corresponding entry in the
1096
+ traceRouteCtlTable.""",
1097
+ }, # table
1098
+ "traceRouteProbeHistoryEntry" : {
1099
+ "nodetype" : "row",
1100
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
1101
+ "oid" : "1.3.6.1.2.1.81.1.4.1",
1102
+ "status" : "current",
1103
+ "linkage" : [
1104
+ "traceRouteCtlOwnerIndex",
1105
+ "traceRouteCtlTestName",
1106
+ "traceRouteProbeHistoryIndex",
1107
+ "traceRouteProbeHistoryHopIndex",
1108
+ "traceRouteProbeHistoryProbeIndex",
1109
+ ],
1110
+ "description" :
1111
+ """Defines a table for storing the results of a traceroute
1112
+ operation. Entries in this table are limited by
1113
+ the value of the corresponding traceRouteCtlMaxRows
1114
+ object.
1115
+
1116
+ The first two index elements identify the
1117
+ traceRouteCtlEntry that a traceRouteProbeHistoryEntry
1118
+ belongs to. The third index element selects a single
1119
+ traceroute operation result. The fourth and fifth indexes
1120
+ select the hop and the probe for a particular
1121
+ traceroute operation.""",
1122
+ }, # row
1123
+ "traceRouteProbeHistoryIndex" : {
1124
+ "nodetype" : "column",
1125
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
1126
+ "oid" : "1.3.6.1.2.1.81.1.4.1.1",
1127
+ "status" : "current",
1128
+ "syntax" : {
1129
+ "type" : {
1130
+ "basetype" : "Unsigned32",
1131
+ "ranges" : [
1132
+ {
1133
+ "min" : "1",
1134
+ "max" : "4294967295"
1135
+ },
1136
+ ],
1137
+ "range" : {
1138
+ "min" : "1",
1139
+ "max" : "4294967295"
1140
+ },
1141
+ },
1142
+ },
1143
+ "access" : "noaccess",
1144
+ "description" :
1145
+ """An entry in this table is created when the result of
1146
+ a traceroute probe is determined. The initial 2 instance
1147
+ identifier index values identify the traceRouteCtlEntry
1148
+ that a probe result (traceRouteProbeHistoryEntry) belongs
1149
+ to. An entry is removed from this table when
1150
+ its corresponding traceRouteCtlEntry is deleted.
1151
+
1152
+ An implementation MUST start assigning
1153
+ traceRouteProbeHistoryIndex values at 1 and wrap after
1154
+ exceeding the maximum possible value, as defined by the
1155
+ limit of this object ('ffffffff'h).""",
1156
+ }, # column
1157
+ "traceRouteProbeHistoryHopIndex" : {
1158
+ "nodetype" : "column",
1159
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
1160
+ "oid" : "1.3.6.1.2.1.81.1.4.1.2",
1161
+ "status" : "current",
1162
+ "syntax" : {
1163
+ "type" : {
1164
+ "basetype" : "Unsigned32",
1165
+ "ranges" : [
1166
+ {
1167
+ "min" : "1",
1168
+ "max" : "255"
1169
+ },
1170
+ ],
1171
+ "range" : {
1172
+ "min" : "1",
1173
+ "max" : "255"
1174
+ },
1175
+ },
1176
+ },
1177
+ "access" : "noaccess",
1178
+ "description" :
1179
+ """Indicates which hop in a traceroute path the probe's
1180
+ results are for. The value of this object is initially
1181
+ determined by the value of traceRouteCtlInitialTtl.""",
1182
+ }, # column
1183
+ "traceRouteProbeHistoryProbeIndex" : {
1184
+ "nodetype" : "column",
1185
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
1186
+ "oid" : "1.3.6.1.2.1.81.1.4.1.3",
1187
+ "status" : "current",
1188
+ "syntax" : {
1189
+ "type" : {
1190
+ "basetype" : "Unsigned32",
1191
+ "ranges" : [
1192
+ {
1193
+ "min" : "1",
1194
+ "max" : "10"
1195
+ },
1196
+ ],
1197
+ "range" : {
1198
+ "min" : "1",
1199
+ "max" : "10"
1200
+ },
1201
+ },
1202
+ },
1203
+ "access" : "noaccess",
1204
+ "description" :
1205
+ """Indicates the index of a probe for a particular
1206
+ hop in a traceroute path. The number of probes per
1207
+ hop is determined by the value of the corresponding
1208
+ traceRouteCtlProbesPerHop object.""",
1209
+ }, # column
1210
+ "traceRouteProbeHistoryHAddrType" : {
1211
+ "nodetype" : "column",
1212
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
1213
+ "oid" : "1.3.6.1.2.1.81.1.4.1.4",
1214
+ "status" : "current",
1215
+ "syntax" : {
1216
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
1217
+ },
1218
+ "access" : "readonly",
1219
+ "description" :
1220
+ """This objects indicates the type of address stored
1221
+ in the corresponding traceRouteProbeHistoryHAddr
1222
+ object.""",
1223
+ }, # column
1224
+ "traceRouteProbeHistoryHAddr" : {
1225
+ "nodetype" : "column",
1226
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
1227
+ "oid" : "1.3.6.1.2.1.81.1.4.1.5",
1228
+ "status" : "current",
1229
+ "syntax" : {
1230
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
1231
+ },
1232
+ "access" : "readonly",
1233
+ "description" :
1234
+ """The address of a hop in a traceroute path. This object
1235
+ is not allowed to be a DNS name. The value of the
1236
+ corresponding object, traceRouteProbeHistoryHAddrType,
1237
+ indicates this object's IP address type.""",
1238
+ }, # column
1239
+ "traceRouteProbeHistoryResponse" : {
1240
+ "nodetype" : "column",
1241
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
1242
+ "oid" : "1.3.6.1.2.1.81.1.4.1.6",
1243
+ "status" : "current",
1244
+ "syntax" : {
1245
+ "type" : { "module" :"", "name" : "Unsigned32"},
1246
+ },
1247
+ "access" : "readonly",
1248
+ "units" : "milliseconds",
1249
+ "description" :
1250
+ """The amount of time measured in milliseconds from when
1251
+ a probe was sent to when its response was received or
1252
+ when it timed out. The value of this object is reported
1253
+ as 0 when it is not possible to transmit a probe.""",
1254
+ }, # column
1255
+ "traceRouteProbeHistoryStatus" : {
1256
+ "nodetype" : "column",
1257
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
1258
+ "oid" : "1.3.6.1.2.1.81.1.4.1.7",
1259
+ "status" : "current",
1260
+ "syntax" : {
1261
+ "type" : { "module" :"DISMAN-PING-MIB", "name" : "OperationResponseStatus"},
1262
+ },
1263
+ "access" : "readonly",
1264
+ "description" :
1265
+ """The result of a traceroute operation made by a remote
1266
+ host for a particular probe.""",
1267
+ }, # column
1268
+ "traceRouteProbeHistoryLastRC" : {
1269
+ "nodetype" : "column",
1270
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
1271
+ "oid" : "1.3.6.1.2.1.81.1.4.1.8",
1272
+ "status" : "current",
1273
+ "syntax" : {
1274
+ "type" : { "module" :"", "name" : "Integer32"},
1275
+ },
1276
+ "access" : "readonly",
1277
+ "description" :
1278
+ """The last implementation-method-specific reply code received.
1279
+
1280
+ Traceroute is usually implemented by transmitting a series of
1281
+ probe packets with increasing time-to-live values. A probe
1282
+ packet is a UDP datagram encapsulated into an IP packet.
1283
+ Each hop in a path to the target (destination) host rejects
1284
+ the probe packets (probe's TTL too small, ICMP reply) until
1285
+ either the maximum TTL is exceeded or the target host is
1286
+ received.""",
1287
+ }, # column
1288
+ "traceRouteProbeHistoryTime" : {
1289
+ "nodetype" : "column",
1290
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
1291
+ "oid" : "1.3.6.1.2.1.81.1.4.1.9",
1292
+ "status" : "current",
1293
+ "syntax" : {
1294
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
1295
+ },
1296
+ "access" : "readonly",
1297
+ "description" :
1298
+ """Timestamp for when this probe's results were determined.""",
1299
+ }, # column
1300
+ "traceRouteHopsTable" : {
1301
+ "nodetype" : "table",
1302
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
1303
+ "oid" : "1.3.6.1.2.1.81.1.5",
1304
+ "status" : "current",
1305
+ "description" :
1306
+ """Defines the Remote Operations Traceroute Hop Table for
1307
+ keeping track of the results of traceroute tests on a
1308
+ per-hop basis.""",
1309
+ }, # table
1310
+ "traceRouteHopsEntry" : {
1311
+ "nodetype" : "row",
1312
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
1313
+ "oid" : "1.3.6.1.2.1.81.1.5.1",
1314
+ "status" : "current",
1315
+ "linkage" : [
1316
+ "traceRouteCtlOwnerIndex",
1317
+ "traceRouteCtlTestName",
1318
+ "traceRouteHopsHopIndex",
1319
+ ],
1320
+ "description" :
1321
+ """Defines an entry in the traceRouteHopsTable.
1322
+ The first two index elements identify the
1323
+ traceRouteCtlEntry that a traceRouteHopsEntry
1324
+ belongs to. The third index element,
1325
+ traceRouteHopsHopIndex, selects a
1326
+ hop in a traceroute path.""",
1327
+ }, # row
1328
+ "traceRouteHopsHopIndex" : {
1329
+ "nodetype" : "column",
1330
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
1331
+ "oid" : "1.3.6.1.2.1.81.1.5.1.1",
1332
+ "status" : "current",
1333
+ "syntax" : {
1334
+ "type" : {
1335
+ "basetype" : "Unsigned32",
1336
+ "ranges" : [
1337
+ {
1338
+ "min" : "1",
1339
+ "max" : "4294967295"
1340
+ },
1341
+ ],
1342
+ "range" : {
1343
+ "min" : "1",
1344
+ "max" : "4294967295"
1345
+ },
1346
+ },
1347
+ },
1348
+ "access" : "noaccess",
1349
+ "description" :
1350
+ """Specifies the hop index for a traceroute hop. Values
1351
+ for this object with respect to the same
1352
+ traceRouteCtlOwnerIndex and traceRouteCtlTestName
1353
+ MUST start at 1 and be given increasing values for
1354
+ subsequent hops. The value of traceRouteHopsHopIndex is not
1355
+ necessarily the number of the hop on the traced path.
1356
+
1357
+ The traceRouteHopsTable keeps the current traceroute
1358
+ path per traceRouteCtlEntry if enabled by
1359
+ setting the corresponding traceRouteCtlCreateHopsEntries
1360
+ to true(1).
1361
+
1362
+ All hops (traceRouteHopsTable entries) in a traceroute
1363
+ path MUST be updated at the same time when a traceroute
1364
+ operation is completed. Care needs to be applied when a path
1365
+ either changes or can't be determined. The initial portion
1366
+ of the path, up to the first hop change, MUST retain the
1367
+ same traceRouteHopsHopIndex values. The remaining portion
1368
+ of the path SHOULD be assigned new traceRouteHopsHopIndex
1369
+ values.""",
1370
+ }, # column
1371
+ "traceRouteHopsIpTgtAddressType" : {
1372
+ "nodetype" : "column",
1373
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
1374
+ "oid" : "1.3.6.1.2.1.81.1.5.1.2",
1375
+ "status" : "current",
1376
+ "syntax" : {
1377
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
1378
+ },
1379
+ "access" : "readonly",
1380
+ "description" :
1381
+ """This object indicates the type of address stored
1382
+ in the corresponding traceRouteHopsIpTgtAddress
1383
+ object.""",
1384
+ }, # column
1385
+ "traceRouteHopsIpTgtAddress" : {
1386
+ "nodetype" : "column",
1387
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
1388
+ "oid" : "1.3.6.1.2.1.81.1.5.1.3",
1389
+ "status" : "current",
1390
+ "syntax" : {
1391
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
1392
+ },
1393
+ "access" : "readonly",
1394
+ "description" :
1395
+ """This object reports the IP address associated with
1396
+
1397
+
1398
+
1399
+ the hop. A value for this object should be reported
1400
+ as a numeric IP address, not as a DNS name.
1401
+
1402
+ The address type (InetAddressType) that relates to
1403
+ this object is specified by the corresponding value
1404
+ of pingCtlSourceAddressType.""",
1405
+ }, # column
1406
+ "traceRouteHopsMinRtt" : {
1407
+ "nodetype" : "column",
1408
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
1409
+ "oid" : "1.3.6.1.2.1.81.1.5.1.4",
1410
+ "status" : "current",
1411
+ "syntax" : {
1412
+ "type" : { "module" :"", "name" : "Unsigned32"},
1413
+ },
1414
+ "access" : "readonly",
1415
+ "description" :
1416
+ """The minimum traceroute round-trip-time (RTT) received for
1417
+ this hop. A value of 0 for this object implies that no
1418
+ RTT has been received.""",
1419
+ }, # column
1420
+ "traceRouteHopsMaxRtt" : {
1421
+ "nodetype" : "column",
1422
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
1423
+ "oid" : "1.3.6.1.2.1.81.1.5.1.5",
1424
+ "status" : "current",
1425
+ "syntax" : {
1426
+ "type" : { "module" :"", "name" : "Unsigned32"},
1427
+ },
1428
+ "access" : "readonly",
1429
+ "description" :
1430
+ """The maximum traceroute round-trip-time (RTT) received for
1431
+ this hop. A value of 0 for this object implies that no
1432
+ RTT has been received.""",
1433
+ }, # column
1434
+ "traceRouteHopsAverageRtt" : {
1435
+ "nodetype" : "column",
1436
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
1437
+ "oid" : "1.3.6.1.2.1.81.1.5.1.6",
1438
+ "status" : "current",
1439
+ "syntax" : {
1440
+ "type" : { "module" :"", "name" : "Unsigned32"},
1441
+ },
1442
+ "access" : "readonly",
1443
+ "description" :
1444
+ """The current average traceroute round-trip-time (RTT) for
1445
+ this hop.""",
1446
+ }, # column
1447
+ "traceRouteHopsRttSumOfSquares" : {
1448
+ "nodetype" : "column",
1449
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
1450
+ "oid" : "1.3.6.1.2.1.81.1.5.1.7",
1451
+ "status" : "current",
1452
+ "syntax" : {
1453
+ "type" : { "module" :"", "name" : "Unsigned32"},
1454
+ },
1455
+ "access" : "readonly",
1456
+ "description" :
1457
+ """This object contains the sum of the squares of all
1458
+ round-trip-times received for this hop. Its purpose is
1459
+ to enable standard deviation calculation.""",
1460
+ }, # column
1461
+ "traceRouteHopsSentProbes" : {
1462
+ "nodetype" : "column",
1463
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
1464
+ "oid" : "1.3.6.1.2.1.81.1.5.1.8",
1465
+ "status" : "current",
1466
+ "syntax" : {
1467
+ "type" : { "module" :"", "name" : "Unsigned32"},
1468
+ },
1469
+ "access" : "readonly",
1470
+ "description" :
1471
+ """The value of this object reflects the number of probes sent
1472
+ for this hop during this traceroute test. The value of this
1473
+ object should start at 0.""",
1474
+ }, # column
1475
+ "traceRouteHopsProbeResponses" : {
1476
+ "nodetype" : "column",
1477
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
1478
+ "oid" : "1.3.6.1.2.1.81.1.5.1.9",
1479
+ "status" : "current",
1480
+ "syntax" : {
1481
+ "type" : { "module" :"", "name" : "Unsigned32"},
1482
+ },
1483
+ "access" : "readonly",
1484
+ "description" :
1485
+ """Number of responses received for this hop during this
1486
+ traceroute test. This value of this object should start
1487
+ at 0.""",
1488
+ }, # column
1489
+ "traceRouteHopsLastGoodProbe" : {
1490
+ "nodetype" : "column",
1491
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
1492
+ "oid" : "1.3.6.1.2.1.81.1.5.1.10",
1493
+ "status" : "current",
1494
+ "syntax" : {
1495
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
1496
+ },
1497
+ "access" : "readonly",
1498
+ "description" :
1499
+ """Date and time at which the last response was received for a
1500
+ probe for this hop during this traceroute test.""",
1501
+ }, # column
1502
+ "traceRouteConformance" : {
1503
+ "nodetype" : "node",
1504
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
1505
+ "oid" : "1.3.6.1.2.1.81.2",
1506
+ }, # node
1507
+ "traceRouteCompliances" : {
1508
+ "nodetype" : "node",
1509
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
1510
+ "oid" : "1.3.6.1.2.1.81.2.1",
1511
+ }, # node
1512
+ "traceRouteGroups" : {
1513
+ "nodetype" : "node",
1514
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
1515
+ "oid" : "1.3.6.1.2.1.81.2.2",
1516
+ }, # node
1517
+ "traceRouteImplementationTypeDomains" : {
1518
+ "nodetype" : "node",
1519
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
1520
+ "oid" : "1.3.6.1.2.1.81.3",
1521
+ }, # node
1522
+ "traceRouteUsingUdpProbes" : {
1523
+ "nodetype" : "node",
1524
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
1525
+ "oid" : "1.3.6.1.2.1.81.3.1",
1526
+ "status" : "current",
1527
+ "description" :
1528
+ """Indicates that an implementation is using UDP probes to
1529
+ perform the traceroute operation.""",
1530
+ }, # node
1531
+ }, # nodes
1532
+
1533
+ "notifications" : {
1534
+ "traceRoutePathChange" : {
1535
+ "nodetype" : "notification",
1536
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
1537
+ "oid" : "1.3.6.1.2.1.81.0.1",
1538
+ "status" : "current",
1539
+ "objects" : {
1540
+ "traceRouteCtlTargetAddressType" : {
1541
+ "nodetype" : "object",
1542
+ "module" : "DISMAN-TRACEROUTE-MIB"
1543
+ },
1544
+ "traceRouteCtlTargetAddress" : {
1545
+ "nodetype" : "object",
1546
+ "module" : "DISMAN-TRACEROUTE-MIB"
1547
+ },
1548
+ "traceRouteResultsIpTgtAddrType" : {
1549
+ "nodetype" : "object",
1550
+ "module" : "DISMAN-TRACEROUTE-MIB"
1551
+ },
1552
+ "traceRouteResultsIpTgtAddr" : {
1553
+ "nodetype" : "object",
1554
+ "module" : "DISMAN-TRACEROUTE-MIB"
1555
+ },
1556
+ },
1557
+ "description" :
1558
+ """The path to a target has changed.""",
1559
+ }, # notification
1560
+ "traceRouteTestFailed" : {
1561
+ "nodetype" : "notification",
1562
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
1563
+ "oid" : "1.3.6.1.2.1.81.0.2",
1564
+ "status" : "current",
1565
+ "objects" : {
1566
+ "traceRouteCtlTargetAddressType" : {
1567
+ "nodetype" : "object",
1568
+ "module" : "DISMAN-TRACEROUTE-MIB"
1569
+ },
1570
+ "traceRouteCtlTargetAddress" : {
1571
+ "nodetype" : "object",
1572
+ "module" : "DISMAN-TRACEROUTE-MIB"
1573
+ },
1574
+ "traceRouteResultsIpTgtAddrType" : {
1575
+ "nodetype" : "object",
1576
+ "module" : "DISMAN-TRACEROUTE-MIB"
1577
+ },
1578
+ "traceRouteResultsIpTgtAddr" : {
1579
+ "nodetype" : "object",
1580
+ "module" : "DISMAN-TRACEROUTE-MIB"
1581
+ },
1582
+ },
1583
+ "description" :
1584
+ """Could not determine the path to a target.""",
1585
+ }, # notification
1586
+ "traceRouteTestCompleted" : {
1587
+ "nodetype" : "notification",
1588
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
1589
+ "oid" : "1.3.6.1.2.1.81.0.3",
1590
+ "status" : "current",
1591
+ "objects" : {
1592
+ "traceRouteCtlTargetAddressType" : {
1593
+ "nodetype" : "object",
1594
+ "module" : "DISMAN-TRACEROUTE-MIB"
1595
+ },
1596
+ "traceRouteCtlTargetAddress" : {
1597
+ "nodetype" : "object",
1598
+ "module" : "DISMAN-TRACEROUTE-MIB"
1599
+ },
1600
+ "traceRouteResultsIpTgtAddrType" : {
1601
+ "nodetype" : "object",
1602
+ "module" : "DISMAN-TRACEROUTE-MIB"
1603
+ },
1604
+ "traceRouteResultsIpTgtAddr" : {
1605
+ "nodetype" : "object",
1606
+ "module" : "DISMAN-TRACEROUTE-MIB"
1607
+ },
1608
+ },
1609
+ "description" :
1610
+ """The path to a target has just been determined.""",
1611
+ }, # notification
1612
+ }, # notifications
1613
+
1614
+ "groups" : {
1615
+ "traceRouteGroup" : {
1616
+ "nodetype" : "group",
1617
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
1618
+ "oid" : "1.3.6.1.2.1.81.2.2.1",
1619
+ "status" : "deprecated",
1620
+ "members" : {
1621
+ "traceRouteMaxConcurrentRequests" : {
1622
+ "nodetype" : "member",
1623
+ "module" : "DISMAN-TRACEROUTE-MIB"
1624
+ },
1625
+ "traceRouteCtlTargetAddressType" : {
1626
+ "nodetype" : "member",
1627
+ "module" : "DISMAN-TRACEROUTE-MIB"
1628
+ },
1629
+ "traceRouteCtlTargetAddress" : {
1630
+ "nodetype" : "member",
1631
+ "module" : "DISMAN-TRACEROUTE-MIB"
1632
+ },
1633
+ "traceRouteCtlByPassRouteTable" : {
1634
+ "nodetype" : "member",
1635
+ "module" : "DISMAN-TRACEROUTE-MIB"
1636
+ },
1637
+ "traceRouteCtlDataSize" : {
1638
+ "nodetype" : "member",
1639
+ "module" : "DISMAN-TRACEROUTE-MIB"
1640
+ },
1641
+ "traceRouteCtlTimeOut" : {
1642
+ "nodetype" : "member",
1643
+ "module" : "DISMAN-TRACEROUTE-MIB"
1644
+ },
1645
+ "traceRouteCtlProbesPerHop" : {
1646
+ "nodetype" : "member",
1647
+ "module" : "DISMAN-TRACEROUTE-MIB"
1648
+ },
1649
+ "traceRouteCtlPort" : {
1650
+ "nodetype" : "member",
1651
+ "module" : "DISMAN-TRACEROUTE-MIB"
1652
+ },
1653
+ "traceRouteCtlMaxTtl" : {
1654
+ "nodetype" : "member",
1655
+ "module" : "DISMAN-TRACEROUTE-MIB"
1656
+ },
1657
+ "traceRouteCtlDSField" : {
1658
+ "nodetype" : "member",
1659
+ "module" : "DISMAN-TRACEROUTE-MIB"
1660
+ },
1661
+ "traceRouteCtlSourceAddressType" : {
1662
+ "nodetype" : "member",
1663
+ "module" : "DISMAN-TRACEROUTE-MIB"
1664
+ },
1665
+ "traceRouteCtlSourceAddress" : {
1666
+ "nodetype" : "member",
1667
+ "module" : "DISMAN-TRACEROUTE-MIB"
1668
+ },
1669
+ "traceRouteCtlIfIndex" : {
1670
+ "nodetype" : "member",
1671
+ "module" : "DISMAN-TRACEROUTE-MIB"
1672
+ },
1673
+ "traceRouteCtlMiscOptions" : {
1674
+ "nodetype" : "member",
1675
+ "module" : "DISMAN-TRACEROUTE-MIB"
1676
+ },
1677
+ "traceRouteCtlMaxFailures" : {
1678
+ "nodetype" : "member",
1679
+ "module" : "DISMAN-TRACEROUTE-MIB"
1680
+ },
1681
+ "traceRouteCtlDontFragment" : {
1682
+ "nodetype" : "member",
1683
+ "module" : "DISMAN-TRACEROUTE-MIB"
1684
+ },
1685
+ "traceRouteCtlInitialTtl" : {
1686
+ "nodetype" : "member",
1687
+ "module" : "DISMAN-TRACEROUTE-MIB"
1688
+ },
1689
+ "traceRouteCtlFrequency" : {
1690
+ "nodetype" : "member",
1691
+ "module" : "DISMAN-TRACEROUTE-MIB"
1692
+ },
1693
+ "traceRouteCtlStorageType" : {
1694
+ "nodetype" : "member",
1695
+ "module" : "DISMAN-TRACEROUTE-MIB"
1696
+ },
1697
+ "traceRouteCtlAdminStatus" : {
1698
+ "nodetype" : "member",
1699
+ "module" : "DISMAN-TRACEROUTE-MIB"
1700
+ },
1701
+ "traceRouteCtlMaxRows" : {
1702
+ "nodetype" : "member",
1703
+ "module" : "DISMAN-TRACEROUTE-MIB"
1704
+ },
1705
+ "traceRouteCtlTrapGeneration" : {
1706
+ "nodetype" : "member",
1707
+ "module" : "DISMAN-TRACEROUTE-MIB"
1708
+ },
1709
+ "traceRouteCtlDescr" : {
1710
+ "nodetype" : "member",
1711
+ "module" : "DISMAN-TRACEROUTE-MIB"
1712
+ },
1713
+ "traceRouteCtlCreateHopsEntries" : {
1714
+ "nodetype" : "member",
1715
+ "module" : "DISMAN-TRACEROUTE-MIB"
1716
+ },
1717
+ "traceRouteCtlType" : {
1718
+ "nodetype" : "member",
1719
+ "module" : "DISMAN-TRACEROUTE-MIB"
1720
+ },
1721
+ "traceRouteCtlRowStatus" : {
1722
+ "nodetype" : "member",
1723
+ "module" : "DISMAN-TRACEROUTE-MIB"
1724
+ },
1725
+ "traceRouteResultsOperStatus" : {
1726
+ "nodetype" : "member",
1727
+ "module" : "DISMAN-TRACEROUTE-MIB"
1728
+ },
1729
+ "traceRouteResultsCurHopCount" : {
1730
+ "nodetype" : "member",
1731
+ "module" : "DISMAN-TRACEROUTE-MIB"
1732
+ },
1733
+ "traceRouteResultsCurProbeCount" : {
1734
+ "nodetype" : "member",
1735
+ "module" : "DISMAN-TRACEROUTE-MIB"
1736
+ },
1737
+ "traceRouteResultsIpTgtAddrType" : {
1738
+ "nodetype" : "member",
1739
+ "module" : "DISMAN-TRACEROUTE-MIB"
1740
+ },
1741
+ "traceRouteResultsIpTgtAddr" : {
1742
+ "nodetype" : "member",
1743
+ "module" : "DISMAN-TRACEROUTE-MIB"
1744
+ },
1745
+ "traceRouteResultsTestAttempts" : {
1746
+ "nodetype" : "member",
1747
+ "module" : "DISMAN-TRACEROUTE-MIB"
1748
+ },
1749
+ "traceRouteResultsTestSuccesses" : {
1750
+ "nodetype" : "member",
1751
+ "module" : "DISMAN-TRACEROUTE-MIB"
1752
+ },
1753
+ "traceRouteProbeHistoryHAddrType" : {
1754
+ "nodetype" : "member",
1755
+ "module" : "DISMAN-TRACEROUTE-MIB"
1756
+ },
1757
+ "traceRouteProbeHistoryHAddr" : {
1758
+ "nodetype" : "member",
1759
+ "module" : "DISMAN-TRACEROUTE-MIB"
1760
+ },
1761
+ "traceRouteProbeHistoryResponse" : {
1762
+ "nodetype" : "member",
1763
+ "module" : "DISMAN-TRACEROUTE-MIB"
1764
+ },
1765
+ "traceRouteProbeHistoryStatus" : {
1766
+ "nodetype" : "member",
1767
+ "module" : "DISMAN-TRACEROUTE-MIB"
1768
+ },
1769
+ "traceRouteProbeHistoryLastRC" : {
1770
+ "nodetype" : "member",
1771
+ "module" : "DISMAN-TRACEROUTE-MIB"
1772
+ },
1773
+ }, # members
1774
+ "description" :
1775
+ """The group of objects that constitute the remote traceroute
1776
+ operation.""",
1777
+ }, # group
1778
+ "traceRouteTimeStampGroup" : {
1779
+ "nodetype" : "group",
1780
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
1781
+ "oid" : "1.3.6.1.2.1.81.2.2.2",
1782
+ "status" : "deprecated",
1783
+ "members" : {
1784
+ "traceRouteResultsLastGoodPath" : {
1785
+ "nodetype" : "member",
1786
+ "module" : "DISMAN-TRACEROUTE-MIB"
1787
+ },
1788
+ "traceRouteProbeHistoryTime" : {
1789
+ "nodetype" : "member",
1790
+ "module" : "DISMAN-TRACEROUTE-MIB"
1791
+ },
1792
+ }, # members
1793
+ "description" :
1794
+ """The group of DateAndTime objects.""",
1795
+ }, # group
1796
+ "traceRouteNotificationsGroup" : {
1797
+ "nodetype" : "group",
1798
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
1799
+ "oid" : "1.3.6.1.2.1.81.2.2.3",
1800
+ "status" : "current",
1801
+ "members" : {
1802
+ "traceRoutePathChange" : {
1803
+ "nodetype" : "member",
1804
+ "module" : "DISMAN-TRACEROUTE-MIB"
1805
+ },
1806
+ "traceRouteTestFailed" : {
1807
+ "nodetype" : "member",
1808
+ "module" : "DISMAN-TRACEROUTE-MIB"
1809
+ },
1810
+ "traceRouteTestCompleted" : {
1811
+ "nodetype" : "member",
1812
+ "module" : "DISMAN-TRACEROUTE-MIB"
1813
+ },
1814
+ }, # members
1815
+ "description" :
1816
+ """The notifications that are required to be supported by
1817
+ implementations of this MIB.""",
1818
+ }, # group
1819
+ "traceRouteHopsTableGroup" : {
1820
+ "nodetype" : "group",
1821
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
1822
+ "oid" : "1.3.6.1.2.1.81.2.2.4",
1823
+ "status" : "current",
1824
+ "members" : {
1825
+ "traceRouteHopsIpTgtAddressType" : {
1826
+ "nodetype" : "member",
1827
+ "module" : "DISMAN-TRACEROUTE-MIB"
1828
+ },
1829
+ "traceRouteHopsIpTgtAddress" : {
1830
+ "nodetype" : "member",
1831
+ "module" : "DISMAN-TRACEROUTE-MIB"
1832
+ },
1833
+ "traceRouteHopsMinRtt" : {
1834
+ "nodetype" : "member",
1835
+ "module" : "DISMAN-TRACEROUTE-MIB"
1836
+ },
1837
+ "traceRouteHopsMaxRtt" : {
1838
+ "nodetype" : "member",
1839
+ "module" : "DISMAN-TRACEROUTE-MIB"
1840
+ },
1841
+ "traceRouteHopsAverageRtt" : {
1842
+ "nodetype" : "member",
1843
+ "module" : "DISMAN-TRACEROUTE-MIB"
1844
+ },
1845
+ "traceRouteHopsRttSumOfSquares" : {
1846
+ "nodetype" : "member",
1847
+ "module" : "DISMAN-TRACEROUTE-MIB"
1848
+ },
1849
+ "traceRouteHopsSentProbes" : {
1850
+ "nodetype" : "member",
1851
+ "module" : "DISMAN-TRACEROUTE-MIB"
1852
+ },
1853
+ "traceRouteHopsProbeResponses" : {
1854
+ "nodetype" : "member",
1855
+ "module" : "DISMAN-TRACEROUTE-MIB"
1856
+ },
1857
+ "traceRouteHopsLastGoodProbe" : {
1858
+ "nodetype" : "member",
1859
+ "module" : "DISMAN-TRACEROUTE-MIB"
1860
+ },
1861
+ }, # members
1862
+ "description" :
1863
+ """The group of objects that constitute the
1864
+ traceRouteHopsTable.""",
1865
+ }, # group
1866
+ "traceRouteMinimumGroup" : {
1867
+ "nodetype" : "group",
1868
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
1869
+ "oid" : "1.3.6.1.2.1.81.2.2.5",
1870
+ "status" : "current",
1871
+ "members" : {
1872
+ "traceRouteMaxConcurrentRequests" : {
1873
+ "nodetype" : "member",
1874
+ "module" : "DISMAN-TRACEROUTE-MIB"
1875
+ },
1876
+ "traceRouteCtlTargetAddressType" : {
1877
+ "nodetype" : "member",
1878
+ "module" : "DISMAN-TRACEROUTE-MIB"
1879
+ },
1880
+ "traceRouteCtlTargetAddress" : {
1881
+ "nodetype" : "member",
1882
+ "module" : "DISMAN-TRACEROUTE-MIB"
1883
+ },
1884
+ "traceRouteCtlByPassRouteTable" : {
1885
+ "nodetype" : "member",
1886
+ "module" : "DISMAN-TRACEROUTE-MIB"
1887
+ },
1888
+ "traceRouteCtlDataSize" : {
1889
+ "nodetype" : "member",
1890
+ "module" : "DISMAN-TRACEROUTE-MIB"
1891
+ },
1892
+ "traceRouteCtlTimeOut" : {
1893
+ "nodetype" : "member",
1894
+ "module" : "DISMAN-TRACEROUTE-MIB"
1895
+ },
1896
+ "traceRouteCtlProbesPerHop" : {
1897
+ "nodetype" : "member",
1898
+ "module" : "DISMAN-TRACEROUTE-MIB"
1899
+ },
1900
+ "traceRouteCtlPort" : {
1901
+ "nodetype" : "member",
1902
+ "module" : "DISMAN-TRACEROUTE-MIB"
1903
+ },
1904
+ "traceRouteCtlMaxTtl" : {
1905
+ "nodetype" : "member",
1906
+ "module" : "DISMAN-TRACEROUTE-MIB"
1907
+ },
1908
+ "traceRouteCtlDSField" : {
1909
+ "nodetype" : "member",
1910
+ "module" : "DISMAN-TRACEROUTE-MIB"
1911
+ },
1912
+ "traceRouteCtlSourceAddressType" : {
1913
+ "nodetype" : "member",
1914
+ "module" : "DISMAN-TRACEROUTE-MIB"
1915
+ },
1916
+ "traceRouteCtlSourceAddress" : {
1917
+ "nodetype" : "member",
1918
+ "module" : "DISMAN-TRACEROUTE-MIB"
1919
+ },
1920
+ "traceRouteCtlIfIndex" : {
1921
+ "nodetype" : "member",
1922
+ "module" : "DISMAN-TRACEROUTE-MIB"
1923
+ },
1924
+ "traceRouteCtlMiscOptions" : {
1925
+ "nodetype" : "member",
1926
+ "module" : "DISMAN-TRACEROUTE-MIB"
1927
+ },
1928
+ "traceRouteCtlMaxFailures" : {
1929
+ "nodetype" : "member",
1930
+ "module" : "DISMAN-TRACEROUTE-MIB"
1931
+ },
1932
+ "traceRouteCtlDontFragment" : {
1933
+ "nodetype" : "member",
1934
+ "module" : "DISMAN-TRACEROUTE-MIB"
1935
+ },
1936
+ "traceRouteCtlInitialTtl" : {
1937
+ "nodetype" : "member",
1938
+ "module" : "DISMAN-TRACEROUTE-MIB"
1939
+ },
1940
+ "traceRouteCtlFrequency" : {
1941
+ "nodetype" : "member",
1942
+ "module" : "DISMAN-TRACEROUTE-MIB"
1943
+ },
1944
+ "traceRouteCtlStorageType" : {
1945
+ "nodetype" : "member",
1946
+ "module" : "DISMAN-TRACEROUTE-MIB"
1947
+ },
1948
+ "traceRouteCtlAdminStatus" : {
1949
+ "nodetype" : "member",
1950
+ "module" : "DISMAN-TRACEROUTE-MIB"
1951
+ },
1952
+ "traceRouteCtlMaxRows" : {
1953
+ "nodetype" : "member",
1954
+ "module" : "DISMAN-TRACEROUTE-MIB"
1955
+ },
1956
+ "traceRouteCtlTrapGeneration" : {
1957
+ "nodetype" : "member",
1958
+ "module" : "DISMAN-TRACEROUTE-MIB"
1959
+ },
1960
+ "traceRouteCtlDescr" : {
1961
+ "nodetype" : "member",
1962
+ "module" : "DISMAN-TRACEROUTE-MIB"
1963
+ },
1964
+ "traceRouteCtlCreateHopsEntries" : {
1965
+ "nodetype" : "member",
1966
+ "module" : "DISMAN-TRACEROUTE-MIB"
1967
+ },
1968
+ "traceRouteCtlType" : {
1969
+ "nodetype" : "member",
1970
+ "module" : "DISMAN-TRACEROUTE-MIB"
1971
+ },
1972
+ "traceRouteResultsOperStatus" : {
1973
+ "nodetype" : "member",
1974
+ "module" : "DISMAN-TRACEROUTE-MIB"
1975
+ },
1976
+ "traceRouteResultsCurHopCount" : {
1977
+ "nodetype" : "member",
1978
+ "module" : "DISMAN-TRACEROUTE-MIB"
1979
+ },
1980
+ "traceRouteResultsCurProbeCount" : {
1981
+ "nodetype" : "member",
1982
+ "module" : "DISMAN-TRACEROUTE-MIB"
1983
+ },
1984
+ "traceRouteResultsIpTgtAddrType" : {
1985
+ "nodetype" : "member",
1986
+ "module" : "DISMAN-TRACEROUTE-MIB"
1987
+ },
1988
+ "traceRouteResultsIpTgtAddr" : {
1989
+ "nodetype" : "member",
1990
+ "module" : "DISMAN-TRACEROUTE-MIB"
1991
+ },
1992
+ "traceRouteResultsTestAttempts" : {
1993
+ "nodetype" : "member",
1994
+ "module" : "DISMAN-TRACEROUTE-MIB"
1995
+ },
1996
+ "traceRouteResultsTestSuccesses" : {
1997
+ "nodetype" : "member",
1998
+ "module" : "DISMAN-TRACEROUTE-MIB"
1999
+ },
2000
+ "traceRouteResultsLastGoodPath" : {
2001
+ "nodetype" : "member",
2002
+ "module" : "DISMAN-TRACEROUTE-MIB"
2003
+ },
2004
+ }, # members
2005
+ "description" :
2006
+ """The group of objects that constitute the remote traceroute
2007
+ operation.""",
2008
+ }, # group
2009
+ "traceRouteCtlRowStatusGroup" : {
2010
+ "nodetype" : "group",
2011
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
2012
+ "oid" : "1.3.6.1.2.1.81.2.2.6",
2013
+ "status" : "current",
2014
+ "members" : {
2015
+ "traceRouteCtlRowStatus" : {
2016
+ "nodetype" : "member",
2017
+ "module" : "DISMAN-TRACEROUTE-MIB"
2018
+ },
2019
+ }, # members
2020
+ "description" :
2021
+ """The RowStatus object of the traceRouteCtlTable.""",
2022
+ }, # group
2023
+ "traceRouteHistoryGroup" : {
2024
+ "nodetype" : "group",
2025
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
2026
+ "oid" : "1.3.6.1.2.1.81.2.2.7",
2027
+ "status" : "current",
2028
+ "members" : {
2029
+ "traceRouteProbeHistoryHAddrType" : {
2030
+ "nodetype" : "member",
2031
+ "module" : "DISMAN-TRACEROUTE-MIB"
2032
+ },
2033
+ "traceRouteProbeHistoryHAddr" : {
2034
+ "nodetype" : "member",
2035
+ "module" : "DISMAN-TRACEROUTE-MIB"
2036
+ },
2037
+ "traceRouteProbeHistoryResponse" : {
2038
+ "nodetype" : "member",
2039
+ "module" : "DISMAN-TRACEROUTE-MIB"
2040
+ },
2041
+ "traceRouteProbeHistoryStatus" : {
2042
+ "nodetype" : "member",
2043
+ "module" : "DISMAN-TRACEROUTE-MIB"
2044
+ },
2045
+ "traceRouteProbeHistoryLastRC" : {
2046
+ "nodetype" : "member",
2047
+ "module" : "DISMAN-TRACEROUTE-MIB"
2048
+ },
2049
+ "traceRouteProbeHistoryTime" : {
2050
+ "nodetype" : "member",
2051
+ "module" : "DISMAN-TRACEROUTE-MIB"
2052
+ },
2053
+ }, # members
2054
+ "description" :
2055
+ """The group of objects that constitute the history
2056
+ capability.""",
2057
+ }, # group
2058
+ }, # groups
2059
+
2060
+ "compliances" : {
2061
+ "traceRouteCompliance" : {
2062
+ "nodetype" : "compliance",
2063
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
2064
+ "oid" : "1.3.6.1.2.1.81.2.1.1",
2065
+ "status" : "deprecated",
2066
+ "description" :
2067
+ """The compliance statement for the DISMAN-TRACEROUTE-MIB.
2068
+ This compliance statement has been deprecated because
2069
+ the traceRouteGroup and the traceRouteTimeStampGroup
2070
+ have been split and deprecated. The
2071
+ traceRouteFullCompliance is semantically identical to the
2072
+ deprecated traceRouteCompliance statement.""",
2073
+ "requires" : {
2074
+ "traceRouteGroup" : {
2075
+ "nodetype" : "mandatory",
2076
+ "module" : "DISMAN-TRACEROUTE-MIB"
2077
+ },
2078
+ "traceRouteTimeStampGroup" : {
2079
+ "nodetype" : "optional",
2080
+ "module" : "DISMAN-TRACEROUTE-MIB",
2081
+ "description" :
2082
+ """This group is mandatory for implementations that have
2083
+ access to a system clock and that are capable of setting
2084
+ the values for DateAndTime objects.""",
2085
+ },
2086
+ "traceRouteNotificationsGroup" : {
2087
+ "nodetype" : "optional",
2088
+ "module" : "DISMAN-TRACEROUTE-MIB",
2089
+ "description" :
2090
+ """This group defines a collection of optional
2091
+ notifications.""",
2092
+ },
2093
+ "traceRouteHopsTableGroup" : {
2094
+ "nodetype" : "optional",
2095
+ "module" : "DISMAN-TRACEROUTE-MIB",
2096
+ "description" :
2097
+ """This group lists the objects that make up a
2098
+ traceRouteHopsEntry. Support of the traceRouteHopsTable
2099
+ is optional.""",
2100
+ },
2101
+ }, # requires
2102
+ "refinements" : {
2103
+ "traceRouteMaxConcurrentRequests" : {
2104
+ "module" : "DISMAN-TRACEROUTE-MIB",
2105
+ "access" : "readonly",
2106
+ "description" :
2107
+ """The agent is not required to support SET
2108
+ operations to this object.""",
2109
+ },
2110
+ "traceRouteCtlByPassRouteTable" : {
2111
+ "module" : "DISMAN-TRACEROUTE-MIB",
2112
+ "access" : "readonly",
2113
+ "description" :
2114
+ """This object is not required by implementations that
2115
+ are not capable of its implementation. The function
2116
+ represented by this object is implementable if the
2117
+ setsockopt SOL_SOCKET SO_DONTROUTE option is
2118
+ supported.""",
2119
+ },
2120
+ "traceRouteCtlSourceAddressType" : {
2121
+ "module" : "DISMAN-TRACEROUTE-MIB",
2122
+ "syntax" : {
2123
+ "type" : {
2124
+ "basetype" : "Enumeration",
2125
+ "parent module" : {
2126
+ "name" : "INET-ADDRESS-MIB",
2127
+ "type" : "InetAddressType",
2128
+ },
2129
+ "unknown" : {
2130
+ "nodetype" : "namednumber",
2131
+ "number" : "0"
2132
+ },
2133
+ "ipv4" : {
2134
+ "nodetype" : "namednumber",
2135
+ "number" : "1"
2136
+ },
2137
+ "ipv6" : {
2138
+ "nodetype" : "namednumber",
2139
+ "number" : "2"
2140
+ },
2141
+ },
2142
+ }, # syntax
2143
+ "access" : "readonly",
2144
+ "description" :
2145
+ """This object is not required by implementations that
2146
+ are not capable of binding the send socket with a
2147
+ source address. An implementation is only required to
2148
+ support IPv4 and IPv6 addresses.""",
2149
+ },
2150
+ "traceRouteCtlSourceAddress" : {
2151
+ "module" : "DISMAN-TRACEROUTE-MIB",
2152
+ "syntax" : {
2153
+ "type" : {
2154
+ "basetype" : "OctetString",
2155
+ "parent module" : {
2156
+ "name" : "INET-ADDRESS-MIB",
2157
+ "type" : "InetAddress",
2158
+ },
2159
+ "ranges" : [
2160
+ {
2161
+ "min" : "0",
2162
+ "max" : "0"
2163
+ },
2164
+ {
2165
+ "min" : "4",
2166
+ "max" : "4"
2167
+ },
2168
+ {
2169
+ "min" : "16",
2170
+ "max" : "16"
2171
+ },
2172
+ ],
2173
+ "range" : {
2174
+ "min" : "0",
2175
+ "max" : "16"
2176
+ },
2177
+ },
2178
+ }, # syntax
2179
+ "access" : "readonly",
2180
+ "description" :
2181
+ """This object is not required by implementations that
2182
+ are not capable of binding the send socket with a
2183
+ source address. An implementation is only required to
2184
+ support IPv4 and globally unique IPv6 addresses.""",
2185
+ },
2186
+ "traceRouteCtlIfIndex" : {
2187
+ "module" : "DISMAN-TRACEROUTE-MIB",
2188
+ "access" : "readonly",
2189
+ "description" :
2190
+ """Write access is not required. When write access is
2191
+ not supported, return a 0 as the value of this object.
2192
+ A value of 0 implies that the function represented by
2193
+ this option is not supported.""",
2194
+ },
2195
+ "traceRouteCtlMiscOptions" : {
2196
+ "module" : "DISMAN-TRACEROUTE-MIB",
2197
+ "access" : "readonly",
2198
+ "description" :
2199
+ """Support of this object is optional. When not
2200
+ supporting, do not allow write access, and return a
2201
+ zero-length octet string as the value of the object.""",
2202
+ },
2203
+ "traceRouteCtlStorageType" : {
2204
+ "module" : "DISMAN-TRACEROUTE-MIB",
2205
+ "access" : "readonly",
2206
+ "description" :
2207
+ """Write access is not required. It is also allowed
2208
+ that implementations support only the volatile
2209
+ StorageType enumeration.""",
2210
+ },
2211
+ "traceRouteCtlDSField" : {
2212
+ "module" : "DISMAN-TRACEROUTE-MIB",
2213
+ "access" : "readonly",
2214
+ "description" :
2215
+ """Write access is not required. When write access is
2216
+ not supported, return a 0 as the value of this object.
2217
+ A value of 0 implies that the function represented by
2218
+ this option is not supported.""",
2219
+ },
2220
+ "traceRouteCtlType" : {
2221
+ "module" : "DISMAN-TRACEROUTE-MIB",
2222
+ "access" : "readonly",
2223
+ "description" :
2224
+ """Write access is not required. In addition, the only
2225
+ value that is RECOMMENDED to be supported by an
2226
+ implementation is traceRouteUsingUdpProbes.""",
2227
+ },
2228
+ "traceRouteResultsIpTgtAddrType" : {
2229
+ "module" : "DISMAN-TRACEROUTE-MIB",
2230
+ "syntax" : {
2231
+ "type" : {
2232
+ "basetype" : "Enumeration",
2233
+ "parent module" : {
2234
+ "name" : "INET-ADDRESS-MIB",
2235
+ "type" : "InetAddressType",
2236
+ },
2237
+ "unknown" : {
2238
+ "nodetype" : "namednumber",
2239
+ "number" : "0"
2240
+ },
2241
+ "ipv4" : {
2242
+ "nodetype" : "namednumber",
2243
+ "number" : "1"
2244
+ },
2245
+ "ipv6" : {
2246
+ "nodetype" : "namednumber",
2247
+ "number" : "2"
2248
+ },
2249
+ },
2250
+ }, # syntax
2251
+ "description" :
2252
+ """An implementation should only support IPv4 and
2253
+ globally unique IPv6 address values for this object.""",
2254
+ },
2255
+ "traceRouteResultsIpTgtAddr" : {
2256
+ "module" : "DISMAN-TRACEROUTE-MIB",
2257
+ "syntax" : {
2258
+ "type" : {
2259
+ "basetype" : "OctetString",
2260
+ "parent module" : {
2261
+ "name" : "INET-ADDRESS-MIB",
2262
+ "type" : "InetAddress",
2263
+ },
2264
+ "ranges" : [
2265
+ {
2266
+ "min" : "0",
2267
+ "max" : "0"
2268
+ },
2269
+ {
2270
+ "min" : "4",
2271
+ "max" : "4"
2272
+ },
2273
+ {
2274
+ "min" : "16",
2275
+ "max" : "16"
2276
+ },
2277
+ ],
2278
+ "range" : {
2279
+ "min" : "0",
2280
+ "max" : "16"
2281
+ },
2282
+ },
2283
+ }, # syntax
2284
+ "description" :
2285
+ """An implementation should only support IPv4 and
2286
+ globally unique IPv6 address values for this object.""",
2287
+ },
2288
+ "traceRouteProbeHistoryHAddrType" : {
2289
+ "module" : "DISMAN-TRACEROUTE-MIB",
2290
+ "syntax" : {
2291
+ "type" : {
2292
+ "basetype" : "Enumeration",
2293
+ "parent module" : {
2294
+ "name" : "INET-ADDRESS-MIB",
2295
+ "type" : "InetAddressType",
2296
+ },
2297
+ "unknown" : {
2298
+ "nodetype" : "namednumber",
2299
+ "number" : "0"
2300
+ },
2301
+ "ipv4" : {
2302
+ "nodetype" : "namednumber",
2303
+ "number" : "1"
2304
+ },
2305
+ "ipv6" : {
2306
+ "nodetype" : "namednumber",
2307
+ "number" : "2"
2308
+ },
2309
+ },
2310
+ }, # syntax
2311
+ "description" :
2312
+ """An implementation should only support IPv4 and
2313
+ globally unique IPv6 address values for this object.""",
2314
+ },
2315
+ "traceRouteProbeHistoryHAddr" : {
2316
+ "module" : "DISMAN-TRACEROUTE-MIB",
2317
+ "syntax" : {
2318
+ "type" : {
2319
+ "basetype" : "OctetString",
2320
+ "parent module" : {
2321
+ "name" : "INET-ADDRESS-MIB",
2322
+ "type" : "InetAddress",
2323
+ },
2324
+ "ranges" : [
2325
+ {
2326
+ "min" : "0",
2327
+ "max" : "0"
2328
+ },
2329
+ {
2330
+ "min" : "4",
2331
+ "max" : "4"
2332
+ },
2333
+ {
2334
+ "min" : "16",
2335
+ "max" : "16"
2336
+ },
2337
+ ],
2338
+ "range" : {
2339
+ "min" : "0",
2340
+ "max" : "16"
2341
+ },
2342
+ },
2343
+ }, # syntax
2344
+ "description" :
2345
+ """An implementation should only support IPv4 and
2346
+ globally unique IPv6 address values for this object.""",
2347
+ },
2348
+ "traceRouteHopsIpTgtAddressType" : {
2349
+ "module" : "DISMAN-TRACEROUTE-MIB",
2350
+ "syntax" : {
2351
+ "type" : {
2352
+ "basetype" : "Enumeration",
2353
+ "parent module" : {
2354
+ "name" : "INET-ADDRESS-MIB",
2355
+ "type" : "InetAddressType",
2356
+ },
2357
+ "unknown" : {
2358
+ "nodetype" : "namednumber",
2359
+ "number" : "0"
2360
+ },
2361
+ "ipv4" : {
2362
+ "nodetype" : "namednumber",
2363
+ "number" : "1"
2364
+ },
2365
+ "ipv6" : {
2366
+ "nodetype" : "namednumber",
2367
+ "number" : "2"
2368
+ },
2369
+ },
2370
+ }, # syntax
2371
+ "description" :
2372
+ """An implementation should only support IPv4 and
2373
+ globally unique IPv6 address values for this object.""",
2374
+ },
2375
+ "traceRouteHopsIpTgtAddress" : {
2376
+ "module" : "DISMAN-TRACEROUTE-MIB",
2377
+ "syntax" : {
2378
+ "type" : {
2379
+ "basetype" : "OctetString",
2380
+ "parent module" : {
2381
+ "name" : "INET-ADDRESS-MIB",
2382
+ "type" : "InetAddress",
2383
+ },
2384
+ "ranges" : [
2385
+ {
2386
+ "min" : "0",
2387
+ "max" : "0"
2388
+ },
2389
+ {
2390
+ "min" : "4",
2391
+ "max" : "4"
2392
+ },
2393
+ {
2394
+ "min" : "16",
2395
+ "max" : "16"
2396
+ },
2397
+ ],
2398
+ "range" : {
2399
+ "min" : "0",
2400
+ "max" : "16"
2401
+ },
2402
+ },
2403
+ }, # syntax
2404
+ "description" :
2405
+ """An implementation should only support IPv4 and
2406
+ globally unique IPv6 address values for this object.""",
2407
+ },
2408
+ }, # refinements
2409
+
2410
+ }, # compliance
2411
+ "traceRouteFullCompliance" : {
2412
+ "nodetype" : "compliance",
2413
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
2414
+ "oid" : "1.3.6.1.2.1.81.2.1.2",
2415
+ "status" : "current",
2416
+ "description" :
2417
+ """The compliance statement for SNMP entities that
2418
+ fully implement the DISMAN-TRACEROUTE-MIB.""",
2419
+ "requires" : {
2420
+ "traceRouteMinimumGroup" : {
2421
+ "nodetype" : "mandatory",
2422
+ "module" : "DISMAN-TRACEROUTE-MIB"
2423
+ },
2424
+ "traceRouteCtlRowStatusGroup" : {
2425
+ "nodetype" : "mandatory",
2426
+ "module" : "DISMAN-TRACEROUTE-MIB"
2427
+ },
2428
+ "traceRouteHistoryGroup" : {
2429
+ "nodetype" : "mandatory",
2430
+ "module" : "DISMAN-TRACEROUTE-MIB"
2431
+ },
2432
+ "traceRouteHopsTableGroup" : {
2433
+ "nodetype" : "optional",
2434
+ "module" : "DISMAN-TRACEROUTE-MIB",
2435
+ "description" :
2436
+ """This group lists the objects that make up a
2437
+ traceRouteHopsEntry. Support of the traceRouteHopsTable
2438
+ is optional.""",
2439
+ },
2440
+ "traceRouteNotificationsGroup" : {
2441
+ "nodetype" : "optional",
2442
+ "module" : "DISMAN-TRACEROUTE-MIB",
2443
+ "description" :
2444
+ """This group defines a collection of optional
2445
+ notifications.""",
2446
+ },
2447
+ }, # requires
2448
+ "refinements" : {
2449
+ "traceRouteMaxConcurrentRequests" : {
2450
+ "module" : "DISMAN-TRACEROUTE-MIB",
2451
+ "access" : "readonly",
2452
+ "description" :
2453
+ """The agent is not required to support SET
2454
+ operations to this object.""",
2455
+ },
2456
+ "traceRouteCtlByPassRouteTable" : {
2457
+ "module" : "DISMAN-TRACEROUTE-MIB",
2458
+ "access" : "readonly",
2459
+ "description" :
2460
+ """Write access to this object is not required by
2461
+ implementations that are not capable of its
2462
+ implementation. The function represented by this
2463
+ object is implementable if the setsockopt
2464
+ SOL_SOCKET SO_DONTROUTE option is supported.""",
2465
+ },
2466
+ "traceRouteCtlDSField" : {
2467
+ "module" : "DISMAN-TRACEROUTE-MIB",
2468
+ "access" : "readonly",
2469
+ "description" :
2470
+ """Write access is not required. If write access is
2471
+ not supported, return a 0 as the value of this object.
2472
+ A value of 0 implies that the function represented by
2473
+ this option is not supported.""",
2474
+ },
2475
+ "traceRouteCtlSourceAddressType" : {
2476
+ "module" : "DISMAN-TRACEROUTE-MIB",
2477
+ "syntax" : {
2478
+ "type" : {
2479
+ "basetype" : "Enumeration",
2480
+ "parent module" : {
2481
+ "name" : "INET-ADDRESS-MIB",
2482
+ "type" : "InetAddressType",
2483
+ },
2484
+ "unknown" : {
2485
+ "nodetype" : "namednumber",
2486
+ "number" : "0"
2487
+ },
2488
+ "ipv4" : {
2489
+ "nodetype" : "namednumber",
2490
+ "number" : "1"
2491
+ },
2492
+ "ipv6" : {
2493
+ "nodetype" : "namednumber",
2494
+ "number" : "2"
2495
+ },
2496
+ },
2497
+ }, # syntax
2498
+ "access" : "readonly",
2499
+ "description" :
2500
+ """Write access to this object is not required by
2501
+ implementations that are not capable of binding the
2502
+ send socket with a source address. An implementation
2503
+ is only required to support IPv4 and IPv6 addresses.""",
2504
+ },
2505
+ "traceRouteCtlSourceAddress" : {
2506
+ "module" : "DISMAN-TRACEROUTE-MIB",
2507
+ "syntax" : {
2508
+ "type" : {
2509
+ "basetype" : "OctetString",
2510
+ "parent module" : {
2511
+ "name" : "INET-ADDRESS-MIB",
2512
+ "type" : "InetAddress",
2513
+ },
2514
+ "ranges" : [
2515
+ {
2516
+ "min" : "0",
2517
+ "max" : "0"
2518
+ },
2519
+ {
2520
+ "min" : "4",
2521
+ "max" : "4"
2522
+ },
2523
+ {
2524
+ "min" : "16",
2525
+ "max" : "16"
2526
+ },
2527
+ ],
2528
+ "range" : {
2529
+ "min" : "0",
2530
+ "max" : "16"
2531
+ },
2532
+ },
2533
+ }, # syntax
2534
+ "access" : "readonly",
2535
+ "description" :
2536
+ """Write access to this object is not required by
2537
+ implementations that are not capable of binding the
2538
+ send socket with a source address. An implementation
2539
+ is only required to support IPv4 and IPv6 addresses.""",
2540
+ },
2541
+ "traceRouteCtlIfIndex" : {
2542
+ "module" : "DISMAN-TRACEROUTE-MIB",
2543
+ "access" : "readonly",
2544
+ "description" :
2545
+ """Write access is not required. If write access is
2546
+
2547
+
2548
+
2549
+ not supported, return a 0 as the value of this object.
2550
+ A value of 0 implies that the function represented by
2551
+ this option is not supported.""",
2552
+ },
2553
+ "traceRouteCtlMiscOptions" : {
2554
+ "module" : "DISMAN-TRACEROUTE-MIB",
2555
+ "access" : "readonly",
2556
+ "description" :
2557
+ """Support of this object is optional. If not
2558
+ supporting, do not allow write access and return a
2559
+ zero-length octet string as the value of the object.""",
2560
+ },
2561
+ "traceRouteCtlStorageType" : {
2562
+ "module" : "DISMAN-TRACEROUTE-MIB",
2563
+ "access" : "readonly",
2564
+ "description" :
2565
+ """Write access is not required. It is also allowed
2566
+ that implementations support only the volatile(2)
2567
+ StorageType enumeration.""",
2568
+ },
2569
+ "traceRouteCtlType" : {
2570
+ "module" : "DISMAN-TRACEROUTE-MIB",
2571
+ "access" : "readonly",
2572
+ "description" :
2573
+ """Write access is not required. In addition, the only
2574
+ value that is RECOMMENDED to be supported by an
2575
+ implementation is traceRouteUsingUdpProbes.""",
2576
+ },
2577
+ "traceRouteResultsIpTgtAddrType" : {
2578
+ "module" : "DISMAN-TRACEROUTE-MIB",
2579
+ "syntax" : {
2580
+ "type" : {
2581
+ "basetype" : "Enumeration",
2582
+ "parent module" : {
2583
+ "name" : "INET-ADDRESS-MIB",
2584
+ "type" : "InetAddressType",
2585
+ },
2586
+ "unknown" : {
2587
+ "nodetype" : "namednumber",
2588
+ "number" : "0"
2589
+ },
2590
+ "ipv4" : {
2591
+ "nodetype" : "namednumber",
2592
+ "number" : "1"
2593
+ },
2594
+ "ipv6" : {
2595
+ "nodetype" : "namednumber",
2596
+ "number" : "2"
2597
+ },
2598
+ },
2599
+ }, # syntax
2600
+ "description" :
2601
+ """An implementation should only support IPv4 and
2602
+ globally unique IPv6 address values for this object.""",
2603
+ },
2604
+ "traceRouteResultsIpTgtAddr" : {
2605
+ "module" : "DISMAN-TRACEROUTE-MIB",
2606
+ "syntax" : {
2607
+ "type" : {
2608
+ "basetype" : "OctetString",
2609
+ "parent module" : {
2610
+ "name" : "INET-ADDRESS-MIB",
2611
+ "type" : "InetAddress",
2612
+ },
2613
+ "ranges" : [
2614
+ {
2615
+ "min" : "0",
2616
+ "max" : "0"
2617
+ },
2618
+ {
2619
+ "min" : "4",
2620
+ "max" : "4"
2621
+ },
2622
+ {
2623
+ "min" : "16",
2624
+ "max" : "16"
2625
+ },
2626
+ ],
2627
+ "range" : {
2628
+ "min" : "0",
2629
+ "max" : "16"
2630
+ },
2631
+ },
2632
+ }, # syntax
2633
+ "description" :
2634
+ """An implementation should only support IPv4 and
2635
+ globally unique IPv6 address values for this object.""",
2636
+ },
2637
+ "traceRouteResultsLastGoodPath" : {
2638
+ "module" : "DISMAN-TRACEROUTE-MIB",
2639
+ "description" :
2640
+ """If the traceRouteHopsTableGroup is implemented, then
2641
+ this object is mandatory for implementations that have
2642
+ access to a system clock and that are capable of setting
2643
+ the values for DateAndTime objects. It is RECOMMENDED
2644
+ that when this object is not supported its values
2645
+ be reported as '0000000000000000'H.""",
2646
+ },
2647
+ "traceRouteProbeHistoryHAddrType" : {
2648
+ "module" : "DISMAN-TRACEROUTE-MIB",
2649
+ "syntax" : {
2650
+ "type" : {
2651
+ "basetype" : "Enumeration",
2652
+ "parent module" : {
2653
+ "name" : "INET-ADDRESS-MIB",
2654
+ "type" : "InetAddressType",
2655
+ },
2656
+ "unknown" : {
2657
+ "nodetype" : "namednumber",
2658
+ "number" : "0"
2659
+ },
2660
+ "ipv4" : {
2661
+ "nodetype" : "namednumber",
2662
+ "number" : "1"
2663
+ },
2664
+ "ipv6" : {
2665
+ "nodetype" : "namednumber",
2666
+ "number" : "2"
2667
+ },
2668
+ },
2669
+ }, # syntax
2670
+ "description" :
2671
+ """An implementation should only support IPv4 and
2672
+ globally unique IPv6 address values for this object.""",
2673
+ },
2674
+ "traceRouteProbeHistoryHAddr" : {
2675
+ "module" : "DISMAN-TRACEROUTE-MIB",
2676
+ "syntax" : {
2677
+ "type" : {
2678
+ "basetype" : "OctetString",
2679
+ "parent module" : {
2680
+ "name" : "INET-ADDRESS-MIB",
2681
+ "type" : "InetAddress",
2682
+ },
2683
+ "ranges" : [
2684
+ {
2685
+ "min" : "0",
2686
+ "max" : "0"
2687
+ },
2688
+ {
2689
+ "min" : "4",
2690
+ "max" : "4"
2691
+ },
2692
+ {
2693
+ "min" : "16",
2694
+ "max" : "16"
2695
+ },
2696
+ ],
2697
+ "range" : {
2698
+ "min" : "0",
2699
+ "max" : "16"
2700
+ },
2701
+ },
2702
+ }, # syntax
2703
+ "description" :
2704
+ """An implementation should only support IPv4 and
2705
+ globally unique IPv6 address values for this object.""",
2706
+ },
2707
+ "traceRouteProbeHistoryTime" : {
2708
+ "module" : "DISMAN-TRACEROUTE-MIB",
2709
+ "description" :
2710
+ """This object is mandatory for implementations that have
2711
+ access to a system clock and that are capable of setting
2712
+ the values for DateAndTime objects. It is RECOMMENDED
2713
+ that when this object is not supported its values
2714
+ be reported as '0000000000000000'H.""",
2715
+ },
2716
+ "traceRouteHopsIpTgtAddressType" : {
2717
+ "module" : "DISMAN-TRACEROUTE-MIB",
2718
+ "syntax" : {
2719
+ "type" : {
2720
+ "basetype" : "Enumeration",
2721
+ "parent module" : {
2722
+ "name" : "INET-ADDRESS-MIB",
2723
+ "type" : "InetAddressType",
2724
+ },
2725
+ "unknown" : {
2726
+ "nodetype" : "namednumber",
2727
+ "number" : "0"
2728
+ },
2729
+ "ipv4" : {
2730
+ "nodetype" : "namednumber",
2731
+ "number" : "1"
2732
+ },
2733
+ "ipv6" : {
2734
+ "nodetype" : "namednumber",
2735
+ "number" : "2"
2736
+ },
2737
+ },
2738
+ }, # syntax
2739
+ "description" :
2740
+ """An implementation should only support IPv4 and
2741
+ globally unique IPv6 address values for this object.""",
2742
+ },
2743
+ "traceRouteHopsIpTgtAddress" : {
2744
+ "module" : "DISMAN-TRACEROUTE-MIB",
2745
+ "syntax" : {
2746
+ "type" : {
2747
+ "basetype" : "OctetString",
2748
+ "parent module" : {
2749
+ "name" : "INET-ADDRESS-MIB",
2750
+ "type" : "InetAddress",
2751
+ },
2752
+ "ranges" : [
2753
+ {
2754
+ "min" : "0",
2755
+ "max" : "0"
2756
+ },
2757
+ {
2758
+ "min" : "4",
2759
+ "max" : "4"
2760
+ },
2761
+ {
2762
+ "min" : "16",
2763
+ "max" : "16"
2764
+ },
2765
+ ],
2766
+ "range" : {
2767
+ "min" : "0",
2768
+ "max" : "16"
2769
+ },
2770
+ },
2771
+ }, # syntax
2772
+ "description" :
2773
+ """An implementation should only support IPv4 and
2774
+ globally unique IPv6 address values for this object.""",
2775
+ },
2776
+ "traceRouteHopsLastGoodProbe" : {
2777
+ "module" : "DISMAN-TRACEROUTE-MIB",
2778
+ "description" :
2779
+ """This object is mandatory for implementations that have
2780
+ access to a system clock and that are capable of setting
2781
+ the values for DateAndTime objects. It is RECOMMENDED
2782
+ that when this object is not supported its values
2783
+ be reported as '0000000000000000'H.""",
2784
+ },
2785
+ }, # refinements
2786
+
2787
+ }, # compliance
2788
+ "traceRouteMinimumCompliance" : {
2789
+ "nodetype" : "compliance",
2790
+ "moduleName" : "DISMAN-TRACEROUTE-MIB",
2791
+ "oid" : "1.3.6.1.2.1.81.2.1.3",
2792
+ "status" : "current",
2793
+ "description" :
2794
+ """The minimum compliance statement for SNMP entities
2795
+ which implement the minimal subset of the
2796
+ DISMAN-TRACEROUTE-MIB. Implementors might choose this
2797
+ subset for small devices with limited resources.""",
2798
+ "requires" : {
2799
+ "traceRouteMinimumGroup" : {
2800
+ "nodetype" : "mandatory",
2801
+ "module" : "DISMAN-TRACEROUTE-MIB"
2802
+ },
2803
+ "traceRouteCtlRowStatusGroup" : {
2804
+ "nodetype" : "optional",
2805
+ "module" : "DISMAN-TRACEROUTE-MIB",
2806
+ "description" :
2807
+ """A compliant implementation does not have to implement
2808
+ the traceRouteCtlRowStatusGroup.""",
2809
+ },
2810
+ "traceRouteHistoryGroup" : {
2811
+ "nodetype" : "optional",
2812
+ "module" : "DISMAN-TRACEROUTE-MIB",
2813
+ "description" :
2814
+ """A compliant implementation does not have to implement
2815
+ the traceRouteHistoryGroup.""",
2816
+ },
2817
+ "traceRouteHopsTableGroup" : {
2818
+ "nodetype" : "optional",
2819
+ "module" : "DISMAN-TRACEROUTE-MIB",
2820
+ "description" :
2821
+ """This group lists the objects that make up a
2822
+ traceRouteHopsEntry. Support of the traceRouteHopsTable
2823
+ is optional.""",
2824
+ },
2825
+ "traceRouteNotificationsGroup" : {
2826
+ "nodetype" : "optional",
2827
+ "module" : "DISMAN-TRACEROUTE-MIB",
2828
+ "description" :
2829
+ """This group defines a collection of optional
2830
+ notifications.""",
2831
+ },
2832
+ }, # requires
2833
+ "refinements" : {
2834
+ "traceRouteMaxConcurrentRequests" : {
2835
+ "module" : "DISMAN-TRACEROUTE-MIB",
2836
+ "access" : "readonly",
2837
+ "description" :
2838
+ """The agent is not required to support SET
2839
+ operations to this object.""",
2840
+ },
2841
+ "traceRouteCtlByPassRouteTable" : {
2842
+ "module" : "DISMAN-TRACEROUTE-MIB",
2843
+ "access" : "readonly",
2844
+ "description" :
2845
+ """Write access is not required. If write access is
2846
+ not supported, return a false(2) as the value of this
2847
+ object. A value of false(2) means that the function
2848
+ represented by this option is not supported.""",
2849
+ },
2850
+ "traceRouteCtlDSField" : {
2851
+ "module" : "DISMAN-TRACEROUTE-MIB",
2852
+ "access" : "readonly",
2853
+ "description" :
2854
+ """Write access is not required. If write access is
2855
+ not supported, return a 0 as the value of this object.
2856
+ A value of 0 implies that the function represented by
2857
+ this option is not supported.""",
2858
+ },
2859
+ "traceRouteCtlSourceAddressType" : {
2860
+ "module" : "DISMAN-TRACEROUTE-MIB",
2861
+ "syntax" : {
2862
+ "type" : {
2863
+ "basetype" : "Enumeration",
2864
+ "parent module" : {
2865
+ "name" : "INET-ADDRESS-MIB",
2866
+ "type" : "InetAddressType",
2867
+ },
2868
+ "unknown" : {
2869
+ "nodetype" : "namednumber",
2870
+ "number" : "0"
2871
+ },
2872
+ "ipv4" : {
2873
+ "nodetype" : "namednumber",
2874
+ "number" : "1"
2875
+ },
2876
+ "ipv6" : {
2877
+ "nodetype" : "namednumber",
2878
+ "number" : "2"
2879
+ },
2880
+ },
2881
+ }, # syntax
2882
+ "access" : "readonly",
2883
+ "description" :
2884
+ """Write access to this object is not required by
2885
+ implementations that are not capable of binding the
2886
+ send socket with a source address. An implementation
2887
+ is only required to support IPv4 and IPv6 addresses.""",
2888
+ },
2889
+ "traceRouteCtlSourceAddress" : {
2890
+ "module" : "DISMAN-TRACEROUTE-MIB",
2891
+ "syntax" : {
2892
+ "type" : {
2893
+ "basetype" : "OctetString",
2894
+ "parent module" : {
2895
+ "name" : "INET-ADDRESS-MIB",
2896
+ "type" : "InetAddress",
2897
+ },
2898
+ "ranges" : [
2899
+ {
2900
+ "min" : "0",
2901
+ "max" : "0"
2902
+ },
2903
+ {
2904
+ "min" : "4",
2905
+ "max" : "4"
2906
+ },
2907
+ {
2908
+ "min" : "16",
2909
+ "max" : "16"
2910
+ },
2911
+ ],
2912
+ "range" : {
2913
+ "min" : "0",
2914
+ "max" : "16"
2915
+ },
2916
+ },
2917
+ }, # syntax
2918
+ "access" : "readonly",
2919
+ "description" :
2920
+ """Write access to this object is not required by
2921
+ implementations that are not capable of binding the
2922
+ send socket with a source address. An implementation
2923
+ is only required to support IPv4 and IPv6 addresses.""",
2924
+ },
2925
+ "traceRouteCtlIfIndex" : {
2926
+ "module" : "DISMAN-TRACEROUTE-MIB",
2927
+ "access" : "readonly",
2928
+ "description" :
2929
+ """Write access is not required. If write access is
2930
+ not supported, return a 0 as the value of this object.
2931
+ A value of 0 implies that the function represented by
2932
+ this option is not supported.""",
2933
+ },
2934
+ "traceRouteCtlMiscOptions" : {
2935
+ "module" : "DISMAN-TRACEROUTE-MIB",
2936
+ "access" : "readonly",
2937
+ "description" :
2938
+ """Support of this object is optional. If not
2939
+ supporting, do not allow write access, and return a
2940
+ zero-length octet string as the value of the object.""",
2941
+ },
2942
+ "traceRouteCtlDontFragment" : {
2943
+ "module" : "DISMAN-TRACEROUTE-MIB",
2944
+ "access" : "readonly",
2945
+ "description" :
2946
+ """Write access is not required. If write access is
2947
+ not supported, return a false(2) as the value of this
2948
+ object. A value of false(2) means that the function
2949
+ represented by this option is not supported.""",
2950
+ },
2951
+ "traceRouteCtlInitialTtl" : {
2952
+ "module" : "DISMAN-TRACEROUTE-MIB",
2953
+ "access" : "readonly",
2954
+ "description" :
2955
+ """Write access is not required. If write access is
2956
+ not supported, return a 1 as the value of this object.""",
2957
+ },
2958
+ "traceRouteCtlFrequency" : {
2959
+ "module" : "DISMAN-TRACEROUTE-MIB",
2960
+ "access" : "readonly",
2961
+ "description" :
2962
+ """Write access is not required. If write access is
2963
+ not supported, return a 0 as the value of this object.
2964
+ A value of 0 implies that the function represented by
2965
+ this option is not supported.""",
2966
+ },
2967
+ "traceRouteCtlStorageType" : {
2968
+ "module" : "DISMAN-TRACEROUTE-MIB",
2969
+ "access" : "readonly",
2970
+ "description" :
2971
+ """Write access is not required. It is also allowed
2972
+ that implementations support only the volatile(2)
2973
+ StorageType enumeration.""",
2974
+ },
2975
+ "traceRouteCtlDescr" : {
2976
+ "module" : "DISMAN-TRACEROUTE-MIB",
2977
+ "access" : "readonly",
2978
+ "description" :
2979
+ """The agent is not required to support set
2980
+ operations to this object.""",
2981
+ },
2982
+ "traceRouteCtlMaxRows" : {
2983
+ "module" : "DISMAN-TRACEROUTE-MIB",
2984
+ "access" : "readonly",
2985
+ "description" :
2986
+ """Write access is not required. If the
2987
+ traceRouteHistoryGroup is not implemented, then write
2988
+ access to this object MUST be disabled, and the object
2989
+ MUST return a value of 0 when retrieved.""",
2990
+ },
2991
+ "traceRouteCtlTrapGeneration" : {
2992
+ "module" : "DISMAN-TRACEROUTE-MIB",
2993
+ "access" : "readonly",
2994
+ "description" :
2995
+ """Write access is not required. If the
2996
+ traceRouteNotificationsGroup is not implemented, then
2997
+ write access to this object MUST be disabled, and the
2998
+ object MUST return a value with no bit set when
2999
+ retrieved. No bit set indicates that no notification
3000
+ is generated.""",
3001
+ },
3002
+ "traceRouteCtlCreateHopsEntries" : {
3003
+ "module" : "DISMAN-TRACEROUTE-MIB",
3004
+ "access" : "readonly",
3005
+ "description" :
3006
+ """Write access is not required. If the
3007
+ traceRouteHopsTableGroup is not implemented, then
3008
+ write access to this object MUST be disabled, and the
3009
+ object MUST return a value of false(2) when retrieved.""",
3010
+ },
3011
+ "traceRouteCtlType" : {
3012
+ "module" : "DISMAN-TRACEROUTE-MIB",
3013
+ "access" : "readonly",
3014
+ "description" :
3015
+ """Write access is not required. In addition, the only
3016
+
3017
+
3018
+
3019
+ value that is RECOMMENDED to be supported by an
3020
+ implementation is traceRouteUsingUdpProbes.""",
3021
+ },
3022
+ "traceRouteResultsIpTgtAddrType" : {
3023
+ "module" : "DISMAN-TRACEROUTE-MIB",
3024
+ "syntax" : {
3025
+ "type" : {
3026
+ "basetype" : "Enumeration",
3027
+ "parent module" : {
3028
+ "name" : "INET-ADDRESS-MIB",
3029
+ "type" : "InetAddressType",
3030
+ },
3031
+ "unknown" : {
3032
+ "nodetype" : "namednumber",
3033
+ "number" : "0"
3034
+ },
3035
+ "ipv4" : {
3036
+ "nodetype" : "namednumber",
3037
+ "number" : "1"
3038
+ },
3039
+ "ipv6" : {
3040
+ "nodetype" : "namednumber",
3041
+ "number" : "2"
3042
+ },
3043
+ },
3044
+ }, # syntax
3045
+ "description" :
3046
+ """An implementation should only support IPv4 and
3047
+ globally unique IPv6 address values for this object.""",
3048
+ },
3049
+ "traceRouteResultsIpTgtAddr" : {
3050
+ "module" : "DISMAN-TRACEROUTE-MIB",
3051
+ "syntax" : {
3052
+ "type" : {
3053
+ "basetype" : "OctetString",
3054
+ "parent module" : {
3055
+ "name" : "INET-ADDRESS-MIB",
3056
+ "type" : "InetAddress",
3057
+ },
3058
+ "ranges" : [
3059
+ {
3060
+ "min" : "0",
3061
+ "max" : "0"
3062
+ },
3063
+ {
3064
+ "min" : "4",
3065
+ "max" : "4"
3066
+ },
3067
+ {
3068
+ "min" : "16",
3069
+ "max" : "16"
3070
+ },
3071
+ ],
3072
+ "range" : {
3073
+ "min" : "0",
3074
+ "max" : "16"
3075
+ },
3076
+ },
3077
+ }, # syntax
3078
+ "description" :
3079
+ """An implementation should only support IPv4 and
3080
+ globally unique IPv6 address values for this object.""",
3081
+ },
3082
+ "traceRouteResultsLastGoodPath" : {
3083
+ "module" : "DISMAN-TRACEROUTE-MIB",
3084
+ "description" :
3085
+ """This object is mandatory for implementations that have
3086
+ access to a system clock and that are capable of setting
3087
+ the values for DateAndTime objects. It is RECOMMENDED
3088
+ that when this object is not supported its values
3089
+ be reported as '0000000000000000'H.""",
3090
+ },
3091
+ "traceRouteProbeHistoryHAddrType" : {
3092
+ "module" : "DISMAN-TRACEROUTE-MIB",
3093
+ "syntax" : {
3094
+ "type" : {
3095
+ "basetype" : "Enumeration",
3096
+ "parent module" : {
3097
+ "name" : "INET-ADDRESS-MIB",
3098
+ "type" : "InetAddressType",
3099
+ },
3100
+ "unknown" : {
3101
+ "nodetype" : "namednumber",
3102
+ "number" : "0"
3103
+ },
3104
+ "ipv4" : {
3105
+ "nodetype" : "namednumber",
3106
+ "number" : "1"
3107
+ },
3108
+ "ipv6" : {
3109
+ "nodetype" : "namednumber",
3110
+ "number" : "2"
3111
+ },
3112
+ },
3113
+ }, # syntax
3114
+ "description" :
3115
+ """An implementation should only support IPv4 and
3116
+ globally unique IPv6 address values for this object.""",
3117
+ },
3118
+ "traceRouteProbeHistoryHAddr" : {
3119
+ "module" : "DISMAN-TRACEROUTE-MIB",
3120
+ "syntax" : {
3121
+ "type" : {
3122
+ "basetype" : "OctetString",
3123
+ "parent module" : {
3124
+ "name" : "INET-ADDRESS-MIB",
3125
+ "type" : "InetAddress",
3126
+ },
3127
+ "ranges" : [
3128
+ {
3129
+ "min" : "0",
3130
+ "max" : "0"
3131
+ },
3132
+ {
3133
+ "min" : "4",
3134
+ "max" : "4"
3135
+ },
3136
+ {
3137
+ "min" : "16",
3138
+ "max" : "16"
3139
+ },
3140
+ ],
3141
+ "range" : {
3142
+ "min" : "0",
3143
+ "max" : "16"
3144
+ },
3145
+ },
3146
+ }, # syntax
3147
+ "description" :
3148
+ """An implementation should only support IPv4 and
3149
+ globally unique IPv6 address values for this object.""",
3150
+ },
3151
+ "traceRouteProbeHistoryTime" : {
3152
+ "module" : "DISMAN-TRACEROUTE-MIB",
3153
+ "description" :
3154
+ """If the traceRouteHistoryGroup is implemented, then
3155
+ this object is mandatory for implementations that have
3156
+ access to a system clock and that are capable of setting
3157
+ the values for DateAndTime objects. It is RECOMMENDED
3158
+ that when this object is not supported its values
3159
+ be reported as '0000000000000000'H.""",
3160
+ },
3161
+ "traceRouteHopsIpTgtAddressType" : {
3162
+ "module" : "DISMAN-TRACEROUTE-MIB",
3163
+ "syntax" : {
3164
+ "type" : {
3165
+ "basetype" : "Enumeration",
3166
+ "parent module" : {
3167
+ "name" : "INET-ADDRESS-MIB",
3168
+ "type" : "InetAddressType",
3169
+ },
3170
+ "unknown" : {
3171
+ "nodetype" : "namednumber",
3172
+ "number" : "0"
3173
+ },
3174
+ "ipv4" : {
3175
+ "nodetype" : "namednumber",
3176
+ "number" : "1"
3177
+ },
3178
+ "ipv6" : {
3179
+ "nodetype" : "namednumber",
3180
+ "number" : "2"
3181
+ },
3182
+ },
3183
+ }, # syntax
3184
+ "description" :
3185
+ """An implementation should only support IPv4 and
3186
+
3187
+
3188
+
3189
+ globally unique IPv6 address values for this object.""",
3190
+ },
3191
+ "traceRouteHopsIpTgtAddress" : {
3192
+ "module" : "DISMAN-TRACEROUTE-MIB",
3193
+ "syntax" : {
3194
+ "type" : {
3195
+ "basetype" : "OctetString",
3196
+ "parent module" : {
3197
+ "name" : "INET-ADDRESS-MIB",
3198
+ "type" : "InetAddress",
3199
+ },
3200
+ "ranges" : [
3201
+ {
3202
+ "min" : "0",
3203
+ "max" : "0"
3204
+ },
3205
+ {
3206
+ "min" : "4",
3207
+ "max" : "4"
3208
+ },
3209
+ {
3210
+ "min" : "16",
3211
+ "max" : "16"
3212
+ },
3213
+ ],
3214
+ "range" : {
3215
+ "min" : "0",
3216
+ "max" : "16"
3217
+ },
3218
+ },
3219
+ }, # syntax
3220
+ "description" :
3221
+ """An implementation should only support IPv4 and
3222
+ globally unique IPv6 address values for this object.""",
3223
+ },
3224
+ "traceRouteHopsLastGoodProbe" : {
3225
+ "module" : "DISMAN-TRACEROUTE-MIB",
3226
+ "description" :
3227
+ """If the traceRouteHopsTableGroup is implemented, then
3228
+ this object is mandatory for implementations that have
3229
+ access to a system clock and that are capable of setting
3230
+ the values for DateAndTime objects. It is RECOMMENDED
3231
+ that when this object is not supported its values
3232
+ be reported as '0000000000000000'H.""",
3233
+ },
3234
+ }, # refinements
3235
+
3236
+ }, # compliance
3237
+ }, # compliances
3238
+
3239
+ }