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,3005 @@
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 NHDP-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/NHDP-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "NHDP-MIB",
11
+
12
+ "NHDP-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF MANET Working Group""",
17
+ "contact" :
18
+ """WG E-Mail: manet@ietf.org
19
+
20
+ WG Chairs: sratliff@cisco.com
21
+ jmacker@nrl.navy.mil
22
+
23
+
24
+ Editors: Ulrich Herberg
25
+ LIX, Ecole Polytechnique
26
+ 91128 Palaiseau Cedex
27
+ France
28
+
29
+ ulrich@herberg.name
30
+ http://www.herberg.name/
31
+
32
+
33
+ Robert G. Cole
34
+ US Army CERDEC
35
+ Space and Terrestrial Communications
36
+ 6010 Frankford Street
37
+ Bldg 6010, Room 453H
38
+ Aberdeen Proving Ground, Maryland 21005
39
+ USA
40
+ +1 443 395-8744
41
+
42
+ robert.g.cole@us.army.mil
43
+ http://www.cs.jhu.edu/~rgcole/
44
+
45
+
46
+
47
+
48
+
49
+
50
+
51
+
52
+ Ian D Chakeres
53
+ DRS CenGen
54
+ 9250 Bendix Road North
55
+ Columbia, Maryland 21045
56
+ USA
57
+
58
+ ian.chakeres@gmail.com
59
+ http://www.ianchak.com/""",
60
+ "description" :
61
+ """This NHDP-MIB module is applicable to routers
62
+ implementing the Neighborhood Discovery Protocol
63
+ defined in RFC 6130.
64
+
65
+ Copyright (c) 2012 IETF Trust and the persons
66
+ identified as authors of the code. All rights reserved.
67
+
68
+ Redistribution and use in source and binary forms, with
69
+ or without modification, is permitted pursuant to, and
70
+ subject to the license terms contained in, the Simplified
71
+ BSD License set forth in Section 4.c of the IETF Trust's
72
+ Legal Provisions Relating to IETF Documents
73
+ (http://trustee.ietf.org/license-info).
74
+
75
+ This version of this MIB module is part of RFC 6779; see
76
+ the RFC itself for full legal notices.""",
77
+ "revisions" : (
78
+ {
79
+ "date" : "2012-10-22 10:00",
80
+ "description" :
81
+ """Initial version of this MIB module,
82
+ published as RFC 6779.""",
83
+ },
84
+ ),
85
+ "identity node" : "nhdpMIB",
86
+ },
87
+
88
+ "imports" : (
89
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
90
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
91
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
92
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
93
+ {"module" : "SNMPv2-SMI", "name" : "Counter64"},
94
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
95
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
96
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
97
+ {"module" : "SNMPv2-SMI", "name" : "TimeTicks"},
98
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
99
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
100
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
101
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
102
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
103
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
104
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
105
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
106
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddressType"},
107
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddress"},
108
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddressPrefixLength"},
109
+ {"module" : "IF-MIB", "name" : "InterfaceIndex"},
110
+ {"module" : "FLOAT-TC-MIB", "name" : "Float32TC"},
111
+ ),
112
+
113
+ "typedefs" : {
114
+ "NeighborIfIndex" : {
115
+ "basetype" : "Unsigned32",
116
+ "status" : "current",
117
+ "ranges" : [
118
+ {
119
+ "min" : "1",
120
+ "max" : "2147483647"
121
+ },
122
+ ],
123
+ "range" : {
124
+ "min" : "1",
125
+ "max" : "2147483647"
126
+ },
127
+ "format" : "d",
128
+ "description" :
129
+ """An arbitrary, locally unique identifier associated with a
130
+ virtual interface of a discovered NHDP neighbor.
131
+ Due to the nature of NHDP, the local router
132
+ may not know if two distinct addresses belong to the
133
+ same interface of a neighbor or to two different
134
+ interfaces. As the local router gains more
135
+ knowledge of its neighbors, its local view may change, and
136
+ this table will be updated to reflect the local router's
137
+ current understanding, associating address sets to neighbor
138
+ interfaces. The local router identifies a virtual neighbor
139
+ interface through the receipt of address lists advertised
140
+ through an NHDP HELLO message.
141
+
142
+ All objects of type NeighborIfIndex are assigned by the agent
143
+ out of a common number space.
144
+
145
+
146
+
147
+
148
+
149
+ The value for each discovered virtual neighbor
150
+ interface may not remain constant from
151
+ one re-initialization of the entity's network management
152
+ agent to the next re-initialization. If the
153
+ local router gains information associating two virtual
154
+ interfaces on a neighbor as a common interface,
155
+ then the agent MUST aggregate the two address sets to
156
+ a single index chosen from the set of aggregated indexes,
157
+ and it MUST update all tables in this
158
+ MIB module that are indexed by indexes
159
+ of type NeighborIfIndex. It MAY then reuse freed
160
+ index values following the next agent restart.
161
+
162
+ The specific value is meaningful only within a given SNMP
163
+ entity.""",
164
+ },
165
+ "NeighborRouterIndex" : {
166
+ "basetype" : "Unsigned32",
167
+ "status" : "current",
168
+ "ranges" : [
169
+ {
170
+ "min" : "1",
171
+ "max" : "2147483647"
172
+ },
173
+ ],
174
+ "range" : {
175
+ "min" : "1",
176
+ "max" : "2147483647"
177
+ },
178
+ "format" : "d",
179
+ "description" :
180
+ """An arbitrary, locally unique identifier associated with a
181
+ virtual discovered neighbor (one or two hop). Due to the
182
+ nature of NHDP, the local router may identify
183
+ multiple virtual neighbors that, in fact, are one and
184
+ the same. Neighbors that are two hops away with more than
185
+ one advertised address will exhibit this behavior. As the
186
+ local router's knowledge of its neighbors' topology
187
+ increases, the local router will be able to associate
188
+ multiple virtual neighbor indexes into a single virtual
189
+ neighbor index chosen from the set of aggregated indexes;
190
+ it MUST update all tables in this MIB module indexed by these
191
+ indexes, and it MAY reuse the freed indexes following the
192
+ next agent re-initialization.
193
+
194
+ All objects of type NeighborRouterIndex are assigned by
195
+ the agent out of a common number space.
196
+
197
+ The NeighborRouterIndex defines a discovered NHDP peer
198
+ virtual neighbor of the local router.
199
+ The value for each discovered virtual neighbor index MUST
200
+ remain constant at least from one re-initialization of
201
+ the entity's network management agent to the next
202
+ re-initialization, except if an application is deleted
203
+ and re-created.
204
+
205
+ The specific value is meaningful only within a given SNMP
206
+ entity. A NeighborRouterIndex value MUST not be reused
207
+
208
+
209
+
210
+ until the next agent restart.""",
211
+ },
212
+ }, # typedefs
213
+
214
+ "nodes" : {
215
+ "nhdpMIB" : {
216
+ "nodetype" : "node",
217
+ "moduleName" : "NHDP-MIB",
218
+ "oid" : "1.3.6.1.2.1.213",
219
+ "status" : "current",
220
+ }, # node
221
+ "nhdpNotifications" : {
222
+ "nodetype" : "node",
223
+ "moduleName" : "NHDP-MIB",
224
+ "oid" : "1.3.6.1.2.1.213.0",
225
+ }, # node
226
+ "nhdpNotificationsObjects" : {
227
+ "nodetype" : "node",
228
+ "moduleName" : "NHDP-MIB",
229
+ "oid" : "1.3.6.1.2.1.213.0.0",
230
+ }, # node
231
+ "nhdpNotificationsControl" : {
232
+ "nodetype" : "node",
233
+ "moduleName" : "NHDP-MIB",
234
+ "oid" : "1.3.6.1.2.1.213.0.1",
235
+ }, # node
236
+ "nhdpNbrStateChangeThreshold" : {
237
+ "nodetype" : "scalar",
238
+ "moduleName" : "NHDP-MIB",
239
+ "oid" : "1.3.6.1.2.1.213.0.1.1",
240
+ "status" : "current",
241
+ "syntax" : {
242
+ "type" : {
243
+ "basetype" : "Integer32",
244
+ "ranges" : [
245
+ {
246
+ "min" : "0",
247
+ "max" : "255"
248
+ },
249
+ ],
250
+ "range" : {
251
+ "min" : "0",
252
+ "max" : "255"
253
+ },
254
+ },
255
+ },
256
+ "access" : "readwrite",
257
+ "default" : "10",
258
+ "units" : "changes",
259
+ "description" :
260
+ """A threshold value for the
261
+ nhdpNbrStateChange object. If the
262
+ number of occurrences exceeds this threshold
263
+ within the previous nhdpNbrStateChangeWindow,
264
+ then the nhdpNbrStateChange notification
265
+ is to be sent.
266
+
267
+ It is recommended that the value of this
268
+ threshold be set to at least 10 and higher
269
+ in dense topologies with frequent expected
270
+ topology changes.""",
271
+ }, # scalar
272
+ "nhdpNbrStateChangeWindow" : {
273
+ "nodetype" : "scalar",
274
+ "moduleName" : "NHDP-MIB",
275
+ "oid" : "1.3.6.1.2.1.213.0.1.2",
276
+ "status" : "current",
277
+ "syntax" : {
278
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
279
+ },
280
+ "access" : "readwrite",
281
+ "default" : "1000",
282
+ "description" :
283
+ """A time window for the
284
+ nhdpNbrStateChange object. If the
285
+ number of occurrences exceeds the
286
+ nhdpNbrStateChangeThreshold
287
+ within the previous nhdpNbrStateChangeWindow,
288
+ then the nhdpNbrStateChange notification
289
+ is to be sent.
290
+
291
+ It is recommended that the value for this
292
+ window be set to at least 5 times the
293
+ nhdpHelloInterval.
294
+
295
+
296
+
297
+ This object represents the time in hundredths
298
+ of a second.""",
299
+ }, # scalar
300
+ "nhdp2HopNbrStateChangeThreshold" : {
301
+ "nodetype" : "scalar",
302
+ "moduleName" : "NHDP-MIB",
303
+ "oid" : "1.3.6.1.2.1.213.0.1.3",
304
+ "status" : "current",
305
+ "syntax" : {
306
+ "type" : {
307
+ "basetype" : "Integer32",
308
+ "ranges" : [
309
+ {
310
+ "min" : "0",
311
+ "max" : "255"
312
+ },
313
+ ],
314
+ "range" : {
315
+ "min" : "0",
316
+ "max" : "255"
317
+ },
318
+ },
319
+ },
320
+ "access" : "readwrite",
321
+ "default" : "10",
322
+ "units" : "changes",
323
+ "description" :
324
+ """A threshold value for the
325
+ nhdp2HopNbrStateChange object. If the
326
+ number of occurrences exceeds this threshold
327
+ within the previous nhdp2HopNbrStateChangeWindow,
328
+ then the nhdp2HopNbrStateChange notification
329
+ is to be sent.
330
+
331
+ It is recommended that the value of this
332
+ threshold be set to at least 10 and higher
333
+ when topologies are expected to be highly dynamic.""",
334
+ }, # scalar
335
+ "nhdp2HopNbrStateChangeWindow" : {
336
+ "nodetype" : "scalar",
337
+ "moduleName" : "NHDP-MIB",
338
+ "oid" : "1.3.6.1.2.1.213.0.1.4",
339
+ "status" : "current",
340
+ "syntax" : {
341
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
342
+ },
343
+ "access" : "readwrite",
344
+ "default" : "1000",
345
+ "description" :
346
+ """A time window for the
347
+ nhdp2HopNbrStateChange object. If the
348
+ number of occurrences exceeds the
349
+ nhdp2HopNbrStateChangeThreshold
350
+ within the previous nhdp2HopNbrStateChangeWindow,
351
+ then the nhdp2HopNbrStateChange notification
352
+ is to be sent.
353
+
354
+ It is recommended that the value for this
355
+ window be set to at least 5 times
356
+ nhdpHelloInterval.
357
+
358
+ This object represents the time in hundredths
359
+ of a second.""",
360
+ }, # scalar
361
+ "nhdpNotificationsStates" : {
362
+ "nodetype" : "node",
363
+ "moduleName" : "NHDP-MIB",
364
+ "oid" : "1.3.6.1.2.1.213.0.2",
365
+ }, # node
366
+ "nhdpNbrState" : {
367
+ "nodetype" : "scalar",
368
+ "moduleName" : "NHDP-MIB",
369
+ "oid" : "1.3.6.1.2.1.213.0.2.1",
370
+ "status" : "current",
371
+ "syntax" : {
372
+ "type" : {
373
+ "basetype" : "Enumeration",
374
+ "down" : {
375
+ "nodetype" : "namednumber",
376
+ "number" : "0"
377
+ },
378
+ "asymmetric" : {
379
+ "nodetype" : "namednumber",
380
+ "number" : "1"
381
+ },
382
+ "symmetric" : {
383
+ "nodetype" : "namednumber",
384
+ "number" : "2"
385
+ },
386
+ },
387
+ },
388
+ "access" : "readonly",
389
+ "description" :
390
+ """NHDP neighbor states. In NHDP, it is not
391
+ necessary to remove Protocol Tuples from Protocol Sets
392
+ at the exact time indicated, only to behave as if the
393
+ Protocol Tuples were removed at that time. This case is
394
+ indicated here as 'down(0)', all other cases being
395
+ indicated as 'asymmetric(1)' or 'symmetric(2)'. If 'down(0)',
396
+ the direct neighbor is also added to the
397
+ nhdpNibLostNeighborSetTable.""",
398
+ }, # scalar
399
+ "nhdp2HopNbrState" : {
400
+ "nodetype" : "scalar",
401
+ "moduleName" : "NHDP-MIB",
402
+ "oid" : "1.3.6.1.2.1.213.0.2.2",
403
+ "status" : "current",
404
+ "syntax" : {
405
+ "type" : {
406
+ "basetype" : "Enumeration",
407
+ "down" : {
408
+ "nodetype" : "namednumber",
409
+ "number" : "0"
410
+ },
411
+ "up" : {
412
+ "nodetype" : "namednumber",
413
+ "number" : "1"
414
+ },
415
+ },
416
+ },
417
+ "access" : "readonly",
418
+ "description" :
419
+ """NHDP 2-hop neighbor states. In NHDP, it is not
420
+ necessary to remove Protocol Tuples from Protocol Sets
421
+ at the exact time indicated, only to behave as if the
422
+ Protocol Tuples were removed at that time. This case is
423
+ indicated here as 'down(0)'; otherwise, it is 'up(1)'.""",
424
+ }, # scalar
425
+ "nhdpObjects" : {
426
+ "nodetype" : "node",
427
+ "moduleName" : "NHDP-MIB",
428
+ "oid" : "1.3.6.1.2.1.213.1",
429
+ }, # node
430
+ "nhdpConfigurationObjGrp" : {
431
+ "nodetype" : "node",
432
+ "moduleName" : "NHDP-MIB",
433
+ "oid" : "1.3.6.1.2.1.213.1.1",
434
+ }, # node
435
+ "nhdpInterfaceTable" : {
436
+ "nodetype" : "table",
437
+ "moduleName" : "NHDP-MIB",
438
+ "oid" : "1.3.6.1.2.1.213.1.1.1",
439
+ "status" : "current",
440
+ "description" :
441
+ """The nhdpInterfaceTable describes the
442
+ configuration of the interfaces of this router
443
+ that are intended to use MANET control protocols.
444
+ As such, this table 'sparse augments' the ifTable
445
+ specifically when NHDP is to be configured to
446
+ operate over this interface. The interface is
447
+ identified by the ifIndex from the interfaces
448
+ group defined in the Interfaces Group MIB module.
449
+
450
+ A conceptual row in this table exists if and only
451
+ if either a manager has explicitly created the row
452
+ or there is an interface on the managed device
453
+ that supports and runs NHDP.
454
+
455
+ The manager can create a row by setting
456
+ rowStatus to 'createAndGo' or 'createAndWait'.
457
+ Row objects having associated DEFVAL clauses are
458
+ automatically defined by the agent with these
459
+ values during row creation, unless the manager
460
+ explicitly defines these object values during the
461
+ row creation.
462
+
463
+
464
+
465
+
466
+ If the corresponding entry with ifIndex value
467
+ is deleted from the Interface Table, then the entry
468
+ in this table is automatically deleted,
469
+ NHDP is disabled on this interface,
470
+ and all configuration and state information
471
+ related to this interface is to be removed
472
+ from memory.""",
473
+ "reference" :
474
+ """RFC 2863 - The Interfaces Group MIB, McCloghrie,
475
+ K., and F. Kastenholtz, June 2000""",
476
+ }, # table
477
+ "nhdpInterfaceEntry" : {
478
+ "nodetype" : "row",
479
+ "moduleName" : "NHDP-MIB",
480
+ "oid" : "1.3.6.1.2.1.213.1.1.1.1",
481
+ "create" : "true",
482
+ "status" : "current",
483
+ "linkage" : [
484
+ "nhdpIfIndex",
485
+ ],
486
+ "description" :
487
+ """The nhdpInterfaceEntry describes one NHDP
488
+ local interface configuration as indexed by
489
+ its ifIndex as defined in the Standard MIB II
490
+ Interface Table (RFC 2863).
491
+
492
+ The objects in this table are persistent, and when
493
+ written, the device SHOULD save the change to
494
+ non-volatile storage. For further information
495
+ on the storage behavior for these objects, refer
496
+ to the description for the nhdpIfRowStatus
497
+ object.""",
498
+ }, # row
499
+ "nhdpIfIndex" : {
500
+ "nodetype" : "column",
501
+ "moduleName" : "NHDP-MIB",
502
+ "oid" : "1.3.6.1.2.1.213.1.1.1.1.1",
503
+ "status" : "current",
504
+ "syntax" : {
505
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
506
+ },
507
+ "access" : "noaccess",
508
+ "description" :
509
+ """This value MUST correspond to an ifIndex referring
510
+ to a valid entry in the Interfaces Table.""",
511
+ "reference" :
512
+ """RFC 2863 - The Interfaces Group MIB, McCloghrie, K.,
513
+ and F. Kastenholtz, June 2000""",
514
+ }, # column
515
+ "nhdpIfName" : {
516
+ "nodetype" : "column",
517
+ "moduleName" : "NHDP-MIB",
518
+ "oid" : "1.3.6.1.2.1.213.1.1.1.1.2",
519
+ "status" : "current",
520
+ "syntax" : {
521
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
522
+ },
523
+ "access" : "readonly",
524
+ "description" :
525
+ """The textual name of the interface. The value of this
526
+ object SHOULD be the name of the interface as assigned by
527
+ the local device. This can be a text-name, such as 'le0'
528
+ or a simple port number, such as '1',
529
+ depending on the interface-naming syntax of the device.
530
+
531
+ If there is no local name or this object is otherwise not
532
+ applicable, then this object contains a zero-length string.""",
533
+ }, # column
534
+ "nhdpIfStatus" : {
535
+ "nodetype" : "column",
536
+ "moduleName" : "NHDP-MIB",
537
+ "oid" : "1.3.6.1.2.1.213.1.1.1.1.3",
538
+ "status" : "current",
539
+ "syntax" : {
540
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
541
+ },
542
+ "access" : "readwrite",
543
+ "default" : "false",
544
+ "description" :
545
+ """nhdpIfStatus indicates whether this interface is
546
+ currently running NHDP. A value of 'true(1)' indicates
547
+ that NHDP is running on this interface.
548
+ A value of 'false(2)' indicates that NHDP is not
549
+ currently running on this interface. This corresponds
550
+ to the I_manet parameter in the Local Interface Set
551
+ of NHDP.""",
552
+ }, # column
553
+ "nhdpHelloInterval" : {
554
+ "nodetype" : "column",
555
+ "moduleName" : "NHDP-MIB",
556
+ "oid" : "1.3.6.1.2.1.213.1.1.1.1.4",
557
+ "status" : "current",
558
+ "syntax" : {
559
+ "type" : { "module" :"", "name" : "Unsigned32"},
560
+ },
561
+ "access" : "readwrite",
562
+ "default" : "2000",
563
+ "units" : "milliseconds",
564
+ "description" :
565
+ """nhdpHelloInterval corresponds to
566
+ HELLO_INTERVAL of NHDP and represents the
567
+ maximum time between the transmission of two
568
+ successive HELLO messages on this MANET interface.
569
+
570
+ Guidance for setting this object may be found
571
+ in Section 5 of the NHDP specification (RFC 6130),
572
+ which indicates that:
573
+ o nhdpHelloInterval > 0
574
+ o nhdpHelloInterval >= nhdpHelloMinInterval""",
575
+ "reference" :
576
+ """Section 5 on Protocol Parameters and
577
+ Constraints of RFC 6130 - Mobile Ad Hoc
578
+ Network (MANET) Neighborhood Discovery
579
+ Protocol (NHDP), Clausen, T., Dearlove,
580
+ C., and J. Dean, April 2011""",
581
+ }, # column
582
+ "nhdpHelloMinInterval" : {
583
+ "nodetype" : "column",
584
+ "moduleName" : "NHDP-MIB",
585
+ "oid" : "1.3.6.1.2.1.213.1.1.1.1.5",
586
+ "status" : "current",
587
+ "syntax" : {
588
+ "type" : { "module" :"", "name" : "Unsigned32"},
589
+ },
590
+ "access" : "readwrite",
591
+ "default" : "500",
592
+ "units" : "milliseconds",
593
+ "description" :
594
+ """nhdpHelloMinInterval corresponds to
595
+ HELLO_MIN_INTERVAL of NHDP and represents
596
+
597
+
598
+
599
+ the minimum interval between transmission
600
+ of two successive HELLO messages on this
601
+ MANET interface.
602
+
603
+ Guidance for setting this object may be found
604
+ in Section 5 of the NHDP specification (RFC 6130),
605
+ which indicates that:
606
+ o nhdpHelloMinInterval <= nhdpHelloInterval""",
607
+ "reference" :
608
+ """Section 5 on Protocol Parameters and
609
+ Constraints of RFC 6130 - Mobile Ad Hoc Network
610
+ (MANET) Neighborhood Discovery Protocol (NHDP),
611
+ Clausen, T., Dearlove, C., and J. Dean, April 2011""",
612
+ }, # column
613
+ "nhdpRefreshInterval" : {
614
+ "nodetype" : "column",
615
+ "moduleName" : "NHDP-MIB",
616
+ "oid" : "1.3.6.1.2.1.213.1.1.1.1.6",
617
+ "status" : "current",
618
+ "syntax" : {
619
+ "type" : { "module" :"", "name" : "Unsigned32"},
620
+ },
621
+ "access" : "readwrite",
622
+ "default" : "2000",
623
+ "units" : "milliseconds",
624
+ "description" :
625
+ """nhdpRefreshInterval corresponds to
626
+ REFRESH_INTERVAL of NHDP and represents the
627
+ maximum interval between advertisements of
628
+ each 1-hop neighbor network address and its
629
+ status. Each advertisement is in a HELLO
630
+ message on this MANET interface.
631
+
632
+ Guidance for setting this object may be found
633
+ in Section 5 of the NHDP specification (RFC 6130),
634
+ which indicates that:
635
+ o nhdpRefreshInterval >= nhdpHelloInterval""",
636
+ "reference" :
637
+ """Section 5 on Protocol Parameters and
638
+ Constraints of RFC 6130 - Mobile Ad Hoc Network
639
+ (MANET) Neighborhood Discovery Protocol (NHDP),
640
+ Clausen, T., Dearlove, C., and J. Dean, April 2011""",
641
+ }, # column
642
+ "nhdpLHoldTime" : {
643
+ "nodetype" : "column",
644
+ "moduleName" : "NHDP-MIB",
645
+ "oid" : "1.3.6.1.2.1.213.1.1.1.1.7",
646
+ "status" : "current",
647
+ "syntax" : {
648
+ "type" : { "module" :"", "name" : "Unsigned32"},
649
+ },
650
+ "access" : "readwrite",
651
+ "default" : "6000",
652
+ "units" : "milliseconds",
653
+ "description" :
654
+ """nhdpLHoldTime corresponds to
655
+ L_HOLD_TIME of NHDP and represents the period
656
+ of advertisement, on this MANET interface, of
657
+ former 1-hop neighbor network addresses as lost
658
+ in HELLO messages, allowing recipients of these
659
+ HELLO messages to accelerate removal of this
660
+ information from their Link Sets.
661
+
662
+ Guidance for setting this object may be found
663
+ in Section 5 of the NHDP specification (RFC 6130),
664
+ which indicates that it should be assigned a
665
+ value significantly greater than the refresh
666
+ interval held by nhdpRefreshInterval.""",
667
+ "reference" :
668
+ """Section 5 on Protocol Parameters and
669
+ Constraints of RFC 6130 - Mobile Ad Hoc Network
670
+ (MANET) Neighborhood Discovery Protocol (NHDP),
671
+ Clausen, T., Dearlove, C., and J. Dean, April 2011""",
672
+ }, # column
673
+ "nhdpHHoldTime" : {
674
+ "nodetype" : "column",
675
+ "moduleName" : "NHDP-MIB",
676
+ "oid" : "1.3.6.1.2.1.213.1.1.1.1.8",
677
+ "status" : "current",
678
+ "syntax" : {
679
+ "type" : { "module" :"", "name" : "Unsigned32"},
680
+ },
681
+ "access" : "readwrite",
682
+ "default" : "6000",
683
+ "units" : "milliseconds",
684
+ "description" :
685
+ """nhdpHHoldTime corresponds to
686
+ H_HOLD_TIME of NHDP and is used as the value
687
+ in the VALIDITY_TIME Message TLV included in all
688
+ HELLO messages on this MANET interface. It is then
689
+ used by each router receiving such a HELLO message
690
+ to indicate the validity of the information taken
691
+ from that HELLO message and recorded in the receiving
692
+ router's Information Bases.
693
+
694
+ Guidance for setting this object may be found
695
+ in Section 5 of the NHDP specification (RFC 6130),
696
+ which indicates that it should be assigned a
697
+ value significantly greater than the refresh interval
698
+ held by nhdpRefreshInterval and must be representable
699
+ as described in RFC 5497.""",
700
+ "reference" :
701
+ """Section 5 on Protocol Parameters and
702
+ Constraints of RFC 6130 - Mobile Ad Hoc Network
703
+
704
+
705
+
706
+ (MANET) Neighborhood Discovery Protocol (NHDP),
707
+ Clausen, T., Dearlove, C., and J. Dean, April 2011""",
708
+ }, # column
709
+ "nhdpHystAcceptQuality" : {
710
+ "nodetype" : "column",
711
+ "moduleName" : "NHDP-MIB",
712
+ "oid" : "1.3.6.1.2.1.213.1.1.1.1.9",
713
+ "status" : "current",
714
+ "syntax" : {
715
+ "type" : { "module" :"FLOAT-TC-MIB", "name" : "Float32TC"},
716
+ },
717
+ "access" : "readwrite",
718
+ "description" :
719
+ """nhdpHystAcceptQuality corresponds to
720
+ HYST_ACCEPT of NHDP and represents the link
721
+ quality threshold at or above which a link becomes
722
+ usable, if it was not already so.
723
+
724
+ Guidance for setting this object may be found
725
+ in Section 5 of the NHDP specification (RFC 6130),
726
+ which indicates that:
727
+ o 0 <= nhdpHystRejectQuality
728
+ <= nhdpHystAcceptQuality <= 1.0
729
+
730
+ The default value for this object is 1.0. According to
731
+ RFC 6340:
732
+ Since these textual conventions are defined in terms
733
+ of the OCTET STRING type, the SMI's mechanisms for
734
+ formally setting range constraints are not available.
735
+ MIB designers using these textual conventions will need
736
+ to use DESCRIPTION clauses to spell out any applicable
737
+ range constraints beyond those implied by the underlying
738
+ IEEE types.
739
+ Therefore, this object does not have a DEFVAL clause.""",
740
+ "reference" :
741
+ """Section 5 on Protocol Parameters and
742
+ Constraints of RFC 6130 - Mobile Ad Hoc Network
743
+ (MANET) Neighborhood Discovery Protocol (NHDP),
744
+ Clausen, T., Dearlove, C., and J. Dean, April 2011""",
745
+ }, # column
746
+ "nhdpHystRejectQuality" : {
747
+ "nodetype" : "column",
748
+ "moduleName" : "NHDP-MIB",
749
+ "oid" : "1.3.6.1.2.1.213.1.1.1.1.10",
750
+ "status" : "current",
751
+ "syntax" : {
752
+ "type" : { "module" :"FLOAT-TC-MIB", "name" : "Float32TC"},
753
+ },
754
+ "access" : "readwrite",
755
+ "description" :
756
+ """nhdpHystRejectQuality corresponds to
757
+ HYST_REJECT of NHDP and represents the
758
+ link quality threshold below which a
759
+ link becomes unusable, if it was not
760
+ already so.
761
+
762
+ Guidance for setting this object may be found
763
+ in Section 5 of the NHDP specification (RFC 6130),
764
+ which indicates that:
765
+ o 0 <= nhdpHystRejectQuality
766
+ <= nhdpHystAcceptQuality <= 1.0
767
+
768
+ The default value for this object is 0.0. According to
769
+ RFC 6340:
770
+ Since these textual conventions are defined in terms
771
+ of the OCTET STRING type, the SMI's mechanisms for
772
+ formally setting range constraints are not available.
773
+ MIB designers using these textual conventions will need
774
+ to use DESCRIPTION clauses to spell out any applicable
775
+ range constraints beyond those implied by the underlying
776
+ IEEE types.
777
+ Therefore, this object does not have a DEFVAL clause.""",
778
+ "reference" :
779
+ """Section 5 on Protocol Parameters and
780
+ Constraints of RFC 6130 - Mobile Ad Hoc Network
781
+ (MANET) Neighborhood Discovery Protocol (NHDP),
782
+ Clausen, T., Dearlove, C., and J. Dean, April 2011""",
783
+ }, # column
784
+ "nhdpInitialQuality" : {
785
+ "nodetype" : "column",
786
+ "moduleName" : "NHDP-MIB",
787
+ "oid" : "1.3.6.1.2.1.213.1.1.1.1.11",
788
+ "status" : "current",
789
+ "syntax" : {
790
+ "type" : { "module" :"FLOAT-TC-MIB", "name" : "Float32TC"},
791
+ },
792
+ "access" : "readwrite",
793
+ "description" :
794
+ """nhdpInitialQuality corresponds to
795
+ INITIAL_QUALITY of NHDP and represents the
796
+ initial quality of a newly identified link.
797
+
798
+ Guidance for setting this object may be found
799
+ in Section 5 of the NHDP specification (RFC 6130),
800
+ which indicates that:
801
+ o 0 <= nhdpInitialQuality <= 1.0
802
+
803
+ The default value for this object is 1.0. According to
804
+ RFC 6340:
805
+ Since these textual conventions are defined in terms
806
+ of the OCTET STRING type, the SMI's mechanisms for
807
+
808
+
809
+
810
+ formally setting range constraints are not available.
811
+ MIB designers using these textual conventions will need
812
+ to use DESCRIPTION clauses to spell out any applicable
813
+ range constraints beyond those implied by the underlying
814
+ IEEE types.
815
+ Therefore, this object does not have a DEFVAL clause.""",
816
+ "reference" :
817
+ """Section 5 on Protocol Parameters and
818
+ Constraints of RFC 6130 - Mobile Ad Hoc Network
819
+ (MANET) Neighborhood Discovery Protocol (NHDP),
820
+ Clausen, T., Dearlove, C., and J. Dean, April 2011""",
821
+ }, # column
822
+ "nhdpInitialPending" : {
823
+ "nodetype" : "column",
824
+ "moduleName" : "NHDP-MIB",
825
+ "oid" : "1.3.6.1.2.1.213.1.1.1.1.12",
826
+ "status" : "current",
827
+ "syntax" : {
828
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
829
+ },
830
+ "access" : "readwrite",
831
+ "default" : "false",
832
+ "description" :
833
+ """nhdpInitialPending corresponds to
834
+ INITIAL_PENDING of NHDP. If the value of this object
835
+ is 'true(1)', then a newly identified link is considered
836
+ pending and is not usable until the link quality
837
+ has reached or exceeded the nhdpHystAcceptQuality
838
+ threshold.
839
+
840
+ Guidance for setting this object may be found
841
+ in Section 5 of the NHDP specification (RFC 6130),
842
+ which indicates that:
843
+ o If nhdpInitialQuality >= nhdpHystAcceptQuality,
844
+ then nhdpInitialPending := false(2).
845
+ o If nhdpInitialQuality < nhdpHystRejectQuality,
846
+ then nhdpInitialPending := true(1).""",
847
+ "reference" :
848
+ """Section 5 on Protocol Parameters and
849
+ Constraints of RFC 6130 - Mobile Ad Hoc Network
850
+ (MANET) Neighborhood Discovery Protocol (NHDP),
851
+ Clausen, T., Dearlove, C., and J. Dean, April 2011""",
852
+ }, # column
853
+ "nhdpHpMaxJitter" : {
854
+ "nodetype" : "column",
855
+ "moduleName" : "NHDP-MIB",
856
+ "oid" : "1.3.6.1.2.1.213.1.1.1.1.13",
857
+ "status" : "current",
858
+ "syntax" : {
859
+ "type" : { "module" :"", "name" : "Unsigned32"},
860
+ },
861
+ "access" : "readwrite",
862
+ "default" : "500",
863
+ "units" : "milliseconds",
864
+ "description" :
865
+ """nhdpHpMaxJitter corresponds to
866
+ HP_MAXJITTER of NHDP and represents the
867
+ value of MAXJITTER used in RFC 5148 for
868
+ periodically generated HELLO messages on
869
+ this MANET interface.
870
+
871
+ Guidance for setting this object may be found
872
+ in Section 5 of RFC 5148, which indicates that:
873
+ o nhdpHpMaxJitter <= nhdpHelloInterval / 2
874
+ o nhdpHpMaxJitter should not be greater
875
+ than nhdpHelloInterval / 4
876
+ o If nhdpMinHelloInterval > 0, then
877
+ nhdpHpMaxJitter <= nhdpHelloMinInterval; and
878
+ nhdpHpMaxJitter should not be greater than
879
+ nhdpHelloMinInterval / 2""",
880
+ "reference" :
881
+ """Section 5 of RFC 5148 - Jitter Considerations in
882
+ Mobile Ad Hoc Networks (MANETs),
883
+ Clausen, T., Dearlove, C., and B. Adamson, February 2008""",
884
+ }, # column
885
+ "nhdpHtMaxJitter" : {
886
+ "nodetype" : "column",
887
+ "moduleName" : "NHDP-MIB",
888
+ "oid" : "1.3.6.1.2.1.213.1.1.1.1.14",
889
+ "status" : "current",
890
+ "syntax" : {
891
+ "type" : { "module" :"", "name" : "Unsigned32"},
892
+ },
893
+ "access" : "readwrite",
894
+ "default" : "500",
895
+ "units" : "milliseconds",
896
+ "description" :
897
+ """nhdpHtMaxJitter corresponds to
898
+ HT_MAXJITTER of NHDP and represents the
899
+ value of MAXJITTER used in RFC 5148 for
900
+ externally triggered HELLO messages on this
901
+ MANET interface.
902
+
903
+ Guidance for setting this object may be found
904
+ in Section 5 of RFC 5148, which indicates that:
905
+ o nhdpHtMaxJitter <= nhdpHelloInterval / 2
906
+ o nhdpHtMaxJitter should not be greater
907
+ than nhdpHelloInterval / 4
908
+ o If nhdpMinHelloInterval > 0, then
909
+ nhdpHtMaxJitter <= nhdpHelloMinInterval; and
910
+ nhdpHtMaxJitter should not be greater than
911
+ nhdpHelloMinInterval / 2""",
912
+ "reference" :
913
+ """Section 5 of RFC 5148 - Jitter Considerations in
914
+ Mobile Ad Hoc Networks (MANETs),
915
+
916
+
917
+
918
+ Clausen, T., Dearlove, C., and B. Adamson, February 2008""",
919
+ }, # column
920
+ "nhdpIfRowStatus" : {
921
+ "nodetype" : "column",
922
+ "moduleName" : "NHDP-MIB",
923
+ "oid" : "1.3.6.1.2.1.213.1.1.1.1.15",
924
+ "status" : "current",
925
+ "syntax" : {
926
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
927
+ },
928
+ "access" : "readwrite",
929
+ "default" : "active",
930
+ "description" :
931
+ """This object permits management of the table
932
+ by facilitating actions such as row creation,
933
+ construction, and destruction. The value of
934
+ this object has no effect on whether other
935
+ objects in this conceptual row can be
936
+ modified.
937
+
938
+ An entry may not exist in the 'active(1)' state unless all
939
+ objects in the entry have a defined appropriate value. For
940
+ objects with DEFVAL clauses, the management station
941
+ does not need to specify the value of this object in order
942
+ for the row to transit to the 'active(1)' state; the default
943
+ value for this object is used. For objects that do not
944
+ have DEFVAL clauses, then the network manager MUST
945
+ specify the value of this object prior to this row
946
+ transitioning to the 'active(1)' state.
947
+
948
+ When this object transitions to 'active(1)', all objects
949
+ in this row SHOULD be written to non-volatile (stable)
950
+ storage. Read-create objects in this row MAY be modified.
951
+ When an object in a row with nhdpIfRowStatus of 'active(1)'
952
+ is changed, then the updated value MUST be reflected in NHDP,
953
+ and this new object value MUST be written to non-volatile
954
+ storage.
955
+
956
+ If the value of this object is not equal to 'active(1)',
957
+ all associated entries in the nhdpLibLocalIfSetTable,
958
+ nhdpInterfaceStateTable, nhdpIibLinkSetTable, and
959
+ nhdpInterfacePerfTable MUST be deleted.""",
960
+ "reference" :
961
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
962
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
963
+ C., and J. Dean, April 2011""",
964
+ }, # column
965
+ "nhdpNHoldTime" : {
966
+ "nodetype" : "scalar",
967
+ "moduleName" : "NHDP-MIB",
968
+ "oid" : "1.3.6.1.2.1.213.1.1.2",
969
+ "status" : "current",
970
+ "syntax" : {
971
+ "type" : { "module" :"", "name" : "Unsigned32"},
972
+ },
973
+ "access" : "readwrite",
974
+ "default" : "6000",
975
+ "units" : "milliseconds",
976
+ "description" :
977
+ """nhdpNHoldTime corresponds to
978
+ N_HOLD_TIME of NHDP and is used as the period
979
+ during which former 1-hop neighbor network
980
+ addresses are advertised as lost in HELLO
981
+ messages, allowing recipients of these HELLO
982
+ messages to accelerate removal of this information
983
+ from their 2-Hop Sets.
984
+
985
+ This object is persistent, and when written,
986
+ the entity SHOULD save the change to
987
+ non-volatile storage.""",
988
+ "reference" :
989
+ """Section 5 on Protocol Parameters and
990
+ Constraints of RFC 6130 - Mobile Ad Hoc Network
991
+ (MANET) Neighborhood Discovery Protocol (NHDP),
992
+ Clausen, T., Dearlove, C., and J. Dean, April 2011""",
993
+ }, # scalar
994
+ "nhdpIHoldTime" : {
995
+ "nodetype" : "scalar",
996
+ "moduleName" : "NHDP-MIB",
997
+ "oid" : "1.3.6.1.2.1.213.1.1.3",
998
+ "status" : "current",
999
+ "syntax" : {
1000
+ "type" : { "module" :"", "name" : "Unsigned32"},
1001
+ },
1002
+ "access" : "readwrite",
1003
+ "default" : "6000",
1004
+ "units" : "milliseconds",
1005
+ "description" :
1006
+ """nhdpIHoldTime corresponds to
1007
+ I_HOLD_TIME of NHDP and represents the period
1008
+ for which a recently used local interface network
1009
+ address is recorded.
1010
+
1011
+ This object is persistent, and when written,
1012
+ the entity SHOULD save the change to
1013
+ non-volatile storage.""",
1014
+ "reference" :
1015
+ """Section 5 on Protocol Parameters and
1016
+ Constraints of RFC 6130 - Mobile Ad Hoc Network
1017
+ (MANET) Neighborhood Discovery Protocol (NHDP),
1018
+ Clausen, T., Dearlove, C., and J. Dean, April 2011""",
1019
+ }, # scalar
1020
+ "nhdpLibLocalIfSetTable" : {
1021
+ "nodetype" : "table",
1022
+ "moduleName" : "NHDP-MIB",
1023
+ "oid" : "1.3.6.1.2.1.213.1.1.4",
1024
+ "status" : "current",
1025
+ "description" :
1026
+ """A router's Local Interface Set records all
1027
+ network addresses that are defined as local
1028
+ MANET interface network addresses.
1029
+ As such, this table 'sparse augments' the
1030
+ nhdpInterfaceTable when network addresses are
1031
+ being defined for the interfaces existing within
1032
+ the nhdpInterfaceTable. The local interface
1033
+ is defined by the nhdpIfIndex.
1034
+
1035
+ The Local Interface Set consists of Local Interface
1036
+ Address Tuples per MANET interface and their prefix
1037
+ lengths (in order to determine the network addresses
1038
+ related to the interface).
1039
+
1040
+ A conceptual row in this table exists if and only
1041
+ if a manager has explicitly created the row. The
1042
+ manager can create a row by setting rowStatus
1043
+ to 'createAndGo' or 'createAndWait'.
1044
+
1045
+ Further guidance on the addition or removal of
1046
+ local addresses and network addresses is found
1047
+ in Section 9 of RFC 6130.""",
1048
+ "reference" :
1049
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
1050
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
1051
+ C., and J. Dean, April 2011""",
1052
+ }, # table
1053
+ "nhdpLibLocalIfSetEntry" : {
1054
+ "nodetype" : "row",
1055
+ "moduleName" : "NHDP-MIB",
1056
+ "oid" : "1.3.6.1.2.1.213.1.1.4.1",
1057
+ "create" : "true",
1058
+ "status" : "current",
1059
+ "linkage" : [
1060
+ "nhdpLibLocalIfSetIndex",
1061
+ ],
1062
+ "description" :
1063
+ """A router's Local Interface Set consists
1064
+ of Configured Interface Address Tuples for each network
1065
+ interface.
1066
+
1067
+
1068
+
1069
+
1070
+ The objects in this table are persistent, and when
1071
+ written, the device SHOULD save the change to
1072
+ non-volatile storage. For further information
1073
+ on the storage behavior for these objects, refer
1074
+ to the description for the nhdpLibLocalIfSetRowStatus
1075
+ object.""",
1076
+ "reference" :
1077
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
1078
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
1079
+ C., and J. Dean, April 2011""",
1080
+ }, # row
1081
+ "nhdpLibLocalIfSetIndex" : {
1082
+ "nodetype" : "column",
1083
+ "moduleName" : "NHDP-MIB",
1084
+ "oid" : "1.3.6.1.2.1.213.1.1.4.1.1",
1085
+ "status" : "current",
1086
+ "syntax" : {
1087
+ "type" : {
1088
+ "basetype" : "Integer32",
1089
+ "ranges" : [
1090
+ {
1091
+ "min" : "0",
1092
+ "max" : "65535"
1093
+ },
1094
+ ],
1095
+ "range" : {
1096
+ "min" : "0",
1097
+ "max" : "65535"
1098
+ },
1099
+ },
1100
+ },
1101
+ "access" : "noaccess",
1102
+ "description" :
1103
+ """The index for this table. Necessary
1104
+ because multiple addresses may be associated
1105
+ with a given nhdpIfIndex.""",
1106
+ "reference" :
1107
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
1108
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
1109
+ C., and J. Dean, April 2011""",
1110
+ }, # column
1111
+ "nhdpLibLocalIfSetIfIndex" : {
1112
+ "nodetype" : "column",
1113
+ "moduleName" : "NHDP-MIB",
1114
+ "oid" : "1.3.6.1.2.1.213.1.1.4.1.2",
1115
+ "status" : "current",
1116
+ "syntax" : {
1117
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
1118
+ },
1119
+ "access" : "readonly",
1120
+ "description" :
1121
+ """Specifies the local nhdpIfIndex for which this
1122
+ IP address was added.""",
1123
+ "reference" :
1124
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
1125
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
1126
+ C., and J. Dean, April 2011""",
1127
+ }, # column
1128
+ "nhdpLibLocalIfSetIpAddrType" : {
1129
+ "nodetype" : "column",
1130
+ "moduleName" : "NHDP-MIB",
1131
+ "oid" : "1.3.6.1.2.1.213.1.1.4.1.3",
1132
+ "status" : "current",
1133
+ "syntax" : {
1134
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
1135
+ },
1136
+ "access" : "readwrite",
1137
+ "description" :
1138
+ """The type of the nhdpLibLocalIfSetIpAddr
1139
+ in the InetAddress MIB (RFC 4001).
1140
+
1141
+ Only the values 'ipv4(1)' and
1142
+ 'ipv6(2)' are supported.""",
1143
+ "reference" :
1144
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
1145
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
1146
+ C., and J. Dean, April 2011""",
1147
+ }, # column
1148
+ "nhdpLibLocalIfSetIpAddr" : {
1149
+ "nodetype" : "column",
1150
+ "moduleName" : "NHDP-MIB",
1151
+ "oid" : "1.3.6.1.2.1.213.1.1.4.1.4",
1152
+ "status" : "current",
1153
+ "syntax" : {
1154
+ "type" : {
1155
+ "basetype" : "OctetString",
1156
+ "parent module" : {
1157
+ "name" : "INET-ADDRESS-MIB",
1158
+ "type" : "InetAddress",
1159
+ },
1160
+ "ranges" : [
1161
+ {
1162
+ "min" : "4",
1163
+ "max" : "4"
1164
+ },
1165
+ {
1166
+ "min" : "16",
1167
+ "max" : "16"
1168
+ },
1169
+ ],
1170
+ "range" : {
1171
+ "min" : "4",
1172
+ "max" : "16"
1173
+ },
1174
+ },
1175
+ },
1176
+ "access" : "readwrite",
1177
+ "description" :
1178
+ """nhdpLibLocalIfSetIpAddr is an
1179
+ address of an interface of
1180
+ this router.
1181
+
1182
+ This object is interpreted according to
1183
+ the setting of nhdpLibLocalIfSetIpAddrType.""",
1184
+ "reference" :
1185
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
1186
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
1187
+ C., and J. Dean, April 2011""",
1188
+ }, # column
1189
+ "nhdpLibLocalIfSetIpAddrPrefixLen" : {
1190
+ "nodetype" : "column",
1191
+ "moduleName" : "NHDP-MIB",
1192
+ "oid" : "1.3.6.1.2.1.213.1.1.4.1.5",
1193
+ "status" : "current",
1194
+ "syntax" : {
1195
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressPrefixLength"},
1196
+ },
1197
+ "access" : "readwrite",
1198
+ "description" :
1199
+ """Indicates the number of leading one bits that
1200
+ form the mask. The mask is logically ANDed
1201
+
1202
+
1203
+
1204
+ to the nhdpLibLocalIfSetIpAddr to determine
1205
+ the address prefix. A row match is true
1206
+ if the address used as an index falls within
1207
+ the network address range defined by the
1208
+ address prefix.""",
1209
+ "reference" :
1210
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
1211
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
1212
+ C., and J. Dean, April 2011""",
1213
+ }, # column
1214
+ "nhdpLibLocalIfSetRowStatus" : {
1215
+ "nodetype" : "column",
1216
+ "moduleName" : "NHDP-MIB",
1217
+ "oid" : "1.3.6.1.2.1.213.1.1.4.1.6",
1218
+ "status" : "current",
1219
+ "syntax" : {
1220
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1221
+ },
1222
+ "access" : "readwrite",
1223
+ "default" : "notReady",
1224
+ "description" :
1225
+ """This object permits management of the table
1226
+ by facilitating actions such as row creation,
1227
+ construction, and destruction. The value of
1228
+ this object has no effect on whether other
1229
+ objects in this conceptual row can be
1230
+ modified.
1231
+
1232
+ An entry may not exist in the 'active(1)' state unless all
1233
+ read-create objects in the entry have a defined
1234
+ appropriate value. As no objects in this table have
1235
+ DEFVAL clauses, the management station MUST specify
1236
+ the values of all read-create objects prior to this row
1237
+ transitioning to the 'active(1)' state.
1238
+
1239
+ When this object transitions to 'active(1)', all objects
1240
+ in this row SHOULD be written to non-volatile (stable)
1241
+ storage. Read-create objects in this row MAY be modified.
1242
+ When an object in a row with nhdpIfRowStatus of 'active(1)'
1243
+ is changed, then the updated value MUST be reflected in NHDP,
1244
+ and this new object value MUST be written to non-volatile
1245
+ storage.""",
1246
+ "reference" :
1247
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
1248
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
1249
+ C., and J. Dean, April 2011""",
1250
+ }, # column
1251
+ "nhdpLibRemovedIfAddrSetTable" : {
1252
+ "nodetype" : "table",
1253
+ "moduleName" : "NHDP-MIB",
1254
+ "oid" : "1.3.6.1.2.1.213.1.1.5",
1255
+ "status" : "current",
1256
+ "description" :
1257
+ """A router's Removed Interface Address Set records
1258
+ network addresses that were recently used as local
1259
+ interface network addresses. If a router's interface
1260
+ network addresses are immutable, then the Removed
1261
+ Interface Address Set is always empty and may be omitted.
1262
+ It consists of Removed Interface Address Tuples, one
1263
+ per network address.""",
1264
+ "reference" :
1265
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
1266
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
1267
+ C., and J. Dean, April 2011""",
1268
+ }, # table
1269
+ "nhdpLibRemovedIfAddrSetEntry" : {
1270
+ "nodetype" : "row",
1271
+ "moduleName" : "NHDP-MIB",
1272
+ "oid" : "1.3.6.1.2.1.213.1.1.5.1",
1273
+ "status" : "current",
1274
+ "linkage" : [
1275
+ "nhdpLibRemovedIfAddrSetIndex",
1276
+ ],
1277
+ "description" :
1278
+ """A router's Removed Interface Address Set consists
1279
+ of Removed Interface Address Tuples, one per network
1280
+ address:
1281
+
1282
+ (IR_local_iface_addr, IR_time)
1283
+
1284
+ The association between these addresses and the
1285
+ router's Interface is found in the Standard MIB II's
1286
+ IP address table (RFC 1213).""",
1287
+ "reference" :
1288
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
1289
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
1290
+ C., and J. Dean, April 2011""",
1291
+ }, # row
1292
+ "nhdpLibRemovedIfAddrSetIndex" : {
1293
+ "nodetype" : "column",
1294
+ "moduleName" : "NHDP-MIB",
1295
+ "oid" : "1.3.6.1.2.1.213.1.1.5.1.1",
1296
+ "status" : "current",
1297
+ "syntax" : {
1298
+ "type" : {
1299
+ "basetype" : "Integer32",
1300
+ "ranges" : [
1301
+ {
1302
+ "min" : "0",
1303
+ "max" : "65535"
1304
+ },
1305
+ ],
1306
+ "range" : {
1307
+ "min" : "0",
1308
+ "max" : "65535"
1309
+ },
1310
+ },
1311
+ },
1312
+ "access" : "noaccess",
1313
+ "description" :
1314
+ """The index for this table. Necessary
1315
+ because multiple addresses may be associated
1316
+ with a given nhdpIfIndex.""",
1317
+ "reference" :
1318
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
1319
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
1320
+ C., and J. Dean, April 2011""",
1321
+ }, # column
1322
+ "nhdpLibRemovedIfAddrSetIpAddrType" : {
1323
+ "nodetype" : "column",
1324
+ "moduleName" : "NHDP-MIB",
1325
+ "oid" : "1.3.6.1.2.1.213.1.1.5.1.2",
1326
+ "status" : "current",
1327
+ "syntax" : {
1328
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
1329
+ },
1330
+ "access" : "readonly",
1331
+ "description" :
1332
+ """The type of the nhdpLibRemovedIfAddrSetIpAddr
1333
+ in the InetAddress MIB (RFC 4001).
1334
+
1335
+ Only the values 'ipv4(1)' and
1336
+ 'ipv6(2)' are supported.""",
1337
+ "reference" :
1338
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
1339
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
1340
+ C., and J. Dean, April 2011""",
1341
+ }, # column
1342
+ "nhdpLibRemovedIfAddrSetIpAddr" : {
1343
+ "nodetype" : "column",
1344
+ "moduleName" : "NHDP-MIB",
1345
+ "oid" : "1.3.6.1.2.1.213.1.1.5.1.3",
1346
+ "status" : "current",
1347
+ "syntax" : {
1348
+ "type" : {
1349
+ "basetype" : "OctetString",
1350
+ "parent module" : {
1351
+ "name" : "INET-ADDRESS-MIB",
1352
+ "type" : "InetAddress",
1353
+ },
1354
+ "ranges" : [
1355
+ {
1356
+ "min" : "4",
1357
+ "max" : "4"
1358
+ },
1359
+ {
1360
+ "min" : "16",
1361
+ "max" : "16"
1362
+ },
1363
+ ],
1364
+ "range" : {
1365
+ "min" : "4",
1366
+ "max" : "16"
1367
+ },
1368
+ },
1369
+ },
1370
+ "access" : "readonly",
1371
+ "description" :
1372
+ """nhdpLibRemovedIfAddrSetIpAddr is a
1373
+ recently used address of an interface of
1374
+ this router.""",
1375
+ "reference" :
1376
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
1377
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
1378
+
1379
+
1380
+
1381
+ C., and J. Dean, April 2011""",
1382
+ }, # column
1383
+ "nhdpLibRemovedIfAddrSetIpAddrPrefixLen" : {
1384
+ "nodetype" : "column",
1385
+ "moduleName" : "NHDP-MIB",
1386
+ "oid" : "1.3.6.1.2.1.213.1.1.5.1.4",
1387
+ "status" : "current",
1388
+ "syntax" : {
1389
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressPrefixLength"},
1390
+ },
1391
+ "access" : "readonly",
1392
+ "description" :
1393
+ """Indicates the number of leading one bits that
1394
+ form the mask. The mask is logically ANDed
1395
+ to the nhdpLibRemovedIfAddrSetIpAddr to determine
1396
+ the address prefix. A row match is true
1397
+ if the address used as an index falls within
1398
+ the network address range defined by the
1399
+ address prefix.""",
1400
+ "reference" :
1401
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
1402
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
1403
+ C., and J. Dean, April 2011""",
1404
+ }, # column
1405
+ "nhdpLibRemovedIfAddrSetIfIndex" : {
1406
+ "nodetype" : "column",
1407
+ "moduleName" : "NHDP-MIB",
1408
+ "oid" : "1.3.6.1.2.1.213.1.1.5.1.5",
1409
+ "status" : "current",
1410
+ "syntax" : {
1411
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
1412
+ },
1413
+ "access" : "readonly",
1414
+ "description" :
1415
+ """Specifies the local IfIndex from which this
1416
+ IP address was recently removed.""",
1417
+ "reference" :
1418
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
1419
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
1420
+ C., and J. Dean, April 2011""",
1421
+ }, # column
1422
+ "nhdpLibRemovedIfAddrSetIRTime" : {
1423
+ "nodetype" : "column",
1424
+ "moduleName" : "NHDP-MIB",
1425
+ "oid" : "1.3.6.1.2.1.213.1.1.5.1.6",
1426
+ "status" : "current",
1427
+ "syntax" : {
1428
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1429
+ },
1430
+ "access" : "readonly",
1431
+ "description" :
1432
+ """nhdpLibRemovedIfAddrSetIRTime specifies the value
1433
+ of sysUptime when this entry should expire and be
1434
+ removed from the nhdpLibRemovedIfAddrSetTable.""",
1435
+ "reference" :
1436
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
1437
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
1438
+ C., and J. Dean, April 2011""",
1439
+ }, # column
1440
+ "nhdpStateObjGrp" : {
1441
+ "nodetype" : "node",
1442
+ "moduleName" : "NHDP-MIB",
1443
+ "oid" : "1.3.6.1.2.1.213.1.2",
1444
+ }, # node
1445
+ "nhdpUpTime" : {
1446
+ "nodetype" : "scalar",
1447
+ "moduleName" : "NHDP-MIB",
1448
+ "oid" : "1.3.6.1.2.1.213.1.2.1",
1449
+ "status" : "current",
1450
+ "syntax" : {
1451
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1452
+ },
1453
+ "access" : "readonly",
1454
+ "description" :
1455
+ """The value of sysUpTime at the time the current NHDP
1456
+ process was initialized.""",
1457
+ }, # scalar
1458
+ "nhdpInterfaceStateTable" : {
1459
+ "nodetype" : "table",
1460
+ "moduleName" : "NHDP-MIB",
1461
+ "oid" : "1.3.6.1.2.1.213.1.2.2",
1462
+ "status" : "current",
1463
+ "description" :
1464
+ """nhdpInterfaceStateTable lists state information
1465
+ related to specific interfaces of this router.
1466
+ The value of nhdpIfIndex is an ifIndex from the
1467
+ interfaces group defined in the Interfaces Group
1468
+ MIB.
1469
+
1470
+ The objects in this table are persistent, and when
1471
+ written, the entity SHOULD save the change to
1472
+ non-volatile storage.""",
1473
+ "reference" :
1474
+ """RFC 2863 - The Interfaces Group MIB, McCloghrie,
1475
+ K., and F. Kastenholtz, June 2000.""",
1476
+ }, # table
1477
+ "nhdpInterfaceStateEntry" : {
1478
+ "nodetype" : "row",
1479
+ "moduleName" : "NHDP-MIB",
1480
+ "oid" : "1.3.6.1.2.1.213.1.2.2.1",
1481
+ "status" : "current",
1482
+ "linkage" : [
1483
+ "nhdpIfIndex",
1484
+ ],
1485
+ "description" :
1486
+ """nhdpInterfaceStateEntry describes one NHDP
1487
+ local interface state as indexed by
1488
+ its nhdpIfIndex.""",
1489
+ }, # row
1490
+ "nhdpIfStateUpTime" : {
1491
+ "nodetype" : "column",
1492
+ "moduleName" : "NHDP-MIB",
1493
+ "oid" : "1.3.6.1.2.1.213.1.2.2.1.1",
1494
+ "status" : "current",
1495
+ "syntax" : {
1496
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1497
+ },
1498
+ "access" : "readonly",
1499
+ "description" :
1500
+ """The value of the sysUpTime when
1501
+ NHDP was last initialized on this
1502
+ MANET interface.""",
1503
+ }, # column
1504
+ "nhdpDiscIfSetTable" : {
1505
+ "nodetype" : "table",
1506
+ "moduleName" : "NHDP-MIB",
1507
+ "oid" : "1.3.6.1.2.1.213.1.2.3",
1508
+ "status" : "current",
1509
+ "description" :
1510
+ """A router's set of discovered interfaces on
1511
+ neighboring routers.""",
1512
+ "reference" :
1513
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
1514
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
1515
+ C., and J. Dean, April 2011""",
1516
+ }, # table
1517
+ "nhdpDiscIfSetEntry" : {
1518
+ "nodetype" : "row",
1519
+ "moduleName" : "NHDP-MIB",
1520
+ "oid" : "1.3.6.1.2.1.213.1.2.3.1",
1521
+ "status" : "current",
1522
+ "linkage" : [
1523
+ "nhdpDiscIfSetIndex",
1524
+ ],
1525
+ "description" :
1526
+ """The entries include the nhdpDiscRouterIndex of
1527
+ the discovered router, the nhdpDiscIfIndex
1528
+ of the discovered interface, and the
1529
+ current set of addresses associated
1530
+ with this neighbor interface. The
1531
+ nhdpDiscIfIndex uniquely identifies
1532
+ the remote interface address sets
1533
+ through this table. It does not need
1534
+ to be unique across the MANET but MUST
1535
+
1536
+
1537
+
1538
+ be locally unique within this router.""",
1539
+ "reference" :
1540
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
1541
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
1542
+ C., and J. Dean, April 2011""",
1543
+ }, # row
1544
+ "nhdpDiscIfSetIndex" : {
1545
+ "nodetype" : "column",
1546
+ "moduleName" : "NHDP-MIB",
1547
+ "oid" : "1.3.6.1.2.1.213.1.2.3.1.1",
1548
+ "status" : "current",
1549
+ "syntax" : {
1550
+ "type" : {
1551
+ "basetype" : "Integer32",
1552
+ "ranges" : [
1553
+ {
1554
+ "min" : "0",
1555
+ "max" : "65535"
1556
+ },
1557
+ ],
1558
+ "range" : {
1559
+ "min" : "0",
1560
+ "max" : "65535"
1561
+ },
1562
+ },
1563
+ },
1564
+ "access" : "noaccess",
1565
+ "description" :
1566
+ """The index for this table. Necessary
1567
+ because multiple addresses may be associated
1568
+ with a given nhdpDiscIfIndex.""",
1569
+ "reference" :
1570
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
1571
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
1572
+ C., and J. Dean, April 2011""",
1573
+ }, # column
1574
+ "nhdpDiscIfIndex" : {
1575
+ "nodetype" : "column",
1576
+ "moduleName" : "NHDP-MIB",
1577
+ "oid" : "1.3.6.1.2.1.213.1.2.3.1.2",
1578
+ "status" : "current",
1579
+ "syntax" : {
1580
+ "type" : { "module" :"NHDP-MIB", "name" : "NeighborIfIndex"},
1581
+ },
1582
+ "access" : "readonly",
1583
+ "description" :
1584
+ """The NHDP interface index (locally created)
1585
+ of a neighbor's interface. Used for cross-
1586
+ indexing into other NHDP tables and other
1587
+ MIB modules.""",
1588
+ "reference" :
1589
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
1590
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
1591
+ C., and J. Dean, April 2011""",
1592
+ }, # column
1593
+ "nhdpDiscRouterIndex" : {
1594
+ "nodetype" : "column",
1595
+ "moduleName" : "NHDP-MIB",
1596
+ "oid" : "1.3.6.1.2.1.213.1.2.3.1.3",
1597
+ "status" : "current",
1598
+ "syntax" : {
1599
+ "type" : { "module" :"NHDP-MIB", "name" : "NeighborRouterIndex"},
1600
+ },
1601
+ "access" : "readonly",
1602
+ "description" :
1603
+ """The NHDP neighbor index (locally created)
1604
+ of a neighboring router. Used for cross-
1605
+ indexing into other NHDP tables and other
1606
+ MIB modules.""",
1607
+ "reference" :
1608
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
1609
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
1610
+ C., and J. Dean, April 2011""",
1611
+ }, # column
1612
+ "nhdpDiscIfSetIpAddrType" : {
1613
+ "nodetype" : "column",
1614
+ "moduleName" : "NHDP-MIB",
1615
+ "oid" : "1.3.6.1.2.1.213.1.2.3.1.4",
1616
+ "status" : "current",
1617
+ "syntax" : {
1618
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
1619
+ },
1620
+ "access" : "readonly",
1621
+ "description" :
1622
+ """The type of the nhdpDiscIfSetIpAddr
1623
+ in the InetAddress MIB (RFC 4001).
1624
+
1625
+ Only the values 'ipv4(1)' and
1626
+ 'ipv6(2)' are supported.""",
1627
+ "reference" :
1628
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
1629
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
1630
+ C., and J. Dean, April 2011""",
1631
+ }, # column
1632
+ "nhdpDiscIfSetIpAddr" : {
1633
+ "nodetype" : "column",
1634
+ "moduleName" : "NHDP-MIB",
1635
+ "oid" : "1.3.6.1.2.1.213.1.2.3.1.5",
1636
+ "status" : "current",
1637
+ "syntax" : {
1638
+ "type" : {
1639
+ "basetype" : "OctetString",
1640
+ "parent module" : {
1641
+ "name" : "INET-ADDRESS-MIB",
1642
+ "type" : "InetAddress",
1643
+ },
1644
+ "ranges" : [
1645
+ {
1646
+ "min" : "4",
1647
+ "max" : "4"
1648
+ },
1649
+ {
1650
+ "min" : "16",
1651
+ "max" : "16"
1652
+ },
1653
+ ],
1654
+ "range" : {
1655
+ "min" : "4",
1656
+ "max" : "16"
1657
+ },
1658
+ },
1659
+ },
1660
+ "access" : "readonly",
1661
+ "description" :
1662
+ """The nhdpDiscIfSetIpAddr is a
1663
+ recently used address of a neighbor
1664
+ of this router.""",
1665
+ "reference" :
1666
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
1667
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
1668
+ C., and J. Dean, April 2011""",
1669
+ }, # column
1670
+ "nhdpDiscIfSetIpAddrPrefixLen" : {
1671
+ "nodetype" : "column",
1672
+ "moduleName" : "NHDP-MIB",
1673
+ "oid" : "1.3.6.1.2.1.213.1.2.3.1.6",
1674
+ "status" : "current",
1675
+ "syntax" : {
1676
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressPrefixLength"},
1677
+ },
1678
+ "access" : "readonly",
1679
+ "description" :
1680
+ """Indicates the number of leading one bits that
1681
+ form the mask. The mask is logically ANDed
1682
+ to the nhdpDiscIfSetIpAddr to determine
1683
+ the address prefix. A row match is true
1684
+ if the address used as an index falls within
1685
+ the network address range defined by the
1686
+ address prefix.""",
1687
+ "reference" :
1688
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
1689
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
1690
+ C., and J. Dean, April 2011""",
1691
+ }, # column
1692
+ "nhdpIibLinkSetTable" : {
1693
+ "nodetype" : "table",
1694
+ "moduleName" : "NHDP-MIB",
1695
+ "oid" : "1.3.6.1.2.1.213.1.2.4",
1696
+ "status" : "current",
1697
+ "description" :
1698
+ """A Link Set of an interface records all links
1699
+ from other routers that are, or recently
1700
+ were, 1-hop neighbors.""",
1701
+ "reference" :
1702
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
1703
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
1704
+ C., and J. Dean, April 2011""",
1705
+ }, # table
1706
+ "nhdpIibLinkSetEntry" : {
1707
+ "nodetype" : "row",
1708
+ "moduleName" : "NHDP-MIB",
1709
+ "oid" : "1.3.6.1.2.1.213.1.2.4.1",
1710
+ "status" : "current",
1711
+ "linkage" : [
1712
+ "nhdpIfIndex",
1713
+ "nhdpDiscIfIndex",
1714
+ ],
1715
+ "description" :
1716
+ """A Link Set consists of Link Tuples, each
1717
+ representing a single link indexed by the
1718
+ local and remote interface pair:
1719
+
1720
+
1721
+
1722
+ (L_neighbor_iface_addr_list, L_HEARD_time,
1723
+ L_SYM_time, L_quality, L_pending,
1724
+ L_lost, L_time).
1725
+
1726
+ The local interface is indexed via the
1727
+ nhdpIfIndex. The 1-hop interface is
1728
+ indexed via the nhdpDiscIfIndex. There
1729
+ SHOULD be an entry in this table for each
1730
+ local interface and associated 1-hop
1731
+ neighbor reachable on this local interface.
1732
+
1733
+ Note that L_quality is not included in the
1734
+ entries below, because updates may be
1735
+ required too frequently.""",
1736
+ "reference" :
1737
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
1738
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
1739
+ C., and J. Dean, April 2011""",
1740
+ }, # row
1741
+ "nhdpIibLinkSetLHeardTime" : {
1742
+ "nodetype" : "column",
1743
+ "moduleName" : "NHDP-MIB",
1744
+ "oid" : "1.3.6.1.2.1.213.1.2.4.1.1",
1745
+ "status" : "current",
1746
+ "syntax" : {
1747
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1748
+ },
1749
+ "access" : "readonly",
1750
+ "description" :
1751
+ """nhdpIibLinkSetLHeardTime corresponds
1752
+ to L_HEARD_time of NHDP and represents the
1753
+ time up to which the MANET interface of the
1754
+ 1-hop neighbor would be considered heard if
1755
+ not considering link quality.""",
1756
+ "reference" :
1757
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
1758
+
1759
+
1760
+
1761
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
1762
+ C., and J. Dean, April 2011""",
1763
+ }, # column
1764
+ "nhdpIibLinkSetLSymTime" : {
1765
+ "nodetype" : "column",
1766
+ "moduleName" : "NHDP-MIB",
1767
+ "oid" : "1.3.6.1.2.1.213.1.2.4.1.2",
1768
+ "status" : "current",
1769
+ "syntax" : {
1770
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1771
+ },
1772
+ "access" : "readonly",
1773
+ "description" :
1774
+ """nhdpIibLinkSetLSymTime corresponds
1775
+ to L_SYM_time of NHDP and represents the time
1776
+ up to which the link to the 1-hop neighbor
1777
+ would be considered symmetric if not considering
1778
+ link quality.""",
1779
+ "reference" :
1780
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
1781
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
1782
+ C., and J. Dean, April 2011""",
1783
+ }, # column
1784
+ "nhdpIibLinkSetLPending" : {
1785
+ "nodetype" : "column",
1786
+ "moduleName" : "NHDP-MIB",
1787
+ "oid" : "1.3.6.1.2.1.213.1.2.4.1.3",
1788
+ "status" : "current",
1789
+ "syntax" : {
1790
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1791
+ },
1792
+ "access" : "readonly",
1793
+ "description" :
1794
+ """nhdpIibLinkSetLPending corresponds
1795
+ to L_pending of NHDP and is a boolean flag,
1796
+ describing if a link is considered pending
1797
+ (i.e., a candidate, but not yet established,
1798
+ link).""",
1799
+ "reference" :
1800
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
1801
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
1802
+ C., and J. Dean, April 2011""",
1803
+ }, # column
1804
+ "nhdpIibLinkSetLLost" : {
1805
+ "nodetype" : "column",
1806
+ "moduleName" : "NHDP-MIB",
1807
+ "oid" : "1.3.6.1.2.1.213.1.2.4.1.4",
1808
+ "status" : "current",
1809
+ "syntax" : {
1810
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1811
+ },
1812
+ "access" : "readonly",
1813
+ "description" :
1814
+ """nhdpIibLinkSetLLost corresponds
1815
+ to L_lost of NHDP and is a boolean flag,
1816
+ describing if a link is considered lost due
1817
+ to low link quality.""",
1818
+ "reference" :
1819
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
1820
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
1821
+
1822
+
1823
+
1824
+ C., and J. Dean, April 2011""",
1825
+ }, # column
1826
+ "nhdpIibLinkSetLTime" : {
1827
+ "nodetype" : "column",
1828
+ "moduleName" : "NHDP-MIB",
1829
+ "oid" : "1.3.6.1.2.1.213.1.2.4.1.5",
1830
+ "status" : "current",
1831
+ "syntax" : {
1832
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1833
+ },
1834
+ "access" : "readonly",
1835
+ "description" :
1836
+ """nhdpIibLinkSetLTime specifies the value
1837
+ of sysUptime when this entry should expire and be
1838
+ removed from the nhdpIibLinkSetTable.""",
1839
+ "reference" :
1840
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
1841
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
1842
+ C., and J. Dean, April 2011""",
1843
+ }, # column
1844
+ "nhdpIib2HopSetTable" : {
1845
+ "nodetype" : "table",
1846
+ "moduleName" : "NHDP-MIB",
1847
+ "oid" : "1.3.6.1.2.1.213.1.2.5",
1848
+ "status" : "current",
1849
+ "description" :
1850
+ """A 2-Hop Set of an interface records network
1851
+ addresses of symmetric 2-hop neighbors and
1852
+ the symmetric links to symmetric 1-hop neighbors
1853
+ through which these symmetric 2-hop neighbors
1854
+ can be reached. It consists of 2-Hop Tuples.""",
1855
+ "reference" :
1856
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
1857
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
1858
+ C., and J. Dean, April 2011""",
1859
+ }, # table
1860
+ "nhdpIib2HopSetEntry" : {
1861
+ "nodetype" : "row",
1862
+ "moduleName" : "NHDP-MIB",
1863
+ "oid" : "1.3.6.1.2.1.213.1.2.5.1",
1864
+ "status" : "current",
1865
+ "linkage" : [
1866
+ "nhdpIfIndex",
1867
+ "nhdpDiscIfIndex",
1868
+ "nhdpIib2HopSetIpAddressType",
1869
+ "nhdpIib2HopSetIpAddress",
1870
+ ],
1871
+ "description" :
1872
+ """nhdpIib2HopSetTable consists of 2-Hop Tuples,
1873
+ each representing a single network address of
1874
+ a symmetric 2-hop neighbor and a single MANET
1875
+ interface of a symmetric 1-hop neighbor.
1876
+
1877
+ (N2_neighbor_iface_addr_list,
1878
+ N2_2hop_addr, N2_time).
1879
+
1880
+
1881
+
1882
+ The entries include the 2-hop neighbor addresses,
1883
+ which act as the table index, and associated
1884
+ 1-hop symmetric link address set, designated
1885
+ through nhdpDiscIfIndex, and an expiration time.
1886
+ The nhdpIfIndex in the INDEX is the
1887
+ interface index of the local interface
1888
+ through which these 2-hop addresses are
1889
+ accessible. The nhdpDiscIfIndex in the
1890
+ INDEX represents the 1-hop neighbor interface
1891
+ through which these 2-hop addresses are
1892
+ reachable.""",
1893
+ "reference" :
1894
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
1895
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
1896
+ C., and J. Dean, April 2011""",
1897
+ }, # row
1898
+ "nhdpIib2HopSetIpAddressType" : {
1899
+ "nodetype" : "column",
1900
+ "moduleName" : "NHDP-MIB",
1901
+ "oid" : "1.3.6.1.2.1.213.1.2.5.1.1",
1902
+ "status" : "current",
1903
+ "syntax" : {
1904
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
1905
+ },
1906
+ "access" : "noaccess",
1907
+ "description" :
1908
+ """The type of the nhdpIib2HopSetIpAddress
1909
+ in the InetAddress MIB module (RFC 4001).
1910
+
1911
+ Only the values 'ipv4(1)' and
1912
+ 'ipv6(2)' are supported.""",
1913
+ "reference" :
1914
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
1915
+
1916
+
1917
+
1918
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
1919
+ C., and J. Dean, April 2011""",
1920
+ }, # column
1921
+ "nhdpIib2HopSetIpAddress" : {
1922
+ "nodetype" : "column",
1923
+ "moduleName" : "NHDP-MIB",
1924
+ "oid" : "1.3.6.1.2.1.213.1.2.5.1.2",
1925
+ "status" : "current",
1926
+ "syntax" : {
1927
+ "type" : {
1928
+ "basetype" : "OctetString",
1929
+ "parent module" : {
1930
+ "name" : "INET-ADDRESS-MIB",
1931
+ "type" : "InetAddress",
1932
+ },
1933
+ "ranges" : [
1934
+ {
1935
+ "min" : "4",
1936
+ "max" : "4"
1937
+ },
1938
+ {
1939
+ "min" : "16",
1940
+ "max" : "16"
1941
+ },
1942
+ ],
1943
+ "range" : {
1944
+ "min" : "4",
1945
+ "max" : "16"
1946
+ },
1947
+ },
1948
+ },
1949
+ "access" : "noaccess",
1950
+ "description" :
1951
+ """nhdpIib2HopSetIpAddr corresponds
1952
+ to N2_2hop_addr of NHDP and is a network
1953
+ address of a symmetric 2-hop neighbor that
1954
+ has a symmetric link (using any MANET
1955
+ interface) to the indicated symmetric
1956
+ 1-hop neighbor.""",
1957
+ "reference" :
1958
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
1959
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
1960
+ C., and J. Dean, April 2011""",
1961
+ }, # column
1962
+ "nhdpIib2HopSetIpAddrPrefixLen" : {
1963
+ "nodetype" : "column",
1964
+ "moduleName" : "NHDP-MIB",
1965
+ "oid" : "1.3.6.1.2.1.213.1.2.5.1.3",
1966
+ "status" : "current",
1967
+ "syntax" : {
1968
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressPrefixLength"},
1969
+ },
1970
+ "access" : "readonly",
1971
+ "description" :
1972
+ """Indicates the number of leading one bits that
1973
+ form the mask. The mask is logically ANDed
1974
+ to the nhdpIib2HopSetIpAddress to determine
1975
+ the address prefix. A row match is true
1976
+ if the address used as an index falls within
1977
+ the network address range defined by the
1978
+ address prefix.""",
1979
+ "reference" :
1980
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
1981
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
1982
+ C., and J. Dean, April 2011""",
1983
+ }, # column
1984
+ "nhdpIib2HopSet1HopIfIndex" : {
1985
+ "nodetype" : "column",
1986
+ "moduleName" : "NHDP-MIB",
1987
+ "oid" : "1.3.6.1.2.1.213.1.2.5.1.4",
1988
+ "status" : "current",
1989
+ "syntax" : {
1990
+ "type" : { "module" :"NHDP-MIB", "name" : "NeighborIfIndex"},
1991
+ },
1992
+ "access" : "readonly",
1993
+ "description" :
1994
+ """nhdpIib2HopSet1HopIfIndex is
1995
+ nhdpDiscIfIndex of the 1-hop
1996
+ neighbor that communicated the ipAddress
1997
+ of the 2-hop neighbor in this row entry.""",
1998
+ "reference" :
1999
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
2000
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
2001
+ C., and J. Dean, April 2011""",
2002
+ }, # column
2003
+ "nhdpIib2HopSetN2Time" : {
2004
+ "nodetype" : "column",
2005
+ "moduleName" : "NHDP-MIB",
2006
+ "oid" : "1.3.6.1.2.1.213.1.2.5.1.5",
2007
+ "status" : "current",
2008
+ "syntax" : {
2009
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
2010
+ },
2011
+ "access" : "readonly",
2012
+ "description" :
2013
+ """nhdpIib2HopSetN2Time specifies the value
2014
+ of sysUptime when this entry should expire and be
2015
+ removed from the nhdpIib2HopSetTable.""",
2016
+ "reference" :
2017
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
2018
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
2019
+ C., and J. Dean, April 2011""",
2020
+ }, # column
2021
+ "nhdpNibNeighborSetTable" : {
2022
+ "nodetype" : "table",
2023
+ "moduleName" : "NHDP-MIB",
2024
+ "oid" : "1.3.6.1.2.1.213.1.2.6",
2025
+ "status" : "current",
2026
+ "description" :
2027
+ """A router's Neighbor Set records all
2028
+ network addresses of each 1-hop
2029
+ neighbor.""",
2030
+ "reference" :
2031
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
2032
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
2033
+ C., and J. Dean, April 2011""",
2034
+ }, # table
2035
+ "nhdpNibNeighborSetEntry" : {
2036
+ "nodetype" : "row",
2037
+ "moduleName" : "NHDP-MIB",
2038
+ "oid" : "1.3.6.1.2.1.213.1.2.6.1",
2039
+ "status" : "current",
2040
+ "linkage" : [
2041
+ "nhdpDiscRouterIndex",
2042
+ ],
2043
+ "description" :
2044
+ """A router's Neighbor Set consists
2045
+ of Neighbor Tuples, each representing
2046
+ a single 1-hop neighbor:
2047
+
2048
+ (N_neighbor_addr_list, N_symmetric)""",
2049
+ "reference" :
2050
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
2051
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
2052
+ C., and J. Dean, April 2011""",
2053
+ }, # row
2054
+ "nhdpNibNeighborSetNSymmetric" : {
2055
+ "nodetype" : "column",
2056
+ "moduleName" : "NHDP-MIB",
2057
+ "oid" : "1.3.6.1.2.1.213.1.2.6.1.1",
2058
+ "status" : "current",
2059
+ "syntax" : {
2060
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2061
+ },
2062
+ "access" : "readonly",
2063
+ "description" :
2064
+ """nhdpNibNeighborNSymmetric corresponds
2065
+ to N_symmetric of NHDP and is a boolean flag,
2066
+ describing if this is a symmetric 1-hop neighbor.""",
2067
+ "reference" :
2068
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
2069
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
2070
+ C., and J. Dean, April 2011""",
2071
+ }, # column
2072
+ "nhdpNibLostNeighborSetTable" : {
2073
+ "nodetype" : "table",
2074
+ "moduleName" : "NHDP-MIB",
2075
+ "oid" : "1.3.6.1.2.1.213.1.2.7",
2076
+ "status" : "current",
2077
+ "description" :
2078
+ """A router's Lost Neighbor Set records network
2079
+ addresses of routers that were recently
2080
+ symmetric 1-hop neighbors but are now
2081
+
2082
+
2083
+
2084
+ advertised as lost.""",
2085
+ "reference" :
2086
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
2087
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
2088
+ C., and J. Dean, April 2011""",
2089
+ }, # table
2090
+ "nhdpNibLostNeighborSetEntry" : {
2091
+ "nodetype" : "row",
2092
+ "moduleName" : "NHDP-MIB",
2093
+ "oid" : "1.3.6.1.2.1.213.1.2.7.1",
2094
+ "status" : "current",
2095
+ "linkage" : [
2096
+ "nhdpDiscRouterIndex",
2097
+ ],
2098
+ "description" :
2099
+ """A router's Lost Neighbor Set consists of
2100
+ Lost Neighbor Tuples, each representing a
2101
+ single such network address:
2102
+
2103
+ (NL_neighbor_addr, NL_time)""",
2104
+ "reference" :
2105
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
2106
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
2107
+ C., and J. Dean, April 2011""",
2108
+ }, # row
2109
+ "nhdpNibLostNeighborSetNLTime" : {
2110
+ "nodetype" : "column",
2111
+ "moduleName" : "NHDP-MIB",
2112
+ "oid" : "1.3.6.1.2.1.213.1.2.7.1.1",
2113
+ "status" : "current",
2114
+ "syntax" : {
2115
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
2116
+ },
2117
+ "access" : "readonly",
2118
+ "description" :
2119
+ """nhdpNibLostNeighborSetNLTime
2120
+ specifies the value of sysUptime when this entry
2121
+ should expire and be removed from the
2122
+ nhdpNibLostNeighborSetTable.""",
2123
+ "reference" :
2124
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
2125
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
2126
+ C., and J. Dean, April 2011""",
2127
+ }, # column
2128
+ "nhdpPerformanceObjGrp" : {
2129
+ "nodetype" : "node",
2130
+ "moduleName" : "NHDP-MIB",
2131
+ "oid" : "1.3.6.1.2.1.213.1.3",
2132
+ }, # node
2133
+ "nhdpInterfacePerfTable" : {
2134
+ "nodetype" : "table",
2135
+ "moduleName" : "NHDP-MIB",
2136
+ "oid" : "1.3.6.1.2.1.213.1.3.1",
2137
+ "status" : "current",
2138
+ "description" :
2139
+ """This table summarizes performance objects that are
2140
+ measured per local NHDP interface.""",
2141
+ "reference" :
2142
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
2143
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
2144
+ C., and J. Dean, April 2011""",
2145
+ }, # table
2146
+ "nhdpInterfacePerfEntry" : {
2147
+ "nodetype" : "row",
2148
+ "moduleName" : "NHDP-MIB",
2149
+ "oid" : "1.3.6.1.2.1.213.1.3.1.1",
2150
+ "status" : "current",
2151
+ "linkage" : [
2152
+ "nhdpIfIndex",
2153
+ ],
2154
+ "description" :
2155
+ """A single entry contains performance counters for
2156
+ a local NHDP interface.""",
2157
+ }, # row
2158
+ "nhdpIfHelloMessageXmits" : {
2159
+ "nodetype" : "column",
2160
+ "moduleName" : "NHDP-MIB",
2161
+ "oid" : "1.3.6.1.2.1.213.1.3.1.1.1",
2162
+ "status" : "current",
2163
+ "syntax" : {
2164
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2165
+ },
2166
+ "access" : "readonly",
2167
+ "units" : "messages",
2168
+ "description" :
2169
+ """A counter is incremented each time a HELLO
2170
+ message has been transmitted on that interface.""",
2171
+ }, # column
2172
+ "nhdpIfHelloMessageRecvd" : {
2173
+ "nodetype" : "column",
2174
+ "moduleName" : "NHDP-MIB",
2175
+ "oid" : "1.3.6.1.2.1.213.1.3.1.1.2",
2176
+ "status" : "current",
2177
+ "syntax" : {
2178
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2179
+ },
2180
+ "access" : "readonly",
2181
+ "units" : "messages",
2182
+ "description" :
2183
+ """A counter is incremented each time a
2184
+ HELLO message has been received on that interface.""",
2185
+ }, # column
2186
+ "nhdpIfHelloMessageXmitAccumulatedSize" : {
2187
+ "nodetype" : "column",
2188
+ "moduleName" : "NHDP-MIB",
2189
+ "oid" : "1.3.6.1.2.1.213.1.3.1.1.3",
2190
+ "status" : "current",
2191
+ "syntax" : {
2192
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
2193
+ },
2194
+ "access" : "readonly",
2195
+ "units" : "octets",
2196
+ "description" :
2197
+ """A counter is incremented by the number of octets in
2198
+ a HELLO message each time a
2199
+ HELLO message has been sent.""",
2200
+ }, # column
2201
+ "nhdpIfHelloMessageRecvdAccumulatedSize" : {
2202
+ "nodetype" : "column",
2203
+ "moduleName" : "NHDP-MIB",
2204
+ "oid" : "1.3.6.1.2.1.213.1.3.1.1.4",
2205
+ "status" : "current",
2206
+ "syntax" : {
2207
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
2208
+ },
2209
+ "access" : "readonly",
2210
+ "units" : "octets",
2211
+ "description" :
2212
+ """A counter is incremented by the number of octets in
2213
+ a HELLO message each time a
2214
+ HELLO message has been received.""",
2215
+ }, # column
2216
+ "nhdpIfHelloMessageTriggeredXmits" : {
2217
+ "nodetype" : "column",
2218
+ "moduleName" : "NHDP-MIB",
2219
+ "oid" : "1.3.6.1.2.1.213.1.3.1.1.5",
2220
+ "status" : "current",
2221
+ "syntax" : {
2222
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2223
+ },
2224
+ "access" : "readonly",
2225
+ "units" : "messages",
2226
+ "description" :
2227
+ """A counter is incremented each time a triggered
2228
+ HELLO message has been sent.""",
2229
+ }, # column
2230
+ "nhdpIfHelloMessagePeriodicXmits" : {
2231
+ "nodetype" : "column",
2232
+ "moduleName" : "NHDP-MIB",
2233
+ "oid" : "1.3.6.1.2.1.213.1.3.1.1.6",
2234
+ "status" : "current",
2235
+ "syntax" : {
2236
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2237
+ },
2238
+ "access" : "readonly",
2239
+ "units" : "messages",
2240
+ "description" :
2241
+ """A counter is incremented each time a periodic
2242
+ HELLO message has been sent.""",
2243
+ }, # column
2244
+ "nhdpIfHelloMessageXmitAccumulatedSymmetricNeighborCount" : {
2245
+ "nodetype" : "column",
2246
+ "moduleName" : "NHDP-MIB",
2247
+ "oid" : "1.3.6.1.2.1.213.1.3.1.1.7",
2248
+ "status" : "current",
2249
+ "syntax" : {
2250
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2251
+ },
2252
+ "access" : "readonly",
2253
+ "units" : "neighbors",
2254
+ "description" :
2255
+ """A counter is incremented by the number of advertised
2256
+ symmetric neighbors in a HELLO each time a HELLO
2257
+ message has been sent.""",
2258
+ }, # column
2259
+ "nhdpIfHelloMessageXmitAccumulatedHeardNeighborCount" : {
2260
+ "nodetype" : "column",
2261
+ "moduleName" : "NHDP-MIB",
2262
+ "oid" : "1.3.6.1.2.1.213.1.3.1.1.8",
2263
+ "status" : "current",
2264
+ "syntax" : {
2265
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2266
+ },
2267
+ "access" : "readonly",
2268
+ "units" : "neighbors",
2269
+ "description" :
2270
+ """A counter is incremented by the number of advertised
2271
+ heard neighbors in a HELLO each time a HELLO
2272
+ message has been sent.""",
2273
+ }, # column
2274
+ "nhdpIfHelloMessageXmitAccumulatedLostNeighborCount" : {
2275
+ "nodetype" : "column",
2276
+ "moduleName" : "NHDP-MIB",
2277
+ "oid" : "1.3.6.1.2.1.213.1.3.1.1.9",
2278
+ "status" : "current",
2279
+ "syntax" : {
2280
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2281
+ },
2282
+ "access" : "readonly",
2283
+ "units" : "neighbors",
2284
+ "description" :
2285
+ """A counter is incremented by the number of advertised
2286
+ lost neighbors in a HELLO each time a HELLO
2287
+ message has been sent.""",
2288
+ }, # column
2289
+ "nhdpDiscIfSetPerfTable" : {
2290
+ "nodetype" : "table",
2291
+ "moduleName" : "NHDP-MIB",
2292
+ "oid" : "1.3.6.1.2.1.213.1.3.2",
2293
+ "status" : "current",
2294
+ "description" :
2295
+ """A router's set of performance properties for
2296
+ each discovered interface of a neighbor.""",
2297
+ "reference" :
2298
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
2299
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
2300
+ C., and J. Dean, April 2011""",
2301
+ }, # table
2302
+ "nhdpDiscIfSetPerfEntry" : {
2303
+ "nodetype" : "row",
2304
+ "moduleName" : "NHDP-MIB",
2305
+ "oid" : "1.3.6.1.2.1.213.1.3.2.1",
2306
+ "status" : "current",
2307
+ "linkage" : [
2308
+ "nhdpDiscIfIndex",
2309
+ ],
2310
+ "description" :
2311
+ """There is an entry for each discovered
2312
+ interface of a neighbor.""",
2313
+ "reference" :
2314
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
2315
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
2316
+ C., and J. Dean, April 2011""",
2317
+ }, # row
2318
+ "nhdpDiscIfRecvdPackets" : {
2319
+ "nodetype" : "column",
2320
+ "moduleName" : "NHDP-MIB",
2321
+ "oid" : "1.3.6.1.2.1.213.1.3.2.1.1",
2322
+ "status" : "current",
2323
+ "syntax" : {
2324
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2325
+ },
2326
+ "access" : "readonly",
2327
+ "units" : "packets",
2328
+ "description" :
2329
+ """This counter increments each
2330
+ time this router receives a packet from that interface
2331
+ of the neighbor.""",
2332
+ "reference" :
2333
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
2334
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
2335
+ C., and J. Dean, April 2011""",
2336
+ }, # column
2337
+ "nhdpDiscIfExpectedPackets" : {
2338
+ "nodetype" : "column",
2339
+ "moduleName" : "NHDP-MIB",
2340
+ "oid" : "1.3.6.1.2.1.213.1.3.2.1.2",
2341
+ "status" : "current",
2342
+ "syntax" : {
2343
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2344
+ },
2345
+ "access" : "readonly",
2346
+ "units" : "packets",
2347
+ "description" :
2348
+ """This counter increments by the number
2349
+ of missed packets from this neighbor based
2350
+ on the packet sequence number each time this
2351
+ router receives a packet from that interface
2352
+ of the neighbor.""",
2353
+ "reference" :
2354
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
2355
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
2356
+ C., and J. Dean, April 2011""",
2357
+ }, # column
2358
+ "nhdpNibNeighborSetChanges" : {
2359
+ "nodetype" : "scalar",
2360
+ "moduleName" : "NHDP-MIB",
2361
+ "oid" : "1.3.6.1.2.1.213.1.3.3",
2362
+ "status" : "current",
2363
+ "syntax" : {
2364
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2365
+ },
2366
+ "access" : "readonly",
2367
+ "units" : "changes",
2368
+ "description" :
2369
+ """This counter increments each time the Neighbor Set changes.
2370
+ A change occurs whenever a new Neighbor Tuple has been
2371
+ added, a Neighbor Tuple has been removed, or any entry of
2372
+ a Neighbor Tuple has been modified.""",
2373
+ }, # scalar
2374
+ "nhdpDiscNeighborSetPerfTable" : {
2375
+ "nodetype" : "table",
2376
+ "moduleName" : "NHDP-MIB",
2377
+ "oid" : "1.3.6.1.2.1.213.1.3.4",
2378
+ "status" : "current",
2379
+ "description" :
2380
+ """A router's set of discovered neighbors and
2381
+ their properties.""",
2382
+ "reference" :
2383
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
2384
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
2385
+ C., and J. Dean, April 2011""",
2386
+ }, # table
2387
+ "nhdpDiscNeighborSetPerfEntry" : {
2388
+ "nodetype" : "row",
2389
+ "moduleName" : "NHDP-MIB",
2390
+ "oid" : "1.3.6.1.2.1.213.1.3.4.1",
2391
+ "status" : "current",
2392
+ "linkage" : [
2393
+ "nhdpDiscRouterIndex",
2394
+ ],
2395
+ "description" :
2396
+ """The entries include the nhdpDiscRouterIndex of
2397
+ the discovered router as well as performance
2398
+ objects related to changes of the Neighbor
2399
+ Set.""",
2400
+ "reference" :
2401
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
2402
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
2403
+ C., and J. Dean, April 2011""",
2404
+ }, # row
2405
+ "nhdpDiscNeighborNibNeighborSetChanges" : {
2406
+ "nodetype" : "column",
2407
+ "moduleName" : "NHDP-MIB",
2408
+ "oid" : "1.3.6.1.2.1.213.1.3.4.1.1",
2409
+ "status" : "current",
2410
+ "syntax" : {
2411
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2412
+ },
2413
+ "access" : "readonly",
2414
+ "units" : "changes",
2415
+ "description" :
2416
+ """This object returns the number of changes
2417
+ to the given Neighbor Tuple.""",
2418
+ "reference" :
2419
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
2420
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
2421
+
2422
+
2423
+
2424
+ C., and J. Dean, April 2011""",
2425
+ }, # column
2426
+ "nhdpDiscNeighborNibNeighborSetUpTime" : {
2427
+ "nodetype" : "column",
2428
+ "moduleName" : "NHDP-MIB",
2429
+ "oid" : "1.3.6.1.2.1.213.1.3.4.1.2",
2430
+ "status" : "current",
2431
+ "syntax" : {
2432
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
2433
+ },
2434
+ "access" : "readonly",
2435
+ "description" :
2436
+ """This object returns the sysUpTime when
2437
+ the neighbor becomes 'nbrup'. A neighbor is
2438
+ said to become 'nbrup' if a new nhdpNibNeighborSetEntry
2439
+ is created for a particular nhdpNibNeighborSetRouterIndex.
2440
+ It becomes 'nbrdown' if the entry for that neighbor
2441
+ has been deleted.""",
2442
+ "reference" :
2443
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
2444
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
2445
+ C., and J. Dean, April 2011""",
2446
+ }, # column
2447
+ "nhdpDiscNeighborNibNeighborSetReachableLinkChanges" : {
2448
+ "nodetype" : "column",
2449
+ "moduleName" : "NHDP-MIB",
2450
+ "oid" : "1.3.6.1.2.1.213.1.3.4.1.3",
2451
+ "status" : "current",
2452
+ "syntax" : {
2453
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2454
+ },
2455
+ "access" : "readonly",
2456
+ "units" : "changes",
2457
+ "description" :
2458
+ """This object counts each time the neighbor changes
2459
+ the interface(s) over which it is reachable.
2460
+ A change in the set of Link Tuples corresponding
2461
+ to the appropriate Neighbor Tuple is registered,
2462
+ i.e., a corresponding Link Tuple is added or removed
2463
+ from the set of all corresponding Link Tuples.""",
2464
+ "reference" :
2465
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
2466
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
2467
+ C., and J. Dean, April 2011""",
2468
+ }, # column
2469
+ "nhdpIib2HopSetPerfTable" : {
2470
+ "nodetype" : "table",
2471
+ "moduleName" : "NHDP-MIB",
2472
+ "oid" : "1.3.6.1.2.1.213.1.3.5",
2473
+ "status" : "current",
2474
+ "description" :
2475
+ """This table contains performance objects per
2476
+ discovered 2-hop neighbor.""",
2477
+ "reference" :
2478
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
2479
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
2480
+ C., and J. Dean, April 2011""",
2481
+ }, # table
2482
+ "nhdpIib2HopSetPerfEntry" : {
2483
+ "nodetype" : "row",
2484
+ "moduleName" : "NHDP-MIB",
2485
+ "oid" : "1.3.6.1.2.1.213.1.3.5.1",
2486
+ "status" : "current",
2487
+ "linkage" : [
2488
+ "nhdpDiscRouterIndex",
2489
+ ],
2490
+ "description" :
2491
+ """The entries contain performance objects per
2492
+ discovered 2-hop neighbor.""",
2493
+ "reference" :
2494
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
2495
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
2496
+ C., and J. Dean, April 2011""",
2497
+ }, # row
2498
+ "nhdpIib2HopSetPerfChanges" : {
2499
+ "nodetype" : "column",
2500
+ "moduleName" : "NHDP-MIB",
2501
+ "oid" : "1.3.6.1.2.1.213.1.3.5.1.1",
2502
+ "status" : "current",
2503
+ "syntax" : {
2504
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2505
+ },
2506
+ "access" : "readonly",
2507
+ "units" : "changes",
2508
+ "description" :
2509
+ """This object counts the changes of the union of all
2510
+ N2_neighbor_iface_addr_list of 2-Hop Tuples with an
2511
+ N2_2hop_addr equal to one of the given 2-hop
2512
+ neighbor's addresses.""",
2513
+ "reference" :
2514
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
2515
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
2516
+ C., and J. Dean, April 2011""",
2517
+ }, # column
2518
+ "nhdpIib2HopSetPerfUpTime" : {
2519
+ "nodetype" : "column",
2520
+ "moduleName" : "NHDP-MIB",
2521
+ "oid" : "1.3.6.1.2.1.213.1.3.5.1.2",
2522
+ "status" : "current",
2523
+ "syntax" : {
2524
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
2525
+ },
2526
+ "access" : "readonly",
2527
+ "description" :
2528
+ """This object returns the sysUpTime
2529
+ when the 2-Hop Tuple
2530
+ corresponding to the given 2-hop neighbor IP address
2531
+ was registered in the nhdpIib2HopSetTable.""",
2532
+ "reference" :
2533
+ """RFC 6130 - Mobile Ad Hoc Network (MANET) Neighborhood
2534
+ Discovery Protocol (NHDP), Clausen, T., Dearlove,
2535
+ C., and J. Dean, April 2011""",
2536
+ }, # column
2537
+ "nhdpConformance" : {
2538
+ "nodetype" : "node",
2539
+ "moduleName" : "NHDP-MIB",
2540
+ "oid" : "1.3.6.1.2.1.213.2",
2541
+ }, # node
2542
+ "nhdpCompliances" : {
2543
+ "nodetype" : "node",
2544
+ "moduleName" : "NHDP-MIB",
2545
+ "oid" : "1.3.6.1.2.1.213.2.1",
2546
+ }, # node
2547
+ "nhdpMIBGroups" : {
2548
+ "nodetype" : "node",
2549
+ "moduleName" : "NHDP-MIB",
2550
+ "oid" : "1.3.6.1.2.1.213.2.2",
2551
+ }, # node
2552
+ }, # nodes
2553
+
2554
+ "notifications" : {
2555
+ "nhdpNbrStateChange" : {
2556
+ "nodetype" : "notification",
2557
+ "moduleName" : "NHDP-MIB",
2558
+ "oid" : "1.3.6.1.2.1.213.0.0.1",
2559
+ "status" : "current",
2560
+ "objects" : {
2561
+ "nhdpIfName" : {
2562
+ "nodetype" : "object",
2563
+ "module" : "NHDP-MIB"
2564
+ },
2565
+ "nhdpNbrState" : {
2566
+ "nodetype" : "object",
2567
+ "module" : "NHDP-MIB"
2568
+ },
2569
+ },
2570
+ "description" :
2571
+ """nhdpNbrStateChange is a notification sent when
2572
+ more than nhdpNbrStateChangeThreshold neighbors change
2573
+ their status (i.e., 'down(0)', 'asymmetric(1)', or
2574
+ 'symmetric(2)') within a time window of
2575
+ nhdpNbrStateChangeWindow.""",
2576
+ }, # notification
2577
+ "nhdp2HopNbrStateChange" : {
2578
+ "nodetype" : "notification",
2579
+ "moduleName" : "NHDP-MIB",
2580
+ "oid" : "1.3.6.1.2.1.213.0.0.2",
2581
+ "status" : "current",
2582
+ "objects" : {
2583
+ "nhdpIfName" : {
2584
+ "nodetype" : "object",
2585
+ "module" : "NHDP-MIB"
2586
+ },
2587
+ "nhdp2HopNbrState" : {
2588
+ "nodetype" : "object",
2589
+ "module" : "NHDP-MIB"
2590
+ },
2591
+ },
2592
+ "description" :
2593
+ """nhdp2HopNbrStateChange is a notification sent
2594
+ when more than nhdp2HopNbrStateChangeThreshold 2-hop
2595
+ neighbors change their status (i.e., 'down(0)' or
2596
+ 'up(1)') within a time window of
2597
+ nhdp2HopNbrStateChangeWindow.""",
2598
+ }, # notification
2599
+ "nhdpIfStateChange" : {
2600
+ "nodetype" : "notification",
2601
+ "moduleName" : "NHDP-MIB",
2602
+ "oid" : "1.3.6.1.2.1.213.0.0.3",
2603
+ "status" : "current",
2604
+ "objects" : {
2605
+ "nhdpIfName" : {
2606
+ "nodetype" : "object",
2607
+ "module" : "NHDP-MIB"
2608
+ },
2609
+ "nhdpIfStatus" : {
2610
+ "nodetype" : "object",
2611
+ "module" : "NHDP-MIB"
2612
+ },
2613
+ },
2614
+ "description" :
2615
+ """nhdpIfStateChange is a notification sent when
2616
+ nhdpIfStatus has changed on this interface.""",
2617
+ }, # notification
2618
+ }, # notifications
2619
+
2620
+ "groups" : {
2621
+ "nhdpConfigurationGroup" : {
2622
+ "nodetype" : "group",
2623
+ "moduleName" : "NHDP-MIB",
2624
+ "oid" : "1.3.6.1.2.1.213.2.2.2",
2625
+ "status" : "current",
2626
+ "members" : {
2627
+ "nhdpIfName" : {
2628
+ "nodetype" : "member",
2629
+ "module" : "NHDP-MIB"
2630
+ },
2631
+ "nhdpIfStatus" : {
2632
+ "nodetype" : "member",
2633
+ "module" : "NHDP-MIB"
2634
+ },
2635
+ "nhdpHelloInterval" : {
2636
+ "nodetype" : "member",
2637
+ "module" : "NHDP-MIB"
2638
+ },
2639
+ "nhdpHelloMinInterval" : {
2640
+ "nodetype" : "member",
2641
+ "module" : "NHDP-MIB"
2642
+ },
2643
+ "nhdpRefreshInterval" : {
2644
+ "nodetype" : "member",
2645
+ "module" : "NHDP-MIB"
2646
+ },
2647
+ "nhdpLHoldTime" : {
2648
+ "nodetype" : "member",
2649
+ "module" : "NHDP-MIB"
2650
+ },
2651
+ "nhdpHHoldTime" : {
2652
+ "nodetype" : "member",
2653
+ "module" : "NHDP-MIB"
2654
+ },
2655
+ "nhdpHystAcceptQuality" : {
2656
+ "nodetype" : "member",
2657
+ "module" : "NHDP-MIB"
2658
+ },
2659
+ "nhdpHystRejectQuality" : {
2660
+ "nodetype" : "member",
2661
+ "module" : "NHDP-MIB"
2662
+ },
2663
+ "nhdpInitialQuality" : {
2664
+ "nodetype" : "member",
2665
+ "module" : "NHDP-MIB"
2666
+ },
2667
+ "nhdpInitialPending" : {
2668
+ "nodetype" : "member",
2669
+ "module" : "NHDP-MIB"
2670
+ },
2671
+ "nhdpHpMaxJitter" : {
2672
+ "nodetype" : "member",
2673
+ "module" : "NHDP-MIB"
2674
+ },
2675
+ "nhdpHtMaxJitter" : {
2676
+ "nodetype" : "member",
2677
+ "module" : "NHDP-MIB"
2678
+ },
2679
+ "nhdpNHoldTime" : {
2680
+ "nodetype" : "member",
2681
+ "module" : "NHDP-MIB"
2682
+ },
2683
+ "nhdpIHoldTime" : {
2684
+ "nodetype" : "member",
2685
+ "module" : "NHDP-MIB"
2686
+ },
2687
+ "nhdpIfRowStatus" : {
2688
+ "nodetype" : "member",
2689
+ "module" : "NHDP-MIB"
2690
+ },
2691
+ "nhdpLibLocalIfSetIfIndex" : {
2692
+ "nodetype" : "member",
2693
+ "module" : "NHDP-MIB"
2694
+ },
2695
+ "nhdpLibLocalIfSetIpAddrType" : {
2696
+ "nodetype" : "member",
2697
+ "module" : "NHDP-MIB"
2698
+ },
2699
+ "nhdpLibLocalIfSetIpAddr" : {
2700
+ "nodetype" : "member",
2701
+ "module" : "NHDP-MIB"
2702
+ },
2703
+ "nhdpLibLocalIfSetIpAddrPrefixLen" : {
2704
+ "nodetype" : "member",
2705
+ "module" : "NHDP-MIB"
2706
+ },
2707
+ "nhdpLibLocalIfSetRowStatus" : {
2708
+ "nodetype" : "member",
2709
+ "module" : "NHDP-MIB"
2710
+ },
2711
+ "nhdpLibRemovedIfAddrSetIpAddrType" : {
2712
+ "nodetype" : "member",
2713
+ "module" : "NHDP-MIB"
2714
+ },
2715
+ "nhdpLibRemovedIfAddrSetIpAddr" : {
2716
+ "nodetype" : "member",
2717
+ "module" : "NHDP-MIB"
2718
+ },
2719
+ "nhdpLibRemovedIfAddrSetIpAddrPrefixLen" : {
2720
+ "nodetype" : "member",
2721
+ "module" : "NHDP-MIB"
2722
+ },
2723
+ "nhdpLibRemovedIfAddrSetIfIndex" : {
2724
+ "nodetype" : "member",
2725
+ "module" : "NHDP-MIB"
2726
+ },
2727
+ "nhdpLibRemovedIfAddrSetIRTime" : {
2728
+ "nodetype" : "member",
2729
+ "module" : "NHDP-MIB"
2730
+ },
2731
+ }, # members
2732
+ "description" :
2733
+ """Set of NHDP configuration objects implemented
2734
+ in this module.""",
2735
+ }, # group
2736
+ "nhdpStateGroup" : {
2737
+ "nodetype" : "group",
2738
+ "moduleName" : "NHDP-MIB",
2739
+ "oid" : "1.3.6.1.2.1.213.2.2.3",
2740
+ "status" : "current",
2741
+ "members" : {
2742
+ "nhdpUpTime" : {
2743
+ "nodetype" : "member",
2744
+ "module" : "NHDP-MIB"
2745
+ },
2746
+ "nhdpIfStateUpTime" : {
2747
+ "nodetype" : "member",
2748
+ "module" : "NHDP-MIB"
2749
+ },
2750
+ "nhdpDiscRouterIndex" : {
2751
+ "nodetype" : "member",
2752
+ "module" : "NHDP-MIB"
2753
+ },
2754
+ "nhdpDiscIfIndex" : {
2755
+ "nodetype" : "member",
2756
+ "module" : "NHDP-MIB"
2757
+ },
2758
+ "nhdpDiscIfSetIpAddrType" : {
2759
+ "nodetype" : "member",
2760
+ "module" : "NHDP-MIB"
2761
+ },
2762
+ "nhdpDiscIfSetIpAddr" : {
2763
+ "nodetype" : "member",
2764
+ "module" : "NHDP-MIB"
2765
+ },
2766
+ "nhdpDiscIfSetIpAddrPrefixLen" : {
2767
+ "nodetype" : "member",
2768
+ "module" : "NHDP-MIB"
2769
+ },
2770
+ "nhdpIibLinkSetLHeardTime" : {
2771
+ "nodetype" : "member",
2772
+ "module" : "NHDP-MIB"
2773
+ },
2774
+ "nhdpIibLinkSetLSymTime" : {
2775
+ "nodetype" : "member",
2776
+ "module" : "NHDP-MIB"
2777
+ },
2778
+ "nhdpIibLinkSetLPending" : {
2779
+ "nodetype" : "member",
2780
+ "module" : "NHDP-MIB"
2781
+ },
2782
+ "nhdpIibLinkSetLLost" : {
2783
+ "nodetype" : "member",
2784
+ "module" : "NHDP-MIB"
2785
+ },
2786
+ "nhdpIibLinkSetLTime" : {
2787
+ "nodetype" : "member",
2788
+ "module" : "NHDP-MIB"
2789
+ },
2790
+ "nhdpIib2HopSetIpAddrPrefixLen" : {
2791
+ "nodetype" : "member",
2792
+ "module" : "NHDP-MIB"
2793
+ },
2794
+ "nhdpIib2HopSet1HopIfIndex" : {
2795
+ "nodetype" : "member",
2796
+ "module" : "NHDP-MIB"
2797
+ },
2798
+ "nhdpIib2HopSetN2Time" : {
2799
+ "nodetype" : "member",
2800
+ "module" : "NHDP-MIB"
2801
+ },
2802
+ "nhdpNibNeighborSetNSymmetric" : {
2803
+ "nodetype" : "member",
2804
+ "module" : "NHDP-MIB"
2805
+ },
2806
+ "nhdpNibLostNeighborSetNLTime" : {
2807
+ "nodetype" : "member",
2808
+ "module" : "NHDP-MIB"
2809
+ },
2810
+ }, # members
2811
+ "description" :
2812
+ """Set of NHDP state objects implemented
2813
+ in this module.""",
2814
+ }, # group
2815
+ "nhdpPerformanceGroup" : {
2816
+ "nodetype" : "group",
2817
+ "moduleName" : "NHDP-MIB",
2818
+ "oid" : "1.3.6.1.2.1.213.2.2.4",
2819
+ "status" : "current",
2820
+ "members" : {
2821
+ "nhdpIfHelloMessageXmits" : {
2822
+ "nodetype" : "member",
2823
+ "module" : "NHDP-MIB"
2824
+ },
2825
+ "nhdpIfHelloMessageRecvd" : {
2826
+ "nodetype" : "member",
2827
+ "module" : "NHDP-MIB"
2828
+ },
2829
+ "nhdpIfHelloMessageXmitAccumulatedSize" : {
2830
+ "nodetype" : "member",
2831
+ "module" : "NHDP-MIB"
2832
+ },
2833
+ "nhdpIfHelloMessageRecvdAccumulatedSize" : {
2834
+ "nodetype" : "member",
2835
+ "module" : "NHDP-MIB"
2836
+ },
2837
+ "nhdpIfHelloMessageTriggeredXmits" : {
2838
+ "nodetype" : "member",
2839
+ "module" : "NHDP-MIB"
2840
+ },
2841
+ "nhdpIfHelloMessagePeriodicXmits" : {
2842
+ "nodetype" : "member",
2843
+ "module" : "NHDP-MIB"
2844
+ },
2845
+ "nhdpIfHelloMessageXmitAccumulatedSymmetricNeighborCount" : {
2846
+ "nodetype" : "member",
2847
+ "module" : "NHDP-MIB"
2848
+ },
2849
+ "nhdpIfHelloMessageXmitAccumulatedHeardNeighborCount" : {
2850
+ "nodetype" : "member",
2851
+ "module" : "NHDP-MIB"
2852
+ },
2853
+ "nhdpIfHelloMessageXmitAccumulatedLostNeighborCount" : {
2854
+ "nodetype" : "member",
2855
+ "module" : "NHDP-MIB"
2856
+ },
2857
+ "nhdpDiscIfRecvdPackets" : {
2858
+ "nodetype" : "member",
2859
+ "module" : "NHDP-MIB"
2860
+ },
2861
+ "nhdpDiscIfExpectedPackets" : {
2862
+ "nodetype" : "member",
2863
+ "module" : "NHDP-MIB"
2864
+ },
2865
+ "nhdpNibNeighborSetChanges" : {
2866
+ "nodetype" : "member",
2867
+ "module" : "NHDP-MIB"
2868
+ },
2869
+ "nhdpDiscNeighborNibNeighborSetChanges" : {
2870
+ "nodetype" : "member",
2871
+ "module" : "NHDP-MIB"
2872
+ },
2873
+ "nhdpDiscNeighborNibNeighborSetUpTime" : {
2874
+ "nodetype" : "member",
2875
+ "module" : "NHDP-MIB"
2876
+ },
2877
+ "nhdpDiscNeighborNibNeighborSetReachableLinkChanges" : {
2878
+ "nodetype" : "member",
2879
+ "module" : "NHDP-MIB"
2880
+ },
2881
+ "nhdpIib2HopSetPerfChanges" : {
2882
+ "nodetype" : "member",
2883
+ "module" : "NHDP-MIB"
2884
+ },
2885
+ "nhdpIib2HopSetPerfUpTime" : {
2886
+ "nodetype" : "member",
2887
+ "module" : "NHDP-MIB"
2888
+ },
2889
+ }, # members
2890
+ "description" :
2891
+ """Set of NHDP performance objects implemented
2892
+ in this module.""",
2893
+ }, # group
2894
+ "nhdpNotificationObjectGroup" : {
2895
+ "nodetype" : "group",
2896
+ "moduleName" : "NHDP-MIB",
2897
+ "oid" : "1.3.6.1.2.1.213.2.2.5",
2898
+ "status" : "current",
2899
+ "members" : {
2900
+ "nhdpNbrStateChangeThreshold" : {
2901
+ "nodetype" : "member",
2902
+ "module" : "NHDP-MIB"
2903
+ },
2904
+ "nhdpNbrStateChangeWindow" : {
2905
+ "nodetype" : "member",
2906
+ "module" : "NHDP-MIB"
2907
+ },
2908
+ "nhdp2HopNbrStateChangeThreshold" : {
2909
+ "nodetype" : "member",
2910
+ "module" : "NHDP-MIB"
2911
+ },
2912
+ "nhdp2HopNbrStateChangeWindow" : {
2913
+ "nodetype" : "member",
2914
+ "module" : "NHDP-MIB"
2915
+ },
2916
+ "nhdpNbrState" : {
2917
+ "nodetype" : "member",
2918
+ "module" : "NHDP-MIB"
2919
+ },
2920
+ "nhdp2HopNbrState" : {
2921
+ "nodetype" : "member",
2922
+ "module" : "NHDP-MIB"
2923
+ },
2924
+ }, # members
2925
+ "description" :
2926
+ """Set of NHDP notification objects implemented
2927
+ in this module.""",
2928
+ }, # group
2929
+ "nhdpNotificationGroup" : {
2930
+ "nodetype" : "group",
2931
+ "moduleName" : "NHDP-MIB",
2932
+ "oid" : "1.3.6.1.2.1.213.2.2.6",
2933
+ "status" : "current",
2934
+ "members" : {
2935
+ "nhdpNbrStateChange" : {
2936
+ "nodetype" : "member",
2937
+ "module" : "NHDP-MIB"
2938
+ },
2939
+ "nhdp2HopNbrStateChange" : {
2940
+ "nodetype" : "member",
2941
+ "module" : "NHDP-MIB"
2942
+ },
2943
+ "nhdpIfStateChange" : {
2944
+ "nodetype" : "member",
2945
+ "module" : "NHDP-MIB"
2946
+ },
2947
+ }, # members
2948
+ "description" :
2949
+ """Set of NHDP notifications implemented
2950
+ in this module.""",
2951
+ }, # group
2952
+ }, # groups
2953
+
2954
+ "compliances" : {
2955
+ "nhdpBasicCompliance" : {
2956
+ "nodetype" : "compliance",
2957
+ "moduleName" : "NHDP-MIB",
2958
+ "oid" : "1.3.6.1.2.1.213.2.1.1",
2959
+ "status" : "current",
2960
+ "description" :
2961
+ """The basic implementation requirements for
2962
+ managed network entities that implement
2963
+ NHDP.""",
2964
+ "requires" : {
2965
+ "nhdpConfigurationGroup" : {
2966
+ "nodetype" : "mandatory",
2967
+ "module" : "NHDP-MIB"
2968
+ },
2969
+ }, # requires
2970
+ }, # compliance
2971
+ "nhdpFullCompliance" : {
2972
+ "nodetype" : "compliance",
2973
+ "moduleName" : "NHDP-MIB",
2974
+ "oid" : "1.3.6.1.2.1.213.2.1.2",
2975
+ "status" : "current",
2976
+ "description" :
2977
+ """The full implementation requirements for
2978
+ managed network entities that implement
2979
+ NHDP.""",
2980
+ "requires" : {
2981
+ "nhdpConfigurationGroup" : {
2982
+ "nodetype" : "mandatory",
2983
+ "module" : "NHDP-MIB"
2984
+ },
2985
+ "nhdpStateGroup" : {
2986
+ "nodetype" : "mandatory",
2987
+ "module" : "NHDP-MIB"
2988
+ },
2989
+ "nhdpNotificationObjectGroup" : {
2990
+ "nodetype" : "mandatory",
2991
+ "module" : "NHDP-MIB"
2992
+ },
2993
+ "nhdpNotificationGroup" : {
2994
+ "nodetype" : "mandatory",
2995
+ "module" : "NHDP-MIB"
2996
+ },
2997
+ "nhdpPerformanceGroup" : {
2998
+ "nodetype" : "mandatory",
2999
+ "module" : "NHDP-MIB"
3000
+ },
3001
+ }, # requires
3002
+ }, # compliance
3003
+ }, # compliances
3004
+
3005
+ }