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,3660 @@
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 NHRP-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/NHRP-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "NHRP-MIB",
11
+
12
+ "NHRP-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """Internetworking Over NBMA (ion) Working Group""",
17
+ "contact" :
18
+ """Maria Greene (maria@xedia.com)
19
+ Contractor
20
+
21
+ Joan Cucchiara (joan@ironbridgenetworks.com)
22
+ IronBridge Networks
23
+
24
+ James V. Luciani (luciani@baynetworks.com)
25
+ Bay Networks""",
26
+ "description" :
27
+ """This MIB contains managed object definitions for the Next
28
+ Hop Resolution Procol, NHRP, as defined in RFC 2332 [17].""",
29
+ "revisions" : (
30
+ {
31
+ "date" : "1999-08-26 00:00",
32
+ "description" :
33
+ """Initial version, published as RFC 2677.""",
34
+ },
35
+ ),
36
+ "identity node" : "nhrpMIB",
37
+ },
38
+
39
+ "imports" : (
40
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
41
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
42
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
43
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
44
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
45
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
46
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
47
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
48
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
49
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
50
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
51
+ {"module" : "SNMPv2-TC", "name" : "StorageType"},
52
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
53
+ {"module" : "IF-MIB", "name" : "ifIndex"},
54
+ {"module" : "IANA-ADDRESS-FAMILY-NUMBERS-MIB", "name" : "AddressFamilyNumbers"},
55
+ ),
56
+
57
+ "typedefs" : {
58
+ "NhrpGenAddr" : {
59
+ "basetype" : "OctetString",
60
+ "status" : "current",
61
+ "ranges" : [
62
+ {
63
+ "min" : "0",
64
+ "max" : "64"
65
+ },
66
+ ],
67
+ "range" : {
68
+ "min" : "0",
69
+ "max" : "64"
70
+ },
71
+ "description" :
72
+ """The value of an internetwork layer or NBMA address.""",
73
+ },
74
+ }, # typedefs
75
+
76
+ "nodes" : {
77
+ "nhrpMIB" : {
78
+ "nodetype" : "node",
79
+ "moduleName" : "NHRP-MIB",
80
+ "oid" : "1.3.6.1.2.1.71",
81
+ "status" : "current",
82
+ }, # node
83
+ "nhrpObjects" : {
84
+ "nodetype" : "node",
85
+ "moduleName" : "NHRP-MIB",
86
+ "oid" : "1.3.6.1.2.1.71.1",
87
+ }, # node
88
+ "nhrpGeneralObjects" : {
89
+ "nodetype" : "node",
90
+ "moduleName" : "NHRP-MIB",
91
+ "oid" : "1.3.6.1.2.1.71.1.1",
92
+ }, # node
93
+ "nhrpNextIndex" : {
94
+ "nodetype" : "scalar",
95
+ "moduleName" : "NHRP-MIB",
96
+ "oid" : "1.3.6.1.2.1.71.1.1.1",
97
+ "status" : "current",
98
+ "syntax" : {
99
+ "type" : { "module" :"", "name" : "Unsigned32"},
100
+ },
101
+ "access" : "readonly",
102
+ "description" :
103
+ """This scalar is used for creating rows in the
104
+ nhrpClientTable and the nhrpServerTable.
105
+ The value of this variable is a currently unused value
106
+ for nhrpClientIndex and nhrpServerIndex.
107
+ The value returned when reading this variable must be
108
+ unique for the NHC's and NHS's indices associated with
109
+ this row. Subsequent attempts to read this variable
110
+ must return different values.
111
+
112
+ NOTE: this object exists in the General Group because
113
+ it is to be used in establishing rows in the
114
+ nhrpClientTable and the nhrpServerTable. In other words,
115
+ the value retrieved from this object could become the
116
+ value of nhrpClientIndex and nhprServerIndex.
117
+
118
+ In the situation of an agent re-initialization the value
119
+ of this object must be saved in non-volatile storage.
120
+
121
+ This variable will return the special value 0 if no new
122
+ rows can be created.""",
123
+ }, # scalar
124
+ "nhrpCacheTable" : {
125
+ "nodetype" : "table",
126
+ "moduleName" : "NHRP-MIB",
127
+ "oid" : "1.3.6.1.2.1.71.1.1.2",
128
+ "status" : "current",
129
+ "description" :
130
+ """This table contains mappings between internetwork layer
131
+ addresses and NBMA subnetwork layer addresses.""",
132
+ }, # table
133
+ "nhrpCacheEntry" : {
134
+ "nodetype" : "row",
135
+ "moduleName" : "NHRP-MIB",
136
+ "oid" : "1.3.6.1.2.1.71.1.1.2.1",
137
+ "create" : "true",
138
+ "status" : "current",
139
+ "linkage" : [
140
+ "nhrpCacheInternetworkAddrType",
141
+ "nhrpCacheInternetworkAddr",
142
+ "ifIndex",
143
+ "nhrpCacheIndex",
144
+ ],
145
+ "description" :
146
+ """A cached mapping between an internetwork layer address
147
+ and an NBMA address. Entries can be created by the
148
+ network administrator using the nhrpCacheRowStatus
149
+ column, or they may be added dynamically based on
150
+ protocol operation (including NHRP, SCSP, and others,
151
+ such as ATMARP).
152
+
153
+ When created based by NHRP protocol operations
154
+ this entry is largely based on contents contained in
155
+ the Client Information Entry (CIE).
156
+ Zero or more Client Information Entries (CIEs) may be
157
+ included in the NHRP Packet. For a complete description
158
+ of the CIE, refer to Section 5.2.0.1 of
159
+ RFC 2332 [17].""",
160
+ }, # row
161
+ "nhrpCacheInternetworkAddrType" : {
162
+ "nodetype" : "column",
163
+ "moduleName" : "NHRP-MIB",
164
+ "oid" : "1.3.6.1.2.1.71.1.1.2.1.1",
165
+ "status" : "current",
166
+ "syntax" : {
167
+ "type" : { "module" :"IANA-ADDRESS-FAMILY-NUMBERS-MIB", "name" : "AddressFamilyNumbers"},
168
+ },
169
+ "access" : "noaccess",
170
+ "description" :
171
+ """The internetwork layer address type of this Next Hop
172
+ Resolution Cache entry. The value of this object indicates
173
+ how to interpret the values of nhrpCacheInternetworkAddr
174
+ and nhrpCacheNextHopInternetworkAddr.""",
175
+ }, # column
176
+ "nhrpCacheInternetworkAddr" : {
177
+ "nodetype" : "column",
178
+ "moduleName" : "NHRP-MIB",
179
+ "oid" : "1.3.6.1.2.1.71.1.1.2.1.2",
180
+ "status" : "current",
181
+ "syntax" : {
182
+ "type" : { "module" :"NHRP-MIB", "name" : "NhrpGenAddr"},
183
+ },
184
+ "access" : "noaccess",
185
+ "description" :
186
+ """The value of the internetwork address of the
187
+ destination.""",
188
+ }, # column
189
+ "nhrpCacheIndex" : {
190
+ "nodetype" : "column",
191
+ "moduleName" : "NHRP-MIB",
192
+ "oid" : "1.3.6.1.2.1.71.1.1.2.1.3",
193
+ "status" : "current",
194
+ "syntax" : {
195
+ "type" : {
196
+ "basetype" : "Unsigned32",
197
+ "ranges" : [
198
+ {
199
+ "min" : "1",
200
+ "max" : "4294967295"
201
+ },
202
+ ],
203
+ "range" : {
204
+ "min" : "1",
205
+ "max" : "4294967295"
206
+ },
207
+ },
208
+ },
209
+ "access" : "noaccess",
210
+ "description" :
211
+ """An identifier for this entry that has local
212
+ significance within the scope of the General
213
+ Group. This identifier is used here to
214
+ uniquely identify this row, and also used
215
+ in the 'nhrpPurgeTable' for the value of
216
+ the 'nhrpPurgeCacheIdentifier'.""",
217
+ }, # column
218
+ "nhrpCachePrefixLength" : {
219
+ "nodetype" : "column",
220
+ "moduleName" : "NHRP-MIB",
221
+ "oid" : "1.3.6.1.2.1.71.1.1.2.1.4",
222
+ "status" : "current",
223
+ "syntax" : {
224
+ "type" : {
225
+ "basetype" : "Integer32",
226
+ "ranges" : [
227
+ {
228
+ "min" : "0",
229
+ "max" : "255"
230
+ },
231
+ ],
232
+ "range" : {
233
+ "min" : "0",
234
+ "max" : "255"
235
+ },
236
+ },
237
+ },
238
+ "access" : "readonly",
239
+ "description" :
240
+ """The number of bits that define the internetwork layer
241
+ prefix associated with the nhrpCacheInternetworkAddr.""",
242
+ }, # column
243
+ "nhrpCacheNextHopInternetworkAddr" : {
244
+ "nodetype" : "column",
245
+ "moduleName" : "NHRP-MIB",
246
+ "oid" : "1.3.6.1.2.1.71.1.1.2.1.5",
247
+ "status" : "current",
248
+ "syntax" : {
249
+ "type" : { "module" :"NHRP-MIB", "name" : "NhrpGenAddr"},
250
+ },
251
+ "access" : "readwrite",
252
+ "description" :
253
+ """The value of the internetwork address of the next hop.""",
254
+ }, # column
255
+ "nhrpCacheNbmaAddrType" : {
256
+ "nodetype" : "column",
257
+ "moduleName" : "NHRP-MIB",
258
+ "oid" : "1.3.6.1.2.1.71.1.1.2.1.6",
259
+ "status" : "current",
260
+ "syntax" : {
261
+ "type" : { "module" :"IANA-ADDRESS-FAMILY-NUMBERS-MIB", "name" : "AddressFamilyNumbers"},
262
+ },
263
+ "access" : "readwrite",
264
+ "description" :
265
+ """The NBMA address type. The value of this
266
+ object indicates how to interpret
267
+ the values of nhrpCacheNbmaAddr and
268
+ nhrpCacheNbmaSubaddr.""",
269
+ }, # column
270
+ "nhrpCacheNbmaAddr" : {
271
+ "nodetype" : "column",
272
+ "moduleName" : "NHRP-MIB",
273
+ "oid" : "1.3.6.1.2.1.71.1.1.2.1.7",
274
+ "status" : "current",
275
+ "syntax" : {
276
+ "type" : { "module" :"NHRP-MIB", "name" : "NhrpGenAddr"},
277
+ },
278
+ "access" : "readwrite",
279
+ "description" :
280
+ """The value of the NBMA subnetwork address of the next
281
+ hop.""",
282
+ }, # column
283
+ "nhrpCacheNbmaSubaddr" : {
284
+ "nodetype" : "column",
285
+ "moduleName" : "NHRP-MIB",
286
+ "oid" : "1.3.6.1.2.1.71.1.1.2.1.8",
287
+ "status" : "current",
288
+ "syntax" : {
289
+ "type" : { "module" :"NHRP-MIB", "name" : "NhrpGenAddr"},
290
+ },
291
+ "access" : "readwrite",
292
+ "description" :
293
+ """The value of the NBMA subaddress of the next hop. If
294
+ there is no subaddress concept for the NBMA address
295
+ family, this value will be a zero-length OCTET STRING.""",
296
+ }, # column
297
+ "nhrpCacheType" : {
298
+ "nodetype" : "column",
299
+ "moduleName" : "NHRP-MIB",
300
+ "oid" : "1.3.6.1.2.1.71.1.1.2.1.9",
301
+ "status" : "current",
302
+ "syntax" : {
303
+ "type" : {
304
+ "basetype" : "Enumeration",
305
+ "other" : {
306
+ "nodetype" : "namednumber",
307
+ "number" : "1"
308
+ },
309
+ "register" : {
310
+ "nodetype" : "namednumber",
311
+ "number" : "2"
312
+ },
313
+ "resolveAuthoritative" : {
314
+ "nodetype" : "namednumber",
315
+ "number" : "3"
316
+ },
317
+ "resoveNonauthoritative" : {
318
+ "nodetype" : "namednumber",
319
+ "number" : "4"
320
+ },
321
+ "transit" : {
322
+ "nodetype" : "namednumber",
323
+ "number" : "5"
324
+ },
325
+ "administrativelyAdded" : {
326
+ "nodetype" : "namednumber",
327
+ "number" : "6"
328
+ },
329
+ "atmarp" : {
330
+ "nodetype" : "namednumber",
331
+ "number" : "7"
332
+ },
333
+ "scsp" : {
334
+ "nodetype" : "namednumber",
335
+ "number" : "8"
336
+ },
337
+ },
338
+ },
339
+ "access" : "readwrite",
340
+ "description" :
341
+ """An indication of how this cache entry
342
+ was created. The values are:
343
+
344
+ 'other(1)' The entry was added by some
345
+ other means.
346
+
347
+ 'register(2)' In a server, added based on a
348
+ client registration.
349
+
350
+ 'resolveAuthoritative(3)' In a client, added based on
351
+ receiving an Authoritative
352
+ NHRP Resolution Reply.
353
+ 'resolveNonauthoritative(4)' In a client, added based on
354
+ receiving a Nonauthoritative
355
+ NHRP Resolution Reply.
356
+
357
+ 'transit(5)' In a transit server, added by
358
+ examining a forwarded NHRP
359
+ packet.
360
+
361
+ 'administrativelyAdded(6)' In a client or server,
362
+ manually added by the
363
+ administrator. The
364
+ StorageType of this entry is
365
+ reflected in
366
+ 'nhrpCacheStorageType'.
367
+
368
+ 'atmarp(7)' The entry was added due to an
369
+ ATMARP.
370
+
371
+ 'scsp(8)' The entry was added due to
372
+ SCSP.
373
+
374
+
375
+ When the entry is under creation using the
376
+ nhrpCacheRowStatus column, the only value that can be
377
+ specified by the administrator is 'administrativelyAdded'.
378
+ Attempting to set any other value will cause an
379
+ 'inconsistentValue' error.
380
+
381
+ The value cannot be modified once the entry is active.""",
382
+ }, # column
383
+ "nhrpCacheState" : {
384
+ "nodetype" : "column",
385
+ "moduleName" : "NHRP-MIB",
386
+ "oid" : "1.3.6.1.2.1.71.1.1.2.1.10",
387
+ "status" : "current",
388
+ "syntax" : {
389
+ "type" : {
390
+ "basetype" : "Enumeration",
391
+ "incomplete" : {
392
+ "nodetype" : "namednumber",
393
+ "number" : "1"
394
+ },
395
+ "ackReply" : {
396
+ "nodetype" : "namednumber",
397
+ "number" : "2"
398
+ },
399
+ "nakReply" : {
400
+ "nodetype" : "namednumber",
401
+ "number" : "3"
402
+ },
403
+ },
404
+ },
405
+ "access" : "readonly",
406
+ "description" :
407
+ """An indication of the state of this entry. The values are:
408
+
409
+ 'incomplete(1)' The client has sent a NHRP Resolution
410
+ Request but has not yet received the
411
+ NHRP Resolution Reply.
412
+ 'ackReply(2)' For a client or server, this is a
413
+ cached valid mapping.
414
+
415
+ 'nakReply(3)' For a client or server, this is a
416
+ cached NAK mapping.""",
417
+ }, # column
418
+ "nhrpCacheHoldingTimeValid" : {
419
+ "nodetype" : "column",
420
+ "moduleName" : "NHRP-MIB",
421
+ "oid" : "1.3.6.1.2.1.71.1.1.2.1.11",
422
+ "status" : "current",
423
+ "syntax" : {
424
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
425
+ },
426
+ "access" : "readonly",
427
+ "description" :
428
+ """True(1) is returned if the value of
429
+ 'nhrpCacheType' is not
430
+ 'administrativelyAdded'. Since the
431
+ value of 'nhrpCacheType' was not
432
+ configured by a user, the value of
433
+ 'nhrpCacheHoldingTime' is
434
+ considered valid. In other words, the value of
435
+ 'nhrpCacheHoldingTime' represents
436
+ the Holding Time for the cache Entry.
437
+
438
+ If 'nhrpCacheType has been configured by a
439
+ user, (i.e. the value of 'nhrpCacheType' is
440
+ 'administrativelyAdded') then false(2) will be returned.
441
+ This indicates that the value of
442
+ 'nhrpCacheHoldingTime' is undefined because this row
443
+ could possibly be backed up in nonvolatile storage.""",
444
+ }, # column
445
+ "nhrpCacheHoldingTime" : {
446
+ "nodetype" : "column",
447
+ "moduleName" : "NHRP-MIB",
448
+ "oid" : "1.3.6.1.2.1.71.1.1.2.1.12",
449
+ "status" : "current",
450
+ "syntax" : {
451
+ "type" : {
452
+ "basetype" : "Unsigned32",
453
+ "ranges" : [
454
+ {
455
+ "min" : "0",
456
+ "max" : "65535"
457
+ },
458
+ ],
459
+ "range" : {
460
+ "min" : "0",
461
+ "max" : "65535"
462
+ },
463
+ },
464
+ },
465
+ "access" : "readonly",
466
+ "units" : "seconds",
467
+ "description" :
468
+ """If the value of 'nhrpCacheHoldingTimeValid is
469
+ true(1) then this object represents the number
470
+ of seconds that the cache entry will remain in this
471
+ table. When this value reaches 0 (zero) the row should
472
+ be deleted.
473
+
474
+ If the value of 'nhrpCacheHoldingTimeValid is
475
+ false(2) then this object is undefined.""",
476
+ }, # column
477
+ "nhrpCacheNegotiatedMtu" : {
478
+ "nodetype" : "column",
479
+ "moduleName" : "NHRP-MIB",
480
+ "oid" : "1.3.6.1.2.1.71.1.1.2.1.13",
481
+ "status" : "current",
482
+ "syntax" : {
483
+ "type" : {
484
+ "basetype" : "Integer32",
485
+ "ranges" : [
486
+ {
487
+ "min" : "0",
488
+ "max" : "65535"
489
+ },
490
+ ],
491
+ "range" : {
492
+ "min" : "0",
493
+ "max" : "65535"
494
+ },
495
+ },
496
+ },
497
+ "access" : "readonly",
498
+ "description" :
499
+ """The maximum transmission unit (MTU) that was negotiated
500
+ or registered for this entity. In other words, this is the
501
+ actual MTU being used.""",
502
+ }, # column
503
+ "nhrpCachePreference" : {
504
+ "nodetype" : "column",
505
+ "moduleName" : "NHRP-MIB",
506
+ "oid" : "1.3.6.1.2.1.71.1.1.2.1.14",
507
+ "status" : "current",
508
+ "syntax" : {
509
+ "type" : {
510
+ "basetype" : "Integer32",
511
+ "ranges" : [
512
+ {
513
+ "min" : "0",
514
+ "max" : "255"
515
+ },
516
+ ],
517
+ "range" : {
518
+ "min" : "0",
519
+ "max" : "255"
520
+ },
521
+ },
522
+ },
523
+ "access" : "readwrite",
524
+ "description" :
525
+ """An object which reflects the Preference value of the
526
+ Client Information Entry (CIE).
527
+
528
+ Zero or more Client Information Entries (CIEs) may be
529
+ included in the NHRP Packet. One of the fields in the
530
+ CIE is the Preference. For a complete description of
531
+ the CIE, refer to Section 5.2.0.1 of RFC 2332 [17].""",
532
+ "reference" :
533
+ """Section 5.2.0.1 Mandatory Part Format, RFC 2332 [17].""",
534
+ }, # column
535
+ "nhrpCacheStorageType" : {
536
+ "nodetype" : "column",
537
+ "moduleName" : "NHRP-MIB",
538
+ "oid" : "1.3.6.1.2.1.71.1.1.2.1.15",
539
+ "status" : "current",
540
+ "syntax" : {
541
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
542
+ },
543
+ "access" : "readwrite",
544
+ "default" : "nonVolatile",
545
+ "description" :
546
+ """This value only has meaning when the 'nhrpCacheType'
547
+ has the value of 'administrativelyAdded'.
548
+
549
+ When the row is created due to being
550
+ 'administrativelyAdded', this object reflects whether
551
+ this row is kept in volatile storage
552
+ and lost upon reboot or if this row is backed up by
553
+ non-volatile or permanent storage.
554
+
555
+ If the value of 'nhrpCacheType' has a value which
556
+ is not 'administrativelyAdded, then the value of this
557
+ object is 'other(1)'.""",
558
+ }, # column
559
+ "nhrpCacheRowStatus" : {
560
+ "nodetype" : "column",
561
+ "moduleName" : "NHRP-MIB",
562
+ "oid" : "1.3.6.1.2.1.71.1.1.2.1.16",
563
+ "status" : "current",
564
+ "syntax" : {
565
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
566
+ },
567
+ "access" : "readwrite",
568
+ "description" :
569
+ """An object that allows entries in this table to be
570
+ created and deleted using the RowStatus convention.""",
571
+ }, # column
572
+ "nhrpPurgeReqTable" : {
573
+ "nodetype" : "table",
574
+ "moduleName" : "NHRP-MIB",
575
+ "oid" : "1.3.6.1.2.1.71.1.1.3",
576
+ "status" : "current",
577
+ "description" :
578
+ """This table will track Purge Request Information.""",
579
+ }, # table
580
+ "nhrpPurgeReqEntry" : {
581
+ "nodetype" : "row",
582
+ "moduleName" : "NHRP-MIB",
583
+ "oid" : "1.3.6.1.2.1.71.1.1.3.1",
584
+ "create" : "true",
585
+ "status" : "current",
586
+ "linkage" : [
587
+ "nhrpPurgeIndex",
588
+ ],
589
+ "description" :
590
+ """Information regarding a Purge Request.""",
591
+ }, # row
592
+ "nhrpPurgeIndex" : {
593
+ "nodetype" : "column",
594
+ "moduleName" : "NHRP-MIB",
595
+ "oid" : "1.3.6.1.2.1.71.1.1.3.1.1",
596
+ "status" : "current",
597
+ "syntax" : {
598
+ "type" : {
599
+ "basetype" : "Unsigned32",
600
+ "ranges" : [
601
+ {
602
+ "min" : "1",
603
+ "max" : "4294967295"
604
+ },
605
+ ],
606
+ "range" : {
607
+ "min" : "1",
608
+ "max" : "4294967295"
609
+ },
610
+ },
611
+ },
612
+ "access" : "noaccess",
613
+ "description" :
614
+ """An index for this entry that has local significance
615
+ within the scope of this table.""",
616
+ }, # column
617
+ "nhrpPurgeCacheIdentifier" : {
618
+ "nodetype" : "column",
619
+ "moduleName" : "NHRP-MIB",
620
+ "oid" : "1.3.6.1.2.1.71.1.1.3.1.2",
621
+ "status" : "current",
622
+ "syntax" : {
623
+ "type" : {
624
+ "basetype" : "Unsigned32",
625
+ "ranges" : [
626
+ {
627
+ "min" : "1",
628
+ "max" : "4294967295"
629
+ },
630
+ ],
631
+ "range" : {
632
+ "min" : "1",
633
+ "max" : "4294967295"
634
+ },
635
+ },
636
+ },
637
+ "access" : "readwrite",
638
+ "description" :
639
+ """This object identifies which row in
640
+ 'nhrpCacheTable' is being purged. This object
641
+ should have the same value as the 'nhrpCacheIndex'
642
+ in the 'nhrpCacheTable'.""",
643
+ }, # column
644
+ "nhrpPurgePrefixLength" : {
645
+ "nodetype" : "column",
646
+ "moduleName" : "NHRP-MIB",
647
+ "oid" : "1.3.6.1.2.1.71.1.1.3.1.3",
648
+ "status" : "current",
649
+ "syntax" : {
650
+ "type" : {
651
+ "basetype" : "Integer32",
652
+ "ranges" : [
653
+ {
654
+ "min" : "0",
655
+ "max" : "255"
656
+ },
657
+ ],
658
+ "range" : {
659
+ "min" : "0",
660
+ "max" : "255"
661
+ },
662
+ },
663
+ },
664
+ "access" : "readonly",
665
+ "description" :
666
+ """In the case of NHRP Purge Requests, this specifies the
667
+ equivalence class of addresses which match the first
668
+ 'Prefix Length' bit positions of the Client Protocol
669
+ Address specified in the Client Information Entry (CIE).""",
670
+ }, # column
671
+ "nhrpPurgeRequestID" : {
672
+ "nodetype" : "column",
673
+ "moduleName" : "NHRP-MIB",
674
+ "oid" : "1.3.6.1.2.1.71.1.1.3.1.4",
675
+ "status" : "current",
676
+ "syntax" : {
677
+ "type" : { "module" :"", "name" : "Unsigned32"},
678
+ },
679
+ "access" : "readwrite",
680
+ "description" :
681
+ """The Request ID used in the purge request.""",
682
+ }, # column
683
+ "nhrpPurgeReplyExpected" : {
684
+ "nodetype" : "column",
685
+ "moduleName" : "NHRP-MIB",
686
+ "oid" : "1.3.6.1.2.1.71.1.1.3.1.5",
687
+ "status" : "current",
688
+ "syntax" : {
689
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
690
+ },
691
+ "access" : "readwrite",
692
+ "description" :
693
+ """An indication of whether this Purge Request has the
694
+ 'N' Bit cleared (off).""",
695
+ }, # column
696
+ "nhrpPurgeRowStatus" : {
697
+ "nodetype" : "column",
698
+ "moduleName" : "NHRP-MIB",
699
+ "oid" : "1.3.6.1.2.1.71.1.1.3.1.6",
700
+ "status" : "current",
701
+ "syntax" : {
702
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
703
+ },
704
+ "access" : "readwrite",
705
+ "description" :
706
+ """An object that allows entries in this table to be
707
+ created and deleted using the RowStatus convention.""",
708
+ }, # column
709
+ "nhrpClientObjects" : {
710
+ "nodetype" : "node",
711
+ "moduleName" : "NHRP-MIB",
712
+ "oid" : "1.3.6.1.2.1.71.1.2",
713
+ }, # node
714
+ "nhrpClientTable" : {
715
+ "nodetype" : "table",
716
+ "moduleName" : "NHRP-MIB",
717
+ "oid" : "1.3.6.1.2.1.71.1.2.1",
718
+ "status" : "current",
719
+ "description" :
720
+ """Information about NHRP clients (NHCs) managed by this
721
+ agent.""",
722
+ }, # table
723
+ "nhrpClientEntry" : {
724
+ "nodetype" : "row",
725
+ "moduleName" : "NHRP-MIB",
726
+ "oid" : "1.3.6.1.2.1.71.1.2.1.1",
727
+ "create" : "true",
728
+ "status" : "current",
729
+ "linkage" : [
730
+ "nhrpClientIndex",
731
+ ],
732
+ "description" :
733
+ """Information about a single NHC.""",
734
+ }, # row
735
+ "nhrpClientIndex" : {
736
+ "nodetype" : "column",
737
+ "moduleName" : "NHRP-MIB",
738
+ "oid" : "1.3.6.1.2.1.71.1.2.1.1.1",
739
+ "status" : "current",
740
+ "syntax" : {
741
+ "type" : {
742
+ "basetype" : "Unsigned32",
743
+ "ranges" : [
744
+ {
745
+ "min" : "1",
746
+ "max" : "4294967295"
747
+ },
748
+ ],
749
+ "range" : {
750
+ "min" : "1",
751
+ "max" : "4294967295"
752
+ },
753
+ },
754
+ },
755
+ "access" : "noaccess",
756
+ "description" :
757
+ """An identifier for the NHRP client that is unique within
758
+ the scope of this agent. The 'nhrpNextIndex' value
759
+ should be consulted (read), prior to creating a row in
760
+ this table, and the value returned from reading
761
+ 'nhrpNextIndex' should be used as this object's value.""",
762
+ }, # column
763
+ "nhrpClientInternetworkAddrType" : {
764
+ "nodetype" : "column",
765
+ "moduleName" : "NHRP-MIB",
766
+ "oid" : "1.3.6.1.2.1.71.1.2.1.1.2",
767
+ "status" : "current",
768
+ "syntax" : {
769
+ "type" : { "module" :"IANA-ADDRESS-FAMILY-NUMBERS-MIB", "name" : "AddressFamilyNumbers"},
770
+ },
771
+ "access" : "readwrite",
772
+ "description" :
773
+ """The type of the internetwork layer address of this
774
+ client. This object indicates how the value of
775
+ nhrpClientInternetworkAddr is to be interpreted.""",
776
+ }, # column
777
+ "nhrpClientInternetworkAddr" : {
778
+ "nodetype" : "column",
779
+ "moduleName" : "NHRP-MIB",
780
+ "oid" : "1.3.6.1.2.1.71.1.2.1.1.3",
781
+ "status" : "current",
782
+ "syntax" : {
783
+ "type" : { "module" :"NHRP-MIB", "name" : "NhrpGenAddr"},
784
+ },
785
+ "access" : "readwrite",
786
+ "description" :
787
+ """The value of the internetwork layer address of this
788
+ client.""",
789
+ }, # column
790
+ "nhrpClientNbmaAddrType" : {
791
+ "nodetype" : "column",
792
+ "moduleName" : "NHRP-MIB",
793
+ "oid" : "1.3.6.1.2.1.71.1.2.1.1.4",
794
+ "status" : "current",
795
+ "syntax" : {
796
+ "type" : { "module" :"IANA-ADDRESS-FAMILY-NUMBERS-MIB", "name" : "AddressFamilyNumbers"},
797
+ },
798
+ "access" : "readwrite",
799
+ "description" :
800
+ """The type of the NBMA subnetwork address of this client.
801
+ This object indicates how the values of
802
+ nhrpClientNbmaAddr and nhrpClientNbmaSubaddr are to be
803
+ interpreted.""",
804
+ }, # column
805
+ "nhrpClientNbmaAddr" : {
806
+ "nodetype" : "column",
807
+ "moduleName" : "NHRP-MIB",
808
+ "oid" : "1.3.6.1.2.1.71.1.2.1.1.5",
809
+ "status" : "current",
810
+ "syntax" : {
811
+ "type" : { "module" :"NHRP-MIB", "name" : "NhrpGenAddr"},
812
+ },
813
+ "access" : "readwrite",
814
+ "description" :
815
+ """The NBMA subnetwork address of this client.""",
816
+ }, # column
817
+ "nhrpClientNbmaSubaddr" : {
818
+ "nodetype" : "column",
819
+ "moduleName" : "NHRP-MIB",
820
+ "oid" : "1.3.6.1.2.1.71.1.2.1.1.6",
821
+ "status" : "current",
822
+ "syntax" : {
823
+ "type" : { "module" :"NHRP-MIB", "name" : "NhrpGenAddr"},
824
+ },
825
+ "access" : "readwrite",
826
+ "description" :
827
+ """The NBMA subaddress of this client. For NBMA address
828
+ families without a subaddress concept, this will be a
829
+ zero-length OCTET STRING.""",
830
+ }, # column
831
+ "nhrpClientInitialRequestTimeout" : {
832
+ "nodetype" : "column",
833
+ "moduleName" : "NHRP-MIB",
834
+ "oid" : "1.3.6.1.2.1.71.1.2.1.1.7",
835
+ "status" : "current",
836
+ "syntax" : {
837
+ "type" : {
838
+ "basetype" : "Integer32",
839
+ "ranges" : [
840
+ {
841
+ "min" : "1",
842
+ "max" : "900"
843
+ },
844
+ ],
845
+ "range" : {
846
+ "min" : "1",
847
+ "max" : "900"
848
+ },
849
+ },
850
+ },
851
+ "access" : "readwrite",
852
+ "default" : "10",
853
+ "units" : "seconds",
854
+ "description" :
855
+ """The number of seconds that the client will wait before
856
+ timing out an NHRP initial request. This object only has
857
+ meaning for the initial timeout period.""",
858
+ }, # column
859
+ "nhrpClientRegistrationRequestRetries" : {
860
+ "nodetype" : "column",
861
+ "moduleName" : "NHRP-MIB",
862
+ "oid" : "1.3.6.1.2.1.71.1.2.1.1.8",
863
+ "status" : "current",
864
+ "syntax" : {
865
+ "type" : {
866
+ "basetype" : "Integer32",
867
+ "ranges" : [
868
+ {
869
+ "min" : "0",
870
+ "max" : "65535"
871
+ },
872
+ ],
873
+ "range" : {
874
+ "min" : "0",
875
+ "max" : "65535"
876
+ },
877
+ },
878
+ },
879
+ "access" : "readwrite",
880
+ "default" : "3",
881
+ "description" :
882
+ """The number of times the client will retry the
883
+ registration request before failure. A value of
884
+ 0 means don't retry. A value of 65535 means
885
+ retry forever.""",
886
+ }, # column
887
+ "nhrpClientResolutionRequestRetries" : {
888
+ "nodetype" : "column",
889
+ "moduleName" : "NHRP-MIB",
890
+ "oid" : "1.3.6.1.2.1.71.1.2.1.1.9",
891
+ "status" : "current",
892
+ "syntax" : {
893
+ "type" : {
894
+ "basetype" : "Integer32",
895
+ "ranges" : [
896
+ {
897
+ "min" : "0",
898
+ "max" : "65535"
899
+ },
900
+ ],
901
+ "range" : {
902
+ "min" : "0",
903
+ "max" : "65535"
904
+ },
905
+ },
906
+ },
907
+ "access" : "readwrite",
908
+ "default" : "3",
909
+ "description" :
910
+ """The number of times the client will retry the resolution
911
+ request before failure. A value of 0 means don't retry.
912
+ A value of 65535 means retry forever.""",
913
+ }, # column
914
+ "nhrpClientPurgeRequestRetries" : {
915
+ "nodetype" : "column",
916
+ "moduleName" : "NHRP-MIB",
917
+ "oid" : "1.3.6.1.2.1.71.1.2.1.1.10",
918
+ "status" : "current",
919
+ "syntax" : {
920
+ "type" : {
921
+ "basetype" : "Integer32",
922
+ "ranges" : [
923
+ {
924
+ "min" : "0",
925
+ "max" : "65535"
926
+ },
927
+ ],
928
+ "range" : {
929
+ "min" : "0",
930
+ "max" : "65535"
931
+ },
932
+ },
933
+ },
934
+ "access" : "readwrite",
935
+ "default" : "3",
936
+ "description" :
937
+ """The number of times the client will retry a purge request
938
+ before failure. A value of 0 means don't retry. A value of
939
+ 65535 means retry forever.""",
940
+ }, # column
941
+ "nhrpClientDefaultMtu" : {
942
+ "nodetype" : "column",
943
+ "moduleName" : "NHRP-MIB",
944
+ "oid" : "1.3.6.1.2.1.71.1.2.1.1.11",
945
+ "status" : "current",
946
+ "syntax" : {
947
+ "type" : {
948
+ "basetype" : "Unsigned32",
949
+ "ranges" : [
950
+ {
951
+ "min" : "0",
952
+ "max" : "65535"
953
+ },
954
+ ],
955
+ "range" : {
956
+ "min" : "0",
957
+ "max" : "65535"
958
+ },
959
+ },
960
+ },
961
+ "access" : "readwrite",
962
+ "default" : "9180",
963
+ "description" :
964
+ """The default maximum transmission unit (MTU) of the
965
+ LIS/LAG which this client should use. This object
966
+ will be initialized by the agent to the default MTU
967
+ of the LIS/LAG (which is 9180) unless a different MTU
968
+ value is specified during creation of this Client.""",
969
+ "reference" :
970
+ """RFC 2225 [25], Classical IP and ARP over ATM, Section 7,
971
+ DEFAULT VALUE FOR IP MTU OVER ATM AAL5.""",
972
+ }, # column
973
+ "nhrpClientHoldTime" : {
974
+ "nodetype" : "column",
975
+ "moduleName" : "NHRP-MIB",
976
+ "oid" : "1.3.6.1.2.1.71.1.2.1.1.12",
977
+ "status" : "current",
978
+ "syntax" : {
979
+ "type" : {
980
+ "basetype" : "Unsigned32",
981
+ "ranges" : [
982
+ {
983
+ "min" : "0",
984
+ "max" : "65535"
985
+ },
986
+ ],
987
+ "range" : {
988
+ "min" : "0",
989
+ "max" : "65535"
990
+ },
991
+ },
992
+ },
993
+ "access" : "readwrite",
994
+ "default" : "900",
995
+ "units" : "seconds",
996
+ "description" :
997
+ """The hold time the client will register.""",
998
+ }, # column
999
+ "nhrpClientRequestID" : {
1000
+ "nodetype" : "column",
1001
+ "moduleName" : "NHRP-MIB",
1002
+ "oid" : "1.3.6.1.2.1.71.1.2.1.1.13",
1003
+ "status" : "current",
1004
+ "syntax" : {
1005
+ "type" : { "module" :"", "name" : "Unsigned32"},
1006
+ },
1007
+ "access" : "readwrite",
1008
+ "description" :
1009
+ """The Request ID used to register this client with its
1010
+ server. According to Section 5.2.3 of the NHRP
1011
+ Specification, RFC 2332 [17], the Request ID must
1012
+ be kept in non-volatile storage, so that if an NHC
1013
+ crashes and re-initializes, it will use a different
1014
+ Request ID during the registration process
1015
+ when reregistering with the same NHS.""",
1016
+ "reference" :
1017
+ """Section 5.2.3 NHRP Registration Request, RFC 2332 [17].""",
1018
+ }, # column
1019
+ "nhrpClientStorageType" : {
1020
+ "nodetype" : "column",
1021
+ "moduleName" : "NHRP-MIB",
1022
+ "oid" : "1.3.6.1.2.1.71.1.2.1.1.14",
1023
+ "status" : "current",
1024
+ "syntax" : {
1025
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
1026
+ },
1027
+ "access" : "readwrite",
1028
+ "default" : "nonVolatile",
1029
+ "description" :
1030
+ """This object defines whether this row is kept in
1031
+ volatile storage and lost upon a Client crash or
1032
+ reboot situation, or if this row is backed up by
1033
+ nonvolatile or permanent storage.""",
1034
+ }, # column
1035
+ "nhrpClientRowStatus" : {
1036
+ "nodetype" : "column",
1037
+ "moduleName" : "NHRP-MIB",
1038
+ "oid" : "1.3.6.1.2.1.71.1.2.1.1.15",
1039
+ "status" : "current",
1040
+ "syntax" : {
1041
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1042
+ },
1043
+ "access" : "readwrite",
1044
+ "description" :
1045
+ """An object that allows entries in this table to be
1046
+ created and deleted using the RowStatus convention.""",
1047
+ }, # column
1048
+ "nhrpClientRegistrationTable" : {
1049
+ "nodetype" : "table",
1050
+ "moduleName" : "NHRP-MIB",
1051
+ "oid" : "1.3.6.1.2.1.71.1.2.2",
1052
+ "status" : "current",
1053
+ "description" :
1054
+ """A table of Registration Request Information that
1055
+ needs to be maintained by the NHCs (clients).""",
1056
+ "reference" :
1057
+ """Section 5.2.3 NHRP Registration Request, RFC 2332 [17].""",
1058
+ }, # table
1059
+ "nhrpClientRegistrationEntry" : {
1060
+ "nodetype" : "row",
1061
+ "moduleName" : "NHRP-MIB",
1062
+ "oid" : "1.3.6.1.2.1.71.1.2.2.1",
1063
+ "create" : "true",
1064
+ "status" : "current",
1065
+ "linkage" : [
1066
+ "nhrpClientIndex",
1067
+ "nhrpClientRegIndex",
1068
+ ],
1069
+ "description" :
1070
+ """An NHC needs to maintain registration request information
1071
+ between the NHC and the NHS. An entry in this table
1072
+ represents information for a single registration request.""",
1073
+ }, # row
1074
+ "nhrpClientRegIndex" : {
1075
+ "nodetype" : "column",
1076
+ "moduleName" : "NHRP-MIB",
1077
+ "oid" : "1.3.6.1.2.1.71.1.2.2.1.1",
1078
+ "status" : "current",
1079
+ "syntax" : {
1080
+ "type" : {
1081
+ "basetype" : "Unsigned32",
1082
+ "ranges" : [
1083
+ {
1084
+ "min" : "1",
1085
+ "max" : "4294967295"
1086
+ },
1087
+ ],
1088
+ "range" : {
1089
+ "min" : "1",
1090
+ "max" : "4294967295"
1091
+ },
1092
+ },
1093
+ },
1094
+ "access" : "noaccess",
1095
+ "description" :
1096
+ """An identifier for this entry such that it
1097
+ identifies a specific Registration Request from
1098
+ the NHC represented by the nhrpClientIndex.""",
1099
+ }, # column
1100
+ "nhrpClientRegUniqueness" : {
1101
+ "nodetype" : "column",
1102
+ "moduleName" : "NHRP-MIB",
1103
+ "oid" : "1.3.6.1.2.1.71.1.2.2.1.2",
1104
+ "status" : "current",
1105
+ "syntax" : {
1106
+ "type" : {
1107
+ "basetype" : "Enumeration",
1108
+ "requestUnique" : {
1109
+ "nodetype" : "namednumber",
1110
+ "number" : "1"
1111
+ },
1112
+ "requestNotUnique" : {
1113
+ "nodetype" : "namednumber",
1114
+ "number" : "2"
1115
+ },
1116
+ },
1117
+ },
1118
+ "access" : "readwrite",
1119
+ "description" :
1120
+ """The Uniqueness indicator for this Registration Request.
1121
+ If this object has the value of requestUnique(1), then
1122
+ the Uniqueness bit is set in the the NHRP Registration
1123
+ Request represented by this row. The value cannot
1124
+ be changed once the row is created.""",
1125
+ }, # column
1126
+ "nhrpClientRegState" : {
1127
+ "nodetype" : "column",
1128
+ "moduleName" : "NHRP-MIB",
1129
+ "oid" : "1.3.6.1.2.1.71.1.2.2.1.3",
1130
+ "status" : "current",
1131
+ "syntax" : {
1132
+ "type" : {
1133
+ "basetype" : "Enumeration",
1134
+ "other" : {
1135
+ "nodetype" : "namednumber",
1136
+ "number" : "1"
1137
+ },
1138
+ "registering" : {
1139
+ "nodetype" : "namednumber",
1140
+ "number" : "2"
1141
+ },
1142
+ "ackRegisterReply" : {
1143
+ "nodetype" : "namednumber",
1144
+ "number" : "3"
1145
+ },
1146
+ "nakRegisterReply" : {
1147
+ "nodetype" : "namednumber",
1148
+ "number" : "4"
1149
+ },
1150
+ },
1151
+ },
1152
+ "access" : "readonly",
1153
+ "description" :
1154
+ """The registration state of this client. The values are:
1155
+ 'other(1)' The state of the registration
1156
+ request is not one of
1157
+ 'registering',
1158
+ 'ackRegisterReply' or
1159
+ 'nakRegisterReply'.
1160
+
1161
+ 'registering(2)' A registration request has
1162
+ been issued and a registration
1163
+ reply is expected.
1164
+
1165
+ 'ackRegisterReply(3)' A positive registration reply
1166
+ has been received.
1167
+
1168
+ 'nakRegisterReply(4)' The client has received a
1169
+ negative registration
1170
+ reply (NAK).""",
1171
+ }, # column
1172
+ "nhrpClientRegRowStatus" : {
1173
+ "nodetype" : "column",
1174
+ "moduleName" : "NHRP-MIB",
1175
+ "oid" : "1.3.6.1.2.1.71.1.2.2.1.4",
1176
+ "status" : "current",
1177
+ "syntax" : {
1178
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1179
+ },
1180
+ "access" : "readwrite",
1181
+ "description" :
1182
+ """An object that allows entries in this table to be
1183
+ created and deleted using the RowStatus convention.""",
1184
+ }, # column
1185
+ "nhrpClientNhsTable" : {
1186
+ "nodetype" : "table",
1187
+ "moduleName" : "NHRP-MIB",
1188
+ "oid" : "1.3.6.1.2.1.71.1.2.3",
1189
+ "status" : "current",
1190
+ "description" :
1191
+ """A table of NHSes that are available for use by this NHC
1192
+ (client). By default, the agent will add an entry to this
1193
+ table that corresponds to the client's default router.""",
1194
+ }, # table
1195
+ "nhrpClientNhsEntry" : {
1196
+ "nodetype" : "row",
1197
+ "moduleName" : "NHRP-MIB",
1198
+ "oid" : "1.3.6.1.2.1.71.1.2.3.1",
1199
+ "create" : "true",
1200
+ "status" : "current",
1201
+ "linkage" : [
1202
+ "nhrpClientIndex",
1203
+ "nhrpClientNhsIndex",
1204
+ ],
1205
+ "description" :
1206
+ """An NHS that may be used by an NHC.""",
1207
+ }, # row
1208
+ "nhrpClientNhsIndex" : {
1209
+ "nodetype" : "column",
1210
+ "moduleName" : "NHRP-MIB",
1211
+ "oid" : "1.3.6.1.2.1.71.1.2.3.1.1",
1212
+ "status" : "current",
1213
+ "syntax" : {
1214
+ "type" : {
1215
+ "basetype" : "Unsigned32",
1216
+ "ranges" : [
1217
+ {
1218
+ "min" : "1",
1219
+ "max" : "4294967295"
1220
+ },
1221
+ ],
1222
+ "range" : {
1223
+ "min" : "1",
1224
+ "max" : "4294967295"
1225
+ },
1226
+ },
1227
+ },
1228
+ "access" : "noaccess",
1229
+ "description" :
1230
+ """An identifier for an NHS available to an NHC.""",
1231
+ }, # column
1232
+ "nhrpClientNhsInternetworkAddrType" : {
1233
+ "nodetype" : "column",
1234
+ "moduleName" : "NHRP-MIB",
1235
+ "oid" : "1.3.6.1.2.1.71.1.2.3.1.2",
1236
+ "status" : "current",
1237
+ "syntax" : {
1238
+ "type" : { "module" :"IANA-ADDRESS-FAMILY-NUMBERS-MIB", "name" : "AddressFamilyNumbers"},
1239
+ },
1240
+ "access" : "readwrite",
1241
+ "description" :
1242
+ """The type of the internetwork layer address of the
1243
+ NHRP server represented in this entry. This object
1244
+ indicates how the value of
1245
+ nhrpClientNhsInternetworkAddr is to be interpreted.""",
1246
+ }, # column
1247
+ "nhrpClientNhsInternetworkAddr" : {
1248
+ "nodetype" : "column",
1249
+ "moduleName" : "NHRP-MIB",
1250
+ "oid" : "1.3.6.1.2.1.71.1.2.3.1.3",
1251
+ "status" : "current",
1252
+ "syntax" : {
1253
+ "type" : { "module" :"NHRP-MIB", "name" : "NhrpGenAddr"},
1254
+ },
1255
+ "access" : "readwrite",
1256
+ "description" :
1257
+ """The value of the destination internetwork layer
1258
+ address of the NHRP server represented by this
1259
+ entry. If this value is not known, this will be
1260
+ a zero-length OCTET STRING.""",
1261
+ }, # column
1262
+ "nhrpClientNhsNbmaAddrType" : {
1263
+ "nodetype" : "column",
1264
+ "moduleName" : "NHRP-MIB",
1265
+ "oid" : "1.3.6.1.2.1.71.1.2.3.1.4",
1266
+ "status" : "current",
1267
+ "syntax" : {
1268
+ "type" : { "module" :"IANA-ADDRESS-FAMILY-NUMBERS-MIB", "name" : "AddressFamilyNumbers"},
1269
+ },
1270
+ "access" : "readwrite",
1271
+ "description" :
1272
+ """The type of the NBMA subnetwork address of the NHRP
1273
+ Server represented by this entry. This object indicates
1274
+ how the values of nhrpClientNhsNbmaAddr and
1275
+ nhrpClientNhsNbmaSubaddr are to be interpreted.""",
1276
+ }, # column
1277
+ "nhrpClientNhsNbmaAddr" : {
1278
+ "nodetype" : "column",
1279
+ "moduleName" : "NHRP-MIB",
1280
+ "oid" : "1.3.6.1.2.1.71.1.2.3.1.5",
1281
+ "status" : "current",
1282
+ "syntax" : {
1283
+ "type" : { "module" :"NHRP-MIB", "name" : "NhrpGenAddr"},
1284
+ },
1285
+ "access" : "readwrite",
1286
+ "description" :
1287
+ """The NBMA subnetwork address of the NHS. The type of
1288
+ the address is indicated by the corresponding value of
1289
+ nhrpClientNhsNbmaAddrType.""",
1290
+ }, # column
1291
+ "nhrpClientNhsNbmaSubaddr" : {
1292
+ "nodetype" : "column",
1293
+ "moduleName" : "NHRP-MIB",
1294
+ "oid" : "1.3.6.1.2.1.71.1.2.3.1.6",
1295
+ "status" : "current",
1296
+ "syntax" : {
1297
+ "type" : { "module" :"NHRP-MIB", "name" : "NhrpGenAddr"},
1298
+ },
1299
+ "access" : "readwrite",
1300
+ "description" :
1301
+ """The NBMA subaddress of the NHS. For NMBA address
1302
+ families that do not have the concept of subaddress,
1303
+ this will be a zero-length OCTET STRING.""",
1304
+ }, # column
1305
+ "nhrpClientNhsInUse" : {
1306
+ "nodetype" : "column",
1307
+ "moduleName" : "NHRP-MIB",
1308
+ "oid" : "1.3.6.1.2.1.71.1.2.3.1.7",
1309
+ "status" : "current",
1310
+ "syntax" : {
1311
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1312
+ },
1313
+ "access" : "readonly",
1314
+ "description" :
1315
+ """An indication of whether this NHS is in use by the NHC.""",
1316
+ }, # column
1317
+ "nhrpClientNhsRowStatus" : {
1318
+ "nodetype" : "column",
1319
+ "moduleName" : "NHRP-MIB",
1320
+ "oid" : "1.3.6.1.2.1.71.1.2.3.1.8",
1321
+ "status" : "current",
1322
+ "syntax" : {
1323
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1324
+ },
1325
+ "access" : "readwrite",
1326
+ "description" :
1327
+ """An object that allows entries in this table to be
1328
+ created and deleted using the RowStatus convention.""",
1329
+ }, # column
1330
+ "nhrpClientStatTable" : {
1331
+ "nodetype" : "table",
1332
+ "moduleName" : "NHRP-MIB",
1333
+ "oid" : "1.3.6.1.2.1.71.1.2.4",
1334
+ "status" : "current",
1335
+ "description" :
1336
+ """This table contains statistics collected by NHRP
1337
+ clients.""",
1338
+ }, # table
1339
+ "nhrpClientStatEntry" : {
1340
+ "nodetype" : "row",
1341
+ "moduleName" : "NHRP-MIB",
1342
+ "oid" : "1.3.6.1.2.1.71.1.2.4.1",
1343
+ "status" : "current",
1344
+ "linkage" : [
1345
+ "nhrpClientIndex",
1346
+ ],
1347
+ "description" :
1348
+ """Statistics collected by a NHRP client.""",
1349
+ }, # row
1350
+ "nhrpClientStatTxResolveReq" : {
1351
+ "nodetype" : "column",
1352
+ "moduleName" : "NHRP-MIB",
1353
+ "oid" : "1.3.6.1.2.1.71.1.2.4.1.1",
1354
+ "status" : "current",
1355
+ "syntax" : {
1356
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1357
+ },
1358
+ "access" : "readonly",
1359
+ "description" :
1360
+ """The number of NHRP Resolution Requests transmitted
1361
+ by this client.
1362
+
1363
+ Discontinuities in the value of this counter can occur
1364
+ at re-initialization of the management system, at
1365
+ NHRP Client re-initialization and at
1366
+ other times as indicated by the value of
1367
+ nhrpClientStatDiscontinuityTime.""",
1368
+ }, # column
1369
+ "nhrpClientStatRxResolveReplyAck" : {
1370
+ "nodetype" : "column",
1371
+ "moduleName" : "NHRP-MIB",
1372
+ "oid" : "1.3.6.1.2.1.71.1.2.4.1.2",
1373
+ "status" : "current",
1374
+ "syntax" : {
1375
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1376
+ },
1377
+ "access" : "readonly",
1378
+ "description" :
1379
+ """The number of positively acknowledged NHRP Resolution
1380
+ Replies received by this client.
1381
+
1382
+ Discontinuities in the value of this counter can occur
1383
+ at re-initialization of the management system, at
1384
+ NHRP Client re-initialization and at
1385
+ other times as indicated by the value of
1386
+ nhrpClientStatDiscontinuityTime.""",
1387
+ }, # column
1388
+ "nhrpClientStatRxResolveReplyNakProhibited" : {
1389
+ "nodetype" : "column",
1390
+ "moduleName" : "NHRP-MIB",
1391
+ "oid" : "1.3.6.1.2.1.71.1.2.4.1.3",
1392
+ "status" : "current",
1393
+ "syntax" : {
1394
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1395
+ },
1396
+ "access" : "readonly",
1397
+ "description" :
1398
+ """The number of NAKed NHRP Resolution Replies received
1399
+ by this client that contained the code indicating
1400
+ 'Administratively Prohibited'.
1401
+ Discontinuities in the value of this counter can occur
1402
+ at re-initialization of the management system, at
1403
+ NHRP Client re-initialization and at
1404
+ other times as indicated by the value of
1405
+ nhrpClientStatDiscontinuityTime.""",
1406
+ }, # column
1407
+ "nhrpClientStatRxResolveReplyNakInsufResources" : {
1408
+ "nodetype" : "column",
1409
+ "moduleName" : "NHRP-MIB",
1410
+ "oid" : "1.3.6.1.2.1.71.1.2.4.1.4",
1411
+ "status" : "current",
1412
+ "syntax" : {
1413
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1414
+ },
1415
+ "access" : "readonly",
1416
+ "description" :
1417
+ """The number of NAKed NHRP Resolution Replies received
1418
+ by this client that contained the code indicating
1419
+ 'Insufficient Resources'.
1420
+
1421
+ Discontinuities in the value of this counter can occur
1422
+ at re-initialization of the management system, at
1423
+ NHRP Client re-initialization and at
1424
+ other times as indicated by the value of
1425
+ nhrpClientStatDiscontinuityTime.""",
1426
+ }, # column
1427
+ "nhrpClientStatRxResolveReplyNakNoBinding" : {
1428
+ "nodetype" : "column",
1429
+ "moduleName" : "NHRP-MIB",
1430
+ "oid" : "1.3.6.1.2.1.71.1.2.4.1.5",
1431
+ "status" : "current",
1432
+ "syntax" : {
1433
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1434
+ },
1435
+ "access" : "readonly",
1436
+ "description" :
1437
+ """The number of NAKed NHRP Resolution Replies received
1438
+ by this client that contained the code indicating
1439
+ 'No Internetworking Layer Address to NBMA Address
1440
+ Binding Exists'.
1441
+
1442
+ Discontinuities in the value of this counter can occur
1443
+ at re-initialization of the management system, at
1444
+ NHRP Client re-initialization and at
1445
+ other times as indicated by the value of
1446
+ nhrpClientStatDiscontinuityTime.""",
1447
+ }, # column
1448
+ "nhrpClientStatRxResolveReplyNakNotUnique" : {
1449
+ "nodetype" : "column",
1450
+ "moduleName" : "NHRP-MIB",
1451
+ "oid" : "1.3.6.1.2.1.71.1.2.4.1.6",
1452
+ "status" : "current",
1453
+ "syntax" : {
1454
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1455
+ },
1456
+ "access" : "readonly",
1457
+ "description" :
1458
+ """The number of NAKed NHRP Resolution Replies received
1459
+ by this client that contained the code indicating
1460
+ 'Binding Exists But Is Not Unique'.
1461
+
1462
+ Discontinuities in the value of this counter can occur
1463
+ at re-initialization of the management system, at
1464
+ NHRP Client re-initialization and at
1465
+ other times as indicated by the value of
1466
+ nhrpClientStatDiscontinuityTime.""",
1467
+ }, # column
1468
+ "nhrpClientStatTxRegisterReq" : {
1469
+ "nodetype" : "column",
1470
+ "moduleName" : "NHRP-MIB",
1471
+ "oid" : "1.3.6.1.2.1.71.1.2.4.1.7",
1472
+ "status" : "current",
1473
+ "syntax" : {
1474
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1475
+ },
1476
+ "access" : "readonly",
1477
+ "description" :
1478
+ """The number of NHRP Registration Requests transmitted
1479
+ by this client.
1480
+
1481
+ Discontinuities in the value of this counter can occur
1482
+ at re-initialization of the management system, at
1483
+ NHRP Client re-initialization and at
1484
+ other times as indicated by the value of
1485
+ nhrpClientStatDiscontinuityTime.""",
1486
+ }, # column
1487
+ "nhrpClientStatRxRegisterAck" : {
1488
+ "nodetype" : "column",
1489
+ "moduleName" : "NHRP-MIB",
1490
+ "oid" : "1.3.6.1.2.1.71.1.2.4.1.8",
1491
+ "status" : "current",
1492
+ "syntax" : {
1493
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1494
+ },
1495
+ "access" : "readonly",
1496
+ "description" :
1497
+ """The number of positively acknowledged NHRP Registration
1498
+ Replies received by this client.
1499
+
1500
+ Discontinuities in the value of this counter can occur
1501
+ at re-initialization of the management system, at
1502
+ NHRP Client re-initialization and at
1503
+ other times as indicated by the value of
1504
+ nhrpClientStatDiscontinuityTime.""",
1505
+ }, # column
1506
+ "nhrpClientStatRxRegisterNakProhibited" : {
1507
+ "nodetype" : "column",
1508
+ "moduleName" : "NHRP-MIB",
1509
+ "oid" : "1.3.6.1.2.1.71.1.2.4.1.9",
1510
+ "status" : "current",
1511
+ "syntax" : {
1512
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1513
+ },
1514
+ "access" : "readonly",
1515
+ "description" :
1516
+ """The number of NAKed NHRP Registration Replies received
1517
+ by this client that contained the code indicating
1518
+ 'Administratively Prohibited'.
1519
+
1520
+ Discontinuities in the value of this counter can occur
1521
+ at re-initialization of the management system, at
1522
+ NHRP Client re-initialization and at
1523
+ other times as indicated by the value of
1524
+ nhrpClientStatDiscontinuityTime.""",
1525
+ }, # column
1526
+ "nhrpClientStatRxRegisterNakInsufResources" : {
1527
+ "nodetype" : "column",
1528
+ "moduleName" : "NHRP-MIB",
1529
+ "oid" : "1.3.6.1.2.1.71.1.2.4.1.10",
1530
+ "status" : "current",
1531
+ "syntax" : {
1532
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1533
+ },
1534
+ "access" : "readonly",
1535
+ "description" :
1536
+ """The number of NAKed NHRP Registration Replies received
1537
+ by this client that contained the code indicating
1538
+ 'Insufficient Resources'.
1539
+
1540
+ Discontinuities in the value of this counter can occur
1541
+ at re-initialization of the management system, at
1542
+ NHRP Client re-initialization and at
1543
+ other times as indicated by the value of
1544
+ nhrpClientStatDiscontinuityTime.""",
1545
+ }, # column
1546
+ "nhrpClientStatRxRegisterNakAlreadyReg" : {
1547
+ "nodetype" : "column",
1548
+ "moduleName" : "NHRP-MIB",
1549
+ "oid" : "1.3.6.1.2.1.71.1.2.4.1.11",
1550
+ "status" : "current",
1551
+ "syntax" : {
1552
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1553
+ },
1554
+ "access" : "readonly",
1555
+ "description" :
1556
+ """The number of NAKed NHRP Registration Replies received
1557
+ by this client that contained the code indicating 'Unique
1558
+ Internetworking Layer Address Already Registered'.
1559
+
1560
+ Discontinuities in the value of this counter can occur
1561
+ at re-initialization of the management system, at
1562
+ NHRP Client re-initialization and at
1563
+ other times as indicated by the value of
1564
+ nhrpClientStatDiscontinuityTime.""",
1565
+ }, # column
1566
+ "nhrpClientStatRxPurgeReq" : {
1567
+ "nodetype" : "column",
1568
+ "moduleName" : "NHRP-MIB",
1569
+ "oid" : "1.3.6.1.2.1.71.1.2.4.1.12",
1570
+ "status" : "current",
1571
+ "syntax" : {
1572
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1573
+ },
1574
+ "access" : "readonly",
1575
+ "description" :
1576
+ """The number of NHRP Purge Requests received by this
1577
+ client.
1578
+
1579
+ Discontinuities in the value of this counter can occur
1580
+ at re-initialization of the management system, at
1581
+ NHRP Client re-initialization and at
1582
+ other times as indicated by the value of
1583
+ nhrpClientStatDiscontinuityTime.""",
1584
+ }, # column
1585
+ "nhrpClientStatTxPurgeReq" : {
1586
+ "nodetype" : "column",
1587
+ "moduleName" : "NHRP-MIB",
1588
+ "oid" : "1.3.6.1.2.1.71.1.2.4.1.13",
1589
+ "status" : "current",
1590
+ "syntax" : {
1591
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1592
+ },
1593
+ "access" : "readonly",
1594
+ "description" :
1595
+ """The number of NHRP Purge Requests transmitted by this
1596
+ client.
1597
+
1598
+ Discontinuities in the value of this counter can occur
1599
+ at re-initialization of the management system, at
1600
+ NHRP Client re-initialization and at
1601
+ other times as indicated by the value of
1602
+ nhrpClientStatDiscontinuityTime.""",
1603
+ }, # column
1604
+ "nhrpClientStatRxPurgeReply" : {
1605
+ "nodetype" : "column",
1606
+ "moduleName" : "NHRP-MIB",
1607
+ "oid" : "1.3.6.1.2.1.71.1.2.4.1.14",
1608
+ "status" : "current",
1609
+ "syntax" : {
1610
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1611
+ },
1612
+ "access" : "readonly",
1613
+ "description" :
1614
+ """The number of NHRP Purge Replies received by this
1615
+ client.
1616
+
1617
+ Discontinuities in the value of this counter can occur
1618
+ at re-initialization of the management system, at
1619
+ NHRP Client re-initialization and at
1620
+ other times as indicated by the value of
1621
+ nhrpClientStatDiscontinuityTime.""",
1622
+ }, # column
1623
+ "nhrpClientStatTxPurgeReply" : {
1624
+ "nodetype" : "column",
1625
+ "moduleName" : "NHRP-MIB",
1626
+ "oid" : "1.3.6.1.2.1.71.1.2.4.1.15",
1627
+ "status" : "current",
1628
+ "syntax" : {
1629
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1630
+ },
1631
+ "access" : "readonly",
1632
+ "description" :
1633
+ """The number of NHRP Purge Replies transmitted by this
1634
+ client.
1635
+ Discontinuities in the value of this counter can occur
1636
+ at re-initialization of the management system, at
1637
+ NHRP Client re-initialization and at
1638
+ other times as indicated by the value of
1639
+ nhrpClientStatDiscontinuityTime.""",
1640
+ }, # column
1641
+ "nhrpClientStatTxErrorIndication" : {
1642
+ "nodetype" : "column",
1643
+ "moduleName" : "NHRP-MIB",
1644
+ "oid" : "1.3.6.1.2.1.71.1.2.4.1.16",
1645
+ "status" : "current",
1646
+ "syntax" : {
1647
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1648
+ },
1649
+ "access" : "readonly",
1650
+ "description" :
1651
+ """The number of NHRP Error Indication packets transmitted
1652
+ by this client.
1653
+
1654
+ Discontinuities in the value of this counter can occur
1655
+ at re-initialization of the management system, at
1656
+ NHRP Client re-initialization and at
1657
+ other times as indicated by the value of
1658
+ nhrpClientStatDiscontinuityTime.""",
1659
+ "reference" :
1660
+ """Section 5.2.7 NHRP Error Indication, RFC 2332 [17].""",
1661
+ }, # column
1662
+ "nhrpClientStatRxErrUnrecognizedExtension" : {
1663
+ "nodetype" : "column",
1664
+ "moduleName" : "NHRP-MIB",
1665
+ "oid" : "1.3.6.1.2.1.71.1.2.4.1.17",
1666
+ "status" : "current",
1667
+ "syntax" : {
1668
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1669
+ },
1670
+ "access" : "readonly",
1671
+ "description" :
1672
+ """The number of NHRP Error Indication packets received
1673
+ by this client with the error code
1674
+ 'Unrecognized Extension'.
1675
+
1676
+ Discontinuities in the value of this counter can occur
1677
+ at re-initialization of the management system, at
1678
+ NHRP Client re-initialization and at
1679
+ other times as indicated by the value of
1680
+ nhrpClientStatDiscontinuityTime.""",
1681
+ "reference" :
1682
+ """Section 5.2.7 NHRP Error Indication, RFC 2332 [17].""",
1683
+ }, # column
1684
+ "nhrpClientStatRxErrLoopDetected" : {
1685
+ "nodetype" : "column",
1686
+ "moduleName" : "NHRP-MIB",
1687
+ "oid" : "1.3.6.1.2.1.71.1.2.4.1.18",
1688
+ "status" : "current",
1689
+ "syntax" : {
1690
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1691
+ },
1692
+ "access" : "readonly",
1693
+ "description" :
1694
+ """The number of NHRP Error Indication packets received
1695
+ by this client with the error code 'NHRP Loop Detected'.
1696
+
1697
+ Discontinuities in the value of this counter can occur
1698
+ at re-initialization of the management system, at
1699
+ NHRP Client re-initialization and at
1700
+ other times as indicated by the value of
1701
+ nhrpClientStatDiscontinuityTime.""",
1702
+ "reference" :
1703
+ """Section 5.2.7 NHRP Error Indication, RFC 2332 [17].""",
1704
+ }, # column
1705
+ "nhrpClientStatRxErrProtoAddrUnreachable" : {
1706
+ "nodetype" : "column",
1707
+ "moduleName" : "NHRP-MIB",
1708
+ "oid" : "1.3.6.1.2.1.71.1.2.4.1.19",
1709
+ "status" : "current",
1710
+ "syntax" : {
1711
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1712
+ },
1713
+ "access" : "readonly",
1714
+ "description" :
1715
+ """The number of NHRP Error Indication packets received
1716
+ by this client with the error code 'Protocol Address
1717
+ Unreachable'.
1718
+
1719
+ Discontinuities in the value of this counter can occur
1720
+ at re-initialization of the management system, at
1721
+ NHRP Client re-initialization and at
1722
+ other times as indicated by the value of
1723
+ nhrpClientStatDiscontinuityTime.""",
1724
+ "reference" :
1725
+ """Section 5.2.7 NHRP Error Indication, RFC 2332 [17].""",
1726
+ }, # column
1727
+ "nhrpClientStatRxErrProtoError" : {
1728
+ "nodetype" : "column",
1729
+ "moduleName" : "NHRP-MIB",
1730
+ "oid" : "1.3.6.1.2.1.71.1.2.4.1.20",
1731
+ "status" : "current",
1732
+ "syntax" : {
1733
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1734
+ },
1735
+ "access" : "readonly",
1736
+ "description" :
1737
+ """The number of NHRP Error Indication packets received
1738
+ by this client with the error code 'Protocol Error'.
1739
+
1740
+ Discontinuities in the value of this counter can occur
1741
+ at re-initialization of the management system, at
1742
+ NHRP Client re-initialization and at
1743
+ other times as indicated by the value of
1744
+ nhrpClientStatDiscontinuityTime.""",
1745
+ "reference" :
1746
+ """Section 5.2.7 NHRP Error Indication, RFC 2332 [17].""",
1747
+ }, # column
1748
+ "nhrpClientStatRxErrSduSizeExceeded" : {
1749
+ "nodetype" : "column",
1750
+ "moduleName" : "NHRP-MIB",
1751
+ "oid" : "1.3.6.1.2.1.71.1.2.4.1.21",
1752
+ "status" : "current",
1753
+ "syntax" : {
1754
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1755
+ },
1756
+ "access" : "readonly",
1757
+ "description" :
1758
+ """The number of NHRP Error Indication packets received
1759
+ by this client with the error code 'NHRP SDU Size
1760
+
1761
+ Exceeded'.
1762
+
1763
+ Discontinuities in the value of this counter can occur
1764
+ at re-initialization of the management system, at
1765
+ NHRP Client re-initialization and at
1766
+ other times as indicated by the value of
1767
+ nhrpClientStatDiscontinuityTime.""",
1768
+ "reference" :
1769
+ """Section 5.2.7 NHRP Error Indication, RFC 2332 [17].""",
1770
+ }, # column
1771
+ "nhrpClientStatRxErrInvalidExtension" : {
1772
+ "nodetype" : "column",
1773
+ "moduleName" : "NHRP-MIB",
1774
+ "oid" : "1.3.6.1.2.1.71.1.2.4.1.22",
1775
+ "status" : "current",
1776
+ "syntax" : {
1777
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1778
+ },
1779
+ "access" : "readonly",
1780
+ "description" :
1781
+ """The number of NHRP Error Indication packets received
1782
+ by this client with the error code 'Invalid Extension'.
1783
+
1784
+ Discontinuities in the value of this counter can occur
1785
+ at re-initialization of the management system, at
1786
+ NHRP Client re-initialization and at
1787
+ other times as indicated by the value of
1788
+ nhrpClientStatDiscontinuityTime.""",
1789
+ "reference" :
1790
+ """Section 5.2.7 NHRP Error Indication, RFC 2332 [17].""",
1791
+ }, # column
1792
+ "nhrpClientStatRxErrAuthenticationFailure" : {
1793
+ "nodetype" : "column",
1794
+ "moduleName" : "NHRP-MIB",
1795
+ "oid" : "1.3.6.1.2.1.71.1.2.4.1.23",
1796
+ "status" : "current",
1797
+ "syntax" : {
1798
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1799
+ },
1800
+ "access" : "readonly",
1801
+ "description" :
1802
+ """The number of NHRP Error Indication packets received
1803
+ by this client with the error code 'Authentication
1804
+ Failure'.
1805
+ Discontinuities in the value of this counter can occur
1806
+ at re-initialization of the management system, at
1807
+ NHRP Client re-initialization and at
1808
+ other times as indicated by the value of
1809
+ nhrpClientStatDiscontinuityTime.""",
1810
+ "reference" :
1811
+ """Section 5.2.7 NHRP Error Indication, RFC 2332 [17].""",
1812
+ }, # column
1813
+ "nhrpClientStatRxErrHopCountExceeded" : {
1814
+ "nodetype" : "column",
1815
+ "moduleName" : "NHRP-MIB",
1816
+ "oid" : "1.3.6.1.2.1.71.1.2.4.1.24",
1817
+ "status" : "current",
1818
+ "syntax" : {
1819
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1820
+ },
1821
+ "access" : "readonly",
1822
+ "description" :
1823
+ """The number of NHRP Error Indication packets received
1824
+ by this client with the error code 'Hop Count Exceeded'.
1825
+
1826
+ Discontinuities in the value of this counter can occur
1827
+ at re-initialization of the management system, at
1828
+ NHRP Client re-initialization and at
1829
+ other times as indicated by the value of
1830
+ nhrpClientStatDiscontinuityTime.""",
1831
+ "reference" :
1832
+ """Section 5.2.7 NHRP Error Indication, RFC 2332 [17].""",
1833
+ }, # column
1834
+ "nhrpClientStatDiscontinuityTime" : {
1835
+ "nodetype" : "column",
1836
+ "moduleName" : "NHRP-MIB",
1837
+ "oid" : "1.3.6.1.2.1.71.1.2.4.1.25",
1838
+ "status" : "current",
1839
+ "syntax" : {
1840
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1841
+ },
1842
+ "access" : "readonly",
1843
+ "description" :
1844
+ """The value of sysUpTime on the most recent occasion at
1845
+ which any one or more of this Client's counters
1846
+ suffered a discontinuity. If no such discontinuities
1847
+ have occurred since the last re-initialization of the
1848
+ local management subsystem or the NHRP Client
1849
+ re-initialization associated with this entry, then
1850
+ this object contains a zero value.""",
1851
+ "reference" :
1852
+ """RFC 2233 [18].""",
1853
+ }, # column
1854
+ "nhrpServerObjects" : {
1855
+ "nodetype" : "node",
1856
+ "moduleName" : "NHRP-MIB",
1857
+ "oid" : "1.3.6.1.2.1.71.1.3",
1858
+ }, # node
1859
+ "nhrpServerTable" : {
1860
+ "nodetype" : "table",
1861
+ "moduleName" : "NHRP-MIB",
1862
+ "oid" : "1.3.6.1.2.1.71.1.3.1",
1863
+ "status" : "current",
1864
+ "description" :
1865
+ """This table contains information for a set of NHSes
1866
+ associated with this agent.""",
1867
+ }, # table
1868
+ "nhrpServerEntry" : {
1869
+ "nodetype" : "row",
1870
+ "moduleName" : "NHRP-MIB",
1871
+ "oid" : "1.3.6.1.2.1.71.1.3.1.1",
1872
+ "create" : "true",
1873
+ "status" : "current",
1874
+ "linkage" : [
1875
+ "nhrpServerIndex",
1876
+ ],
1877
+ "description" :
1878
+ """Information about a single NHS.""",
1879
+ }, # row
1880
+ "nhrpServerIndex" : {
1881
+ "nodetype" : "column",
1882
+ "moduleName" : "NHRP-MIB",
1883
+ "oid" : "1.3.6.1.2.1.71.1.3.1.1.1",
1884
+ "status" : "current",
1885
+ "syntax" : {
1886
+ "type" : {
1887
+ "basetype" : "Unsigned32",
1888
+ "ranges" : [
1889
+ {
1890
+ "min" : "1",
1891
+ "max" : "4294967295"
1892
+ },
1893
+ ],
1894
+ "range" : {
1895
+ "min" : "1",
1896
+ "max" : "4294967295"
1897
+ },
1898
+ },
1899
+ },
1900
+ "access" : "noaccess",
1901
+ "description" :
1902
+ """An identifier for the server that is unique within the
1903
+ scope of this agent.""",
1904
+ }, # column
1905
+ "nhrpServerInternetworkAddrType" : {
1906
+ "nodetype" : "column",
1907
+ "moduleName" : "NHRP-MIB",
1908
+ "oid" : "1.3.6.1.2.1.71.1.3.1.1.2",
1909
+ "status" : "current",
1910
+ "syntax" : {
1911
+ "type" : { "module" :"IANA-ADDRESS-FAMILY-NUMBERS-MIB", "name" : "AddressFamilyNumbers"},
1912
+ },
1913
+ "access" : "readwrite",
1914
+ "description" :
1915
+ """The type of the internetwork layer address of this
1916
+ server. This object is used to interpret the value of
1917
+ nhrpServerInternetworkAddr.""",
1918
+ }, # column
1919
+ "nhrpServerInternetworkAddr" : {
1920
+ "nodetype" : "column",
1921
+ "moduleName" : "NHRP-MIB",
1922
+ "oid" : "1.3.6.1.2.1.71.1.3.1.1.3",
1923
+ "status" : "current",
1924
+ "syntax" : {
1925
+ "type" : { "module" :"NHRP-MIB", "name" : "NhrpGenAddr"},
1926
+ },
1927
+ "access" : "readwrite",
1928
+ "description" :
1929
+ """The value of the internetwork layer address of this
1930
+ server.""",
1931
+ }, # column
1932
+ "nhrpServerNbmaAddrType" : {
1933
+ "nodetype" : "column",
1934
+ "moduleName" : "NHRP-MIB",
1935
+ "oid" : "1.3.6.1.2.1.71.1.3.1.1.4",
1936
+ "status" : "current",
1937
+ "syntax" : {
1938
+ "type" : { "module" :"IANA-ADDRESS-FAMILY-NUMBERS-MIB", "name" : "AddressFamilyNumbers"},
1939
+ },
1940
+ "access" : "readwrite",
1941
+ "description" :
1942
+ """The type of the NBMA subnetwork address of this server.
1943
+ This object is used to interpret the value of
1944
+ nhrpServerNbmaAddr.""",
1945
+ }, # column
1946
+ "nhrpServerNbmaAddr" : {
1947
+ "nodetype" : "column",
1948
+ "moduleName" : "NHRP-MIB",
1949
+ "oid" : "1.3.6.1.2.1.71.1.3.1.1.5",
1950
+ "status" : "current",
1951
+ "syntax" : {
1952
+ "type" : { "module" :"NHRP-MIB", "name" : "NhrpGenAddr"},
1953
+ },
1954
+ "access" : "readwrite",
1955
+ "description" :
1956
+ """The value of the NBMA subnetwork address of this
1957
+ server.""",
1958
+ }, # column
1959
+ "nhrpServerNbmaSubaddr" : {
1960
+ "nodetype" : "column",
1961
+ "moduleName" : "NHRP-MIB",
1962
+ "oid" : "1.3.6.1.2.1.71.1.3.1.1.6",
1963
+ "status" : "current",
1964
+ "syntax" : {
1965
+ "type" : { "module" :"NHRP-MIB", "name" : "NhrpGenAddr"},
1966
+ },
1967
+ "access" : "readwrite",
1968
+ "description" :
1969
+ """The value of the NBMA subaddress of this server.
1970
+ For NBMA address families without a subaddress
1971
+ concept, this will be a zero-length OCTET STRING.""",
1972
+ }, # column
1973
+ "nhrpServerStorageType" : {
1974
+ "nodetype" : "column",
1975
+ "moduleName" : "NHRP-MIB",
1976
+ "oid" : "1.3.6.1.2.1.71.1.3.1.1.7",
1977
+ "status" : "current",
1978
+ "syntax" : {
1979
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
1980
+ },
1981
+ "access" : "readwrite",
1982
+ "default" : "nonVolatile",
1983
+ "description" :
1984
+ """This object defines whether this row is kept in
1985
+ volatile storage and lost upon a Server crash or
1986
+ reboot situation, or if this row is backed up by
1987
+ nonvolatile or permanent storage.""",
1988
+ }, # column
1989
+ "nhrpServerRowStatus" : {
1990
+ "nodetype" : "column",
1991
+ "moduleName" : "NHRP-MIB",
1992
+ "oid" : "1.3.6.1.2.1.71.1.3.1.1.8",
1993
+ "status" : "current",
1994
+ "syntax" : {
1995
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1996
+ },
1997
+ "access" : "readwrite",
1998
+ "description" :
1999
+ """An object that allows entries in this table to be
2000
+ created and deleted using the RowStatus convention.""",
2001
+ }, # column
2002
+ "nhrpServerCacheTable" : {
2003
+ "nodetype" : "table",
2004
+ "moduleName" : "NHRP-MIB",
2005
+ "oid" : "1.3.6.1.2.1.71.1.3.2",
2006
+ "status" : "current",
2007
+ "description" :
2008
+ """This table extends the nhrpCacheTable for
2009
+ NHSes. If the nhrpCacheTable has a row added due to
2010
+ an NHS or based on information regarding an NHS then
2011
+ a row is also added in this table.
2012
+
2013
+ The rows in this table will be created when rows in
2014
+ the nhrpCacheTable are created. However, there may
2015
+ be rows created in the nhrpCacheTable which do not
2016
+ have corresponding rows in this table. For example,
2017
+ if the nhrpCacheTable has a row added due to a Next
2018
+ Hop Client which is co-resident on the same device
2019
+ as the NHS, a row will not be added to this table.""",
2020
+ }, # table
2021
+ "nhrpServerCacheEntry" : {
2022
+ "nodetype" : "row",
2023
+ "moduleName" : "NHRP-MIB",
2024
+ "oid" : "1.3.6.1.2.1.71.1.3.2.1",
2025
+ "create" : "true",
2026
+ "status" : "current",
2027
+ "linkage" : [
2028
+ "nhrpCacheInternetworkAddrType",
2029
+ "nhrpCacheInternetworkAddr",
2030
+ "ifIndex",
2031
+ "nhrpCacheIndex",
2032
+ ],
2033
+ "description" :
2034
+ """Additional information kept by a NHS for a relevant
2035
+ Next Hop Resolution Cache entry.""",
2036
+ }, # row
2037
+ "nhrpServerCacheAuthoritative" : {
2038
+ "nodetype" : "column",
2039
+ "moduleName" : "NHRP-MIB",
2040
+ "oid" : "1.3.6.1.2.1.71.1.3.2.1.1",
2041
+ "status" : "current",
2042
+ "syntax" : {
2043
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2044
+ },
2045
+ "access" : "readonly",
2046
+ "description" :
2047
+ """An indication of whether this cache entry is
2048
+ authoritative, which means the entry was added because
2049
+ of a direct registration request with this server or
2050
+ by Server Cache Synchronization Protocol (SCSP) from
2051
+ an authoritative source.""",
2052
+ }, # column
2053
+ "nhrpServerCacheUniqueness" : {
2054
+ "nodetype" : "column",
2055
+ "moduleName" : "NHRP-MIB",
2056
+ "oid" : "1.3.6.1.2.1.71.1.3.2.1.2",
2057
+ "status" : "current",
2058
+ "syntax" : {
2059
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2060
+ },
2061
+ "access" : "readwrite",
2062
+ "description" :
2063
+ """The Uniqueness indicator for this cache
2064
+ entry used in duplicate address detection. This value
2065
+ cannot be changed after the entry is active.""",
2066
+ }, # column
2067
+ "nhrpServerNhcTable" : {
2068
+ "nodetype" : "table",
2069
+ "moduleName" : "NHRP-MIB",
2070
+ "oid" : "1.3.6.1.2.1.71.1.3.3",
2071
+ "status" : "current",
2072
+ "description" :
2073
+ """A table of NHCs that are available for use by this NHS
2074
+ (Server).""",
2075
+ "reference" :
2076
+ """Section 4 Configuration (Next Hop Servers),
2077
+ RFC 2332 [17].""",
2078
+ }, # table
2079
+ "nhrpServerNhcEntry" : {
2080
+ "nodetype" : "row",
2081
+ "moduleName" : "NHRP-MIB",
2082
+ "oid" : "1.3.6.1.2.1.71.1.3.3.1",
2083
+ "create" : "true",
2084
+ "status" : "current",
2085
+ "linkage" : [
2086
+ "nhrpServerIndex",
2087
+ "nhrpServerNhcIndex",
2088
+ ],
2089
+ "description" :
2090
+ """An NHC that may be used by an NHS.""",
2091
+ }, # row
2092
+ "nhrpServerNhcIndex" : {
2093
+ "nodetype" : "column",
2094
+ "moduleName" : "NHRP-MIB",
2095
+ "oid" : "1.3.6.1.2.1.71.1.3.3.1.1",
2096
+ "status" : "current",
2097
+ "syntax" : {
2098
+ "type" : {
2099
+ "basetype" : "Unsigned32",
2100
+ "ranges" : [
2101
+ {
2102
+ "min" : "1",
2103
+ "max" : "4294967295"
2104
+ },
2105
+ ],
2106
+ "range" : {
2107
+ "min" : "1",
2108
+ "max" : "4294967295"
2109
+ },
2110
+ },
2111
+ },
2112
+ "access" : "noaccess",
2113
+ "description" :
2114
+ """An identifier for an NHC available to an NHS.""",
2115
+ }, # column
2116
+ "nhrpServerNhcPrefixLength" : {
2117
+ "nodetype" : "column",
2118
+ "moduleName" : "NHRP-MIB",
2119
+ "oid" : "1.3.6.1.2.1.71.1.3.3.1.2",
2120
+ "status" : "current",
2121
+ "syntax" : {
2122
+ "type" : {
2123
+ "basetype" : "Integer32",
2124
+ "ranges" : [
2125
+ {
2126
+ "min" : "0",
2127
+ "max" : "255"
2128
+ },
2129
+ ],
2130
+ "range" : {
2131
+ "min" : "0",
2132
+ "max" : "255"
2133
+ },
2134
+ },
2135
+ },
2136
+ "access" : "readwrite",
2137
+ "description" :
2138
+ """The number of bits that define the internetwork
2139
+ layer prefix associated with the
2140
+ nhrpServerNhcInternetworkAddr.""",
2141
+ }, # column
2142
+ "nhrpServerNhcInternetworkAddrType" : {
2143
+ "nodetype" : "column",
2144
+ "moduleName" : "NHRP-MIB",
2145
+ "oid" : "1.3.6.1.2.1.71.1.3.3.1.3",
2146
+ "status" : "current",
2147
+ "syntax" : {
2148
+ "type" : { "module" :"IANA-ADDRESS-FAMILY-NUMBERS-MIB", "name" : "AddressFamilyNumbers"},
2149
+ },
2150
+ "access" : "readwrite",
2151
+ "description" :
2152
+ """The type of the internetwork layer address of the
2153
+ NHRP Client represented in this entry. This object
2154
+ indicates how the value of nhrpServerNhcInternetworkAddr
2155
+ is to be interpreted.""",
2156
+ }, # column
2157
+ "nhrpServerNhcInternetworkAddr" : {
2158
+ "nodetype" : "column",
2159
+ "moduleName" : "NHRP-MIB",
2160
+ "oid" : "1.3.6.1.2.1.71.1.3.3.1.4",
2161
+ "status" : "current",
2162
+ "syntax" : {
2163
+ "type" : { "module" :"NHRP-MIB", "name" : "NhrpGenAddr"},
2164
+ },
2165
+ "access" : "readwrite",
2166
+ "description" :
2167
+ """The value of the internetwork layer address of
2168
+ the NHRP Client represented by this entry. If this
2169
+ value is not known, this will be a zero-length
2170
+ OCTET STRING.""",
2171
+ }, # column
2172
+ "nhrpServerNhcNbmaAddrType" : {
2173
+ "nodetype" : "column",
2174
+ "moduleName" : "NHRP-MIB",
2175
+ "oid" : "1.3.6.1.2.1.71.1.3.3.1.5",
2176
+ "status" : "current",
2177
+ "syntax" : {
2178
+ "type" : { "module" :"IANA-ADDRESS-FAMILY-NUMBERS-MIB", "name" : "AddressFamilyNumbers"},
2179
+ },
2180
+ "access" : "readwrite",
2181
+ "description" :
2182
+ """The type of the NBMA subnetwork address of the NHRP
2183
+ Client represented by this entry. This object indicates
2184
+ how the values of nhrpServerNhcNbmaAddr and
2185
+ nhrpServerNhcNbmaSubaddr are to be interpreted.""",
2186
+ }, # column
2187
+ "nhrpServerNhcNbmaAddr" : {
2188
+ "nodetype" : "column",
2189
+ "moduleName" : "NHRP-MIB",
2190
+ "oid" : "1.3.6.1.2.1.71.1.3.3.1.6",
2191
+ "status" : "current",
2192
+ "syntax" : {
2193
+ "type" : { "module" :"NHRP-MIB", "name" : "NhrpGenAddr"},
2194
+ },
2195
+ "access" : "readwrite",
2196
+ "description" :
2197
+ """The NBMA subnetwork address of the NHC. The type of the
2198
+ address is indicated by the corresponding value of
2199
+ nhrpServerNbmaAddrType.""",
2200
+ }, # column
2201
+ "nhrpServerNhcNbmaSubaddr" : {
2202
+ "nodetype" : "column",
2203
+ "moduleName" : "NHRP-MIB",
2204
+ "oid" : "1.3.6.1.2.1.71.1.3.3.1.7",
2205
+ "status" : "current",
2206
+ "syntax" : {
2207
+ "type" : { "module" :"NHRP-MIB", "name" : "NhrpGenAddr"},
2208
+ },
2209
+ "access" : "readwrite",
2210
+ "description" :
2211
+ """The NBMA subaddress of the NHC. For NMBA address familes
2212
+ that do not have the concept of subaddress, this will
2213
+ be a zero-length OCTET STRING.""",
2214
+ }, # column
2215
+ "nhrpServerNhcInUse" : {
2216
+ "nodetype" : "column",
2217
+ "moduleName" : "NHRP-MIB",
2218
+ "oid" : "1.3.6.1.2.1.71.1.3.3.1.8",
2219
+ "status" : "current",
2220
+ "syntax" : {
2221
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2222
+ },
2223
+ "access" : "readonly",
2224
+ "description" :
2225
+ """An indication of whether this NHC is in use by the NHS.""",
2226
+ }, # column
2227
+ "nhrpServerNhcRowStatus" : {
2228
+ "nodetype" : "column",
2229
+ "moduleName" : "NHRP-MIB",
2230
+ "oid" : "1.3.6.1.2.1.71.1.3.3.1.9",
2231
+ "status" : "current",
2232
+ "syntax" : {
2233
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
2234
+ },
2235
+ "access" : "readwrite",
2236
+ "description" :
2237
+ """An object that allows entries in this table to be
2238
+ created and deleted using the RowStatus convention.""",
2239
+ }, # column
2240
+ "nhrpServerStatTable" : {
2241
+ "nodetype" : "table",
2242
+ "moduleName" : "NHRP-MIB",
2243
+ "oid" : "1.3.6.1.2.1.71.1.3.4",
2244
+ "status" : "current",
2245
+ "description" :
2246
+ """Statistics collected by Next Hop Servers.""",
2247
+ }, # table
2248
+ "nhrpServerStatEntry" : {
2249
+ "nodetype" : "row",
2250
+ "moduleName" : "NHRP-MIB",
2251
+ "oid" : "1.3.6.1.2.1.71.1.3.4.1",
2252
+ "status" : "current",
2253
+ "linkage" : [
2254
+ "nhrpServerIndex",
2255
+ ],
2256
+ "description" :
2257
+ """Statistics for a particular NHS. The statistics are
2258
+ broken into received (Rx), transmitted (Tx)
2259
+ and forwarded (Fw). Forwarded (Fw) would be done
2260
+ by a transit NHS.""",
2261
+ }, # row
2262
+ "nhrpServerStatRxResolveReq" : {
2263
+ "nodetype" : "column",
2264
+ "moduleName" : "NHRP-MIB",
2265
+ "oid" : "1.3.6.1.2.1.71.1.3.4.1.1",
2266
+ "status" : "current",
2267
+ "syntax" : {
2268
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2269
+ },
2270
+ "access" : "readonly",
2271
+ "description" :
2272
+ """The number of NHRP Resolution Requests received by this
2273
+ server.
2274
+
2275
+ Discontinuities in the value of this counter can occur
2276
+ at re-initialization of the management system, at
2277
+ NHRP Server re-initialization and at
2278
+ other times as indicated by the value of
2279
+ nhrpServerStatDiscontinuityTime.""",
2280
+ }, # column
2281
+ "nhrpServerStatTxResolveReplyAck" : {
2282
+ "nodetype" : "column",
2283
+ "moduleName" : "NHRP-MIB",
2284
+ "oid" : "1.3.6.1.2.1.71.1.3.4.1.2",
2285
+ "status" : "current",
2286
+ "syntax" : {
2287
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2288
+ },
2289
+ "access" : "readonly",
2290
+ "description" :
2291
+ """The number of positively acknowledged NHRP
2292
+ Resolution Replies transmitted by this server.
2293
+
2294
+ Discontinuities in the value of this counter can occur
2295
+ at re-initialization of the management system, at
2296
+ NHRP Server re-initialization and at
2297
+ other times as indicated by the value of
2298
+ nhrpServerStatDiscontinuityTime.""",
2299
+ }, # column
2300
+ "nhrpServerStatTxResolveReplyNakProhibited" : {
2301
+ "nodetype" : "column",
2302
+ "moduleName" : "NHRP-MIB",
2303
+ "oid" : "1.3.6.1.2.1.71.1.3.4.1.3",
2304
+ "status" : "current",
2305
+ "syntax" : {
2306
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2307
+ },
2308
+ "access" : "readonly",
2309
+ "description" :
2310
+ """The number of NAKed NHRP Resolution Replies
2311
+ transmitted by this server with the code
2312
+ 'Administratively Prohibited'.
2313
+
2314
+ Discontinuities in the value of this counter can occur
2315
+ at re-initialization of the management system, at
2316
+ NHRP Server re-initialization and at
2317
+ other times as indicated by the value of
2318
+ nhrpServerStatDiscontinuityTime.""",
2319
+ }, # column
2320
+ "nhrpServerStatTxResolveReplyNakInsufResources" : {
2321
+ "nodetype" : "column",
2322
+ "moduleName" : "NHRP-MIB",
2323
+ "oid" : "1.3.6.1.2.1.71.1.3.4.1.4",
2324
+ "status" : "current",
2325
+ "syntax" : {
2326
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2327
+ },
2328
+ "access" : "readonly",
2329
+ "description" :
2330
+ """The number of NAKed NHRP Resolution Replies
2331
+ transmitted by this server with the code
2332
+ 'Insufficient Resources'.
2333
+
2334
+ Discontinuities in the value of this counter can occur
2335
+ at re-initialization of the management system, at
2336
+ NHRP Server re-initialization and at
2337
+ other times as indicated by the value of
2338
+ nhrpServerStatDiscontinuityTime.""",
2339
+ }, # column
2340
+ "nhrpServerStatTxResolveReplyNakNoBinding" : {
2341
+ "nodetype" : "column",
2342
+ "moduleName" : "NHRP-MIB",
2343
+ "oid" : "1.3.6.1.2.1.71.1.3.4.1.5",
2344
+ "status" : "current",
2345
+ "syntax" : {
2346
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2347
+ },
2348
+ "access" : "readonly",
2349
+ "description" :
2350
+ """The number of NAKed NHRP Resolution Replies
2351
+ transmitted by this server with the code
2352
+ 'No Internetworking Layer Address to NBMA
2353
+ Address Binding Exists'.
2354
+
2355
+ Discontinuities in the value of this counter can occur
2356
+ at re-initialization of the management system, at
2357
+ NHRP Server re-initialization and at
2358
+ other times as indicated by the value of
2359
+ nhrpServerStatDiscontinuityTime.""",
2360
+ }, # column
2361
+ "nhrpServerStatTxResolveReplyNakNotUnique" : {
2362
+ "nodetype" : "column",
2363
+ "moduleName" : "NHRP-MIB",
2364
+ "oid" : "1.3.6.1.2.1.71.1.3.4.1.6",
2365
+ "status" : "current",
2366
+ "syntax" : {
2367
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2368
+ },
2369
+ "access" : "readonly",
2370
+ "description" :
2371
+ """The number of NAKed NHRP Resolution Replies
2372
+ transmitted by this server with the code
2373
+ 'Binding Exists But Is Not Unique'.
2374
+
2375
+ Discontinuities in the value of this counter can occur
2376
+ at re-initialization of the management system, at
2377
+ NHRP Server re-initialization and at
2378
+ other times as indicated by the value of
2379
+ nhrpServerStatDiscontinuityTime.""",
2380
+ }, # column
2381
+ "nhrpServerStatRxRegisterReq" : {
2382
+ "nodetype" : "column",
2383
+ "moduleName" : "NHRP-MIB",
2384
+ "oid" : "1.3.6.1.2.1.71.1.3.4.1.7",
2385
+ "status" : "current",
2386
+ "syntax" : {
2387
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2388
+ },
2389
+ "access" : "readonly",
2390
+ "description" :
2391
+ """The number of NHRP Registration Requests received
2392
+ by this server.
2393
+
2394
+ Discontinuities in the value of this counter can occur
2395
+ at re-initialization of the management system, at
2396
+ NHRP Server re-initialization and at
2397
+ other times as indicated by the value of
2398
+ nhrpServerStatDiscontinuityTime.""",
2399
+ }, # column
2400
+ "nhrpServerStatTxRegisterAck" : {
2401
+ "nodetype" : "column",
2402
+ "moduleName" : "NHRP-MIB",
2403
+ "oid" : "1.3.6.1.2.1.71.1.3.4.1.8",
2404
+ "status" : "current",
2405
+ "syntax" : {
2406
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2407
+ },
2408
+ "access" : "readonly",
2409
+ "description" :
2410
+ """The number of positively acknowledged NHRP Registration
2411
+ Replies transmitted by this server.
2412
+
2413
+ Discontinuities in the value of this counter can occur
2414
+ at re-initialization of the management system, at
2415
+ NHRP Server re-initialization and at
2416
+ other times as indicated by the value of
2417
+ nhrpServerStatDiscontinuityTime.""",
2418
+ }, # column
2419
+ "nhrpServerStatTxRegisterNakProhibited" : {
2420
+ "nodetype" : "column",
2421
+ "moduleName" : "NHRP-MIB",
2422
+ "oid" : "1.3.6.1.2.1.71.1.3.4.1.9",
2423
+ "status" : "current",
2424
+ "syntax" : {
2425
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2426
+ },
2427
+ "access" : "readonly",
2428
+ "description" :
2429
+ """The number of NAKed NHRP Registration Replies
2430
+ transmitted by this server with the code
2431
+ 'Administratively Prohibited'.
2432
+
2433
+ Discontinuities in the value of this counter can occur
2434
+ at re-initialization of the management system, at
2435
+ NHRP Server re-initialization and at
2436
+ other times as indicated by the value of
2437
+ nhrpServerStatDiscontinuityTime.""",
2438
+ }, # column
2439
+ "nhrpServerStatTxRegisterNakInsufResources" : {
2440
+ "nodetype" : "column",
2441
+ "moduleName" : "NHRP-MIB",
2442
+ "oid" : "1.3.6.1.2.1.71.1.3.4.1.10",
2443
+ "status" : "current",
2444
+ "syntax" : {
2445
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2446
+ },
2447
+ "access" : "readonly",
2448
+ "description" :
2449
+ """The number of NAKed NHRP Registration Replies
2450
+ transmitted by this server with the code
2451
+ 'Insufficient Resources'.
2452
+
2453
+ Discontinuities in the value of this counter can occur
2454
+ at re-initialization of the management system, at
2455
+ NHRP Server re-initialization and at
2456
+ other times as indicated by the value of
2457
+ nhrpServerStatDiscontinuityTime.""",
2458
+ }, # column
2459
+ "nhrpServerStatTxRegisterNakAlreadyReg" : {
2460
+ "nodetype" : "column",
2461
+ "moduleName" : "NHRP-MIB",
2462
+ "oid" : "1.3.6.1.2.1.71.1.3.4.1.11",
2463
+ "status" : "current",
2464
+ "syntax" : {
2465
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2466
+ },
2467
+ "access" : "readonly",
2468
+ "description" :
2469
+ """The number of NAKed NHRP Registration Replies
2470
+ transmitted by this server with the code
2471
+ 'Unique Internetworking Layer Address Already
2472
+ Registered'.
2473
+
2474
+ Discontinuities in the value of this counter can occur
2475
+ at re-initialization of the management system, at
2476
+ NHRP Server re-initialization and at
2477
+ other times as indicated by the value of
2478
+ nhrpServerStatDiscontinuityTime.""",
2479
+ }, # column
2480
+ "nhrpServerStatRxPurgeReq" : {
2481
+ "nodetype" : "column",
2482
+ "moduleName" : "NHRP-MIB",
2483
+ "oid" : "1.3.6.1.2.1.71.1.3.4.1.12",
2484
+ "status" : "current",
2485
+ "syntax" : {
2486
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2487
+ },
2488
+ "access" : "readonly",
2489
+ "description" :
2490
+ """The number of NHRP Purge Requests received by
2491
+ this server.
2492
+
2493
+ Discontinuities in the value of this counter can occur
2494
+ at re-initialization of the management system, at
2495
+ NHRP Server re-initialization and at
2496
+ other times as indicated by the value of
2497
+ nhrpServerStatDiscontinuityTime.""",
2498
+ }, # column
2499
+ "nhrpServerStatTxPurgeReq" : {
2500
+ "nodetype" : "column",
2501
+ "moduleName" : "NHRP-MIB",
2502
+ "oid" : "1.3.6.1.2.1.71.1.3.4.1.13",
2503
+ "status" : "current",
2504
+ "syntax" : {
2505
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2506
+ },
2507
+ "access" : "readonly",
2508
+ "description" :
2509
+ """The number of NHRP Purge Requests transmitted by this
2510
+ server.
2511
+
2512
+ Discontinuities in the value of this counter can occur
2513
+ at re-initialization of the management system, at
2514
+ NHRP Server re-initialization and at
2515
+ other times as indicated by the value of
2516
+ nhrpServerStatDiscontinuityTime.""",
2517
+ }, # column
2518
+ "nhrpServerStatRxPurgeReply" : {
2519
+ "nodetype" : "column",
2520
+ "moduleName" : "NHRP-MIB",
2521
+ "oid" : "1.3.6.1.2.1.71.1.3.4.1.14",
2522
+ "status" : "current",
2523
+ "syntax" : {
2524
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2525
+ },
2526
+ "access" : "readonly",
2527
+ "description" :
2528
+ """The number of NHRP Purge Replies received by this
2529
+ server.
2530
+
2531
+ Discontinuities in the value of this counter can occur
2532
+ at re-initialization of the management system, at
2533
+ NHRP Server re-initialization and at
2534
+ other times as indicated by the value of
2535
+ nhrpServerStatDiscontinuityTime.""",
2536
+ }, # column
2537
+ "nhrpServerStatTxPurgeReply" : {
2538
+ "nodetype" : "column",
2539
+ "moduleName" : "NHRP-MIB",
2540
+ "oid" : "1.3.6.1.2.1.71.1.3.4.1.15",
2541
+ "status" : "current",
2542
+ "syntax" : {
2543
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2544
+ },
2545
+ "access" : "readonly",
2546
+ "description" :
2547
+ """The number of NHRP Purge Replies transmitted by
2548
+ this server.
2549
+
2550
+ Discontinuities in the value of this counter can occur
2551
+ at re-initialization of the management system, at
2552
+ NHRP Server re-initialization and at
2553
+ other times as indicated by the value of
2554
+ nhrpServerStatDiscontinuityTime.""",
2555
+ }, # column
2556
+ "nhrpServerStatRxErrUnrecognizedExtension" : {
2557
+ "nodetype" : "column",
2558
+ "moduleName" : "NHRP-MIB",
2559
+ "oid" : "1.3.6.1.2.1.71.1.3.4.1.16",
2560
+ "status" : "current",
2561
+ "syntax" : {
2562
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2563
+ },
2564
+ "access" : "readonly",
2565
+ "description" :
2566
+ """The number of NHRP Error Indication packets received
2567
+ by this server with the error code
2568
+
2569
+ 'Unrecognized Extension'.
2570
+
2571
+ Discontinuities in the value of this counter can occur
2572
+ at re-initialization of the management system, at
2573
+ NHRP Server re-initialization and at
2574
+ other times as indicated by the value of
2575
+ nhrpServerStatDiscontinuityTime.""",
2576
+ "reference" :
2577
+ """Section 5.2.7 NHRP Error Indication, RFC 2332 [17].""",
2578
+ }, # column
2579
+ "nhrpServerStatRxErrLoopDetected" : {
2580
+ "nodetype" : "column",
2581
+ "moduleName" : "NHRP-MIB",
2582
+ "oid" : "1.3.6.1.2.1.71.1.3.4.1.17",
2583
+ "status" : "current",
2584
+ "syntax" : {
2585
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2586
+ },
2587
+ "access" : "readonly",
2588
+ "description" :
2589
+ """The number of NHRP Error Indication packets received
2590
+ by this server with the error code 'NHRP Loop Detected'.
2591
+
2592
+ Discontinuities in the value of this counter can occur
2593
+ at re-initialization of the management system, at
2594
+ NHRP Server re-initialization and at
2595
+ other times as indicated by the value of
2596
+ nhrpServerStatDiscontinuityTime.""",
2597
+ "reference" :
2598
+ """Section 5.2.7 NHRP Error Indication, RFC 2332 [17].""",
2599
+ }, # column
2600
+ "nhrpServerStatRxErrProtoAddrUnreachable" : {
2601
+ "nodetype" : "column",
2602
+ "moduleName" : "NHRP-MIB",
2603
+ "oid" : "1.3.6.1.2.1.71.1.3.4.1.18",
2604
+ "status" : "current",
2605
+ "syntax" : {
2606
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2607
+ },
2608
+ "access" : "readonly",
2609
+ "description" :
2610
+ """The number of NHRP Error Indication packets received
2611
+ by this server with the error code 'Protocol Address
2612
+ Unreachable'.
2613
+
2614
+ Discontinuities in the value of this counter can occur
2615
+ at re-initialization of the management system, at
2616
+ NHRP Server re-initialization and at
2617
+ other times as indicated by the value of
2618
+ nhrpServerStatDiscontinuityTime.""",
2619
+ "reference" :
2620
+ """Section 5.2.7 NHRP Error Indication, RFC 2332 [17].""",
2621
+ }, # column
2622
+ "nhrpServerStatRxErrProtoError" : {
2623
+ "nodetype" : "column",
2624
+ "moduleName" : "NHRP-MIB",
2625
+ "oid" : "1.3.6.1.2.1.71.1.3.4.1.19",
2626
+ "status" : "current",
2627
+ "syntax" : {
2628
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2629
+ },
2630
+ "access" : "readonly",
2631
+ "description" :
2632
+ """The number of NHRP Error Indication packets received
2633
+ by this server with the error code 'Protocol Error'.
2634
+
2635
+ Discontinuities in the value of this counter can occur
2636
+ at re-initialization of the management system, at
2637
+ NHRP Server re-initialization and at
2638
+ other times as indicated by the value of
2639
+ nhrpServerStatDiscontinuityTime.""",
2640
+ "reference" :
2641
+ """Section 5.2.7 NHRP Error Indication, RFC 2332 [17].""",
2642
+ }, # column
2643
+ "nhrpServerStatRxErrSduSizeExceeded" : {
2644
+ "nodetype" : "column",
2645
+ "moduleName" : "NHRP-MIB",
2646
+ "oid" : "1.3.6.1.2.1.71.1.3.4.1.20",
2647
+ "status" : "current",
2648
+ "syntax" : {
2649
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2650
+ },
2651
+ "access" : "readonly",
2652
+ "description" :
2653
+ """The number of NHRP Error Indication packets received
2654
+ by this server with the error code 'NHRP SDU Size
2655
+ Exceeded'.
2656
+
2657
+ Discontinuities in the value of this counter can occur
2658
+ at re-initialization of the management system, at
2659
+ NHRP Server re-initialization and at
2660
+ other times as indicated by the value of
2661
+ nhrpServerStatDiscontinuityTime.""",
2662
+ "reference" :
2663
+ """Section 5.2.7 NHRP Error Indication, RFC 2332 [17].""",
2664
+ }, # column
2665
+ "nhrpServerStatRxErrInvalidExtension" : {
2666
+ "nodetype" : "column",
2667
+ "moduleName" : "NHRP-MIB",
2668
+ "oid" : "1.3.6.1.2.1.71.1.3.4.1.21",
2669
+ "status" : "current",
2670
+ "syntax" : {
2671
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2672
+ },
2673
+ "access" : "readonly",
2674
+ "description" :
2675
+ """The number of NHRP Error Indication packets received
2676
+ by this server with the error code 'Invalid Extension'.
2677
+
2678
+ Discontinuities in the value of this counter can occur
2679
+ at re-initialization of the management system, at
2680
+ NHRP Server re-initialization and at
2681
+ other times as indicated by the value of
2682
+ nhrpServerStatDiscontinuityTime.""",
2683
+ "reference" :
2684
+ """Section 5.2.7 NHRP Error Indication, RFC 2332 [17].""",
2685
+ }, # column
2686
+ "nhrpServerStatRxErrInvalidResReplyReceived" : {
2687
+ "nodetype" : "column",
2688
+ "moduleName" : "NHRP-MIB",
2689
+ "oid" : "1.3.6.1.2.1.71.1.3.4.1.22",
2690
+ "status" : "current",
2691
+ "syntax" : {
2692
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2693
+ },
2694
+ "access" : "readonly",
2695
+ "description" :
2696
+ """The number of NHRP Error Indication packets received
2697
+ by this server with the error code 'Invalid Resolution
2698
+ Reply Received'.
2699
+
2700
+ Discontinuities in the value of this counter can occur
2701
+ at re-initialization of the management system, at
2702
+ NHRP Server re-initialization and at
2703
+ other times as indicated by the value of
2704
+ nhrpServerStatDiscontinuityTime.""",
2705
+ "reference" :
2706
+ """Section 5.2.7 NHRP Error Indication, RFC 2332 [17].""",
2707
+ }, # column
2708
+ "nhrpServerStatRxErrAuthenticationFailure" : {
2709
+ "nodetype" : "column",
2710
+ "moduleName" : "NHRP-MIB",
2711
+ "oid" : "1.3.6.1.2.1.71.1.3.4.1.23",
2712
+ "status" : "current",
2713
+ "syntax" : {
2714
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2715
+ },
2716
+ "access" : "readonly",
2717
+ "description" :
2718
+ """The number of NHRP Error Indication packets
2719
+ received by this server with the error code
2720
+ 'Authentication Failure'.
2721
+
2722
+ Discontinuities in the value of this counter can occur
2723
+ at re-initialization of the management system, at
2724
+ NHRP Server re-initialization and at
2725
+ other times as indicated by the value of
2726
+ nhrpServerStatDiscontinuityTime.""",
2727
+ "reference" :
2728
+ """Section 5.2.7 NHRP Error Indication, RFC 2332 [17].""",
2729
+ }, # column
2730
+ "nhrpServerStatRxErrHopCountExceeded" : {
2731
+ "nodetype" : "column",
2732
+ "moduleName" : "NHRP-MIB",
2733
+ "oid" : "1.3.6.1.2.1.71.1.3.4.1.24",
2734
+ "status" : "current",
2735
+ "syntax" : {
2736
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2737
+ },
2738
+ "access" : "readonly",
2739
+ "description" :
2740
+ """The number of NHRP Error Indication packets
2741
+ received by this server with the error code
2742
+ 'Hop Count Exceeded'.
2743
+
2744
+ Discontinuities in the value of this counter can occur
2745
+ at re-initialization of the management system, at
2746
+ NHRP Server re-initialization and at
2747
+ other times as indicated by the value of
2748
+ nhrpServerStatDiscontinuityTime.""",
2749
+ "reference" :
2750
+ """Section 5.2.7 NHRP Error Indication, RFC 2332 [17].""",
2751
+ }, # column
2752
+ "nhrpServerStatTxErrUnrecognizedExtension" : {
2753
+ "nodetype" : "column",
2754
+ "moduleName" : "NHRP-MIB",
2755
+ "oid" : "1.3.6.1.2.1.71.1.3.4.1.25",
2756
+ "status" : "current",
2757
+ "syntax" : {
2758
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2759
+ },
2760
+ "access" : "readonly",
2761
+ "description" :
2762
+ """The number of NHRP Error Indication packets
2763
+ transmitted by this server with the error code
2764
+ 'Unrecognized Extension'.
2765
+
2766
+ Discontinuities in the value of this counter can occur
2767
+ at re-initialization of the management system, at
2768
+ NHRP Server re-initialization and at
2769
+ other times as indicated by the value of
2770
+ nhrpServerStatDiscontinuityTime.""",
2771
+ "reference" :
2772
+ """Section 5.2.7 NHRP Error Indication, RFC 2332 [17].""",
2773
+ }, # column
2774
+ "nhrpServerStatTxErrLoopDetected" : {
2775
+ "nodetype" : "column",
2776
+ "moduleName" : "NHRP-MIB",
2777
+ "oid" : "1.3.6.1.2.1.71.1.3.4.1.26",
2778
+ "status" : "current",
2779
+ "syntax" : {
2780
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2781
+ },
2782
+ "access" : "readonly",
2783
+ "description" :
2784
+ """The number of NHRP Error Indication packets
2785
+ transmitted by this server with the error code
2786
+ 'NHRP Loop Detected'.
2787
+ Discontinuities in the value of this counter can occur
2788
+ at re-initialization of the management system, at
2789
+ NHRP Server re-initialization and at
2790
+ other times as indicated by the value of
2791
+ nhrpServerStatDiscontinuityTime.""",
2792
+ "reference" :
2793
+ """Section 5.2.7 NHRP Error Indication, RFC 2332 [17].""",
2794
+ }, # column
2795
+ "nhrpServerStatTxErrProtoAddrUnreachable" : {
2796
+ "nodetype" : "column",
2797
+ "moduleName" : "NHRP-MIB",
2798
+ "oid" : "1.3.6.1.2.1.71.1.3.4.1.27",
2799
+ "status" : "current",
2800
+ "syntax" : {
2801
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2802
+ },
2803
+ "access" : "readonly",
2804
+ "description" :
2805
+ """The number of NHRP Error Indication packets
2806
+ transmitted by this server with the error code
2807
+ 'Protocol Address Unreachable'.
2808
+
2809
+ Discontinuities in the value of this counter can occur
2810
+ at re-initialization of the management system, at
2811
+ NHRP Server re-initialization and at
2812
+ other times as indicated by the value of
2813
+ nhrpServerStatDiscontinuityTime.""",
2814
+ "reference" :
2815
+ """Section 5.2.7 NHRP Error Indication, RFC 2332 [17].""",
2816
+ }, # column
2817
+ "nhrpServerStatTxErrProtoError" : {
2818
+ "nodetype" : "column",
2819
+ "moduleName" : "NHRP-MIB",
2820
+ "oid" : "1.3.6.1.2.1.71.1.3.4.1.28",
2821
+ "status" : "current",
2822
+ "syntax" : {
2823
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2824
+ },
2825
+ "access" : "readonly",
2826
+ "description" :
2827
+ """The number of NHRP Error Indication packets
2828
+ transmitted by this server with the error
2829
+ code 'Protocol Error'.
2830
+
2831
+ Discontinuities in the value of this counter can occur
2832
+ at re-initialization of the management system, at
2833
+ NHRP Server re-initialization and at
2834
+ other times as indicated by the value of
2835
+ nhrpServerStatDiscontinuityTime.""",
2836
+ "reference" :
2837
+ """Section 5.2.7 NHRP Error Indication, RFC 2332 [17].""",
2838
+ }, # column
2839
+ "nhrpServerStatTxErrSduSizeExceeded" : {
2840
+ "nodetype" : "column",
2841
+ "moduleName" : "NHRP-MIB",
2842
+ "oid" : "1.3.6.1.2.1.71.1.3.4.1.29",
2843
+ "status" : "current",
2844
+ "syntax" : {
2845
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2846
+ },
2847
+ "access" : "readonly",
2848
+ "description" :
2849
+ """The number of NHRP Error Indication packets
2850
+ transmitted by this server with the error code
2851
+ 'NHRP SDU Size Exceeded'.
2852
+
2853
+ Discontinuities in the value of this counter can occur
2854
+ at re-initialization of the management system, at
2855
+ NHRP Server re-initialization and at
2856
+ other times as indicated by the value of
2857
+ nhrpServerStatDiscontinuityTime.""",
2858
+ "reference" :
2859
+ """Section 5.2.7 NHRP Error Indication, RFC 2332 [17].""",
2860
+ }, # column
2861
+ "nhrpServerStatTxErrInvalidExtension" : {
2862
+ "nodetype" : "column",
2863
+ "moduleName" : "NHRP-MIB",
2864
+ "oid" : "1.3.6.1.2.1.71.1.3.4.1.30",
2865
+ "status" : "current",
2866
+ "syntax" : {
2867
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2868
+ },
2869
+ "access" : "readonly",
2870
+ "description" :
2871
+ """The number of NHRP Error Indication packets
2872
+ transmitted by this server with the error code
2873
+
2874
+ 'Invalid Extension'.
2875
+
2876
+ Discontinuities in the value of this counter can occur
2877
+ at re-initialization of the management system, at
2878
+ NHRP Server re-initialization and at
2879
+ other times as indicated by the value of
2880
+ nhrpServerStatDiscontinuityTime.""",
2881
+ "reference" :
2882
+ """Section 5.2.7 NHRP Error Indication, RFC 2332 [17].""",
2883
+ }, # column
2884
+ "nhrpServerStatTxErrAuthenticationFailure" : {
2885
+ "nodetype" : "column",
2886
+ "moduleName" : "NHRP-MIB",
2887
+ "oid" : "1.3.6.1.2.1.71.1.3.4.1.31",
2888
+ "status" : "current",
2889
+ "syntax" : {
2890
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2891
+ },
2892
+ "access" : "readonly",
2893
+ "description" :
2894
+ """The number of NHRP Error Indication packets
2895
+ transmitted by this server with the error code
2896
+ 'Authentication Failure'.
2897
+ Discontinuities in the value of this counter can occur
2898
+ at re-initialization of the management system, at
2899
+ NHRP Server re-initialization and at
2900
+ other times as indicated by the value of
2901
+ nhrpServerStatDiscontinuityTime.""",
2902
+ "reference" :
2903
+ """Section 5.2.7 NHRP Error Indication, RFC 2332 [17].""",
2904
+ }, # column
2905
+ "nhrpServerStatTxErrHopCountExceeded" : {
2906
+ "nodetype" : "column",
2907
+ "moduleName" : "NHRP-MIB",
2908
+ "oid" : "1.3.6.1.2.1.71.1.3.4.1.32",
2909
+ "status" : "current",
2910
+ "syntax" : {
2911
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2912
+ },
2913
+ "access" : "readonly",
2914
+ "description" :
2915
+ """The number of NHRP Error Indication packets
2916
+ transmitted by this server with the error
2917
+ code 'Hop Count Exceeded'.
2918
+
2919
+ Discontinuities in the value of this counter can occur
2920
+ at re-initialization of the management system, at
2921
+ NHRP Server re-initialization and at
2922
+ other times as indicated by the value of
2923
+ nhrpServerStatDiscontinuityTime.""",
2924
+ "reference" :
2925
+ """Section 5.2.7 NHRP Error Indication, RFC 2332 [17].""",
2926
+ }, # column
2927
+ "nhrpServerStatFwResolveReq" : {
2928
+ "nodetype" : "column",
2929
+ "moduleName" : "NHRP-MIB",
2930
+ "oid" : "1.3.6.1.2.1.71.1.3.4.1.33",
2931
+ "status" : "current",
2932
+ "syntax" : {
2933
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2934
+ },
2935
+ "access" : "readonly",
2936
+ "description" :
2937
+ """The number of NHRP Resolution Requests
2938
+ forwarded by this server acting as a transit NHS.
2939
+
2940
+ Discontinuities in the value of this counter can occur
2941
+ at re-initialization of the management system, at
2942
+ NHRP Server re-initialization and at
2943
+ other times as indicated by the value of
2944
+ nhrpServerStatDiscontinuityTime.""",
2945
+ }, # column
2946
+ "nhrpServerStatFwResolveReply" : {
2947
+ "nodetype" : "column",
2948
+ "moduleName" : "NHRP-MIB",
2949
+ "oid" : "1.3.6.1.2.1.71.1.3.4.1.34",
2950
+ "status" : "current",
2951
+ "syntax" : {
2952
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2953
+ },
2954
+ "access" : "readonly",
2955
+ "description" :
2956
+ """The number of NHRP Resolution Replies forwarded
2957
+ by this server acting as a transit NHS.
2958
+
2959
+ Discontinuities in the value of this counter can occur
2960
+ at re-initialization of the management system, at
2961
+ NHRP Server re-initialization and at
2962
+ other times as indicated by the value of
2963
+ nhrpServerStatDiscontinuityTime.""",
2964
+ }, # column
2965
+ "nhrpServerStatFwRegisterReq" : {
2966
+ "nodetype" : "column",
2967
+ "moduleName" : "NHRP-MIB",
2968
+ "oid" : "1.3.6.1.2.1.71.1.3.4.1.35",
2969
+ "status" : "current",
2970
+ "syntax" : {
2971
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2972
+ },
2973
+ "access" : "readonly",
2974
+ "description" :
2975
+ """The number of NHRP Registration Requests forwarded
2976
+ by this server acting as a transit NHS.
2977
+
2978
+ Discontinuities in the value of this counter can occur
2979
+ at re-initialization of the management system, at
2980
+ NHRP Server re-initialization and at
2981
+ other times as indicated by the value of
2982
+ nhrpServerStatDiscontinuityTime.""",
2983
+ }, # column
2984
+ "nhrpServerStatFwRegisterReply" : {
2985
+ "nodetype" : "column",
2986
+ "moduleName" : "NHRP-MIB",
2987
+ "oid" : "1.3.6.1.2.1.71.1.3.4.1.36",
2988
+ "status" : "current",
2989
+ "syntax" : {
2990
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2991
+ },
2992
+ "access" : "readonly",
2993
+ "description" :
2994
+ """The number of NHRP Registration Replies forwarded
2995
+ by this server acting as a transit NHS.
2996
+ Discontinuities in the value of this counter can occur
2997
+ at re-initialization of the management system, at
2998
+ NHRP Server re-initialization and at
2999
+ other times as indicated by the value of
3000
+ nhrpServerStatDiscontinuityTime.""",
3001
+ }, # column
3002
+ "nhrpServerStatFwPurgeReq" : {
3003
+ "nodetype" : "column",
3004
+ "moduleName" : "NHRP-MIB",
3005
+ "oid" : "1.3.6.1.2.1.71.1.3.4.1.37",
3006
+ "status" : "current",
3007
+ "syntax" : {
3008
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
3009
+ },
3010
+ "access" : "readonly",
3011
+ "description" :
3012
+ """The number of NHRP Purge Requests forwarded
3013
+ by this server acting as a transit NHS.
3014
+ Discontinuities in the value of this counter can occur
3015
+ at re-initialization of the management system, at
3016
+ NHRP Server re-initialization and at
3017
+ other times as indicated by the value of
3018
+ nhrpServerStatDiscontinuityTime.""",
3019
+ }, # column
3020
+ "nhrpServerStatFwPurgeReply" : {
3021
+ "nodetype" : "column",
3022
+ "moduleName" : "NHRP-MIB",
3023
+ "oid" : "1.3.6.1.2.1.71.1.3.4.1.38",
3024
+ "status" : "current",
3025
+ "syntax" : {
3026
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
3027
+ },
3028
+ "access" : "readonly",
3029
+ "description" :
3030
+ """The number of NHRP Purge Replies forwarded by this
3031
+ server acting as a transit NHS.
3032
+
3033
+ Discontinuities in the value of this counter can occur
3034
+ at re-initialization of the management system, at
3035
+ NHRP Server re-initialization and at
3036
+ other times as indicated by the value of
3037
+ nhrpServerStatDiscontinuityTime.""",
3038
+ }, # column
3039
+ "nhrpServerStatFwErrorIndication" : {
3040
+ "nodetype" : "column",
3041
+ "moduleName" : "NHRP-MIB",
3042
+ "oid" : "1.3.6.1.2.1.71.1.3.4.1.39",
3043
+ "status" : "current",
3044
+ "syntax" : {
3045
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
3046
+ },
3047
+ "access" : "readonly",
3048
+ "description" :
3049
+ """The number of NHRP Error Indication packets forwarded
3050
+ by this server acting as a transit NHS.
3051
+
3052
+ Discontinuities in the value of this counter can occur
3053
+ at re-initialization of the management system, at
3054
+ NHRP Server re-initialization and at
3055
+ other times as indicated by the value of
3056
+ nhrpServerStatDiscontinuityTime.""",
3057
+ }, # column
3058
+ "nhrpServerStatDiscontinuityTime" : {
3059
+ "nodetype" : "column",
3060
+ "moduleName" : "NHRP-MIB",
3061
+ "oid" : "1.3.6.1.2.1.71.1.3.4.1.40",
3062
+ "status" : "current",
3063
+ "syntax" : {
3064
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
3065
+ },
3066
+ "access" : "readonly",
3067
+ "description" :
3068
+ """The value of sysUpTime on the most recent occasion at
3069
+ which any one or more of this Server's counters
3070
+ suffered a discontinuity. If no such discontinuities
3071
+ have occurred since the last re-initialization of the
3072
+ local management subsystem or the NHRP Server
3073
+ re-initialization associated with this entry, then
3074
+ this object contains a zero value.""",
3075
+ "reference" :
3076
+ """RFC 2233 [18].""",
3077
+ }, # column
3078
+ "nhrpConformance" : {
3079
+ "nodetype" : "node",
3080
+ "moduleName" : "NHRP-MIB",
3081
+ "oid" : "1.3.6.1.2.1.71.2",
3082
+ }, # node
3083
+ "nhrpCompliances" : {
3084
+ "nodetype" : "node",
3085
+ "moduleName" : "NHRP-MIB",
3086
+ "oid" : "1.3.6.1.2.1.71.2.1",
3087
+ }, # node
3088
+ "nhrpGroups" : {
3089
+ "nodetype" : "node",
3090
+ "moduleName" : "NHRP-MIB",
3091
+ "oid" : "1.3.6.1.2.1.71.2.2",
3092
+ }, # node
3093
+ }, # nodes
3094
+
3095
+ "groups" : {
3096
+ "nhrpGeneralGroup" : {
3097
+ "nodetype" : "group",
3098
+ "moduleName" : "NHRP-MIB",
3099
+ "oid" : "1.3.6.1.2.1.71.2.2.1",
3100
+ "status" : "current",
3101
+ "members" : {
3102
+ "nhrpNextIndex" : {
3103
+ "nodetype" : "member",
3104
+ "module" : "NHRP-MIB"
3105
+ },
3106
+ "nhrpCachePrefixLength" : {
3107
+ "nodetype" : "member",
3108
+ "module" : "NHRP-MIB"
3109
+ },
3110
+ "nhrpCacheNextHopInternetworkAddr" : {
3111
+ "nodetype" : "member",
3112
+ "module" : "NHRP-MIB"
3113
+ },
3114
+ "nhrpCacheNbmaAddrType" : {
3115
+ "nodetype" : "member",
3116
+ "module" : "NHRP-MIB"
3117
+ },
3118
+ "nhrpCacheNbmaAddr" : {
3119
+ "nodetype" : "member",
3120
+ "module" : "NHRP-MIB"
3121
+ },
3122
+ "nhrpCacheNbmaSubaddr" : {
3123
+ "nodetype" : "member",
3124
+ "module" : "NHRP-MIB"
3125
+ },
3126
+ "nhrpCacheType" : {
3127
+ "nodetype" : "member",
3128
+ "module" : "NHRP-MIB"
3129
+ },
3130
+ "nhrpCacheState" : {
3131
+ "nodetype" : "member",
3132
+ "module" : "NHRP-MIB"
3133
+ },
3134
+ "nhrpCacheHoldingTimeValid" : {
3135
+ "nodetype" : "member",
3136
+ "module" : "NHRP-MIB"
3137
+ },
3138
+ "nhrpCacheHoldingTime" : {
3139
+ "nodetype" : "member",
3140
+ "module" : "NHRP-MIB"
3141
+ },
3142
+ "nhrpCacheNegotiatedMtu" : {
3143
+ "nodetype" : "member",
3144
+ "module" : "NHRP-MIB"
3145
+ },
3146
+ "nhrpCachePreference" : {
3147
+ "nodetype" : "member",
3148
+ "module" : "NHRP-MIB"
3149
+ },
3150
+ "nhrpCacheStorageType" : {
3151
+ "nodetype" : "member",
3152
+ "module" : "NHRP-MIB"
3153
+ },
3154
+ "nhrpCacheRowStatus" : {
3155
+ "nodetype" : "member",
3156
+ "module" : "NHRP-MIB"
3157
+ },
3158
+ "nhrpPurgeCacheIdentifier" : {
3159
+ "nodetype" : "member",
3160
+ "module" : "NHRP-MIB"
3161
+ },
3162
+ "nhrpPurgePrefixLength" : {
3163
+ "nodetype" : "member",
3164
+ "module" : "NHRP-MIB"
3165
+ },
3166
+ "nhrpPurgeRequestID" : {
3167
+ "nodetype" : "member",
3168
+ "module" : "NHRP-MIB"
3169
+ },
3170
+ "nhrpPurgeReplyExpected" : {
3171
+ "nodetype" : "member",
3172
+ "module" : "NHRP-MIB"
3173
+ },
3174
+ "nhrpPurgeRowStatus" : {
3175
+ "nodetype" : "member",
3176
+ "module" : "NHRP-MIB"
3177
+ },
3178
+ }, # members
3179
+ "description" :
3180
+ """Objects that apply to both NHRP clients and NHRP
3181
+ servers.""",
3182
+ }, # group
3183
+ "nhrpClientGroup" : {
3184
+ "nodetype" : "group",
3185
+ "moduleName" : "NHRP-MIB",
3186
+ "oid" : "1.3.6.1.2.1.71.2.2.2",
3187
+ "status" : "current",
3188
+ "members" : {
3189
+ "nhrpClientInternetworkAddrType" : {
3190
+ "nodetype" : "member",
3191
+ "module" : "NHRP-MIB"
3192
+ },
3193
+ "nhrpClientInternetworkAddr" : {
3194
+ "nodetype" : "member",
3195
+ "module" : "NHRP-MIB"
3196
+ },
3197
+ "nhrpClientNbmaAddrType" : {
3198
+ "nodetype" : "member",
3199
+ "module" : "NHRP-MIB"
3200
+ },
3201
+ "nhrpClientNbmaAddr" : {
3202
+ "nodetype" : "member",
3203
+ "module" : "NHRP-MIB"
3204
+ },
3205
+ "nhrpClientNbmaSubaddr" : {
3206
+ "nodetype" : "member",
3207
+ "module" : "NHRP-MIB"
3208
+ },
3209
+ "nhrpClientInitialRequestTimeout" : {
3210
+ "nodetype" : "member",
3211
+ "module" : "NHRP-MIB"
3212
+ },
3213
+ "nhrpClientRegistrationRequestRetries" : {
3214
+ "nodetype" : "member",
3215
+ "module" : "NHRP-MIB"
3216
+ },
3217
+ "nhrpClientResolutionRequestRetries" : {
3218
+ "nodetype" : "member",
3219
+ "module" : "NHRP-MIB"
3220
+ },
3221
+ "nhrpClientPurgeRequestRetries" : {
3222
+ "nodetype" : "member",
3223
+ "module" : "NHRP-MIB"
3224
+ },
3225
+ "nhrpClientDefaultMtu" : {
3226
+ "nodetype" : "member",
3227
+ "module" : "NHRP-MIB"
3228
+ },
3229
+ "nhrpClientHoldTime" : {
3230
+ "nodetype" : "member",
3231
+ "module" : "NHRP-MIB"
3232
+ },
3233
+ "nhrpClientRequestID" : {
3234
+ "nodetype" : "member",
3235
+ "module" : "NHRP-MIB"
3236
+ },
3237
+ "nhrpClientStorageType" : {
3238
+ "nodetype" : "member",
3239
+ "module" : "NHRP-MIB"
3240
+ },
3241
+ "nhrpClientRowStatus" : {
3242
+ "nodetype" : "member",
3243
+ "module" : "NHRP-MIB"
3244
+ },
3245
+ "nhrpClientRegUniqueness" : {
3246
+ "nodetype" : "member",
3247
+ "module" : "NHRP-MIB"
3248
+ },
3249
+ "nhrpClientRegState" : {
3250
+ "nodetype" : "member",
3251
+ "module" : "NHRP-MIB"
3252
+ },
3253
+ "nhrpClientRegRowStatus" : {
3254
+ "nodetype" : "member",
3255
+ "module" : "NHRP-MIB"
3256
+ },
3257
+ "nhrpClientNhsInternetworkAddrType" : {
3258
+ "nodetype" : "member",
3259
+ "module" : "NHRP-MIB"
3260
+ },
3261
+ "nhrpClientNhsInternetworkAddr" : {
3262
+ "nodetype" : "member",
3263
+ "module" : "NHRP-MIB"
3264
+ },
3265
+ "nhrpClientNhsNbmaAddrType" : {
3266
+ "nodetype" : "member",
3267
+ "module" : "NHRP-MIB"
3268
+ },
3269
+ "nhrpClientNhsNbmaAddr" : {
3270
+ "nodetype" : "member",
3271
+ "module" : "NHRP-MIB"
3272
+ },
3273
+ "nhrpClientNhsNbmaSubaddr" : {
3274
+ "nodetype" : "member",
3275
+ "module" : "NHRP-MIB"
3276
+ },
3277
+ "nhrpClientNhsInUse" : {
3278
+ "nodetype" : "member",
3279
+ "module" : "NHRP-MIB"
3280
+ },
3281
+ "nhrpClientNhsRowStatus" : {
3282
+ "nodetype" : "member",
3283
+ "module" : "NHRP-MIB"
3284
+ },
3285
+ "nhrpClientStatTxResolveReq" : {
3286
+ "nodetype" : "member",
3287
+ "module" : "NHRP-MIB"
3288
+ },
3289
+ "nhrpClientStatRxResolveReplyAck" : {
3290
+ "nodetype" : "member",
3291
+ "module" : "NHRP-MIB"
3292
+ },
3293
+ "nhrpClientStatRxResolveReplyNakProhibited" : {
3294
+ "nodetype" : "member",
3295
+ "module" : "NHRP-MIB"
3296
+ },
3297
+ "nhrpClientStatRxResolveReplyNakInsufResources" : {
3298
+ "nodetype" : "member",
3299
+ "module" : "NHRP-MIB"
3300
+ },
3301
+ "nhrpClientStatRxResolveReplyNakNoBinding" : {
3302
+ "nodetype" : "member",
3303
+ "module" : "NHRP-MIB"
3304
+ },
3305
+ "nhrpClientStatRxResolveReplyNakNotUnique" : {
3306
+ "nodetype" : "member",
3307
+ "module" : "NHRP-MIB"
3308
+ },
3309
+ "nhrpClientStatTxRegisterReq" : {
3310
+ "nodetype" : "member",
3311
+ "module" : "NHRP-MIB"
3312
+ },
3313
+ "nhrpClientStatRxRegisterAck" : {
3314
+ "nodetype" : "member",
3315
+ "module" : "NHRP-MIB"
3316
+ },
3317
+ "nhrpClientStatRxRegisterNakProhibited" : {
3318
+ "nodetype" : "member",
3319
+ "module" : "NHRP-MIB"
3320
+ },
3321
+ "nhrpClientStatRxRegisterNakInsufResources" : {
3322
+ "nodetype" : "member",
3323
+ "module" : "NHRP-MIB"
3324
+ },
3325
+ "nhrpClientStatRxRegisterNakAlreadyReg" : {
3326
+ "nodetype" : "member",
3327
+ "module" : "NHRP-MIB"
3328
+ },
3329
+ "nhrpClientStatRxPurgeReq" : {
3330
+ "nodetype" : "member",
3331
+ "module" : "NHRP-MIB"
3332
+ },
3333
+ "nhrpClientStatTxPurgeReq" : {
3334
+ "nodetype" : "member",
3335
+ "module" : "NHRP-MIB"
3336
+ },
3337
+ "nhrpClientStatRxPurgeReply" : {
3338
+ "nodetype" : "member",
3339
+ "module" : "NHRP-MIB"
3340
+ },
3341
+ "nhrpClientStatTxPurgeReply" : {
3342
+ "nodetype" : "member",
3343
+ "module" : "NHRP-MIB"
3344
+ },
3345
+ "nhrpClientStatTxErrorIndication" : {
3346
+ "nodetype" : "member",
3347
+ "module" : "NHRP-MIB"
3348
+ },
3349
+ "nhrpClientStatRxErrUnrecognizedExtension" : {
3350
+ "nodetype" : "member",
3351
+ "module" : "NHRP-MIB"
3352
+ },
3353
+ "nhrpClientStatRxErrLoopDetected" : {
3354
+ "nodetype" : "member",
3355
+ "module" : "NHRP-MIB"
3356
+ },
3357
+ "nhrpClientStatRxErrProtoAddrUnreachable" : {
3358
+ "nodetype" : "member",
3359
+ "module" : "NHRP-MIB"
3360
+ },
3361
+ "nhrpClientStatRxErrProtoError" : {
3362
+ "nodetype" : "member",
3363
+ "module" : "NHRP-MIB"
3364
+ },
3365
+ "nhrpClientStatRxErrSduSizeExceeded" : {
3366
+ "nodetype" : "member",
3367
+ "module" : "NHRP-MIB"
3368
+ },
3369
+ "nhrpClientStatRxErrInvalidExtension" : {
3370
+ "nodetype" : "member",
3371
+ "module" : "NHRP-MIB"
3372
+ },
3373
+ "nhrpClientStatRxErrAuthenticationFailure" : {
3374
+ "nodetype" : "member",
3375
+ "module" : "NHRP-MIB"
3376
+ },
3377
+ "nhrpClientStatRxErrHopCountExceeded" : {
3378
+ "nodetype" : "member",
3379
+ "module" : "NHRP-MIB"
3380
+ },
3381
+ "nhrpClientStatDiscontinuityTime" : {
3382
+ "nodetype" : "member",
3383
+ "module" : "NHRP-MIB"
3384
+ },
3385
+ }, # members
3386
+ "description" :
3387
+ """Objects that apply only to NHRP clients.""",
3388
+ }, # group
3389
+ "nhrpServerGroup" : {
3390
+ "nodetype" : "group",
3391
+ "moduleName" : "NHRP-MIB",
3392
+ "oid" : "1.3.6.1.2.1.71.2.2.3",
3393
+ "status" : "current",
3394
+ "members" : {
3395
+ "nhrpServerInternetworkAddrType" : {
3396
+ "nodetype" : "member",
3397
+ "module" : "NHRP-MIB"
3398
+ },
3399
+ "nhrpServerInternetworkAddr" : {
3400
+ "nodetype" : "member",
3401
+ "module" : "NHRP-MIB"
3402
+ },
3403
+ "nhrpServerNbmaAddrType" : {
3404
+ "nodetype" : "member",
3405
+ "module" : "NHRP-MIB"
3406
+ },
3407
+ "nhrpServerNbmaAddr" : {
3408
+ "nodetype" : "member",
3409
+ "module" : "NHRP-MIB"
3410
+ },
3411
+ "nhrpServerNbmaSubaddr" : {
3412
+ "nodetype" : "member",
3413
+ "module" : "NHRP-MIB"
3414
+ },
3415
+ "nhrpServerStorageType" : {
3416
+ "nodetype" : "member",
3417
+ "module" : "NHRP-MIB"
3418
+ },
3419
+ "nhrpServerRowStatus" : {
3420
+ "nodetype" : "member",
3421
+ "module" : "NHRP-MIB"
3422
+ },
3423
+ "nhrpServerCacheAuthoritative" : {
3424
+ "nodetype" : "member",
3425
+ "module" : "NHRP-MIB"
3426
+ },
3427
+ "nhrpServerCacheUniqueness" : {
3428
+ "nodetype" : "member",
3429
+ "module" : "NHRP-MIB"
3430
+ },
3431
+ "nhrpServerNhcPrefixLength" : {
3432
+ "nodetype" : "member",
3433
+ "module" : "NHRP-MIB"
3434
+ },
3435
+ "nhrpServerNhcInternetworkAddrType" : {
3436
+ "nodetype" : "member",
3437
+ "module" : "NHRP-MIB"
3438
+ },
3439
+ "nhrpServerNhcInternetworkAddr" : {
3440
+ "nodetype" : "member",
3441
+ "module" : "NHRP-MIB"
3442
+ },
3443
+ "nhrpServerNhcNbmaAddrType" : {
3444
+ "nodetype" : "member",
3445
+ "module" : "NHRP-MIB"
3446
+ },
3447
+ "nhrpServerNhcNbmaAddr" : {
3448
+ "nodetype" : "member",
3449
+ "module" : "NHRP-MIB"
3450
+ },
3451
+ "nhrpServerNhcNbmaSubaddr" : {
3452
+ "nodetype" : "member",
3453
+ "module" : "NHRP-MIB"
3454
+ },
3455
+ "nhrpServerNhcInUse" : {
3456
+ "nodetype" : "member",
3457
+ "module" : "NHRP-MIB"
3458
+ },
3459
+ "nhrpServerNhcRowStatus" : {
3460
+ "nodetype" : "member",
3461
+ "module" : "NHRP-MIB"
3462
+ },
3463
+ "nhrpServerStatRxResolveReq" : {
3464
+ "nodetype" : "member",
3465
+ "module" : "NHRP-MIB"
3466
+ },
3467
+ "nhrpServerStatTxResolveReplyAck" : {
3468
+ "nodetype" : "member",
3469
+ "module" : "NHRP-MIB"
3470
+ },
3471
+ "nhrpServerStatTxResolveReplyNakProhibited" : {
3472
+ "nodetype" : "member",
3473
+ "module" : "NHRP-MIB"
3474
+ },
3475
+ "nhrpServerStatTxResolveReplyNakInsufResources" : {
3476
+ "nodetype" : "member",
3477
+ "module" : "NHRP-MIB"
3478
+ },
3479
+ "nhrpServerStatTxResolveReplyNakNoBinding" : {
3480
+ "nodetype" : "member",
3481
+ "module" : "NHRP-MIB"
3482
+ },
3483
+ "nhrpServerStatTxResolveReplyNakNotUnique" : {
3484
+ "nodetype" : "member",
3485
+ "module" : "NHRP-MIB"
3486
+ },
3487
+ "nhrpServerStatRxRegisterReq" : {
3488
+ "nodetype" : "member",
3489
+ "module" : "NHRP-MIB"
3490
+ },
3491
+ "nhrpServerStatTxRegisterAck" : {
3492
+ "nodetype" : "member",
3493
+ "module" : "NHRP-MIB"
3494
+ },
3495
+ "nhrpServerStatTxRegisterNakProhibited" : {
3496
+ "nodetype" : "member",
3497
+ "module" : "NHRP-MIB"
3498
+ },
3499
+ "nhrpServerStatTxRegisterNakInsufResources" : {
3500
+ "nodetype" : "member",
3501
+ "module" : "NHRP-MIB"
3502
+ },
3503
+ "nhrpServerStatTxRegisterNakAlreadyReg" : {
3504
+ "nodetype" : "member",
3505
+ "module" : "NHRP-MIB"
3506
+ },
3507
+ "nhrpServerStatRxPurgeReq" : {
3508
+ "nodetype" : "member",
3509
+ "module" : "NHRP-MIB"
3510
+ },
3511
+ "nhrpServerStatTxPurgeReq" : {
3512
+ "nodetype" : "member",
3513
+ "module" : "NHRP-MIB"
3514
+ },
3515
+ "nhrpServerStatRxPurgeReply" : {
3516
+ "nodetype" : "member",
3517
+ "module" : "NHRP-MIB"
3518
+ },
3519
+ "nhrpServerStatTxPurgeReply" : {
3520
+ "nodetype" : "member",
3521
+ "module" : "NHRP-MIB"
3522
+ },
3523
+ "nhrpServerStatRxErrUnrecognizedExtension" : {
3524
+ "nodetype" : "member",
3525
+ "module" : "NHRP-MIB"
3526
+ },
3527
+ "nhrpServerStatRxErrLoopDetected" : {
3528
+ "nodetype" : "member",
3529
+ "module" : "NHRP-MIB"
3530
+ },
3531
+ "nhrpServerStatRxErrProtoAddrUnreachable" : {
3532
+ "nodetype" : "member",
3533
+ "module" : "NHRP-MIB"
3534
+ },
3535
+ "nhrpServerStatRxErrProtoError" : {
3536
+ "nodetype" : "member",
3537
+ "module" : "NHRP-MIB"
3538
+ },
3539
+ "nhrpServerStatRxErrSduSizeExceeded" : {
3540
+ "nodetype" : "member",
3541
+ "module" : "NHRP-MIB"
3542
+ },
3543
+ "nhrpServerStatRxErrInvalidExtension" : {
3544
+ "nodetype" : "member",
3545
+ "module" : "NHRP-MIB"
3546
+ },
3547
+ "nhrpServerStatRxErrInvalidResReplyReceived" : {
3548
+ "nodetype" : "member",
3549
+ "module" : "NHRP-MIB"
3550
+ },
3551
+ "nhrpServerStatRxErrAuthenticationFailure" : {
3552
+ "nodetype" : "member",
3553
+ "module" : "NHRP-MIB"
3554
+ },
3555
+ "nhrpServerStatRxErrHopCountExceeded" : {
3556
+ "nodetype" : "member",
3557
+ "module" : "NHRP-MIB"
3558
+ },
3559
+ "nhrpServerStatTxErrUnrecognizedExtension" : {
3560
+ "nodetype" : "member",
3561
+ "module" : "NHRP-MIB"
3562
+ },
3563
+ "nhrpServerStatTxErrLoopDetected" : {
3564
+ "nodetype" : "member",
3565
+ "module" : "NHRP-MIB"
3566
+ },
3567
+ "nhrpServerStatTxErrProtoAddrUnreachable" : {
3568
+ "nodetype" : "member",
3569
+ "module" : "NHRP-MIB"
3570
+ },
3571
+ "nhrpServerStatTxErrProtoError" : {
3572
+ "nodetype" : "member",
3573
+ "module" : "NHRP-MIB"
3574
+ },
3575
+ "nhrpServerStatTxErrSduSizeExceeded" : {
3576
+ "nodetype" : "member",
3577
+ "module" : "NHRP-MIB"
3578
+ },
3579
+ "nhrpServerStatTxErrInvalidExtension" : {
3580
+ "nodetype" : "member",
3581
+ "module" : "NHRP-MIB"
3582
+ },
3583
+ "nhrpServerStatTxErrAuthenticationFailure" : {
3584
+ "nodetype" : "member",
3585
+ "module" : "NHRP-MIB"
3586
+ },
3587
+ "nhrpServerStatTxErrHopCountExceeded" : {
3588
+ "nodetype" : "member",
3589
+ "module" : "NHRP-MIB"
3590
+ },
3591
+ "nhrpServerStatFwResolveReq" : {
3592
+ "nodetype" : "member",
3593
+ "module" : "NHRP-MIB"
3594
+ },
3595
+ "nhrpServerStatFwResolveReply" : {
3596
+ "nodetype" : "member",
3597
+ "module" : "NHRP-MIB"
3598
+ },
3599
+ "nhrpServerStatFwRegisterReq" : {
3600
+ "nodetype" : "member",
3601
+ "module" : "NHRP-MIB"
3602
+ },
3603
+ "nhrpServerStatFwRegisterReply" : {
3604
+ "nodetype" : "member",
3605
+ "module" : "NHRP-MIB"
3606
+ },
3607
+ "nhrpServerStatFwPurgeReq" : {
3608
+ "nodetype" : "member",
3609
+ "module" : "NHRP-MIB"
3610
+ },
3611
+ "nhrpServerStatFwPurgeReply" : {
3612
+ "nodetype" : "member",
3613
+ "module" : "NHRP-MIB"
3614
+ },
3615
+ "nhrpServerStatFwErrorIndication" : {
3616
+ "nodetype" : "member",
3617
+ "module" : "NHRP-MIB"
3618
+ },
3619
+ "nhrpServerStatDiscontinuityTime" : {
3620
+ "nodetype" : "member",
3621
+ "module" : "NHRP-MIB"
3622
+ },
3623
+ }, # members
3624
+ "description" :
3625
+ """Objects that apply only to NHRP servers.""",
3626
+ }, # group
3627
+ }, # groups
3628
+
3629
+ "compliances" : {
3630
+ "nhrpModuleCompliance" : {
3631
+ "nodetype" : "compliance",
3632
+ "moduleName" : "NHRP-MIB",
3633
+ "oid" : "1.3.6.1.2.1.71.2.1.1",
3634
+ "status" : "current",
3635
+ "description" :
3636
+ """The compliance statement for the NHRP MIB.""",
3637
+ "requires" : {
3638
+ "nhrpGeneralGroup" : {
3639
+ "nodetype" : "mandatory",
3640
+ "module" : "NHRP-MIB"
3641
+ },
3642
+ "nhrpClientGroup" : {
3643
+ "nodetype" : "optional",
3644
+ "module" : "NHRP-MIB",
3645
+ "description" :
3646
+ """This group must be supported only by stations that
3647
+ are NHRP clients.""",
3648
+ },
3649
+ "nhrpServerGroup" : {
3650
+ "nodetype" : "optional",
3651
+ "module" : "NHRP-MIB",
3652
+ "description" :
3653
+ """This group must be supported only by stations that
3654
+ are NHRP servers.""",
3655
+ },
3656
+ }, # requires
3657
+ }, # compliance
3658
+ }, # compliances
3659
+
3660
+ }