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,4128 @@
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 CAPWAP-BASE-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/CAPWAP-BASE-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "CAPWAP-BASE-MIB",
11
+
12
+ "CAPWAP-BASE-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF Control And Provisioning of Wireless Access
17
+ Points (CAPWAP) Working Group
18
+ http://www.ietf.org/html.charters/capwap-charter.html""",
19
+ "contact" :
20
+ """General Discussion: capwap@frascone.com
21
+ To Subscribe: http://lists.frascone.com/mailman/listinfo/capwap
22
+
23
+ Yang Shi (editor)
24
+ Hangzhou H3C Tech. Co., Ltd.
25
+ Beijing R&D Center of H3C, Digital Technology Plaza
26
+ NO. 9 Shangdi 9th Street, Haidian District
27
+ Beijing 100085
28
+ China
29
+ Phone: +86 010 82775276
30
+ Email: rishyang@gmail.com
31
+
32
+ David T. Perkins (editor)
33
+ 228 Bayview Dr.
34
+ San Carlos, CA 94070
35
+ USA
36
+ Phone: +1 408 394-8702
37
+ Email: dperkins@dsperkins.com
38
+
39
+ Chris Elliott (editor)
40
+ 1516 Kent St.
41
+ Durham, NC 27707
42
+ USA
43
+ Phone: +1 919-308-1216
44
+ Email: chelliot@pobox.com
45
+
46
+ Yong Zhang (editor)
47
+ Fortinet, Inc.
48
+ 1090 Kifer Road
49
+ Sunnyvale, CA 94086
50
+ USA
51
+ Email: yzhang@fortinet.com""",
52
+ "description" :
53
+ """Copyright (c) 2010 IETF Trust and the persons identified as
54
+ authors of the code. All rights reserved.
55
+
56
+
57
+
58
+
59
+
60
+ Redistribution and use in source and binary forms, with or
61
+ without modification, is permitted pursuant to, and subject
62
+ to the license terms contained in, the Simplified BSD License
63
+ set forth in Section 4.c of the IETF Trust's Legal Provisions
64
+ Relating to IETF Documents
65
+ (http://trustee.ietf.org/license-info).
66
+
67
+ This version of this MIB module is part of RFC 5833;
68
+ see the RFC itself for full legal notices.
69
+
70
+ This MIB module contains managed object definitions for
71
+ the CAPWAP Protocol.""",
72
+ "revisions" : (
73
+ {
74
+ "date" : "2010-04-30 00:00",
75
+ "description" :
76
+ """Initial version published as RFC 5833""",
77
+ },
78
+ ),
79
+ "identity node" : "capwapBaseMIB",
80
+ },
81
+
82
+ "imports" : (
83
+ {"module" : "SNMPv2-TC", "name" : "PhysAddress"},
84
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
85
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
86
+ {"module" : "SNMPv2-TC", "name" : "DateAndTime"},
87
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
88
+ {"module" : "SYSAPPL-MIB", "name" : "LongUtf8String"},
89
+ {"module" : "IF-MIB", "name" : "InterfaceIndex"},
90
+ {"module" : "IF-MIB", "name" : "ifGeneralInformationGroup"},
91
+ {"module" : "ENTITY-MIB", "name" : "PhysicalIndex"},
92
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
93
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
94
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
95
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
96
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
97
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
98
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
99
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
100
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
101
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
102
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
103
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
104
+ {"module" : "SNMPv2-SMI", "name" : "TimeTicks"},
105
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddressType"},
106
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddress"},
107
+ ),
108
+
109
+ "typedefs" : {
110
+ "CapwapBaseWtpProfileIdTC" : {
111
+ "basetype" : "Unsigned32",
112
+ "status" : "current",
113
+ "ranges" : [
114
+ {
115
+ "min" : "0",
116
+ "max" : "4096"
117
+ },
118
+ ],
119
+ "range" : {
120
+ "min" : "0",
121
+ "max" : "4096"
122
+ },
123
+ "format" : "d",
124
+ "description" :
125
+ """Represents the unique identifier of a WTP profile.""",
126
+ },
127
+ "CapwapBaseWtpIdTC" : {
128
+ "basetype" : "OctetString",
129
+ "status" : "current",
130
+ "ranges" : [
131
+ {
132
+ "min" : "6",
133
+ "max" : "6"
134
+ },
135
+ {
136
+ "min" : "8",
137
+ "max" : "8"
138
+ },
139
+ ],
140
+ "range" : {
141
+ "min" : "6",
142
+ "max" : "8"
143
+ },
144
+ "format" : "1x:",
145
+ "description" :
146
+ """Represents the unique identifier of a WTP instance.
147
+ As usual, the Base MAC address of the WTP is used.""",
148
+ },
149
+ "CapwapBaseStationIdTC" : {
150
+ "basetype" : "OctetString",
151
+ "status" : "current",
152
+ "ranges" : [
153
+ {
154
+ "min" : "6",
155
+ "max" : "6"
156
+ },
157
+ {
158
+ "min" : "8",
159
+ "max" : "8"
160
+ },
161
+ ],
162
+ "range" : {
163
+ "min" : "6",
164
+ "max" : "8"
165
+ },
166
+ "format" : "1x:",
167
+ "description" :
168
+ """Represents the unique identifier of a station instance.
169
+ As usual, the MAC address of the station is used.""",
170
+ },
171
+ "CapwapBaseRadioIdTC" : {
172
+ "basetype" : "Unsigned32",
173
+ "status" : "current",
174
+ "ranges" : [
175
+ {
176
+ "min" : "1",
177
+ "max" : "31"
178
+ },
179
+ ],
180
+ "range" : {
181
+ "min" : "1",
182
+ "max" : "31"
183
+ },
184
+ "format" : "d",
185
+ "description" :
186
+ """Represents the unique identifier of a radio on a WTP.""",
187
+ },
188
+ "CapwapBaseTunnelModeTC" : {
189
+ "basetype" : "Bits",
190
+ "status" : "current",
191
+ "localBridging" : {
192
+ "nodetype" : "namednumber",
193
+ "number" : "0"
194
+ },
195
+ "dot3Tunnel" : {
196
+ "nodetype" : "namednumber",
197
+ "number" : "1"
198
+ },
199
+ "nativeTunnel" : {
200
+ "nodetype" : "namednumber",
201
+ "number" : "2"
202
+ },
203
+ "description" :
204
+ """Represents the tunneling modes of operation that are
205
+ supported by a WTP.
206
+ The WTP MAY support more than one option, represented by
207
+ the bit field below:
208
+ localBridging(0) - Local bridging mode
209
+ dot3Tunnel(1) - 802.3 frame tunnel mode
210
+ nativeTunnel(2) - Native frame tunnel mode""",
211
+ "reference" :
212
+ """Section 4.6.43 of CAPWAP Protocol Specification, RFC 5415.""",
213
+ },
214
+ "CapwapBaseMacTypeTC" : {
215
+ "basetype" : "Enumeration",
216
+ "status" : "current",
217
+ "localMAC" : {
218
+ "nodetype" : "namednumber",
219
+ "number" : "0"
220
+ },
221
+ "splitMAC" : {
222
+ "nodetype" : "namednumber",
223
+ "number" : "1"
224
+ },
225
+ "both" : {
226
+ "nodetype" : "namednumber",
227
+ "number" : "2"
228
+ },
229
+ "description" :
230
+ """Represents the MAC mode of operation supported by a WTP.
231
+ The following enumerated values are supported:
232
+ localMAC(0) - Local-MAC mode
233
+ splitMAC(1) - Split-MAC mode
234
+ both(2) - Both Local-MAC and Split-MAC
235
+ Note that the CAPWAP field [RFC5415] modeled by this
236
+ object takes zero as starting value; this MIB object
237
+ follows that rule.""",
238
+ "reference" :
239
+ """Section 4.6.44 of CAPWAP Protocol Specification, RFC 5415.""",
240
+ },
241
+ "CapwapBaseChannelTypeTC" : {
242
+ "basetype" : "Enumeration",
243
+ "status" : "current",
244
+ "data" : {
245
+ "nodetype" : "namednumber",
246
+ "number" : "1"
247
+ },
248
+ "control" : {
249
+ "nodetype" : "namednumber",
250
+ "number" : "2"
251
+ },
252
+ "description" :
253
+ """Represents the channel type for CAPWAP protocol.
254
+ The following enumerated values are supported:
255
+ data(1) - Data channel
256
+ control(2) - Control channel""",
257
+ },
258
+ "CapwapBaseAuthenMethodTC" : {
259
+ "basetype" : "Enumeration",
260
+ "status" : "current",
261
+ "other" : {
262
+ "nodetype" : "namednumber",
263
+ "number" : "1"
264
+ },
265
+ "clear" : {
266
+ "nodetype" : "namednumber",
267
+ "number" : "2"
268
+ },
269
+ "x509" : {
270
+ "nodetype" : "namednumber",
271
+ "number" : "3"
272
+ },
273
+ "psk" : {
274
+ "nodetype" : "namednumber",
275
+ "number" : "4"
276
+ },
277
+ "description" :
278
+ """Represents the authentication credential type for a WTP.
279
+ The following enumerated values are supported:
280
+ other(1) - Other method, for example, vendor specific
281
+ clear(2) - Clear text and no authentication
282
+ x509(3) - X.509 certificate authentication
283
+ psk(4) - Pre-Shared secret authentication
284
+ As a mandatory requirement, CAPWAP control channel
285
+ authentication SHOULD use DTLS, either by certificate or
286
+ PSK. For data channel authentication, DTLS is optional.""",
287
+ },
288
+ }, # typedefs
289
+
290
+ "nodes" : {
291
+ "capwapBaseMIB" : {
292
+ "nodetype" : "node",
293
+ "moduleName" : "CAPWAP-BASE-MIB",
294
+ "oid" : "1.3.6.1.2.1.196",
295
+ "status" : "current",
296
+ }, # node
297
+ "capwapBaseNotifications" : {
298
+ "nodetype" : "node",
299
+ "moduleName" : "CAPWAP-BASE-MIB",
300
+ "oid" : "1.3.6.1.2.1.196.0",
301
+ }, # node
302
+ "capwapBaseObjects" : {
303
+ "nodetype" : "node",
304
+ "moduleName" : "CAPWAP-BASE-MIB",
305
+ "oid" : "1.3.6.1.2.1.196.1",
306
+ }, # node
307
+ "capwapBaseAc" : {
308
+ "nodetype" : "node",
309
+ "moduleName" : "CAPWAP-BASE-MIB",
310
+ "oid" : "1.3.6.1.2.1.196.1.1",
311
+ }, # node
312
+ "capwapBaseWtpSessions" : {
313
+ "nodetype" : "scalar",
314
+ "moduleName" : "CAPWAP-BASE-MIB",
315
+ "oid" : "1.3.6.1.2.1.196.1.1.1",
316
+ "status" : "current",
317
+ "syntax" : {
318
+ "type" : {
319
+ "basetype" : "Unsigned32",
320
+ "parent module" : {
321
+ "name" : "SNMPv2-SMI",
322
+ "type" : "Gauge32",
323
+ },
324
+ "ranges" : [
325
+ {
326
+ "min" : "0",
327
+ "max" : "65535"
328
+ },
329
+ ],
330
+ "range" : {
331
+ "min" : "0",
332
+ "max" : "65535"
333
+ },
334
+ },
335
+ },
336
+ "access" : "readonly",
337
+ "description" :
338
+ """Represents the total number of WTPs that are connecting to
339
+ the AC.""",
340
+ "reference" :
341
+ """Section 4.6.1 of CAPWAP Protocol Specification, RFC 5415.""",
342
+ }, # scalar
343
+ "capwapBaseWtpSessionsLimit" : {
344
+ "nodetype" : "scalar",
345
+ "moduleName" : "CAPWAP-BASE-MIB",
346
+ "oid" : "1.3.6.1.2.1.196.1.1.2",
347
+ "status" : "current",
348
+ "syntax" : {
349
+ "type" : {
350
+ "basetype" : "Unsigned32",
351
+ "ranges" : [
352
+ {
353
+ "min" : "0",
354
+ "max" : "65535"
355
+ },
356
+ ],
357
+ "range" : {
358
+ "min" : "0",
359
+ "max" : "65535"
360
+ },
361
+ },
362
+ },
363
+ "access" : "readwrite",
364
+ "description" :
365
+ """Represents the maximum number of WTP sessions configured on
366
+ the AC.
367
+ The value of the object is persistent at restart/reboot.""",
368
+ "reference" :
369
+ """Section 4.6.1 of CAPWAP Protocol Specification, RFC 5415.""",
370
+ }, # scalar
371
+ "capwapBaseStationSessions" : {
372
+ "nodetype" : "scalar",
373
+ "moduleName" : "CAPWAP-BASE-MIB",
374
+ "oid" : "1.3.6.1.2.1.196.1.1.3",
375
+ "status" : "current",
376
+ "syntax" : {
377
+ "type" : {
378
+ "basetype" : "Unsigned32",
379
+ "parent module" : {
380
+ "name" : "SNMPv2-SMI",
381
+ "type" : "Gauge32",
382
+ },
383
+ "ranges" : [
384
+ {
385
+ "min" : "0",
386
+ "max" : "65535"
387
+ },
388
+ ],
389
+ "range" : {
390
+ "min" : "0",
391
+ "max" : "65535"
392
+ },
393
+ },
394
+ },
395
+ "access" : "readonly",
396
+ "description" :
397
+ """Represents the total number of stations that are accessing
398
+ the wireless service provided by the AC.""",
399
+ "reference" :
400
+ """Section 4.6.1 of CAPWAP Protocol Specification, RFC 5415.""",
401
+ }, # scalar
402
+ "capwapBaseStationSessionsLimit" : {
403
+ "nodetype" : "scalar",
404
+ "moduleName" : "CAPWAP-BASE-MIB",
405
+ "oid" : "1.3.6.1.2.1.196.1.1.4",
406
+ "status" : "current",
407
+ "syntax" : {
408
+ "type" : {
409
+ "basetype" : "Unsigned32",
410
+ "ranges" : [
411
+ {
412
+ "min" : "0",
413
+ "max" : "65535"
414
+ },
415
+ ],
416
+ "range" : {
417
+ "min" : "0",
418
+ "max" : "65535"
419
+ },
420
+ },
421
+ },
422
+ "access" : "readwrite",
423
+ "description" :
424
+ """Represents the maximum number of station sessions configured
425
+ on the AC.
426
+ The value of the object is persistent at restart/reboot.""",
427
+ "reference" :
428
+ """Section 4.6.1 of CAPWAP Protocol Specification, RFC 5415.""",
429
+ }, # scalar
430
+ "capwapBaseDataChannelDTLSPolicyOptions" : {
431
+ "nodetype" : "scalar",
432
+ "moduleName" : "CAPWAP-BASE-MIB",
433
+ "oid" : "1.3.6.1.2.1.196.1.1.5",
434
+ "status" : "current",
435
+ "syntax" : {
436
+ "type" : {
437
+ "basetype" : "Bits",
438
+ "other" : {
439
+ "nodetype" : "namednumber",
440
+ "number" : "0"
441
+ },
442
+ "clear" : {
443
+ "nodetype" : "namednumber",
444
+ "number" : "1"
445
+ },
446
+ "dtls" : {
447
+ "nodetype" : "namednumber",
448
+ "number" : "2"
449
+ },
450
+ },
451
+ },
452
+ "access" : "readonly",
453
+ "description" :
454
+ """The AC communicates its policy on the use of DTLS for
455
+ the CAPWAP data channel.
456
+ The AC MAY support more than one option, represented by the bit
457
+ field below:
458
+
459
+
460
+
461
+ other(0) - Other method, for example, vendor specific
462
+ clear(1) - Clear text
463
+ dtls(2) - DTLS""",
464
+ "reference" :
465
+ """Section 4.6.1 of CAPWAP Protocol Specification, RFC 5415.""",
466
+ }, # scalar
467
+ "capwapBaseControlChannelAuthenOptions" : {
468
+ "nodetype" : "scalar",
469
+ "moduleName" : "CAPWAP-BASE-MIB",
470
+ "oid" : "1.3.6.1.2.1.196.1.1.6",
471
+ "status" : "current",
472
+ "syntax" : {
473
+ "type" : {
474
+ "basetype" : "Bits",
475
+ "x509" : {
476
+ "nodetype" : "namednumber",
477
+ "number" : "0"
478
+ },
479
+ "psk" : {
480
+ "nodetype" : "namednumber",
481
+ "number" : "1"
482
+ },
483
+ },
484
+ },
485
+ "access" : "readonly",
486
+ "description" :
487
+ """Represents the authentication credential type supported by the
488
+ AC for CAPWAP control channel.
489
+ The AC MAY support more than one option, represented by the bit
490
+ field below:
491
+ x509(0) - X.509 certificate based
492
+ psk(1) - Pre-Shared secret""",
493
+ "reference" :
494
+ """Section 4.6.1 of CAPWAP Protocol Specification, RFC 5415.""",
495
+ }, # scalar
496
+ "capwapBaseAcNameListTable" : {
497
+ "nodetype" : "table",
498
+ "moduleName" : "CAPWAP-BASE-MIB",
499
+ "oid" : "1.3.6.1.2.1.196.1.1.9",
500
+ "status" : "current",
501
+ "description" :
502
+ """A table of objects that configure the AC name list.
503
+ Values of all read-create objects in this table are
504
+ persistent at restart/reboot.""",
505
+ "reference" :
506
+ """Section 4.6.5 of CAPWAP Protocol Specification, RFC 5415.""",
507
+ }, # table
508
+ "capwapBaseAcNameListEntry" : {
509
+ "nodetype" : "row",
510
+ "moduleName" : "CAPWAP-BASE-MIB",
511
+ "oid" : "1.3.6.1.2.1.196.1.1.9.1",
512
+ "create" : "true",
513
+ "status" : "current",
514
+ "linkage" : [
515
+ "capwapBaseAcNameListId",
516
+ ],
517
+ "description" :
518
+ """A set of objects that configures the AC name list.""",
519
+ }, # row
520
+ "capwapBaseAcNameListId" : {
521
+ "nodetype" : "column",
522
+ "moduleName" : "CAPWAP-BASE-MIB",
523
+ "oid" : "1.3.6.1.2.1.196.1.1.9.1.1",
524
+ "status" : "current",
525
+ "syntax" : {
526
+ "type" : {
527
+ "basetype" : "Unsigned32",
528
+ "ranges" : [
529
+ {
530
+ "min" : "1",
531
+ "max" : "255"
532
+ },
533
+ ],
534
+ "range" : {
535
+ "min" : "1",
536
+ "max" : "255"
537
+ },
538
+ },
539
+ },
540
+ "access" : "noaccess",
541
+ "description" :
542
+ """Represents the unique identifier of an AC Name list.""",
543
+ }, # column
544
+ "capwapBaseAcNameListName" : {
545
+ "nodetype" : "column",
546
+ "moduleName" : "CAPWAP-BASE-MIB",
547
+ "oid" : "1.3.6.1.2.1.196.1.1.9.1.2",
548
+ "status" : "current",
549
+ "syntax" : {
550
+ "type" : {
551
+ "basetype" : "OctetString",
552
+ "parent module" : {
553
+ "name" : "SYSAPPL-MIB",
554
+ "type" : "LongUtf8String",
555
+ },
556
+ "ranges" : [
557
+ {
558
+ "min" : "1",
559
+ "max" : "512"
560
+ },
561
+ ],
562
+ "range" : {
563
+ "min" : "1",
564
+ "max" : "512"
565
+ },
566
+ },
567
+ },
568
+ "access" : "readwrite",
569
+ "description" :
570
+ """Represents the name of an AC, and it is expected to be
571
+ an UTF-8 encoded string.""",
572
+ "reference" :
573
+ """Section 4.6.5 of CAPWAP Protocol Specification, RFC 5415.""",
574
+ }, # column
575
+ "capwapBaseAcNameListPriority" : {
576
+ "nodetype" : "column",
577
+ "moduleName" : "CAPWAP-BASE-MIB",
578
+ "oid" : "1.3.6.1.2.1.196.1.1.9.1.3",
579
+ "status" : "current",
580
+ "syntax" : {
581
+ "type" : {
582
+ "basetype" : "Unsigned32",
583
+ "ranges" : [
584
+ {
585
+ "min" : "1",
586
+ "max" : "255"
587
+ },
588
+ ],
589
+ "range" : {
590
+ "min" : "1",
591
+ "max" : "255"
592
+ },
593
+ },
594
+ },
595
+ "access" : "readwrite",
596
+ "description" :
597
+ """Represents the priority order of the preferred AC.
598
+ For instance, the value of one (1) is used to set the primary
599
+ AC, the value of two (2) is used to set the secondary AC, etc.""",
600
+ "reference" :
601
+ """Section 4.6.5 of CAPWAP Protocol Specification, RFC 5415.""",
602
+ }, # column
603
+ "capwapBaseAcNameListRowStatus" : {
604
+ "nodetype" : "column",
605
+ "moduleName" : "CAPWAP-BASE-MIB",
606
+ "oid" : "1.3.6.1.2.1.196.1.1.9.1.4",
607
+ "status" : "current",
608
+ "syntax" : {
609
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
610
+ },
611
+ "access" : "readwrite",
612
+ "description" :
613
+ """This object is used to create, modify, and/or delete a row
614
+ in this table.
615
+ The value of capwapBaseAcNameListName and
616
+ capwapBaseAcNameListPriority can be changed when this
617
+ object is in state 'active' or in 'notInService'.
618
+
619
+
620
+
621
+ The capwapBaseAcNameListRowStatus may be changed to 'active'
622
+ if all the managed objects in the conceptual row with
623
+ MAX-ACCESS read-create have been assigned valid values.""",
624
+ }, # column
625
+ "capwapBaseMacAclTable" : {
626
+ "nodetype" : "table",
627
+ "moduleName" : "CAPWAP-BASE-MIB",
628
+ "oid" : "1.3.6.1.2.1.196.1.1.10",
629
+ "status" : "current",
630
+ "description" :
631
+ """A table of objects that configure station Access Control
632
+ Lists (ACLs).
633
+ The WTP will not provide service to the MAC addresses
634
+ configured in this table.
635
+ Values of all read-create objects in this table are persistent
636
+ at AC restart/reboot.""",
637
+ "reference" :
638
+ """Section 4.6.7 of CAPWAP Protocol Specification, RFC 5415.""",
639
+ }, # table
640
+ "capwapBaseMacAclEntry" : {
641
+ "nodetype" : "row",
642
+ "moduleName" : "CAPWAP-BASE-MIB",
643
+ "oid" : "1.3.6.1.2.1.196.1.1.10.1",
644
+ "create" : "true",
645
+ "status" : "current",
646
+ "linkage" : [
647
+ "capwapBaseMacAclId",
648
+ ],
649
+ "description" :
650
+ """A set of objects that configures station Access Control
651
+ Lists (ACLs).""",
652
+ }, # row
653
+ "capwapBaseMacAclId" : {
654
+ "nodetype" : "column",
655
+ "moduleName" : "CAPWAP-BASE-MIB",
656
+ "oid" : "1.3.6.1.2.1.196.1.1.10.1.1",
657
+ "status" : "current",
658
+ "syntax" : {
659
+ "type" : { "module" :"", "name" : "Unsigned32"},
660
+ },
661
+ "access" : "noaccess",
662
+ "description" :
663
+ """Represents the unique identifier of an ACL.""",
664
+ }, # column
665
+ "capwapBaseMacAclStationId" : {
666
+ "nodetype" : "column",
667
+ "moduleName" : "CAPWAP-BASE-MIB",
668
+ "oid" : "1.3.6.1.2.1.196.1.1.10.1.2",
669
+ "status" : "current",
670
+ "syntax" : {
671
+ "type" : { "module" :"CAPWAP-BASE-MIB", "name" : "CapwapBaseStationIdTC"},
672
+ },
673
+ "access" : "readwrite",
674
+ "description" :
675
+ """Represents the MAC address of a station to which WTPs will
676
+ no longer provides service.""",
677
+ "reference" :
678
+ """Section 4.6.7 of CAPWAP Protocol Specification, RFC 5415.""",
679
+ }, # column
680
+ "capwapBaseMacAclRowStatus" : {
681
+ "nodetype" : "column",
682
+ "moduleName" : "CAPWAP-BASE-MIB",
683
+ "oid" : "1.3.6.1.2.1.196.1.1.10.1.3",
684
+ "status" : "current",
685
+ "syntax" : {
686
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
687
+ },
688
+ "access" : "readwrite",
689
+ "description" :
690
+ """This object is used to create, modify, and/or delete a row
691
+ in this table.
692
+ The value of capwapBaseMacAclStationId can be changed when
693
+ this object is in state 'active' or in 'notInService'.
694
+ The capwapBaseMacAclRowStatus may be changed to 'active'
695
+ if all the managed objects in the conceptual row with
696
+ MAX-ACCESS read-create have been assigned valid values.""",
697
+ }, # column
698
+ "capwapBaseWtps" : {
699
+ "nodetype" : "node",
700
+ "moduleName" : "CAPWAP-BASE-MIB",
701
+ "oid" : "1.3.6.1.2.1.196.1.2",
702
+ }, # node
703
+ "capwapBaseWtpProfileTable" : {
704
+ "nodetype" : "table",
705
+ "moduleName" : "CAPWAP-BASE-MIB",
706
+ "oid" : "1.3.6.1.2.1.196.1.2.1",
707
+ "status" : "current",
708
+ "description" :
709
+ """A table of objects that configure WTP profiles for WTPs to
710
+ be managed before they connect to the AC.
711
+ An operator could change a WTP's configuration by changing
712
+ the values of parameters in the corresponding WTP profile,
713
+ then the WTP could get the new configuration through the
714
+ CAPWAP control channel.
715
+
716
+
717
+
718
+ Values of all read-create objects in this table are
719
+ persistent at restart/reboot.""",
720
+ }, # table
721
+ "capwapBaseWtpProfileEntry" : {
722
+ "nodetype" : "row",
723
+ "moduleName" : "CAPWAP-BASE-MIB",
724
+ "oid" : "1.3.6.1.2.1.196.1.2.1.1",
725
+ "create" : "true",
726
+ "status" : "current",
727
+ "linkage" : [
728
+ "capwapBaseWtpProfileId",
729
+ ],
730
+ "description" :
731
+ """A set of objects that configures and displays a WTP profile.""",
732
+ }, # row
733
+ "capwapBaseWtpProfileId" : {
734
+ "nodetype" : "column",
735
+ "moduleName" : "CAPWAP-BASE-MIB",
736
+ "oid" : "1.3.6.1.2.1.196.1.2.1.1.1",
737
+ "status" : "current",
738
+ "syntax" : {
739
+ "type" : { "module" :"CAPWAP-BASE-MIB", "name" : "CapwapBaseWtpProfileIdTC"},
740
+ },
741
+ "access" : "noaccess",
742
+ "description" :
743
+ """Represents the unique identifier of a WTP profile.""",
744
+ }, # column
745
+ "capwapBaseWtpProfileName" : {
746
+ "nodetype" : "column",
747
+ "moduleName" : "CAPWAP-BASE-MIB",
748
+ "oid" : "1.3.6.1.2.1.196.1.2.1.1.2",
749
+ "status" : "current",
750
+ "syntax" : {
751
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
752
+ },
753
+ "access" : "readwrite",
754
+ "description" :
755
+ """Represents the name of a WTP profile.""",
756
+ }, # column
757
+ "capwapBaseWtpProfileWtpMacAddress" : {
758
+ "nodetype" : "column",
759
+ "moduleName" : "CAPWAP-BASE-MIB",
760
+ "oid" : "1.3.6.1.2.1.196.1.2.1.1.3",
761
+ "status" : "current",
762
+ "syntax" : {
763
+ "type" : { "module" :"CAPWAP-BASE-MIB", "name" : "CapwapBaseWtpIdTC"},
764
+ },
765
+ "access" : "readwrite",
766
+ "description" :
767
+ """Represents the Base MAC address of a WTP.
768
+ A WTP profile MUST contain the Base MAC address of the WTP
769
+ because the CAPWAP message received from the WTP contains
770
+ its Base MAC address and the AC uses the Base MAC address to
771
+ find the corresponding WTP profile.
772
+ Section 4.6.40 of [RFC5415] omits indicating that the WTP's
773
+ Base MAC address must be included in the WTP Board Data
774
+ message element. This is a known errata item and should be
775
+ fixed in any future revision of the RFC 5415.""",
776
+ "reference" :
777
+ """Section 4.6.40 of CAPWAP Protocol Specification, RFC 5415.""",
778
+ }, # column
779
+ "capwapBaseWtpProfileWtpModelNumber" : {
780
+ "nodetype" : "column",
781
+ "moduleName" : "CAPWAP-BASE-MIB",
782
+ "oid" : "1.3.6.1.2.1.196.1.2.1.1.4",
783
+ "status" : "current",
784
+ "syntax" : {
785
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
786
+ },
787
+ "access" : "readwrite",
788
+ "description" :
789
+ """Represents the model number of a WTP.
790
+ A WTP profile MUST include the WTP's model number, which
791
+ reflects the number of Physical Layer (PHY) radios on the WTP.
792
+ In this way, the creation of a WTP profile triggers the AC
793
+ to automatically create the same number of WTP Virtual Radio
794
+ Interfaces corresponding to the WTP's PHY radios without
795
+ manual intervention. With the ifIndexes of WTP Virtual
796
+ Radio Interfaces, the operator could configure and manage
797
+ the WTP's PHY radios through the wireless binding MIB
798
+ modules.""",
799
+ "reference" :
800
+ """Section 4.6.40 of CAPWAP Protocol Specification, RFC 5415.""",
801
+ }, # column
802
+ "capwapBaseWtpProfileWtpName" : {
803
+ "nodetype" : "column",
804
+ "moduleName" : "CAPWAP-BASE-MIB",
805
+ "oid" : "1.3.6.1.2.1.196.1.2.1.1.5",
806
+ "status" : "current",
807
+ "syntax" : {
808
+ "type" : {
809
+ "basetype" : "OctetString",
810
+ "parent module" : {
811
+ "name" : "SYSAPPL-MIB",
812
+ "type" : "LongUtf8String",
813
+ },
814
+ "ranges" : [
815
+ {
816
+ "min" : "1",
817
+ "max" : "512"
818
+ },
819
+ ],
820
+ "range" : {
821
+ "min" : "1",
822
+ "max" : "512"
823
+ },
824
+ },
825
+ },
826
+ "access" : "readwrite",
827
+ "description" :
828
+ """Represents the name of the WTP.""",
829
+ "reference" :
830
+ """Section 4.6.45 of CAPWAP Protocol Specification, RFC 5415.""",
831
+ }, # column
832
+ "capwapBaseWtpProfileWtpLocation" : {
833
+ "nodetype" : "column",
834
+ "moduleName" : "CAPWAP-BASE-MIB",
835
+ "oid" : "1.3.6.1.2.1.196.1.2.1.1.6",
836
+ "status" : "current",
837
+ "syntax" : {
838
+ "type" : {
839
+ "basetype" : "OctetString",
840
+ "parent module" : {
841
+ "name" : "SYSAPPL-MIB",
842
+ "type" : "LongUtf8String",
843
+ },
844
+ "ranges" : [
845
+ {
846
+ "min" : "1",
847
+ "max" : "1024"
848
+ },
849
+ ],
850
+ "range" : {
851
+ "min" : "1",
852
+ "max" : "1024"
853
+ },
854
+ },
855
+ },
856
+ "access" : "readwrite",
857
+ "description" :
858
+ """Represents the location of the WTP.""",
859
+ "reference" :
860
+ """Section 4.6.30 of CAPWAP Protocol Specification, RFC 5415.""",
861
+ }, # column
862
+ "capwapBaseWtpProfileWtpStaticIpEnable" : {
863
+ "nodetype" : "column",
864
+ "moduleName" : "CAPWAP-BASE-MIB",
865
+ "oid" : "1.3.6.1.2.1.196.1.2.1.1.7",
866
+ "status" : "current",
867
+ "syntax" : {
868
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
869
+ },
870
+ "access" : "readwrite",
871
+ "description" :
872
+ """Represents whether the WTP SHOULD use a static IP address
873
+ or not. A value of false disables the static IP address,
874
+ while a value of true enables it.""",
875
+ "reference" :
876
+ """Section 4.6.48 of CAPWAP Protocol Specification, RFC 5415.""",
877
+ }, # column
878
+ "capwapBaseWtpProfileWtpStaticIpType" : {
879
+ "nodetype" : "column",
880
+ "moduleName" : "CAPWAP-BASE-MIB",
881
+ "oid" : "1.3.6.1.2.1.196.1.2.1.1.8",
882
+ "status" : "current",
883
+ "syntax" : {
884
+ "type" : {
885
+ "basetype" : "Enumeration",
886
+ "parent module" : {
887
+ "name" : "INET-ADDRESS-MIB",
888
+ "type" : "InetAddressType",
889
+ },
890
+ "ipv4" : {
891
+ "nodetype" : "namednumber",
892
+ "number" : "1"
893
+ },
894
+ },
895
+ },
896
+ "access" : "readwrite",
897
+ "description" :
898
+ """Represents the static IP address type used by the WTP.
899
+ Only ipv4(1) is supported by the object.
900
+ Although the CAPWAP protocol [RFC5415] supports both IPv4
901
+ and IPv6, note that the CAPWAP field modeled by this
902
+ object does not support IPv6, so the object does not
903
+ support ipv6(2).""",
904
+ "reference" :
905
+ """Section 4.6.48 of CAPWAP Protocol Specification, RFC 5415.""",
906
+ }, # column
907
+ "capwapBaseWtpProfileWtpStaticIpAddress" : {
908
+ "nodetype" : "column",
909
+ "moduleName" : "CAPWAP-BASE-MIB",
910
+ "oid" : "1.3.6.1.2.1.196.1.2.1.1.9",
911
+ "status" : "current",
912
+ "syntax" : {
913
+ "type" : {
914
+ "basetype" : "OctetString",
915
+ "parent module" : {
916
+ "name" : "INET-ADDRESS-MIB",
917
+ "type" : "InetAddress",
918
+ },
919
+ "ranges" : [
920
+ {
921
+ "min" : "4",
922
+ "max" : "4"
923
+ },
924
+ ],
925
+ "range" : {
926
+ "min" : "4",
927
+ "max" : "4"
928
+ },
929
+ },
930
+ },
931
+ "access" : "readwrite",
932
+ "description" :
933
+ """When capwapBaseWtpProfileWtpStaticIpEnable is true,
934
+ it represents the static IP address to be assigned to the WTP.
935
+ The format of this IP address is determined by the
936
+ corresponding instance of object
937
+
938
+
939
+
940
+ capwapBaseWtpProfileWtpStaticIpType.""",
941
+ "reference" :
942
+ """Section 4.6.48 of CAPWAP Protocol Specification, RFC 5415.""",
943
+ }, # column
944
+ "capwapBaseWtpProfileWtpNetmask" : {
945
+ "nodetype" : "column",
946
+ "moduleName" : "CAPWAP-BASE-MIB",
947
+ "oid" : "1.3.6.1.2.1.196.1.2.1.1.10",
948
+ "status" : "current",
949
+ "syntax" : {
950
+ "type" : {
951
+ "basetype" : "OctetString",
952
+ "parent module" : {
953
+ "name" : "INET-ADDRESS-MIB",
954
+ "type" : "InetAddress",
955
+ },
956
+ "ranges" : [
957
+ {
958
+ "min" : "4",
959
+ "max" : "4"
960
+ },
961
+ ],
962
+ "range" : {
963
+ "min" : "4",
964
+ "max" : "4"
965
+ },
966
+ },
967
+ },
968
+ "access" : "readwrite",
969
+ "description" :
970
+ """When capwapBaseWtpProfileWtpStaticIpEnable is true,
971
+ it represents the netmask to be assigned to the WTP.
972
+ The format of this netmask is determined by the
973
+ corresponding instance of object
974
+ capwapBaseWtpProfileWtpStaticIpType.""",
975
+ "reference" :
976
+ """Section 4.6.48 of CAPWAP Protocol Specification, RFC 5415.""",
977
+ }, # column
978
+ "capwapBaseWtpProfileWtpGateway" : {
979
+ "nodetype" : "column",
980
+ "moduleName" : "CAPWAP-BASE-MIB",
981
+ "oid" : "1.3.6.1.2.1.196.1.2.1.1.11",
982
+ "status" : "current",
983
+ "syntax" : {
984
+ "type" : {
985
+ "basetype" : "OctetString",
986
+ "parent module" : {
987
+ "name" : "INET-ADDRESS-MIB",
988
+ "type" : "InetAddress",
989
+ },
990
+ "ranges" : [
991
+ {
992
+ "min" : "4",
993
+ "max" : "4"
994
+ },
995
+ ],
996
+ "range" : {
997
+ "min" : "4",
998
+ "max" : "4"
999
+ },
1000
+ },
1001
+ },
1002
+ "access" : "readwrite",
1003
+ "description" :
1004
+ """When capwapBaseWtpProfileWtpStaticIpEnable is true,
1005
+ it represents the gateway to be assigned to the WTP.
1006
+ The format of this IP address is determined by the
1007
+ corresponding instance of object
1008
+ capwapBaseWtpProfileWtpStaticIpType.""",
1009
+ "reference" :
1010
+ """Section 4.6.48 of CAPWAP Protocol Specification, RFC 5415.""",
1011
+ }, # column
1012
+ "capwapBaseWtpProfileWtpFallbackEnable" : {
1013
+ "nodetype" : "column",
1014
+ "moduleName" : "CAPWAP-BASE-MIB",
1015
+ "oid" : "1.3.6.1.2.1.196.1.2.1.1.12",
1016
+ "status" : "current",
1017
+ "syntax" : {
1018
+ "type" : {
1019
+ "basetype" : "Enumeration",
1020
+ "enabled" : {
1021
+ "nodetype" : "namednumber",
1022
+ "number" : "1"
1023
+ },
1024
+ "disabled" : {
1025
+ "nodetype" : "namednumber",
1026
+ "number" : "2"
1027
+ },
1028
+ },
1029
+ },
1030
+ "access" : "readwrite",
1031
+ "default" : "enabled",
1032
+ "description" :
1033
+ """Represents whether to enable or disable automatic CAPWAP
1034
+ fallback in the event that a WTP detects its preferred AC
1035
+ and is not currently connected to it.
1036
+ The following enumerated values are supported:
1037
+ enabled(1) - The fallback mode is enabled
1038
+ disabled(2) - The fallback mode is disabled""",
1039
+ "reference" :
1040
+ """Section 4.6.42 of CAPWAP Protocol Specification, RFC 5415.""",
1041
+ }, # column
1042
+ "capwapBaseWtpProfileWtpEchoInterval" : {
1043
+ "nodetype" : "column",
1044
+ "moduleName" : "CAPWAP-BASE-MIB",
1045
+ "oid" : "1.3.6.1.2.1.196.1.2.1.1.13",
1046
+ "status" : "current",
1047
+ "syntax" : {
1048
+ "type" : { "module" :"", "name" : "Unsigned32"},
1049
+ },
1050
+ "access" : "readwrite",
1051
+ "default" : "30",
1052
+ "units" : "second",
1053
+ "description" :
1054
+ """Represents the minimum time, in seconds, between sending Echo
1055
+ Request messages to the AC that the WTP has joined.""",
1056
+ "reference" :
1057
+ """Section 4.7.7 of CAPWAP Protocol Specification, RFC 5415.""",
1058
+ }, # column
1059
+ "capwapBaseWtpProfileWtpIdleTimeout" : {
1060
+ "nodetype" : "column",
1061
+ "moduleName" : "CAPWAP-BASE-MIB",
1062
+ "oid" : "1.3.6.1.2.1.196.1.2.1.1.14",
1063
+ "status" : "current",
1064
+ "syntax" : {
1065
+ "type" : { "module" :"", "name" : "Unsigned32"},
1066
+ },
1067
+ "access" : "readwrite",
1068
+ "default" : "300",
1069
+ "units" : "second",
1070
+ "description" :
1071
+ """Represents the idle timeout value that the WTP SHOULD enforce
1072
+ for its active stations.""",
1073
+ "reference" :
1074
+ """Section 4.7.8 of CAPWAP Protocol Specification, RFC 5415.""",
1075
+ }, # column
1076
+ "capwapBaseWtpProfileWtpMaxDiscoveryInterval" : {
1077
+ "nodetype" : "column",
1078
+ "moduleName" : "CAPWAP-BASE-MIB",
1079
+ "oid" : "1.3.6.1.2.1.196.1.2.1.1.15",
1080
+ "status" : "current",
1081
+ "syntax" : {
1082
+ "type" : {
1083
+ "basetype" : "Unsigned32",
1084
+ "ranges" : [
1085
+ {
1086
+ "min" : "2",
1087
+ "max" : "180"
1088
+ },
1089
+ ],
1090
+ "range" : {
1091
+ "min" : "2",
1092
+ "max" : "180"
1093
+ },
1094
+ },
1095
+ },
1096
+ "access" : "readwrite",
1097
+ "default" : "20",
1098
+ "units" : "second",
1099
+ "description" :
1100
+ """Represents the maximum time allowed between sending Discovery
1101
+ Request messages, in seconds.""",
1102
+ "reference" :
1103
+ """Section 4.7.10 of CAPWAP Protocol Specification, RFC 5415.""",
1104
+ }, # column
1105
+ "capwapBaseWtpProfileWtpReportInterval" : {
1106
+ "nodetype" : "column",
1107
+ "moduleName" : "CAPWAP-BASE-MIB",
1108
+ "oid" : "1.3.6.1.2.1.196.1.2.1.1.16",
1109
+ "status" : "current",
1110
+ "syntax" : {
1111
+ "type" : { "module" :"", "name" : "Unsigned32"},
1112
+ },
1113
+ "access" : "readwrite",
1114
+ "default" : "120",
1115
+ "units" : "second",
1116
+ "description" :
1117
+ """Represents the interval for WTP to send the Decryption Error
1118
+ report.""",
1119
+ "reference" :
1120
+ """Section 4.7.11 of CAPWAP Protocol Specification, RFC 5415.""",
1121
+ }, # column
1122
+ "capwapBaseWtpProfileWtpStatisticsTimer" : {
1123
+ "nodetype" : "column",
1124
+ "moduleName" : "CAPWAP-BASE-MIB",
1125
+ "oid" : "1.3.6.1.2.1.196.1.2.1.1.17",
1126
+ "status" : "current",
1127
+ "syntax" : {
1128
+ "type" : { "module" :"", "name" : "Unsigned32"},
1129
+ },
1130
+ "access" : "readwrite",
1131
+ "default" : "120",
1132
+ "units" : "second",
1133
+ "description" :
1134
+ """Represents the interval the WTP uses between the WTP Event
1135
+ Requests it transmits to the AC to communicate its statistics,
1136
+ in seconds.""",
1137
+ "reference" :
1138
+ """Section 4.7.14 of CAPWAP Protocol Specification, RFC 5415.""",
1139
+ }, # column
1140
+ "capwapBaseWtpProfileWtpEcnSupport" : {
1141
+ "nodetype" : "column",
1142
+ "moduleName" : "CAPWAP-BASE-MIB",
1143
+ "oid" : "1.3.6.1.2.1.196.1.2.1.1.18",
1144
+ "status" : "current",
1145
+ "syntax" : {
1146
+ "type" : {
1147
+ "basetype" : "Enumeration",
1148
+ "limited" : {
1149
+ "nodetype" : "namednumber",
1150
+ "number" : "0"
1151
+ },
1152
+ "fullAndLimited" : {
1153
+ "nodetype" : "namednumber",
1154
+ "number" : "1"
1155
+ },
1156
+ },
1157
+ },
1158
+ "access" : "readwrite",
1159
+ "description" :
1160
+ """Represents the support for the Explicit Congestion Notification
1161
+ (ECN) bits, as defined in [RFC3168].
1162
+ The following enumerated values are supported:
1163
+ limited(0) - Limited ECN support
1164
+ fullAndLimited(1) - Full and limited ECN support
1165
+ Note that the CAPWAP field [RFC5415] modeled by this
1166
+ object takes zero as starting value; this MIB object follows
1167
+ that rule.""",
1168
+ "reference" :
1169
+ """Section 4.6.25 of CAPWAP Protocol Specification, RFC 5415.""",
1170
+ }, # column
1171
+ "capwapBaseWtpProfileRowStatus" : {
1172
+ "nodetype" : "column",
1173
+ "moduleName" : "CAPWAP-BASE-MIB",
1174
+ "oid" : "1.3.6.1.2.1.196.1.2.1.1.19",
1175
+ "status" : "current",
1176
+ "syntax" : {
1177
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1178
+ },
1179
+ "access" : "readwrite",
1180
+ "description" :
1181
+ """This object is used to create, modify, and/or delete a row
1182
+
1183
+
1184
+
1185
+ in this table.
1186
+ The value of capwapBaseWtpProfileName,
1187
+ capwapBaseWtpProfileWtpName and capwapBaseWtpProfileWtpLocation
1188
+ can be changed when this object is in state 'active' or in
1189
+ 'notInService'.
1190
+ The other objects in a row can be modified only when the value
1191
+ of this object in the corresponding conceptual row is not
1192
+ 'active'. Thus, to modify one or more of the objects in
1193
+ this conceptual row:
1194
+ a. change the row status to 'notInService'
1195
+ b. change the values of the row
1196
+ c. change the row status to 'active'
1197
+ The capwapBaseWtpProfileRowStatus may be changed to 'active'
1198
+ if the managed objects capwapBaseWtpProfileName,
1199
+ capwapBaseWtpProfileWtpMacAddress,
1200
+ capwapBaseWtpProfileWtpModelNumber,
1201
+ capwapBaseWtpProfileWtpName, and
1202
+ capwapBaseWtpProfileWtpLocation in the conceptual row
1203
+ have been assigned valid values.
1204
+
1205
+ Deleting a WTP profile in use will disconnect the WTP from
1206
+ the AC. So the network management system SHOULD
1207
+ ask the operator to confirm such an operation.
1208
+ When a WTP profile entry is removed from the table,
1209
+ the corresponding WTP Virtual Radio Interfaces are also
1210
+ removed from the capwapBaseWirelessBindingTable and
1211
+ ifTable [RFC2863].
1212
+ Also, the related object instances SHOULD be removed from
1213
+ the wireless binding MIB modules such as the IEEE 802.11
1214
+ MIB module [IEEE.802-11.2007].""",
1215
+ }, # column
1216
+ "capwapBaseWtpStateTable" : {
1217
+ "nodetype" : "table",
1218
+ "moduleName" : "CAPWAP-BASE-MIB",
1219
+ "oid" : "1.3.6.1.2.1.196.1.2.2",
1220
+ "status" : "current",
1221
+ "description" :
1222
+ """A table of objects that indicate the AC's CAPWAP FSM state
1223
+ for each WTP, and helps the operator to query a WTP's
1224
+ current configuration.""",
1225
+ }, # table
1226
+ "capwapBaseWtpStateEntry" : {
1227
+ "nodetype" : "row",
1228
+ "moduleName" : "CAPWAP-BASE-MIB",
1229
+ "oid" : "1.3.6.1.2.1.196.1.2.2.1",
1230
+ "status" : "current",
1231
+ "linkage" : [
1232
+ "capwapBaseWtpStateWtpId",
1233
+ ],
1234
+ "description" :
1235
+ """A set of objects that displays the AC's CAPWAP FSM state
1236
+ for each WTP.
1237
+ Also, the operator could query the current configuration
1238
+ of a WTP by using the identifier of the corresponding
1239
+ WTP profile.""",
1240
+ }, # row
1241
+ "capwapBaseWtpStateWtpId" : {
1242
+ "nodetype" : "column",
1243
+ "moduleName" : "CAPWAP-BASE-MIB",
1244
+ "oid" : "1.3.6.1.2.1.196.1.2.2.1.1",
1245
+ "status" : "current",
1246
+ "syntax" : {
1247
+ "type" : { "module" :"CAPWAP-BASE-MIB", "name" : "CapwapBaseWtpIdTC"},
1248
+ },
1249
+ "access" : "noaccess",
1250
+ "description" :
1251
+ """Represents the unique identifier of a WTP.""",
1252
+ }, # column
1253
+ "capwapBaseWtpStateWtpIpAddressType" : {
1254
+ "nodetype" : "column",
1255
+ "moduleName" : "CAPWAP-BASE-MIB",
1256
+ "oid" : "1.3.6.1.2.1.196.1.2.2.1.2",
1257
+ "status" : "current",
1258
+ "syntax" : {
1259
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
1260
+ },
1261
+ "access" : "readonly",
1262
+ "description" :
1263
+ """Represents the IP address type of a WTP.
1264
+ Only ipv4(1) and ipv6(2) are supported by the object.""",
1265
+ }, # column
1266
+ "capwapBaseWtpStateWtpIpAddress" : {
1267
+ "nodetype" : "column",
1268
+ "moduleName" : "CAPWAP-BASE-MIB",
1269
+ "oid" : "1.3.6.1.2.1.196.1.2.2.1.3",
1270
+ "status" : "current",
1271
+ "syntax" : {
1272
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
1273
+ },
1274
+ "access" : "readonly",
1275
+ "description" :
1276
+ """Represents the IP address of a WTP that corresponds to
1277
+ the IP address in the IP packet header.
1278
+
1279
+
1280
+
1281
+ The format of this IP address is determined by
1282
+ the corresponding instance of object
1283
+ capwapBaseWtpStateWtpIpAddressType.""",
1284
+ "reference" :
1285
+ """Section 4 of CAPWAP Protocol Specification, RFC 5415.""",
1286
+ }, # column
1287
+ "capwapBaseWtpStateWtpLocalIpAddressType" : {
1288
+ "nodetype" : "column",
1289
+ "moduleName" : "CAPWAP-BASE-MIB",
1290
+ "oid" : "1.3.6.1.2.1.196.1.2.2.1.4",
1291
+ "status" : "current",
1292
+ "syntax" : {
1293
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
1294
+ },
1295
+ "access" : "readonly",
1296
+ "description" :
1297
+ """Represents the local IP address type of a WTP.
1298
+ Only ipv4(1) and ipv6(2) are supported by the object.""",
1299
+ }, # column
1300
+ "capwapBaseWtpStateWtpLocalIpAddress" : {
1301
+ "nodetype" : "column",
1302
+ "moduleName" : "CAPWAP-BASE-MIB",
1303
+ "oid" : "1.3.6.1.2.1.196.1.2.2.1.5",
1304
+ "status" : "current",
1305
+ "syntax" : {
1306
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
1307
+ },
1308
+ "access" : "readonly",
1309
+ "description" :
1310
+ """Represents the local IP address of a WTP and models the
1311
+ CAPWAP Local IPv4 Address or CAPWAP Local IPv6 Address fields
1312
+ [RFC5415].
1313
+ If a Network Address Translation (NAT) device is present
1314
+ between WTP and AC, the value of
1315
+ capwapBaseWtpStateWtpLocalIpAddress will be different from the
1316
+ value of capwapBaseWtpStateWtpIpAddress.
1317
+ The format of this IP address is determined by
1318
+ the corresponding instance of object
1319
+ capwapBaseWtpStateWtpLocalIpAddressType.""",
1320
+ "reference" :
1321
+ """Sections 4.6.11 and 4.6.12 of CAPWAP Protocol Specification,
1322
+ RFC 5415.""",
1323
+ }, # column
1324
+ "capwapBaseWtpStateWtpBaseMacAddress" : {
1325
+ "nodetype" : "column",
1326
+ "moduleName" : "CAPWAP-BASE-MIB",
1327
+ "oid" : "1.3.6.1.2.1.196.1.2.2.1.6",
1328
+ "status" : "current",
1329
+ "syntax" : {
1330
+ "type" : {
1331
+ "basetype" : "OctetString",
1332
+ "parent module" : {
1333
+ "name" : "SNMPv2-TC",
1334
+ "type" : "PhysAddress",
1335
+ },
1336
+ "ranges" : [
1337
+ {
1338
+ "min" : "6",
1339
+ "max" : "6"
1340
+ },
1341
+ {
1342
+ "min" : "8",
1343
+ "max" : "8"
1344
+ },
1345
+ ],
1346
+ "range" : {
1347
+ "min" : "6",
1348
+ "max" : "8"
1349
+ },
1350
+ },
1351
+ },
1352
+ "access" : "readonly",
1353
+ "description" :
1354
+ """Represents the WTP's Base MAC Address, which MAY be
1355
+ assigned to the primary Ethernet interface.
1356
+ The instance of the object corresponds to the Base MAC Address
1357
+ sub-element in the CAPWAP protocol [RFC5415].""",
1358
+ "reference" :
1359
+ """Section 4.6.40 of CAPWAP Protocol Specification, RFC 5415.""",
1360
+ }, # column
1361
+ "capwapBaseWtpState" : {
1362
+ "nodetype" : "column",
1363
+ "moduleName" : "CAPWAP-BASE-MIB",
1364
+ "oid" : "1.3.6.1.2.1.196.1.2.2.1.7",
1365
+ "status" : "current",
1366
+ "syntax" : {
1367
+ "type" : {
1368
+ "basetype" : "Enumeration",
1369
+ "dtls" : {
1370
+ "nodetype" : "namednumber",
1371
+ "number" : "1"
1372
+ },
1373
+ "join" : {
1374
+ "nodetype" : "namednumber",
1375
+ "number" : "2"
1376
+ },
1377
+ "image" : {
1378
+ "nodetype" : "namednumber",
1379
+ "number" : "3"
1380
+ },
1381
+ "configure" : {
1382
+ "nodetype" : "namednumber",
1383
+ "number" : "4"
1384
+ },
1385
+ "dataCheck" : {
1386
+ "nodetype" : "namednumber",
1387
+ "number" : "5"
1388
+ },
1389
+ "run" : {
1390
+ "nodetype" : "namednumber",
1391
+ "number" : "6"
1392
+ },
1393
+ "reset" : {
1394
+ "nodetype" : "namednumber",
1395
+ "number" : "7"
1396
+ },
1397
+ "dtlsTeardown" : {
1398
+ "nodetype" : "namednumber",
1399
+ "number" : "8"
1400
+ },
1401
+ "unknown" : {
1402
+ "nodetype" : "namednumber",
1403
+ "number" : "9"
1404
+ },
1405
+ },
1406
+ },
1407
+ "access" : "readonly",
1408
+ "description" :
1409
+ """Represents the various possibilities of the AC's CAPWAP FSM
1410
+ state for each WTP.
1411
+ The following enumerated values are supported:
1412
+ dtls(1) - DTLS negotiation states, which include
1413
+ DTLS setup, authorize, DTLS connect
1414
+ join(2) - The WTP is joining with the AC
1415
+ image(3) - The WTP is downloading software
1416
+ configure(4) - The WTP is getting configuration from
1417
+ the AC
1418
+ dataCheck(5) - The AC is waiting for the Data Channel Keep
1419
+ Alive Packet
1420
+ run(6) - The WTP enters the running state
1421
+ reset(7) - The AC transmits a reset request message
1422
+ to the WTP
1423
+ dtlsTeardown(8) - DTLS session is torn down
1424
+ unknown(9) - Operator already prepared configuration
1425
+ for the WTP, while the WTP has not
1426
+ contacted the AC until now""",
1427
+ "reference" :
1428
+ """Section 2.3.1 of CAPWAP Protocol Specification, RFC 5415.""",
1429
+ }, # column
1430
+ "capwapBaseWtpStateWtpUpTime" : {
1431
+ "nodetype" : "column",
1432
+ "moduleName" : "CAPWAP-BASE-MIB",
1433
+ "oid" : "1.3.6.1.2.1.196.1.2.2.1.8",
1434
+ "status" : "current",
1435
+ "syntax" : {
1436
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
1437
+ },
1438
+ "access" : "readonly",
1439
+ "description" :
1440
+ """Represents the time (in hundredths of a second) since the
1441
+ WTP has been in the running state (corresponding to the
1442
+ value run(6) of capwapBaseWtpState).""",
1443
+ }, # column
1444
+ "capwapBaseWtpStateWtpCurrWtpProfileId" : {
1445
+ "nodetype" : "column",
1446
+ "moduleName" : "CAPWAP-BASE-MIB",
1447
+ "oid" : "1.3.6.1.2.1.196.1.2.2.1.9",
1448
+ "status" : "current",
1449
+ "syntax" : {
1450
+ "type" : { "module" :"CAPWAP-BASE-MIB", "name" : "CapwapBaseWtpProfileIdTC"},
1451
+ },
1452
+ "access" : "readonly",
1453
+ "description" :
1454
+ """Represents the current identifier of a WTP profile.
1455
+ The operator could query a WTP's current configuration
1456
+ with the identifier of a WTP profile.""",
1457
+ }, # column
1458
+ "capwapBaseWtpTable" : {
1459
+ "nodetype" : "table",
1460
+ "moduleName" : "CAPWAP-BASE-MIB",
1461
+ "oid" : "1.3.6.1.2.1.196.1.2.3",
1462
+ "status" : "current",
1463
+ "description" :
1464
+ """A table of objects that display properties of the WTPs
1465
+ in running state.""",
1466
+ }, # table
1467
+ "capwapBaseWtpEntry" : {
1468
+ "nodetype" : "row",
1469
+ "moduleName" : "CAPWAP-BASE-MIB",
1470
+ "oid" : "1.3.6.1.2.1.196.1.2.3.1",
1471
+ "status" : "current",
1472
+ "linkage" : [
1473
+ "capwapBaseWtpCurrId",
1474
+ ],
1475
+ "description" :
1476
+ """A set of objects that displays properties of the WTPs
1477
+ in running state.""",
1478
+ }, # row
1479
+ "capwapBaseWtpCurrId" : {
1480
+ "nodetype" : "column",
1481
+ "moduleName" : "CAPWAP-BASE-MIB",
1482
+ "oid" : "1.3.6.1.2.1.196.1.2.3.1.1",
1483
+ "status" : "current",
1484
+ "syntax" : {
1485
+ "type" : { "module" :"CAPWAP-BASE-MIB", "name" : "CapwapBaseWtpIdTC"},
1486
+ },
1487
+ "access" : "noaccess",
1488
+ "description" :
1489
+ """Represents the unique identifier of a WTP in running state.""",
1490
+ }, # column
1491
+ "capwapBaseWtpPhyIndex" : {
1492
+ "nodetype" : "column",
1493
+ "moduleName" : "CAPWAP-BASE-MIB",
1494
+ "oid" : "1.3.6.1.2.1.196.1.2.3.1.2",
1495
+ "status" : "current",
1496
+ "syntax" : {
1497
+ "type" : { "module" :"ENTITY-MIB", "name" : "PhysicalIndex"},
1498
+ },
1499
+ "access" : "readonly",
1500
+ "description" :
1501
+ """Represents the unique physical index of a physical entity
1502
+ in the ENTITY-MIB module [RFC4133].
1503
+ Information about a specific WTP such as its software version
1504
+ could be accessed through this index.""",
1505
+ }, # column
1506
+ "capwapBaseWtpBaseMacAddress" : {
1507
+ "nodetype" : "column",
1508
+ "moduleName" : "CAPWAP-BASE-MIB",
1509
+ "oid" : "1.3.6.1.2.1.196.1.2.3.1.3",
1510
+ "status" : "current",
1511
+ "syntax" : {
1512
+ "type" : {
1513
+ "basetype" : "OctetString",
1514
+ "parent module" : {
1515
+ "name" : "SNMPv2-TC",
1516
+ "type" : "PhysAddress",
1517
+ },
1518
+ "ranges" : [
1519
+ {
1520
+ "min" : "6",
1521
+ "max" : "6"
1522
+ },
1523
+ {
1524
+ "min" : "8",
1525
+ "max" : "8"
1526
+ },
1527
+ ],
1528
+ "range" : {
1529
+ "min" : "6",
1530
+ "max" : "8"
1531
+ },
1532
+ },
1533
+ },
1534
+ "access" : "readonly",
1535
+ "description" :
1536
+ """Represents the WTP's Base MAC Address, which MAY be assigned
1537
+ to the primary Ethernet interface.
1538
+ The instance of the object corresponds to the Base MAC Address
1539
+ sub-element in the CAPWAP protocol [RFC5415].""",
1540
+ "reference" :
1541
+ """Section 4.6.40 of CAPWAP Protocol Specification, RFC 5415.""",
1542
+ }, # column
1543
+ "capwapBaseWtpTunnelModeOptions" : {
1544
+ "nodetype" : "column",
1545
+ "moduleName" : "CAPWAP-BASE-MIB",
1546
+ "oid" : "1.3.6.1.2.1.196.1.2.3.1.4",
1547
+ "status" : "current",
1548
+ "syntax" : {
1549
+ "type" : { "module" :"CAPWAP-BASE-MIB", "name" : "CapwapBaseTunnelModeTC"},
1550
+ },
1551
+ "access" : "readonly",
1552
+ "description" :
1553
+ """Represents the tunneling modes of operation supported by
1554
+ the WTP.""",
1555
+ "reference" :
1556
+ """Section 4.6.43 of CAPWAP Protocol Specification, RFC 5415.""",
1557
+ }, # column
1558
+ "capwapBaseWtpMacTypeOptions" : {
1559
+ "nodetype" : "column",
1560
+ "moduleName" : "CAPWAP-BASE-MIB",
1561
+ "oid" : "1.3.6.1.2.1.196.1.2.3.1.5",
1562
+ "status" : "current",
1563
+ "syntax" : {
1564
+ "type" : { "module" :"CAPWAP-BASE-MIB", "name" : "CapwapBaseMacTypeTC"},
1565
+ },
1566
+ "access" : "readonly",
1567
+ "description" :
1568
+ """Represents the MAC mode of operation supported by the WTP.""",
1569
+ "reference" :
1570
+ """Section 4.6.44 of CAPWAP Protocol Specification, RFC 5415.""",
1571
+ }, # column
1572
+ "capwapBaseWtpDiscoveryType" : {
1573
+ "nodetype" : "column",
1574
+ "moduleName" : "CAPWAP-BASE-MIB",
1575
+ "oid" : "1.3.6.1.2.1.196.1.2.3.1.6",
1576
+ "status" : "current",
1577
+ "syntax" : {
1578
+ "type" : {
1579
+ "basetype" : "Enumeration",
1580
+ "unknown" : {
1581
+ "nodetype" : "namednumber",
1582
+ "number" : "0"
1583
+ },
1584
+ "staticConfig" : {
1585
+ "nodetype" : "namednumber",
1586
+ "number" : "1"
1587
+ },
1588
+ "dhcp" : {
1589
+ "nodetype" : "namednumber",
1590
+ "number" : "2"
1591
+ },
1592
+ "dns" : {
1593
+ "nodetype" : "namednumber",
1594
+ "number" : "3"
1595
+ },
1596
+ "acRef" : {
1597
+ "nodetype" : "namednumber",
1598
+ "number" : "4"
1599
+ },
1600
+ },
1601
+ },
1602
+ "access" : "readonly",
1603
+ "description" :
1604
+ """Represents how the WTP discovers the AC.
1605
+ The following enumerated values are supported:
1606
+ unknown(0) - Unknown
1607
+ staticConfig(1) - Static configuration
1608
+ dhcp(2) - DHCP
1609
+ dns(3) - DNS
1610
+ acRef(4) - AC referral
1611
+ Note that the CAPWAP field [RFC5415] modeled by this
1612
+ object takes zero as starting value; this MIB object
1613
+ follows that rule.""",
1614
+ "reference" :
1615
+ """Section 4.6.21 of CAPWAP Protocol Specification, RFC 5415.""",
1616
+ }, # column
1617
+ "capwapBaseWtpRadiosInUseNum" : {
1618
+ "nodetype" : "column",
1619
+ "moduleName" : "CAPWAP-BASE-MIB",
1620
+ "oid" : "1.3.6.1.2.1.196.1.2.3.1.7",
1621
+ "status" : "current",
1622
+ "syntax" : {
1623
+ "type" : {
1624
+ "basetype" : "Unsigned32",
1625
+ "parent module" : {
1626
+ "name" : "SNMPv2-SMI",
1627
+ "type" : "Gauge32",
1628
+ },
1629
+ "ranges" : [
1630
+ {
1631
+ "min" : "0",
1632
+ "max" : "255"
1633
+ },
1634
+ ],
1635
+ "range" : {
1636
+ "min" : "0",
1637
+ "max" : "255"
1638
+ },
1639
+ },
1640
+ },
1641
+ "access" : "readonly",
1642
+ "description" :
1643
+ """Represents the number of radios in use on the WTP.""",
1644
+ "reference" :
1645
+ """Section 4.6.41 of CAPWAP Protocol Specification, RFC 5415.""",
1646
+ }, # column
1647
+ "capwapBaseWtpRadioNumLimit" : {
1648
+ "nodetype" : "column",
1649
+ "moduleName" : "CAPWAP-BASE-MIB",
1650
+ "oid" : "1.3.6.1.2.1.196.1.2.3.1.8",
1651
+ "status" : "current",
1652
+ "syntax" : {
1653
+ "type" : {
1654
+ "basetype" : "Unsigned32",
1655
+ "ranges" : [
1656
+ {
1657
+ "min" : "0",
1658
+ "max" : "255"
1659
+ },
1660
+ ],
1661
+ "range" : {
1662
+ "min" : "0",
1663
+ "max" : "255"
1664
+ },
1665
+ },
1666
+ },
1667
+ "access" : "readonly",
1668
+ "description" :
1669
+ """Represents the maximum radio number supported by the WTP.""",
1670
+ "reference" :
1671
+ """Section 4.6.41 of CAPWAP Protocol Specification, RFC 5415.""",
1672
+ }, # column
1673
+ "capwapBaseWtpRetransmitCount" : {
1674
+ "nodetype" : "column",
1675
+ "moduleName" : "CAPWAP-BASE-MIB",
1676
+ "oid" : "1.3.6.1.2.1.196.1.2.3.1.9",
1677
+ "status" : "current",
1678
+ "syntax" : {
1679
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1680
+ },
1681
+ "access" : "readonly",
1682
+ "units" : "retransmissions",
1683
+ "description" :
1684
+ """Represents the number of retransmissions for a given
1685
+ CAPWAP packet.""",
1686
+ "reference" :
1687
+ """Section 4.8.8 of CAPWAP Protocol Specification, RFC 5415.""",
1688
+ }, # column
1689
+ "capwapBaseWirelessBindingTable" : {
1690
+ "nodetype" : "table",
1691
+ "moduleName" : "CAPWAP-BASE-MIB",
1692
+ "oid" : "1.3.6.1.2.1.196.1.2.4",
1693
+ "status" : "current",
1694
+ "description" :
1695
+ """A table of objects that display the mappings between
1696
+ WTP Virtual Radio Interfaces and PHY radios, and the
1697
+ wireless binding type for each PHY radio.
1698
+ As capwapBaseWirelessBindingTable stores the mappings between
1699
+ PHY radios (Radio IDs) and the ifIndexes of WTP Virtual Radio
1700
+ Interfaces, the operator can get the ifIndex information by
1701
+ querying this table. Such a query operation SHOULD run from
1702
+ radio ID 1 to radio ID 31 according to [RFC5415],
1703
+ and stop when an invalid ifIndex value (0) is returned.
1704
+ Values of all objects in this table are persistent at
1705
+ restart/reboot.""",
1706
+ }, # table
1707
+ "capwapBaseWirelessBindingEntry" : {
1708
+ "nodetype" : "row",
1709
+ "moduleName" : "CAPWAP-BASE-MIB",
1710
+ "oid" : "1.3.6.1.2.1.196.1.2.4.1",
1711
+ "status" : "current",
1712
+ "linkage" : [
1713
+ "capwapBaseWtpProfileId",
1714
+ "capwapBaseWirelessBindingRadioId",
1715
+ ],
1716
+ "description" :
1717
+ """A set of objects that displays the mapping between
1718
+ a specific WTP Virtual Radio Interface and a PHY
1719
+ radio, and the wireless binding type for the PHY radio.""",
1720
+ }, # row
1721
+ "capwapBaseWirelessBindingRadioId" : {
1722
+ "nodetype" : "column",
1723
+ "moduleName" : "CAPWAP-BASE-MIB",
1724
+ "oid" : "1.3.6.1.2.1.196.1.2.4.1.1",
1725
+ "status" : "current",
1726
+ "syntax" : {
1727
+ "type" : { "module" :"CAPWAP-BASE-MIB", "name" : "CapwapBaseRadioIdTC"},
1728
+ },
1729
+ "access" : "noaccess",
1730
+ "description" :
1731
+ """Represents the identifier of a PHY radio on a WTP, which
1732
+ is required to be unique on a WTP.
1733
+ For example, WTP A and WTP B use a same value of
1734
+ capwapBaseWirelessBindingRadioId for their first radio.""",
1735
+ "reference" :
1736
+ """Section 4.3 of CAPWAP Protocol Specification, RFC 5415.""",
1737
+ }, # column
1738
+ "capwapBaseWirelessBindingVirtualRadioIfIndex" : {
1739
+ "nodetype" : "column",
1740
+ "moduleName" : "CAPWAP-BASE-MIB",
1741
+ "oid" : "1.3.6.1.2.1.196.1.2.4.1.2",
1742
+ "status" : "current",
1743
+ "syntax" : {
1744
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
1745
+ },
1746
+ "access" : "readonly",
1747
+ "description" :
1748
+ """Represents the index value that uniquely identifies a
1749
+ WLAN Virtual Radio Interface. The interface identified by
1750
+ a particular value of this index is the same interface as
1751
+ identified by the same value of the ifIndex.
1752
+ Before WTPs contact the AC to get configuration,
1753
+ the operator configures WTP profiles for them.
1754
+ The creation of a WTP profile triggers the system to
1755
+ automatically create a specific number of WTP Virtual Radio
1756
+ Interfaces and add a new row object in the
1757
+ capwapBaseWirelessBindingTable without manual intervention.
1758
+ As most MIB modules use the ifIndex to identify an interface
1759
+ for configuration and statistical data (for example, the IEEE
1760
+ 802.11 MIB module [IEEE.802-11.2007]), it will be easy to
1761
+ reuse other wireless binding MIB modules through the WTP
1762
+ Virtual Radio Interface in the Centralized WLAN
1763
+ Architecture.""",
1764
+ }, # column
1765
+ "capwapBaseWirelessBindingType" : {
1766
+ "nodetype" : "column",
1767
+ "moduleName" : "CAPWAP-BASE-MIB",
1768
+ "oid" : "1.3.6.1.2.1.196.1.2.4.1.3",
1769
+ "status" : "current",
1770
+ "syntax" : {
1771
+ "type" : {
1772
+ "basetype" : "Enumeration",
1773
+ "dot11" : {
1774
+ "nodetype" : "namednumber",
1775
+ "number" : "1"
1776
+ },
1777
+ "epc" : {
1778
+ "nodetype" : "namednumber",
1779
+ "number" : "3"
1780
+ },
1781
+ },
1782
+ },
1783
+ "access" : "readonly",
1784
+ "description" :
1785
+ """Represents the wireless binding type for the radio.
1786
+ The following enumerated values are supported:
1787
+ dot11(1) - IEEE 802.11
1788
+ epc(3) - EPCGlobal""",
1789
+ "reference" :
1790
+ """Section 4.3 of CAPWAP Protocol Specification, RFC 5415.""",
1791
+ }, # column
1792
+ "capwapBaseStationTable" : {
1793
+ "nodetype" : "table",
1794
+ "moduleName" : "CAPWAP-BASE-MIB",
1795
+ "oid" : "1.3.6.1.2.1.196.1.2.5",
1796
+ "status" : "current",
1797
+ "description" :
1798
+ """A table of objects that display stations that are accessing
1799
+ the wireless service provided by the AC.""",
1800
+ "reference" :
1801
+ """Section 4.6.8 of CAPWAP Protocol Specification, RFC 5415.""",
1802
+ }, # table
1803
+ "capwapBaseStationEntry" : {
1804
+ "nodetype" : "row",
1805
+ "moduleName" : "CAPWAP-BASE-MIB",
1806
+ "oid" : "1.3.6.1.2.1.196.1.2.5.1",
1807
+ "status" : "current",
1808
+ "linkage" : [
1809
+ "capwapBaseStationId",
1810
+ ],
1811
+ "description" :
1812
+ """A set of objects that displays a station that is
1813
+ associated with the specific radio on the WTP.
1814
+ Note that in some cases such as roaming that a station may
1815
+ simultaneously associate with two WTPs for some (short) time.
1816
+ The MIB implementation MUST ensure there is only one valid
1817
+ and meaningful entry for a specific station.""",
1818
+ }, # row
1819
+ "capwapBaseStationId" : {
1820
+ "nodetype" : "column",
1821
+ "moduleName" : "CAPWAP-BASE-MIB",
1822
+ "oid" : "1.3.6.1.2.1.196.1.2.5.1.1",
1823
+ "status" : "current",
1824
+ "syntax" : {
1825
+ "type" : { "module" :"CAPWAP-BASE-MIB", "name" : "CapwapBaseStationIdTC"},
1826
+ },
1827
+ "access" : "noaccess",
1828
+ "description" :
1829
+ """Represents the unique identifier of the station.""",
1830
+ "reference" :
1831
+ """Section 4.6.8 of CAPWAP Protocol Specification, RFC 5415.""",
1832
+ }, # column
1833
+ "capwapBaseStationWtpId" : {
1834
+ "nodetype" : "column",
1835
+ "moduleName" : "CAPWAP-BASE-MIB",
1836
+ "oid" : "1.3.6.1.2.1.196.1.2.5.1.2",
1837
+ "status" : "current",
1838
+ "syntax" : {
1839
+ "type" : { "module" :"CAPWAP-BASE-MIB", "name" : "CapwapBaseWtpIdTC"},
1840
+ },
1841
+ "access" : "readonly",
1842
+ "description" :
1843
+ """Represents the unique identifier of a WTP in running state.""",
1844
+ }, # column
1845
+ "capwapBaseStationWtpRadioId" : {
1846
+ "nodetype" : "column",
1847
+ "moduleName" : "CAPWAP-BASE-MIB",
1848
+ "oid" : "1.3.6.1.2.1.196.1.2.5.1.3",
1849
+ "status" : "current",
1850
+ "syntax" : {
1851
+ "type" : { "module" :"CAPWAP-BASE-MIB", "name" : "CapwapBaseRadioIdTC"},
1852
+ },
1853
+ "access" : "readonly",
1854
+ "description" :
1855
+ """Represents the identifier of a PHY radio on a WTP, which
1856
+ is required to be unique on a WTP.
1857
+ For example, WTP A and WTP B use a same value of
1858
+ capwapBaseStationWtpRadioId for their first radio.""",
1859
+ "reference" :
1860
+ """Section 4.3 of CAPWAP Protocol Specification, RFC 5415.""",
1861
+ }, # column
1862
+ "capwapBaseStationAddedTime" : {
1863
+ "nodetype" : "column",
1864
+ "moduleName" : "CAPWAP-BASE-MIB",
1865
+ "oid" : "1.3.6.1.2.1.196.1.2.5.1.4",
1866
+ "status" : "current",
1867
+ "syntax" : {
1868
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
1869
+ },
1870
+ "access" : "readonly",
1871
+ "description" :
1872
+ """Represents the time when the station is added.""",
1873
+ "reference" :
1874
+ """Section 4.6.8 of CAPWAP Protocol Specification, RFC 5415.""",
1875
+ }, # column
1876
+ "capwapBaseStationVlanName" : {
1877
+ "nodetype" : "column",
1878
+ "moduleName" : "CAPWAP-BASE-MIB",
1879
+ "oid" : "1.3.6.1.2.1.196.1.2.5.1.5",
1880
+ "status" : "current",
1881
+ "syntax" : {
1882
+ "type" : {
1883
+ "basetype" : "OctetString",
1884
+ "parent module" : {
1885
+ "name" : "SNMP-FRAMEWORK-MIB",
1886
+ "type" : "SnmpAdminString",
1887
+ },
1888
+ "ranges" : [
1889
+ {
1890
+ "min" : "0",
1891
+ "max" : "32"
1892
+ },
1893
+ ],
1894
+ "range" : {
1895
+ "min" : "0",
1896
+ "max" : "32"
1897
+ },
1898
+ },
1899
+ },
1900
+ "access" : "readonly",
1901
+ "description" :
1902
+ """Represents VLAN name to which the station is associated.""",
1903
+ "reference" :
1904
+ """Section 4.6.8 of CAPWAP Protocol Specification, RFC 5415.""",
1905
+ }, # column
1906
+ "capwapBaseWtpEventsStatsTable" : {
1907
+ "nodetype" : "table",
1908
+ "moduleName" : "CAPWAP-BASE-MIB",
1909
+ "oid" : "1.3.6.1.2.1.196.1.2.6",
1910
+ "status" : "current",
1911
+ "description" :
1912
+ """A table of objects that display the WTPs' events statistics.""",
1913
+ "reference" :
1914
+ """Section 4.6.47 of CAPWAP Protocol Specification, RFC 5415.""",
1915
+ }, # table
1916
+ "capwapBaseWtpEventsStatsEntry" : {
1917
+ "nodetype" : "row",
1918
+ "moduleName" : "CAPWAP-BASE-MIB",
1919
+ "oid" : "1.3.6.1.2.1.196.1.2.6.1",
1920
+ "status" : "current",
1921
+ "linkage" : [
1922
+ "capwapBaseWtpCurrId",
1923
+ ],
1924
+ "description" :
1925
+ """A set of objects that displays the events statistics
1926
+ of a WTP.""",
1927
+ "reference" :
1928
+ """Section 4.6.47 of CAPWAP Protocol Specification, RFC 5415.""",
1929
+ }, # row
1930
+ "capwapBaseWtpEventsStatsRebootCount" : {
1931
+ "nodetype" : "column",
1932
+ "moduleName" : "CAPWAP-BASE-MIB",
1933
+ "oid" : "1.3.6.1.2.1.196.1.2.6.1.1",
1934
+ "status" : "current",
1935
+ "syntax" : {
1936
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1937
+ },
1938
+ "access" : "readonly",
1939
+ "description" :
1940
+ """Represents the number of reboots that have occurred due to a
1941
+ WTP crash.
1942
+
1943
+
1944
+
1945
+ Note that the CAPWAP field [RFC5415] modeled by this counter
1946
+ takes the value 65535 to indicate that the information is not
1947
+ available on the WTP. This MIB object does not follow this
1948
+ behavior, which would not be standard in SMIv2. If the WTP
1949
+ does not have the information, the agent will not instantiate
1950
+ the object.""",
1951
+ "reference" :
1952
+ """Section 4.6.47 of CAPWAP Protocol Specification, RFC 5415.""",
1953
+ }, # column
1954
+ "capwapBaseWtpEventsStatsInitCount" : {
1955
+ "nodetype" : "column",
1956
+ "moduleName" : "CAPWAP-BASE-MIB",
1957
+ "oid" : "1.3.6.1.2.1.196.1.2.6.1.2",
1958
+ "status" : "current",
1959
+ "syntax" : {
1960
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1961
+ },
1962
+ "access" : "readonly",
1963
+ "description" :
1964
+ """Represents the number of reboots that have occurred at the
1965
+ request of a CAPWAP protocol message, such as a change in
1966
+ configuration that requires a reboot or an explicit CAPWAP
1967
+ protocol reset request.
1968
+ Note that the CAPWAP field [RFC5415] modeled by this counter
1969
+ takes the value 65535 to indicate that the information is not
1970
+ available on the WTP. This MIB object does not follow this
1971
+ behavior, which would not be standard in SMIv2. If the WTP
1972
+ does not have the information, the agent will not instantiate
1973
+ the object.""",
1974
+ "reference" :
1975
+ """Section 4.6.47 of CAPWAP Protocol Specification, RFC 5415.""",
1976
+ }, # column
1977
+ "capwapBaseWtpEventsStatsLinkFailureCount" : {
1978
+ "nodetype" : "column",
1979
+ "moduleName" : "CAPWAP-BASE-MIB",
1980
+ "oid" : "1.3.6.1.2.1.196.1.2.6.1.3",
1981
+ "status" : "current",
1982
+ "syntax" : {
1983
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1984
+ },
1985
+ "access" : "readonly",
1986
+ "description" :
1987
+ """Represents the number of times that a CAPWAP protocol
1988
+ connection with an AC has failed due to link failures.""",
1989
+ "reference" :
1990
+ """Section 4.6.47 of CAPWAP Protocol Specification, RFC 5415.""",
1991
+ }, # column
1992
+ "capwapBaseWtpEventsStatsSwFailureCount" : {
1993
+ "nodetype" : "column",
1994
+ "moduleName" : "CAPWAP-BASE-MIB",
1995
+ "oid" : "1.3.6.1.2.1.196.1.2.6.1.4",
1996
+ "status" : "current",
1997
+ "syntax" : {
1998
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1999
+ },
2000
+ "access" : "readonly",
2001
+ "description" :
2002
+ """Represents the number of times that a CAPWAP protocol
2003
+ connection with an AC has failed due to software-related
2004
+ reasons.""",
2005
+ "reference" :
2006
+ """Section 4.6.47 of CAPWAP Protocol Specification, RFC 5415.""",
2007
+ }, # column
2008
+ "capwapBaseWtpEventsStatsHwFailureCount" : {
2009
+ "nodetype" : "column",
2010
+ "moduleName" : "CAPWAP-BASE-MIB",
2011
+ "oid" : "1.3.6.1.2.1.196.1.2.6.1.5",
2012
+ "status" : "current",
2013
+ "syntax" : {
2014
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2015
+ },
2016
+ "access" : "readonly",
2017
+ "description" :
2018
+ """Represents the number of times that a CAPWAP protocol
2019
+ connection with an AC has failed due to hardware-related
2020
+ reasons.""",
2021
+ "reference" :
2022
+ """Section 4.6.47 of CAPWAP Protocol Specification, RFC 5415.""",
2023
+ }, # column
2024
+ "capwapBaseWtpEventsStatsOtherFailureCount" : {
2025
+ "nodetype" : "column",
2026
+ "moduleName" : "CAPWAP-BASE-MIB",
2027
+ "oid" : "1.3.6.1.2.1.196.1.2.6.1.6",
2028
+ "status" : "current",
2029
+ "syntax" : {
2030
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2031
+ },
2032
+ "access" : "readonly",
2033
+ "description" :
2034
+ """Represents the number of times that a CAPWAP protocol
2035
+ connection with an AC has failed due to known reasons, other
2036
+ than the AC-initiated, link, software or hardware failures.""",
2037
+ "reference" :
2038
+ """Section 4.6.47 of CAPWAP Protocol Specification, RFC 5415.""",
2039
+ }, # column
2040
+ "capwapBaseWtpEventsStatsUnknownFailureCount" : {
2041
+ "nodetype" : "column",
2042
+ "moduleName" : "CAPWAP-BASE-MIB",
2043
+ "oid" : "1.3.6.1.2.1.196.1.2.6.1.7",
2044
+ "status" : "current",
2045
+ "syntax" : {
2046
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2047
+ },
2048
+ "access" : "readonly",
2049
+ "description" :
2050
+ """Represents the number of times that a CAPWAP protocol
2051
+ connection with an AC has failed for unknown reasons.""",
2052
+ "reference" :
2053
+ """Section 4.6.47 of CAPWAP Protocol Specification, RFC 5415.""",
2054
+ }, # column
2055
+ "capwapBaseWtpEventsStatsLastFailureType" : {
2056
+ "nodetype" : "column",
2057
+ "moduleName" : "CAPWAP-BASE-MIB",
2058
+ "oid" : "1.3.6.1.2.1.196.1.2.6.1.8",
2059
+ "status" : "current",
2060
+ "syntax" : {
2061
+ "type" : {
2062
+ "basetype" : "Enumeration",
2063
+ "unsupported" : {
2064
+ "nodetype" : "namednumber",
2065
+ "number" : "0"
2066
+ },
2067
+ "acInit" : {
2068
+ "nodetype" : "namednumber",
2069
+ "number" : "1"
2070
+ },
2071
+ "linkFailure" : {
2072
+ "nodetype" : "namednumber",
2073
+ "number" : "2"
2074
+ },
2075
+ "swFailure" : {
2076
+ "nodetype" : "namednumber",
2077
+ "number" : "3"
2078
+ },
2079
+ "hwFailure" : {
2080
+ "nodetype" : "namednumber",
2081
+ "number" : "4"
2082
+ },
2083
+ "otherFailure" : {
2084
+ "nodetype" : "namednumber",
2085
+ "number" : "5"
2086
+ },
2087
+ "unknown" : {
2088
+ "nodetype" : "namednumber",
2089
+ "number" : "255"
2090
+ },
2091
+ },
2092
+ },
2093
+ "access" : "readonly",
2094
+ "description" :
2095
+ """Represents the failure type of the most recent WTP failure.
2096
+ The following enumerated values are supported:
2097
+ unsupported(0) - Not supported
2098
+ acInit(1) - The AC initiated
2099
+ linkFailure(2) - Link failure
2100
+ swFailure(3) - Software failure
2101
+ hwFailure(4) - Hardware failure
2102
+ otherFailure(5) - Other failure
2103
+ unknown(255) - Unknown (e.g., WTP doesn't keep track
2104
+ of info)
2105
+ Note that the CAPWAP field [RFC5415] modeled by this
2106
+ object takes zero as starting value; this MIB object
2107
+ follows that rule.""",
2108
+ "reference" :
2109
+ """Section 4.6.47 of CAPWAP Protocol Specification, RFC 5415.""",
2110
+ }, # column
2111
+ "capwapBaseRadioEventsStatsTable" : {
2112
+ "nodetype" : "table",
2113
+ "moduleName" : "CAPWAP-BASE-MIB",
2114
+ "oid" : "1.3.6.1.2.1.196.1.2.7",
2115
+ "status" : "current",
2116
+ "description" :
2117
+ """A table of objects that display statistics on the radios'
2118
+ behaviors and reasons why the WTP radio has been reset.
2119
+ To get the events statistics of all radios on a specific WTP
2120
+ (identified by the capwapBaseWtpCurrId), a query
2121
+ operation SHOULD run from radio ID 1 to radio ID 31 until there
2122
+ is no data returned. The radio ID here corresponds to the
2123
+ object capwapBaseRadioEventsWtpRadioId. If the previous MIB
2124
+ operations such as query on the capwapBaseWirelessBindingTable
2125
+ know the exact value of each radio ID, the query operation on
2126
+ the capwapBaseRadioEventsStatsTable could use that value
2127
+ of Radio IDs.""",
2128
+ "reference" :
2129
+ """Section 4.6.46 of CAPWAP Protocol Specification, RFC 5415.""",
2130
+ }, # table
2131
+ "capwapBaseRadioEventsStatsEntry" : {
2132
+ "nodetype" : "row",
2133
+ "moduleName" : "CAPWAP-BASE-MIB",
2134
+ "oid" : "1.3.6.1.2.1.196.1.2.7.1",
2135
+ "status" : "current",
2136
+ "linkage" : [
2137
+ "capwapBaseWtpCurrId",
2138
+ "capwapBaseRadioEventsWtpRadioId",
2139
+ ],
2140
+ "description" :
2141
+ """A set of objects that displays the statistical data of
2142
+ events that happened on a specific radio of a WTP.""",
2143
+ }, # row
2144
+ "capwapBaseRadioEventsWtpRadioId" : {
2145
+ "nodetype" : "column",
2146
+ "moduleName" : "CAPWAP-BASE-MIB",
2147
+ "oid" : "1.3.6.1.2.1.196.1.2.7.1.1",
2148
+ "status" : "current",
2149
+ "syntax" : {
2150
+ "type" : { "module" :"CAPWAP-BASE-MIB", "name" : "CapwapBaseRadioIdTC"},
2151
+ },
2152
+ "access" : "noaccess",
2153
+ "description" :
2154
+ """Represents the identifier of a PHY radio on a WTP, which
2155
+ is required to be unique on a WTP.
2156
+ For example, WTP A and WTP B use the same value of
2157
+ capwapBaseRadioEventsWtpRadioId for their first radio.""",
2158
+ "reference" :
2159
+ """Section 4.3 of CAPWAP Protocol Specification, RFC 5415.""",
2160
+ }, # column
2161
+ "capwapBaseRadioEventsStatsResetCount" : {
2162
+ "nodetype" : "column",
2163
+ "moduleName" : "CAPWAP-BASE-MIB",
2164
+ "oid" : "1.3.6.1.2.1.196.1.2.7.1.2",
2165
+ "status" : "current",
2166
+ "syntax" : {
2167
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2168
+ },
2169
+ "access" : "readonly",
2170
+ "description" :
2171
+ """Represents the number of times that the radio has been
2172
+ reset.""",
2173
+ "reference" :
2174
+ """Section 4.6.46 of CAPWAP Protocol Specification, RFC 5415.""",
2175
+ }, # column
2176
+ "capwapBaseRadioEventsStatsSwFailureCount" : {
2177
+ "nodetype" : "column",
2178
+ "moduleName" : "CAPWAP-BASE-MIB",
2179
+ "oid" : "1.3.6.1.2.1.196.1.2.7.1.3",
2180
+ "status" : "current",
2181
+ "syntax" : {
2182
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2183
+ },
2184
+ "access" : "readonly",
2185
+ "description" :
2186
+ """Represents the number of times that the radio has failed due
2187
+ to software-related reasons.""",
2188
+ "reference" :
2189
+ """Section 4.6.46 of CAPWAP Protocol Specification, RFC 5415.""",
2190
+ }, # column
2191
+ "capwapBaseRadioEventsStatsHwFailureCount" : {
2192
+ "nodetype" : "column",
2193
+ "moduleName" : "CAPWAP-BASE-MIB",
2194
+ "oid" : "1.3.6.1.2.1.196.1.2.7.1.4",
2195
+ "status" : "current",
2196
+ "syntax" : {
2197
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2198
+ },
2199
+ "access" : "readonly",
2200
+ "description" :
2201
+ """Represents the number of times that the radio has failed due
2202
+ to hardware-related reasons.""",
2203
+ "reference" :
2204
+ """Section 4.6.46 of CAPWAP Protocol Specification, RFC 5415.""",
2205
+ }, # column
2206
+ "capwapBaseRadioEventsStatsOtherFailureCount" : {
2207
+ "nodetype" : "column",
2208
+ "moduleName" : "CAPWAP-BASE-MIB",
2209
+ "oid" : "1.3.6.1.2.1.196.1.2.7.1.5",
2210
+ "status" : "current",
2211
+ "syntax" : {
2212
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2213
+ },
2214
+ "access" : "readonly",
2215
+ "description" :
2216
+ """Represents the number of times that the radio has failed due to
2217
+ known reasons, other than software or hardware failure.""",
2218
+ "reference" :
2219
+ """Section 4.6.46 of CAPWAP Protocol Specification, RFC 5415.""",
2220
+ }, # column
2221
+ "capwapBaseRadioEventsStatsUnknownFailureCount" : {
2222
+ "nodetype" : "column",
2223
+ "moduleName" : "CAPWAP-BASE-MIB",
2224
+ "oid" : "1.3.6.1.2.1.196.1.2.7.1.6",
2225
+ "status" : "current",
2226
+ "syntax" : {
2227
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2228
+ },
2229
+ "access" : "readonly",
2230
+ "description" :
2231
+ """Represents the number of times that the radio has failed for
2232
+ unknown reasons.""",
2233
+ "reference" :
2234
+ """Section 4.6.46 of CAPWAP Protocol Specification, RFC 5415.""",
2235
+ }, # column
2236
+ "capwapBaseRadioEventsStatsConfigUpdateCount" : {
2237
+ "nodetype" : "column",
2238
+ "moduleName" : "CAPWAP-BASE-MIB",
2239
+ "oid" : "1.3.6.1.2.1.196.1.2.7.1.7",
2240
+ "status" : "current",
2241
+ "syntax" : {
2242
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2243
+ },
2244
+ "access" : "readonly",
2245
+ "description" :
2246
+ """Represents the number of times that the radio configuration has
2247
+ been updated.""",
2248
+ "reference" :
2249
+ """Section 4.6.46 of CAPWAP Protocol Specification, RFC 5415.""",
2250
+ }, # column
2251
+ "capwapBaseRadioEventsStatsChannelChangeCount" : {
2252
+ "nodetype" : "column",
2253
+ "moduleName" : "CAPWAP-BASE-MIB",
2254
+ "oid" : "1.3.6.1.2.1.196.1.2.7.1.8",
2255
+ "status" : "current",
2256
+ "syntax" : {
2257
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2258
+ },
2259
+ "access" : "readonly",
2260
+ "description" :
2261
+ """Represents the number of times that the radio channel has
2262
+ been changed.""",
2263
+ "reference" :
2264
+ """Section 4.6.46 of CAPWAP Protocol Specification, RFC 5415.""",
2265
+ }, # column
2266
+ "capwapBaseRadioEventsStatsBandChangeCount" : {
2267
+ "nodetype" : "column",
2268
+ "moduleName" : "CAPWAP-BASE-MIB",
2269
+ "oid" : "1.3.6.1.2.1.196.1.2.7.1.9",
2270
+ "status" : "current",
2271
+ "syntax" : {
2272
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2273
+ },
2274
+ "access" : "readonly",
2275
+ "description" :
2276
+ """Represents the number of times that the radio has changed
2277
+ frequency bands.""",
2278
+ "reference" :
2279
+ """Section 4.6.46 of CAPWAP Protocol Specification, RFC 5415.""",
2280
+ }, # column
2281
+ "capwapBaseRadioEventsStatsCurrNoiseFloor" : {
2282
+ "nodetype" : "column",
2283
+ "moduleName" : "CAPWAP-BASE-MIB",
2284
+ "oid" : "1.3.6.1.2.1.196.1.2.7.1.10",
2285
+ "status" : "current",
2286
+ "syntax" : {
2287
+ "type" : { "module" :"", "name" : "Integer32"},
2288
+ },
2289
+ "access" : "readonly",
2290
+ "units" : "dBm",
2291
+ "description" :
2292
+ """Represents the noise floor of the radio receiver in units of
2293
+ dBm.""",
2294
+ "reference" :
2295
+ """Section 4.6.46 of CAPWAP Protocol Specification, RFC 5415.""",
2296
+ }, # column
2297
+ "capwapBaseRadioEventsStatsDecryptErrorCount" : {
2298
+ "nodetype" : "column",
2299
+ "moduleName" : "CAPWAP-BASE-MIB",
2300
+ "oid" : "1.3.6.1.2.1.196.1.2.7.1.11",
2301
+ "status" : "current",
2302
+ "syntax" : {
2303
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2304
+ },
2305
+ "access" : "readonly",
2306
+ "description" :
2307
+ """Represents the number of decryption errors that have occurred
2308
+ on the WTP. Note that this field is only valid in cases where
2309
+ the WTP provides encryption/decryption services.""",
2310
+ "reference" :
2311
+ """Section 4.6.46 of CAPWAP Protocol Specification, RFC 5415.""",
2312
+ }, # column
2313
+ "capwapBaseRadioEventsStatsLastFailureType" : {
2314
+ "nodetype" : "column",
2315
+ "moduleName" : "CAPWAP-BASE-MIB",
2316
+ "oid" : "1.3.6.1.2.1.196.1.2.7.1.12",
2317
+ "status" : "current",
2318
+ "syntax" : {
2319
+ "type" : {
2320
+ "basetype" : "Enumeration",
2321
+ "unsupported" : {
2322
+ "nodetype" : "namednumber",
2323
+ "number" : "0"
2324
+ },
2325
+ "swFailure" : {
2326
+ "nodetype" : "namednumber",
2327
+ "number" : "1"
2328
+ },
2329
+ "hwFailure" : {
2330
+ "nodetype" : "namednumber",
2331
+ "number" : "2"
2332
+ },
2333
+ "otherFailure" : {
2334
+ "nodetype" : "namednumber",
2335
+ "number" : "3"
2336
+ },
2337
+ "unknown" : {
2338
+ "nodetype" : "namednumber",
2339
+ "number" : "255"
2340
+ },
2341
+ },
2342
+ },
2343
+ "access" : "readonly",
2344
+ "description" :
2345
+ """Represents the failure type of the most recent radio failure.
2346
+ The following enumerated values are supported:
2347
+ unsupported(0) - Not supported
2348
+ swFailure(1) - Software failure
2349
+ hwFailure(2) - Hardware failure
2350
+ otherFailure(3) - Other failure
2351
+ unknown(255) - Unknown
2352
+ Note that the CAPWAP field [RFC5415] modeled by this
2353
+ object takes zero as starting value; this MIB object follows
2354
+ that rule.""",
2355
+ "reference" :
2356
+ """Section 4.6.46 of CAPWAP Protocol Specification, RFC 5415.""",
2357
+ }, # column
2358
+ "capwapBaseParameters" : {
2359
+ "nodetype" : "node",
2360
+ "moduleName" : "CAPWAP-BASE-MIB",
2361
+ "oid" : "1.3.6.1.2.1.196.1.3",
2362
+ }, # node
2363
+ "capwapBaseAcMaxRetransmit" : {
2364
+ "nodetype" : "scalar",
2365
+ "moduleName" : "CAPWAP-BASE-MIB",
2366
+ "oid" : "1.3.6.1.2.1.196.1.3.1",
2367
+ "status" : "current",
2368
+ "syntax" : {
2369
+ "type" : { "module" :"", "name" : "Unsigned32"},
2370
+ },
2371
+ "access" : "readwrite",
2372
+ "default" : "5",
2373
+ "description" :
2374
+ """Represents the maximum number of retransmissions for a given
2375
+ CAPWAP packet before the link layer considers the peer dead.
2376
+ The value of the object is persistent at restart/reboot.""",
2377
+ "reference" :
2378
+ """Section 4.8.7 of CAPWAP Protocol Specification, RFC 5415.""",
2379
+ }, # scalar
2380
+ "capwapBaseAcChangeStatePendingTimer" : {
2381
+ "nodetype" : "scalar",
2382
+ "moduleName" : "CAPWAP-BASE-MIB",
2383
+ "oid" : "1.3.6.1.2.1.196.1.3.2",
2384
+ "status" : "current",
2385
+ "syntax" : {
2386
+ "type" : { "module" :"", "name" : "Unsigned32"},
2387
+ },
2388
+ "access" : "readwrite",
2389
+ "default" : "25",
2390
+ "units" : "second",
2391
+ "description" :
2392
+ """Represents the maximum time, in seconds, the AC will wait
2393
+ for the Change State Event Request from the WTP after having
2394
+ transmitted a successful Configuration Status Response
2395
+ message.
2396
+ The value of the object is persistent at restart/reboot.""",
2397
+ "reference" :
2398
+ """Section 4.7.1 of CAPWAP Protocol Specification, RFC 5415.""",
2399
+ }, # scalar
2400
+ "capwapBaseAcDataCheckTimer" : {
2401
+ "nodetype" : "scalar",
2402
+ "moduleName" : "CAPWAP-BASE-MIB",
2403
+ "oid" : "1.3.6.1.2.1.196.1.3.3",
2404
+ "status" : "current",
2405
+ "syntax" : {
2406
+ "type" : { "module" :"", "name" : "Unsigned32"},
2407
+ },
2408
+ "access" : "readwrite",
2409
+ "default" : "30",
2410
+ "units" : "second",
2411
+ "description" :
2412
+ """Represents The number of seconds the AC will wait for
2413
+ the Data Channel Keep Alive, which is required by the
2414
+ CAPWAP state machine's Data Check state.
2415
+ The AC resets the state machine if this timer expires
2416
+ prior to transitioning to the next state.
2417
+ The value of the object is persistent at restart/reboot.""",
2418
+ "reference" :
2419
+ """Section 4.7.4 of CAPWAP Protocol Specification, RFC 5415.""",
2420
+ }, # scalar
2421
+ "capwapBaseAcDTLSSessionDeleteTimer" : {
2422
+ "nodetype" : "scalar",
2423
+ "moduleName" : "CAPWAP-BASE-MIB",
2424
+ "oid" : "1.3.6.1.2.1.196.1.3.4",
2425
+ "status" : "current",
2426
+ "syntax" : {
2427
+ "type" : { "module" :"", "name" : "Unsigned32"},
2428
+ },
2429
+ "access" : "readwrite",
2430
+ "default" : "5",
2431
+ "units" : "second",
2432
+ "description" :
2433
+ """Represents the minimum time, in seconds, the AC MUST wait
2434
+ for DTLS session deletion.
2435
+ The value of the object is persistent at restart/reboot.""",
2436
+ "reference" :
2437
+ """Section 4.7.6 of CAPWAP Protocol Specification, RFC 5415.""",
2438
+ }, # scalar
2439
+ "capwapBaseAcEchoInterval" : {
2440
+ "nodetype" : "scalar",
2441
+ "moduleName" : "CAPWAP-BASE-MIB",
2442
+ "oid" : "1.3.6.1.2.1.196.1.3.5",
2443
+ "status" : "current",
2444
+ "syntax" : {
2445
+ "type" : { "module" :"", "name" : "Unsigned32"},
2446
+ },
2447
+ "access" : "readwrite",
2448
+ "default" : "30",
2449
+ "units" : "second",
2450
+ "description" :
2451
+ """Represents the minimum time, in seconds, between sending Echo
2452
+ Request messages to the AC with which the WTP has joined.
2453
+ The value of the object is persistent at restart/reboot.""",
2454
+ "reference" :
2455
+ """Section 4.7.7 of CAPWAP Protocol Specification, RFC 5415.""",
2456
+ }, # scalar
2457
+ "capwapBaseAcRetransmitInterval" : {
2458
+ "nodetype" : "scalar",
2459
+ "moduleName" : "CAPWAP-BASE-MIB",
2460
+ "oid" : "1.3.6.1.2.1.196.1.3.6",
2461
+ "status" : "current",
2462
+ "syntax" : {
2463
+ "type" : { "module" :"", "name" : "Unsigned32"},
2464
+ },
2465
+ "access" : "readwrite",
2466
+ "default" : "3",
2467
+ "units" : "second",
2468
+ "description" :
2469
+ """Represents the minimum time, in seconds, in which a
2470
+ non-acknowledged CAPWAP packet will be retransmitted.
2471
+ The value of the object is persistent at restart/reboot.""",
2472
+ "reference" :
2473
+ """Section 4.7.12 of CAPWAP Protocol Specification, RFC 5415.""",
2474
+ }, # scalar
2475
+ "capwapBaseAcSilentInterval" : {
2476
+ "nodetype" : "scalar",
2477
+ "moduleName" : "CAPWAP-BASE-MIB",
2478
+ "oid" : "1.3.6.1.2.1.196.1.3.7",
2479
+ "status" : "current",
2480
+ "syntax" : {
2481
+ "type" : { "module" :"", "name" : "Unsigned32"},
2482
+ },
2483
+ "access" : "readwrite",
2484
+ "default" : "30",
2485
+ "units" : "second",
2486
+ "description" :
2487
+ """Represents the minimum time, in seconds, during which the AC
2488
+ SHOULD ignore all CAPWAP and DTLS packets received from the
2489
+ WTP that is in the Sulking state.
2490
+ The value of the object is persistent at restart/reboot.""",
2491
+ "reference" :
2492
+ """Section 4.7.13 of CAPWAP Protocol Specification, RFC 5415.""",
2493
+ }, # scalar
2494
+ "capwapBaseAcWaitDTLSTimer" : {
2495
+ "nodetype" : "scalar",
2496
+ "moduleName" : "CAPWAP-BASE-MIB",
2497
+ "oid" : "1.3.6.1.2.1.196.1.3.8",
2498
+ "status" : "current",
2499
+ "syntax" : {
2500
+ "type" : {
2501
+ "basetype" : "Unsigned32",
2502
+ "ranges" : [
2503
+ {
2504
+ "min" : "30",
2505
+ "max" : "4294967295"
2506
+ },
2507
+ ],
2508
+ "range" : {
2509
+ "min" : "30",
2510
+ "max" : "4294967295"
2511
+ },
2512
+ },
2513
+ },
2514
+ "access" : "readwrite",
2515
+ "default" : "60",
2516
+ "units" : "second",
2517
+ "description" :
2518
+ """Represents the maximum time, in seconds, the AC MUST wait
2519
+ without having received a DTLS Handshake message from an AC.
2520
+ This timer MUST be greater than 30 seconds.
2521
+ The value of the object is persistent at restart/reboot.""",
2522
+ "reference" :
2523
+ """Section 4.7.15 of CAPWAP Protocol Specification, RFC 5415.""",
2524
+ }, # scalar
2525
+ "capwapBaseAcWaitJoinTimer" : {
2526
+ "nodetype" : "scalar",
2527
+ "moduleName" : "CAPWAP-BASE-MIB",
2528
+ "oid" : "1.3.6.1.2.1.196.1.3.9",
2529
+ "status" : "current",
2530
+ "syntax" : {
2531
+ "type" : {
2532
+ "basetype" : "Unsigned32",
2533
+ "ranges" : [
2534
+ {
2535
+ "min" : "20",
2536
+ "max" : "4294967295"
2537
+ },
2538
+ ],
2539
+ "range" : {
2540
+ "min" : "20",
2541
+ "max" : "4294967295"
2542
+ },
2543
+ },
2544
+ },
2545
+ "access" : "readwrite",
2546
+ "default" : "60",
2547
+ "units" : "second",
2548
+ "description" :
2549
+ """Represents the maximum time, in seconds, the AC will wait
2550
+ after the DTLS session has been established until it receives
2551
+ the Join Request from the WTP. This timer MUST be greater
2552
+ than 20 seconds.
2553
+ The value of the object is persistent at restart/reboot.""",
2554
+ "reference" :
2555
+ """Section 4.7.16 of CAPWAP Protocol Specification, RFC 5415.""",
2556
+ }, # scalar
2557
+ "capwapBaseAcEcnSupport" : {
2558
+ "nodetype" : "scalar",
2559
+ "moduleName" : "CAPWAP-BASE-MIB",
2560
+ "oid" : "1.3.6.1.2.1.196.1.3.10",
2561
+ "status" : "current",
2562
+ "syntax" : {
2563
+ "type" : {
2564
+ "basetype" : "Enumeration",
2565
+ "limited" : {
2566
+ "nodetype" : "namednumber",
2567
+ "number" : "0"
2568
+ },
2569
+ "fullAndLimited" : {
2570
+ "nodetype" : "namednumber",
2571
+ "number" : "1"
2572
+ },
2573
+ },
2574
+ },
2575
+ "access" : "readwrite",
2576
+ "description" :
2577
+ """Represents the support for the Explicit Congestion Notification
2578
+ (ECN) bits, as defined in [RFC3168].
2579
+ The value of the object is persistent at restart/reboot.
2580
+ The following enumerated values are supported:
2581
+ limited(0) - Limited ECN support
2582
+ fullAndLimited(1) - Full and limited ECN support
2583
+ Note that the CAPWAP field [RFC5415] modeled by this
2584
+ object takes zero as starting value; this MIB object follows
2585
+ that rule.""",
2586
+ "reference" :
2587
+ """Section 4.6.25 of CAPWAP Protocol Specification, RFC 5415.""",
2588
+ }, # scalar
2589
+ "capwapBaseStats" : {
2590
+ "nodetype" : "node",
2591
+ "moduleName" : "CAPWAP-BASE-MIB",
2592
+ "oid" : "1.3.6.1.2.1.196.1.4",
2593
+ }, # node
2594
+ "capwapBaseFailedDTLSAuthFailureCount" : {
2595
+ "nodetype" : "scalar",
2596
+ "moduleName" : "CAPWAP-BASE-MIB",
2597
+ "oid" : "1.3.6.1.2.1.196.1.4.1",
2598
+ "status" : "current",
2599
+ "syntax" : {
2600
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2601
+ },
2602
+ "access" : "readonly",
2603
+ "description" :
2604
+ """Represents the number of failed DTLS session establishment
2605
+ attempts due to authentication failures.""",
2606
+ "reference" :
2607
+ """Section 4.8.3 of CAPWAP Protocol Specification, RFC 5415.""",
2608
+ }, # scalar
2609
+ "capwapBaseFailedDTLSSessionCount" : {
2610
+ "nodetype" : "scalar",
2611
+ "moduleName" : "CAPWAP-BASE-MIB",
2612
+ "oid" : "1.3.6.1.2.1.196.1.4.2",
2613
+ "status" : "current",
2614
+ "syntax" : {
2615
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2616
+ },
2617
+ "access" : "readonly",
2618
+ "description" :
2619
+ """Represents the number of failed DTLS session
2620
+ establishment attempts.""",
2621
+ "reference" :
2622
+ """Section 4.8.4 of CAPWAP Protocol Specification, RFC 5415.""",
2623
+ }, # scalar
2624
+ "capwapBaseNotifyVarObjects" : {
2625
+ "nodetype" : "node",
2626
+ "moduleName" : "CAPWAP-BASE-MIB",
2627
+ "oid" : "1.3.6.1.2.1.196.1.5",
2628
+ }, # node
2629
+ "capwapBaseNtfWtpId" : {
2630
+ "nodetype" : "scalar",
2631
+ "moduleName" : "CAPWAP-BASE-MIB",
2632
+ "oid" : "1.3.6.1.2.1.196.1.5.1",
2633
+ "status" : "current",
2634
+ "syntax" : {
2635
+ "type" : { "module" :"CAPWAP-BASE-MIB", "name" : "CapwapBaseWtpIdTC"},
2636
+ },
2637
+ "access" : "notifyonly",
2638
+ "description" :
2639
+ """Represents the unique identifier of a WTP.""",
2640
+ }, # scalar
2641
+ "capwapBaseNtfRadioId" : {
2642
+ "nodetype" : "scalar",
2643
+ "moduleName" : "CAPWAP-BASE-MIB",
2644
+ "oid" : "1.3.6.1.2.1.196.1.5.2",
2645
+ "status" : "current",
2646
+ "syntax" : {
2647
+ "type" : { "module" :"CAPWAP-BASE-MIB", "name" : "CapwapBaseRadioIdTC"},
2648
+ },
2649
+ "access" : "notifyonly",
2650
+ "description" :
2651
+ """Represents the identifier of a PHY radio on a WTP, which is
2652
+ only required to be unique on a WTP.
2653
+ For example, WTP A and WTP B can use the same value of
2654
+ capwapBaseNtfRadioId for their first radio.""",
2655
+ "reference" :
2656
+ """Section 4.3 of CAPWAP Protocol Specification, RFC 5415.""",
2657
+ }, # scalar
2658
+ "capwapBaseNtfChannelType" : {
2659
+ "nodetype" : "scalar",
2660
+ "moduleName" : "CAPWAP-BASE-MIB",
2661
+ "oid" : "1.3.6.1.2.1.196.1.5.3",
2662
+ "status" : "current",
2663
+ "syntax" : {
2664
+ "type" : { "module" :"CAPWAP-BASE-MIB", "name" : "CapwapBaseChannelTypeTC"},
2665
+ },
2666
+ "access" : "notifyonly",
2667
+ "description" :
2668
+ """Represents the channel type for the CAPWAP protocol.""",
2669
+ }, # scalar
2670
+ "capwapBaseNtfAuthenMethod" : {
2671
+ "nodetype" : "scalar",
2672
+ "moduleName" : "CAPWAP-BASE-MIB",
2673
+ "oid" : "1.3.6.1.2.1.196.1.5.4",
2674
+ "status" : "current",
2675
+ "syntax" : {
2676
+ "type" : { "module" :"CAPWAP-BASE-MIB", "name" : "CapwapBaseAuthenMethodTC"},
2677
+ },
2678
+ "access" : "notifyonly",
2679
+ "description" :
2680
+ """Represents the authentication method for the CAPWAP Channel.""",
2681
+ }, # scalar
2682
+ "capwapBaseNtfChannelDownReason" : {
2683
+ "nodetype" : "scalar",
2684
+ "moduleName" : "CAPWAP-BASE-MIB",
2685
+ "oid" : "1.3.6.1.2.1.196.1.5.5",
2686
+ "status" : "current",
2687
+ "syntax" : {
2688
+ "type" : {
2689
+ "basetype" : "Enumeration",
2690
+ "timeout" : {
2691
+ "nodetype" : "namednumber",
2692
+ "number" : "1"
2693
+ },
2694
+ "rekeyFailure" : {
2695
+ "nodetype" : "namednumber",
2696
+ "number" : "2"
2697
+ },
2698
+ "acRebootWtp" : {
2699
+ "nodetype" : "namednumber",
2700
+ "number" : "3"
2701
+ },
2702
+ "dtlsError" : {
2703
+ "nodetype" : "namednumber",
2704
+ "number" : "4"
2705
+ },
2706
+ "maxRetransmit" : {
2707
+ "nodetype" : "namednumber",
2708
+ "number" : "5"
2709
+ },
2710
+ },
2711
+ },
2712
+ "access" : "notifyonly",
2713
+ "description" :
2714
+ """Represents the reason the channel is down.
2715
+ The following enumerated values are supported:
2716
+ timeout(1) - The keepalive timed out
2717
+ rekeyFailure(2) - Rekey process failed; channel will be
2718
+ broken
2719
+ acRebootWtp(3) - The AC rebooted the WTP
2720
+ dtlsError(4) - DTLS notifications: DTLSAborted,
2721
+ DTLSReassemblyFailure, DTLSPeerDisconnect,
2722
+ or frequent DTLSDecapFailure
2723
+ maxRetransmit(5) - The underlying reliable transport's
2724
+ RetransmitCount counter has reached the
2725
+ MaxRetransmit variable""",
2726
+ }, # scalar
2727
+ "capwapBaseNtfStationIdList" : {
2728
+ "nodetype" : "scalar",
2729
+ "moduleName" : "CAPWAP-BASE-MIB",
2730
+ "oid" : "1.3.6.1.2.1.196.1.5.6",
2731
+ "status" : "current",
2732
+ "syntax" : {
2733
+ "type" : {
2734
+ "basetype" : "OctetString",
2735
+ "parent module" : {
2736
+ "name" : "SYSAPPL-MIB",
2737
+ "type" : "LongUtf8String",
2738
+ },
2739
+ "ranges" : [
2740
+ {
2741
+ "min" : "6",
2742
+ "max" : "1024"
2743
+ },
2744
+ ],
2745
+ "range" : {
2746
+ "min" : "6",
2747
+ "max" : "1024"
2748
+ },
2749
+ },
2750
+ },
2751
+ "access" : "notifyonly",
2752
+ "description" :
2753
+ """Represents a list of station MAC addresses separated by
2754
+ semicolons.""",
2755
+ "reference" :
2756
+ """Section 4.6.17 of CAPWAP Protocol Specification, RFC 5415.""",
2757
+ }, # scalar
2758
+ "capwapBaseNtfAuthenFailureReason" : {
2759
+ "nodetype" : "scalar",
2760
+ "moduleName" : "CAPWAP-BASE-MIB",
2761
+ "oid" : "1.3.6.1.2.1.196.1.5.7",
2762
+ "status" : "current",
2763
+ "syntax" : {
2764
+ "type" : {
2765
+ "basetype" : "Enumeration",
2766
+ "keyMismatch" : {
2767
+ "nodetype" : "namednumber",
2768
+ "number" : "1"
2769
+ },
2770
+ "invalidCert" : {
2771
+ "nodetype" : "namednumber",
2772
+ "number" : "2"
2773
+ },
2774
+ "reassemblyFailure" : {
2775
+ "nodetype" : "namednumber",
2776
+ "number" : "3"
2777
+ },
2778
+ "decapFailure" : {
2779
+ "nodetype" : "namednumber",
2780
+ "number" : "4"
2781
+ },
2782
+ "encapFailure" : {
2783
+ "nodetype" : "namednumber",
2784
+ "number" : "5"
2785
+ },
2786
+ "timeout" : {
2787
+ "nodetype" : "namednumber",
2788
+ "number" : "6"
2789
+ },
2790
+ "unknown" : {
2791
+ "nodetype" : "namednumber",
2792
+ "number" : "8"
2793
+ },
2794
+ },
2795
+ },
2796
+ "access" : "notifyonly",
2797
+ "description" :
2798
+ """Represents the reason for WTP authorization failure.
2799
+ The following enumerated values are supported:
2800
+ keyMismatch(1) - WTP's and AC's keys did not match
2801
+ invalidCert(2) - Certification is not valid
2802
+ reassemblyFailure(3) - Fragment reassembly failure
2803
+ decapFailure(4) - Decapsulation error
2804
+
2805
+
2806
+
2807
+ encapFailure(5) - Encapsulation error
2808
+ timeout(6) - WaitDTLS timer timeout
2809
+ unknown(8) - Unknown reason""",
2810
+ "reference" :
2811
+ """Section 2.3.1 of CAPWAP Protocol Specification, RFC 5415.""",
2812
+ }, # scalar
2813
+ "capwapBaseNtfRadioOperStatusFlag" : {
2814
+ "nodetype" : "scalar",
2815
+ "moduleName" : "CAPWAP-BASE-MIB",
2816
+ "oid" : "1.3.6.1.2.1.196.1.5.8",
2817
+ "status" : "current",
2818
+ "syntax" : {
2819
+ "type" : {
2820
+ "basetype" : "Enumeration",
2821
+ "operable" : {
2822
+ "nodetype" : "namednumber",
2823
+ "number" : "0"
2824
+ },
2825
+ "inoperable" : {
2826
+ "nodetype" : "namednumber",
2827
+ "number" : "1"
2828
+ },
2829
+ },
2830
+ },
2831
+ "access" : "notifyonly",
2832
+ "description" :
2833
+ """Represents the operation status of a radio.
2834
+ The following enumerated values are supported:
2835
+ operable(0) - The radio is operable
2836
+ inoperable(1) - The radio is inoperable, and the
2837
+ capwapBaseNtfRadioStatusCause object
2838
+ gives the reason in detail
2839
+ Note that the CAPWAP field [RFC5415] modeled by this
2840
+ object takes zero as starting value; this MIB object
2841
+ follows that rule.""",
2842
+ "reference" :
2843
+ """Section 4.6.34 of CAPWAP Protocol Specification, RFC 5415.""",
2844
+ }, # scalar
2845
+ "capwapBaseNtfRadioStatusCause" : {
2846
+ "nodetype" : "scalar",
2847
+ "moduleName" : "CAPWAP-BASE-MIB",
2848
+ "oid" : "1.3.6.1.2.1.196.1.5.9",
2849
+ "status" : "current",
2850
+ "syntax" : {
2851
+ "type" : {
2852
+ "basetype" : "Enumeration",
2853
+ "normal" : {
2854
+ "nodetype" : "namednumber",
2855
+ "number" : "0"
2856
+ },
2857
+ "hwError" : {
2858
+ "nodetype" : "namednumber",
2859
+ "number" : "1"
2860
+ },
2861
+ "swError" : {
2862
+ "nodetype" : "namednumber",
2863
+ "number" : "2"
2864
+ },
2865
+ "adminSet" : {
2866
+ "nodetype" : "namednumber",
2867
+ "number" : "3"
2868
+ },
2869
+ },
2870
+ },
2871
+ "access" : "notifyonly",
2872
+ "description" :
2873
+ """Represents the reason why the radio is out of service.
2874
+ The following enumerated values are supported:
2875
+ normal(0) - Normal status
2876
+ hwError(1) - Radio failure
2877
+ swError(2) - Software failure
2878
+ adminSet(3) - Administratively set
2879
+ Note that the CAPWAP field [RFC5415] modeled by this
2880
+ object takes zero as starting value; this MIB object
2881
+ follows that rule.""",
2882
+ "reference" :
2883
+ """Section 4.6.34 of CAPWAP Protocol Specification, RFC 5415.""",
2884
+ }, # scalar
2885
+ "capwapBaseNtfJoinFailureReason" : {
2886
+ "nodetype" : "scalar",
2887
+ "moduleName" : "CAPWAP-BASE-MIB",
2888
+ "oid" : "1.3.6.1.2.1.196.1.5.10",
2889
+ "status" : "current",
2890
+ "syntax" : {
2891
+ "type" : {
2892
+ "basetype" : "Enumeration",
2893
+ "unspecified" : {
2894
+ "nodetype" : "namednumber",
2895
+ "number" : "1"
2896
+ },
2897
+ "resDepletion" : {
2898
+ "nodetype" : "namednumber",
2899
+ "number" : "2"
2900
+ },
2901
+ "unknownSource" : {
2902
+ "nodetype" : "namednumber",
2903
+ "number" : "3"
2904
+ },
2905
+ "incorrectData" : {
2906
+ "nodetype" : "namednumber",
2907
+ "number" : "4"
2908
+ },
2909
+ "sessionIdInUse" : {
2910
+ "nodetype" : "namednumber",
2911
+ "number" : "5"
2912
+ },
2913
+ "unsupportedHw" : {
2914
+ "nodetype" : "namednumber",
2915
+ "number" : "6"
2916
+ },
2917
+ "unsupportedBinding" : {
2918
+ "nodetype" : "namednumber",
2919
+ "number" : "7"
2920
+ },
2921
+ },
2922
+ },
2923
+ "access" : "notifyonly",
2924
+ "description" :
2925
+ """Represents the reason of join failure.
2926
+ The following enumerated values are supported:
2927
+ unspecified(1) - Unspecified failure
2928
+ resDepletion(2) - Resource depletion
2929
+ unknownSource(3) - Unknown source
2930
+ incorrectData(4) - Incorrect data
2931
+ sessionIdInUse(5) - Session ID already in use
2932
+ unsupportedHw(6) - WTP hardware not supported
2933
+ unsupportedBinding(7) - Binding not supported""",
2934
+ "reference" :
2935
+ """Section 4.6.35 of CAPWAP Protocol Specification, RFC 5415.""",
2936
+ }, # scalar
2937
+ "capwapBaseNtfImageFailureReason" : {
2938
+ "nodetype" : "scalar",
2939
+ "moduleName" : "CAPWAP-BASE-MIB",
2940
+ "oid" : "1.3.6.1.2.1.196.1.5.11",
2941
+ "status" : "current",
2942
+ "syntax" : {
2943
+ "type" : {
2944
+ "basetype" : "Enumeration",
2945
+ "invalidChecksum" : {
2946
+ "nodetype" : "namednumber",
2947
+ "number" : "1"
2948
+ },
2949
+ "invalidLength" : {
2950
+ "nodetype" : "namednumber",
2951
+ "number" : "2"
2952
+ },
2953
+ "other" : {
2954
+ "nodetype" : "namednumber",
2955
+ "number" : "3"
2956
+ },
2957
+ "inStorage" : {
2958
+ "nodetype" : "namednumber",
2959
+ "number" : "4"
2960
+ },
2961
+ },
2962
+ },
2963
+ "access" : "notifyonly",
2964
+ "description" :
2965
+ """Represents the reason of image failure.
2966
+ The following enumerated values are supported:
2967
+ invalidChecksum(1) - Invalid checksum
2968
+ invalidLength(2) - Invalid data length
2969
+ other(3) - Other error
2970
+ inStorage(4) - Image already present""",
2971
+ "reference" :
2972
+ """Section 4.6.35 of CAPWAP Protocol Specification, RFC 5415.""",
2973
+ }, # scalar
2974
+ "capwapBaseNtfConfigMsgErrorType" : {
2975
+ "nodetype" : "scalar",
2976
+ "moduleName" : "CAPWAP-BASE-MIB",
2977
+ "oid" : "1.3.6.1.2.1.196.1.5.12",
2978
+ "status" : "current",
2979
+ "syntax" : {
2980
+ "type" : {
2981
+ "basetype" : "Enumeration",
2982
+ "unknownElement" : {
2983
+ "nodetype" : "namednumber",
2984
+ "number" : "1"
2985
+ },
2986
+ "unsupportedElement" : {
2987
+ "nodetype" : "namednumber",
2988
+ "number" : "2"
2989
+ },
2990
+ "unknownValue" : {
2991
+ "nodetype" : "namednumber",
2992
+ "number" : "3"
2993
+ },
2994
+ "unsupportedValue" : {
2995
+ "nodetype" : "namednumber",
2996
+ "number" : "4"
2997
+ },
2998
+ },
2999
+ },
3000
+ "access" : "notifyonly",
3001
+ "description" :
3002
+ """Represents the type of configuration message error.
3003
+ The following enumerated values are supported:
3004
+ unknownElement(1) - Unknown message element
3005
+ unsupportedElement(2) - Unsupported message element
3006
+ unknownValue(3) - Unknown message element value
3007
+ unsupportedValue(4) - Unsupported message element value""",
3008
+ "reference" :
3009
+ """Section 4.6.36 of CAPWAP Protocol Specification, RFC 5415.""",
3010
+ }, # scalar
3011
+ "capwapBaseNtfMsgErrorElements" : {
3012
+ "nodetype" : "scalar",
3013
+ "moduleName" : "CAPWAP-BASE-MIB",
3014
+ "oid" : "1.3.6.1.2.1.196.1.5.13",
3015
+ "status" : "current",
3016
+ "syntax" : {
3017
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
3018
+ },
3019
+ "access" : "notifyonly",
3020
+ "description" :
3021
+ """Represents the message elements sent by the AC in the
3022
+ Configuration Status Response message that caused the error.""",
3023
+ "reference" :
3024
+ """Section 4.6.36 of CAPWAP Protocol Specification, RFC 5415.""",
3025
+ }, # scalar
3026
+ "capwapBaseNotifyControlObjects" : {
3027
+ "nodetype" : "node",
3028
+ "moduleName" : "CAPWAP-BASE-MIB",
3029
+ "oid" : "1.3.6.1.2.1.196.1.6",
3030
+ }, # node
3031
+ "capwapBaseChannelUpDownNotifyEnable" : {
3032
+ "nodetype" : "scalar",
3033
+ "moduleName" : "CAPWAP-BASE-MIB",
3034
+ "oid" : "1.3.6.1.2.1.196.1.6.1",
3035
+ "status" : "current",
3036
+ "syntax" : {
3037
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
3038
+ },
3039
+ "access" : "readwrite",
3040
+ "default" : "false",
3041
+ "description" :
3042
+ """Represents whether the Channel Up / Channel Down notification
3043
+ should be generated.
3044
+ A value of true(1) means that the notification is enabled.
3045
+ A value of false(2) means that the notification is disabled.
3046
+ The value of the object is persistent at restart/reboot.""",
3047
+ }, # scalar
3048
+ "capwapBaseDecryptErrorNotifyEnable" : {
3049
+ "nodetype" : "scalar",
3050
+ "moduleName" : "CAPWAP-BASE-MIB",
3051
+ "oid" : "1.3.6.1.2.1.196.1.6.2",
3052
+ "status" : "current",
3053
+ "syntax" : {
3054
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
3055
+ },
3056
+ "access" : "readwrite",
3057
+ "default" : "true",
3058
+ "description" :
3059
+ """Represents whether the decryption error notification should
3060
+ be generated.
3061
+ A value of true(1) means that the notification is enabled.
3062
+ A value of false(2) means that the notification is disabled.
3063
+ The value of the object is persistent at restart/reboot.""",
3064
+ }, # scalar
3065
+ "capwapBaseJoinFailureNotifyEnable" : {
3066
+ "nodetype" : "scalar",
3067
+ "moduleName" : "CAPWAP-BASE-MIB",
3068
+ "oid" : "1.3.6.1.2.1.196.1.6.3",
3069
+ "status" : "current",
3070
+ "syntax" : {
3071
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
3072
+ },
3073
+ "access" : "readwrite",
3074
+ "default" : "true",
3075
+ "description" :
3076
+ """Represents whether the notification of a WTP join failure
3077
+ should be generated.
3078
+ A value of true(1) means that the notification is enabled.
3079
+ A value of false(2) means that the notification is disabled.
3080
+ The value of the object is persistent at restart/reboot.""",
3081
+ }, # scalar
3082
+ "capwapBaseImageUpgradeFailureNotifyEnable" : {
3083
+ "nodetype" : "scalar",
3084
+ "moduleName" : "CAPWAP-BASE-MIB",
3085
+ "oid" : "1.3.6.1.2.1.196.1.6.4",
3086
+ "status" : "current",
3087
+ "syntax" : {
3088
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
3089
+ },
3090
+ "access" : "readwrite",
3091
+ "default" : "true",
3092
+ "description" :
3093
+ """Represents whether the notification of a WTP image upgrade
3094
+ failure should be generated.
3095
+ A value of true(1) means that the notification is enabled.
3096
+ A value of false(2) means that the notification is disabled.
3097
+ The value of the object is persistent at restart/reboot.""",
3098
+ }, # scalar
3099
+ "capwapBaseConfigMsgErrorNotifyEnable" : {
3100
+ "nodetype" : "scalar",
3101
+ "moduleName" : "CAPWAP-BASE-MIB",
3102
+ "oid" : "1.3.6.1.2.1.196.1.6.5",
3103
+ "status" : "current",
3104
+ "syntax" : {
3105
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
3106
+ },
3107
+ "access" : "readwrite",
3108
+ "default" : "false",
3109
+ "description" :
3110
+ """Represents whether the notification of configuration message
3111
+ error should be generated.
3112
+ A value of true(1) means that the notification is enabled.
3113
+ A value of false(2) means that the notification is disabled.
3114
+
3115
+
3116
+
3117
+ The value of the object is persistent at restart/reboot.""",
3118
+ }, # scalar
3119
+ "capwapBaseRadioOperableStatusNotifyEnable" : {
3120
+ "nodetype" : "scalar",
3121
+ "moduleName" : "CAPWAP-BASE-MIB",
3122
+ "oid" : "1.3.6.1.2.1.196.1.6.6",
3123
+ "status" : "current",
3124
+ "syntax" : {
3125
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
3126
+ },
3127
+ "access" : "readwrite",
3128
+ "default" : "false",
3129
+ "description" :
3130
+ """Represents whether the notification of a radio's operational
3131
+ state change should be generated.
3132
+ A value of true(1) means that the notification is enabled.
3133
+ A value of false(2) means that the notification is disabled.
3134
+ The value of the object is persistent at restart/reboot.""",
3135
+ }, # scalar
3136
+ "capwapBaseAuthenFailureNotifyEnable" : {
3137
+ "nodetype" : "scalar",
3138
+ "moduleName" : "CAPWAP-BASE-MIB",
3139
+ "oid" : "1.3.6.1.2.1.196.1.6.7",
3140
+ "status" : "current",
3141
+ "syntax" : {
3142
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
3143
+ },
3144
+ "access" : "readwrite",
3145
+ "default" : "true",
3146
+ "description" :
3147
+ """Represents whether the notification of authentication failure
3148
+ should be generated.
3149
+ A value of true(1) means that the notification is enabled.
3150
+ A value of false(2) means that the notification is disabled.
3151
+ The value of the object is persistent at restart/reboot.""",
3152
+ }, # scalar
3153
+ "capwapBaseConformance" : {
3154
+ "nodetype" : "node",
3155
+ "moduleName" : "CAPWAP-BASE-MIB",
3156
+ "oid" : "1.3.6.1.2.1.196.2",
3157
+ }, # node
3158
+ "capwapBaseCompliances" : {
3159
+ "nodetype" : "node",
3160
+ "moduleName" : "CAPWAP-BASE-MIB",
3161
+ "oid" : "1.3.6.1.2.1.196.2.1",
3162
+ }, # node
3163
+ "capwapBaseGroups" : {
3164
+ "nodetype" : "node",
3165
+ "moduleName" : "CAPWAP-BASE-MIB",
3166
+ "oid" : "1.3.6.1.2.1.196.2.2",
3167
+ }, # node
3168
+ }, # nodes
3169
+
3170
+ "notifications" : {
3171
+ "capwapBaseChannelUp" : {
3172
+ "nodetype" : "notification",
3173
+ "moduleName" : "CAPWAP-BASE-MIB",
3174
+ "oid" : "1.3.6.1.2.1.196.0.1",
3175
+ "status" : "current",
3176
+ "objects" : {
3177
+ "capwapBaseNtfWtpId" : {
3178
+ "nodetype" : "object",
3179
+ "module" : "CAPWAP-BASE-MIB"
3180
+ },
3181
+ "capwapBaseNtfChannelType" : {
3182
+ "nodetype" : "object",
3183
+ "module" : "CAPWAP-BASE-MIB"
3184
+ },
3185
+ "capwapBaseNtfAuthenMethod" : {
3186
+ "nodetype" : "object",
3187
+ "module" : "CAPWAP-BASE-MIB"
3188
+ },
3189
+ },
3190
+ "description" :
3191
+ """This notification is sent by the AC when a CAPWAP channel
3192
+ is established.
3193
+ The notification is separated for data or control channel.""",
3194
+ }, # notification
3195
+ "capwapBaseChannelDown" : {
3196
+ "nodetype" : "notification",
3197
+ "moduleName" : "CAPWAP-BASE-MIB",
3198
+ "oid" : "1.3.6.1.2.1.196.0.2",
3199
+ "status" : "current",
3200
+ "objects" : {
3201
+ "capwapBaseNtfWtpId" : {
3202
+ "nodetype" : "object",
3203
+ "module" : "CAPWAP-BASE-MIB"
3204
+ },
3205
+ "capwapBaseNtfChannelType" : {
3206
+ "nodetype" : "object",
3207
+ "module" : "CAPWAP-BASE-MIB"
3208
+ },
3209
+ "capwapBaseNtfChannelDownReason" : {
3210
+ "nodetype" : "object",
3211
+ "module" : "CAPWAP-BASE-MIB"
3212
+ },
3213
+ },
3214
+ "description" :
3215
+ """This notification is sent by the AC when a CAPWAP channel
3216
+ is down.
3217
+ The notification is separated for data or control channel.""",
3218
+ }, # notification
3219
+ "capwapBaseDecryptErrorReport" : {
3220
+ "nodetype" : "notification",
3221
+ "moduleName" : "CAPWAP-BASE-MIB",
3222
+ "oid" : "1.3.6.1.2.1.196.0.3",
3223
+ "status" : "current",
3224
+ "objects" : {
3225
+ "capwapBaseNtfWtpId" : {
3226
+ "nodetype" : "object",
3227
+ "module" : "CAPWAP-BASE-MIB"
3228
+ },
3229
+ "capwapBaseNtfRadioId" : {
3230
+ "nodetype" : "object",
3231
+ "module" : "CAPWAP-BASE-MIB"
3232
+ },
3233
+ "capwapBaseNtfStationIdList" : {
3234
+ "nodetype" : "object",
3235
+ "module" : "CAPWAP-BASE-MIB"
3236
+ },
3237
+ },
3238
+ "description" :
3239
+ """This notification is generated when a WTP has had a
3240
+ decryption error since the last report.""",
3241
+ "reference" :
3242
+ """Section 4.6.17 of CAPWAP Protocol Specification, RFC 5415.""",
3243
+ }, # notification
3244
+ "capwapBaseJoinFailure" : {
3245
+ "nodetype" : "notification",
3246
+ "moduleName" : "CAPWAP-BASE-MIB",
3247
+ "oid" : "1.3.6.1.2.1.196.0.4",
3248
+ "status" : "current",
3249
+ "objects" : {
3250
+ "capwapBaseNtfWtpId" : {
3251
+ "nodetype" : "object",
3252
+ "module" : "CAPWAP-BASE-MIB"
3253
+ },
3254
+ "capwapBaseNtfJoinFailureReason" : {
3255
+ "nodetype" : "object",
3256
+ "module" : "CAPWAP-BASE-MIB"
3257
+ },
3258
+ },
3259
+ "description" :
3260
+ """This notification is generated when a WTP fails to join.""",
3261
+ "reference" :
3262
+ """Section 4.6.35 of CAPWAP Protocol Specification, RFC 5415.""",
3263
+ }, # notification
3264
+ "capwapBaseImageUpgradeFailure" : {
3265
+ "nodetype" : "notification",
3266
+ "moduleName" : "CAPWAP-BASE-MIB",
3267
+ "oid" : "1.3.6.1.2.1.196.0.5",
3268
+ "status" : "current",
3269
+ "objects" : {
3270
+ "capwapBaseNtfWtpId" : {
3271
+ "nodetype" : "object",
3272
+ "module" : "CAPWAP-BASE-MIB"
3273
+ },
3274
+ "capwapBaseNtfImageFailureReason" : {
3275
+ "nodetype" : "object",
3276
+ "module" : "CAPWAP-BASE-MIB"
3277
+ },
3278
+ },
3279
+ "description" :
3280
+ """This notification is generated when a WTP fails to update
3281
+ the firmware image.""",
3282
+ "reference" :
3283
+ """Section 4.6.35 of CAPWAP Protocol Specification, RFC 5415.""",
3284
+ }, # notification
3285
+ "capwapBaseConfigMsgError" : {
3286
+ "nodetype" : "notification",
3287
+ "moduleName" : "CAPWAP-BASE-MIB",
3288
+ "oid" : "1.3.6.1.2.1.196.0.6",
3289
+ "status" : "current",
3290
+ "objects" : {
3291
+ "capwapBaseNtfWtpId" : {
3292
+ "nodetype" : "object",
3293
+ "module" : "CAPWAP-BASE-MIB"
3294
+ },
3295
+ "capwapBaseNtfConfigMsgErrorType" : {
3296
+ "nodetype" : "object",
3297
+ "module" : "CAPWAP-BASE-MIB"
3298
+ },
3299
+ "capwapBaseNtfMsgErrorElements" : {
3300
+ "nodetype" : "object",
3301
+ "module" : "CAPWAP-BASE-MIB"
3302
+ },
3303
+ },
3304
+ "description" :
3305
+ """This notification is generated when a WTP receives message
3306
+ elements in the configuration management messages that it
3307
+ is unable to apply locally.""",
3308
+ "reference" :
3309
+ """Section 4.6.35 of CAPWAP Protocol Specification, RFC 5415.""",
3310
+ }, # notification
3311
+ "capwapBaseRadioOperableStatus" : {
3312
+ "nodetype" : "notification",
3313
+ "moduleName" : "CAPWAP-BASE-MIB",
3314
+ "oid" : "1.3.6.1.2.1.196.0.7",
3315
+ "status" : "current",
3316
+ "objects" : {
3317
+ "capwapBaseNtfWtpId" : {
3318
+ "nodetype" : "object",
3319
+ "module" : "CAPWAP-BASE-MIB"
3320
+ },
3321
+ "capwapBaseNtfRadioId" : {
3322
+ "nodetype" : "object",
3323
+ "module" : "CAPWAP-BASE-MIB"
3324
+ },
3325
+ "capwapBaseNtfRadioOperStatusFlag" : {
3326
+ "nodetype" : "object",
3327
+ "module" : "CAPWAP-BASE-MIB"
3328
+ },
3329
+ "capwapBaseNtfRadioStatusCause" : {
3330
+ "nodetype" : "object",
3331
+ "module" : "CAPWAP-BASE-MIB"
3332
+ },
3333
+ },
3334
+ "description" :
3335
+ """The notification is generated when a radio's operational state
3336
+ has changed.""",
3337
+ "reference" :
3338
+ """Section 4.6.34 of CAPWAP Protocol Specification, RFC 5415.""",
3339
+ }, # notification
3340
+ "capwapBaseAuthenFailure" : {
3341
+ "nodetype" : "notification",
3342
+ "moduleName" : "CAPWAP-BASE-MIB",
3343
+ "oid" : "1.3.6.1.2.1.196.0.8",
3344
+ "status" : "current",
3345
+ "objects" : {
3346
+ "capwapBaseNtfWtpId" : {
3347
+ "nodetype" : "object",
3348
+ "module" : "CAPWAP-BASE-MIB"
3349
+ },
3350
+ "capwapBaseNtfChannelType" : {
3351
+ "nodetype" : "object",
3352
+ "module" : "CAPWAP-BASE-MIB"
3353
+ },
3354
+ "capwapBaseNtfAuthenMethod" : {
3355
+ "nodetype" : "object",
3356
+ "module" : "CAPWAP-BASE-MIB"
3357
+ },
3358
+ "capwapBaseNtfAuthenFailureReason" : {
3359
+ "nodetype" : "object",
3360
+ "module" : "CAPWAP-BASE-MIB"
3361
+ },
3362
+ },
3363
+ "description" :
3364
+ """This is notification of an authentication failure event
3365
+ and provides the reason for it.""",
3366
+ }, # notification
3367
+ }, # notifications
3368
+
3369
+ "groups" : {
3370
+ "capwapBaseAcNodeGroup" : {
3371
+ "nodetype" : "group",
3372
+ "moduleName" : "CAPWAP-BASE-MIB",
3373
+ "oid" : "1.3.6.1.2.1.196.2.2.1",
3374
+ "status" : "current",
3375
+ "members" : {
3376
+ "capwapBaseWtpSessions" : {
3377
+ "nodetype" : "member",
3378
+ "module" : "CAPWAP-BASE-MIB"
3379
+ },
3380
+ "capwapBaseWtpSessionsLimit" : {
3381
+ "nodetype" : "member",
3382
+ "module" : "CAPWAP-BASE-MIB"
3383
+ },
3384
+ "capwapBaseStationSessions" : {
3385
+ "nodetype" : "member",
3386
+ "module" : "CAPWAP-BASE-MIB"
3387
+ },
3388
+ "capwapBaseStationSessionsLimit" : {
3389
+ "nodetype" : "member",
3390
+ "module" : "CAPWAP-BASE-MIB"
3391
+ },
3392
+ }, # members
3393
+ "description" :
3394
+ """A collection of objects that is used to represent
3395
+ the basic properties of the AC from the CAPWAP
3396
+ protocol perspective.""",
3397
+ }, # group
3398
+ "capwapBaseAcNodeGroup2" : {
3399
+ "nodetype" : "group",
3400
+ "moduleName" : "CAPWAP-BASE-MIB",
3401
+ "oid" : "1.3.6.1.2.1.196.2.2.2",
3402
+ "status" : "current",
3403
+ "members" : {
3404
+ "capwapBaseDataChannelDTLSPolicyOptions" : {
3405
+ "nodetype" : "member",
3406
+ "module" : "CAPWAP-BASE-MIB"
3407
+ },
3408
+ "capwapBaseControlChannelAuthenOptions" : {
3409
+ "nodetype" : "member",
3410
+ "module" : "CAPWAP-BASE-MIB"
3411
+ },
3412
+ }, # members
3413
+ "description" :
3414
+ """A collection of objects that is used to represent
3415
+ the other properties (such as security) of the AC from
3416
+ the CAPWAP protocol perspective.""",
3417
+ }, # group
3418
+ "capwapBaseAcNameListGroup" : {
3419
+ "nodetype" : "group",
3420
+ "moduleName" : "CAPWAP-BASE-MIB",
3421
+ "oid" : "1.3.6.1.2.1.196.2.2.3",
3422
+ "status" : "current",
3423
+ "members" : {
3424
+ "capwapBaseAcNameListName" : {
3425
+ "nodetype" : "member",
3426
+ "module" : "CAPWAP-BASE-MIB"
3427
+ },
3428
+ "capwapBaseAcNameListPriority" : {
3429
+ "nodetype" : "member",
3430
+ "module" : "CAPWAP-BASE-MIB"
3431
+ },
3432
+ "capwapBaseAcNameListRowStatus" : {
3433
+ "nodetype" : "member",
3434
+ "module" : "CAPWAP-BASE-MIB"
3435
+ },
3436
+ }, # members
3437
+ "description" :
3438
+ """A collection of objects that is used to configure
3439
+ the AC name list.""",
3440
+ }, # group
3441
+ "capwapBaseMacAclsGroup" : {
3442
+ "nodetype" : "group",
3443
+ "moduleName" : "CAPWAP-BASE-MIB",
3444
+ "oid" : "1.3.6.1.2.1.196.2.2.4",
3445
+ "status" : "current",
3446
+ "members" : {
3447
+ "capwapBaseMacAclStationId" : {
3448
+ "nodetype" : "member",
3449
+ "module" : "CAPWAP-BASE-MIB"
3450
+ },
3451
+ "capwapBaseMacAclRowStatus" : {
3452
+ "nodetype" : "member",
3453
+ "module" : "CAPWAP-BASE-MIB"
3454
+ },
3455
+ }, # members
3456
+ "description" :
3457
+ """A collection of objects that is used to configure
3458
+ the stations ACL.""",
3459
+ }, # group
3460
+ "capwapBaseWtpProfileGroup" : {
3461
+ "nodetype" : "group",
3462
+ "moduleName" : "CAPWAP-BASE-MIB",
3463
+ "oid" : "1.3.6.1.2.1.196.2.2.5",
3464
+ "status" : "current",
3465
+ "members" : {
3466
+ "capwapBaseWtpProfileName" : {
3467
+ "nodetype" : "member",
3468
+ "module" : "CAPWAP-BASE-MIB"
3469
+ },
3470
+ "capwapBaseWtpProfileWtpMacAddress" : {
3471
+ "nodetype" : "member",
3472
+ "module" : "CAPWAP-BASE-MIB"
3473
+ },
3474
+ "capwapBaseWtpProfileWtpModelNumber" : {
3475
+ "nodetype" : "member",
3476
+ "module" : "CAPWAP-BASE-MIB"
3477
+ },
3478
+ "capwapBaseWtpProfileWtpName" : {
3479
+ "nodetype" : "member",
3480
+ "module" : "CAPWAP-BASE-MIB"
3481
+ },
3482
+ "capwapBaseWtpProfileWtpLocation" : {
3483
+ "nodetype" : "member",
3484
+ "module" : "CAPWAP-BASE-MIB"
3485
+ },
3486
+ "capwapBaseWtpProfileRowStatus" : {
3487
+ "nodetype" : "member",
3488
+ "module" : "CAPWAP-BASE-MIB"
3489
+ },
3490
+ }, # members
3491
+ "description" :
3492
+ """A collection of objects that is used to configure
3493
+ the WTP profile.""",
3494
+ }, # group
3495
+ "capwapBaseWtpProfileGroup2" : {
3496
+ "nodetype" : "group",
3497
+ "moduleName" : "CAPWAP-BASE-MIB",
3498
+ "oid" : "1.3.6.1.2.1.196.2.2.6",
3499
+ "status" : "current",
3500
+ "members" : {
3501
+ "capwapBaseWtpProfileWtpStaticIpEnable" : {
3502
+ "nodetype" : "member",
3503
+ "module" : "CAPWAP-BASE-MIB"
3504
+ },
3505
+ "capwapBaseWtpProfileWtpStaticIpType" : {
3506
+ "nodetype" : "member",
3507
+ "module" : "CAPWAP-BASE-MIB"
3508
+ },
3509
+ "capwapBaseWtpProfileWtpStaticIpAddress" : {
3510
+ "nodetype" : "member",
3511
+ "module" : "CAPWAP-BASE-MIB"
3512
+ },
3513
+ "capwapBaseWtpProfileWtpNetmask" : {
3514
+ "nodetype" : "member",
3515
+ "module" : "CAPWAP-BASE-MIB"
3516
+ },
3517
+ "capwapBaseWtpProfileWtpGateway" : {
3518
+ "nodetype" : "member",
3519
+ "module" : "CAPWAP-BASE-MIB"
3520
+ },
3521
+ "capwapBaseWtpProfileWtpFallbackEnable" : {
3522
+ "nodetype" : "member",
3523
+ "module" : "CAPWAP-BASE-MIB"
3524
+ },
3525
+ "capwapBaseWtpProfileWtpEchoInterval" : {
3526
+ "nodetype" : "member",
3527
+ "module" : "CAPWAP-BASE-MIB"
3528
+ },
3529
+ "capwapBaseWtpProfileWtpIdleTimeout" : {
3530
+ "nodetype" : "member",
3531
+ "module" : "CAPWAP-BASE-MIB"
3532
+ },
3533
+ "capwapBaseWtpProfileWtpMaxDiscoveryInterval" : {
3534
+ "nodetype" : "member",
3535
+ "module" : "CAPWAP-BASE-MIB"
3536
+ },
3537
+ "capwapBaseWtpProfileWtpReportInterval" : {
3538
+ "nodetype" : "member",
3539
+ "module" : "CAPWAP-BASE-MIB"
3540
+ },
3541
+ "capwapBaseWtpProfileWtpStatisticsTimer" : {
3542
+ "nodetype" : "member",
3543
+ "module" : "CAPWAP-BASE-MIB"
3544
+ },
3545
+ "capwapBaseWtpProfileWtpEcnSupport" : {
3546
+ "nodetype" : "member",
3547
+ "module" : "CAPWAP-BASE-MIB"
3548
+ },
3549
+ }, # members
3550
+ "description" :
3551
+ """A collection of optional objects that is used to
3552
+ configure the WTP profile.""",
3553
+ }, # group
3554
+ "capwapBaseWtpStateGroup" : {
3555
+ "nodetype" : "group",
3556
+ "moduleName" : "CAPWAP-BASE-MIB",
3557
+ "oid" : "1.3.6.1.2.1.196.2.2.7",
3558
+ "status" : "current",
3559
+ "members" : {
3560
+ "capwapBaseWtpStateWtpIpAddressType" : {
3561
+ "nodetype" : "member",
3562
+ "module" : "CAPWAP-BASE-MIB"
3563
+ },
3564
+ "capwapBaseWtpStateWtpIpAddress" : {
3565
+ "nodetype" : "member",
3566
+ "module" : "CAPWAP-BASE-MIB"
3567
+ },
3568
+ "capwapBaseWtpStateWtpLocalIpAddressType" : {
3569
+ "nodetype" : "member",
3570
+ "module" : "CAPWAP-BASE-MIB"
3571
+ },
3572
+ "capwapBaseWtpStateWtpLocalIpAddress" : {
3573
+ "nodetype" : "member",
3574
+ "module" : "CAPWAP-BASE-MIB"
3575
+ },
3576
+ "capwapBaseWtpStateWtpBaseMacAddress" : {
3577
+ "nodetype" : "member",
3578
+ "module" : "CAPWAP-BASE-MIB"
3579
+ },
3580
+ "capwapBaseWtpState" : {
3581
+ "nodetype" : "member",
3582
+ "module" : "CAPWAP-BASE-MIB"
3583
+ },
3584
+ "capwapBaseWtpStateWtpUpTime" : {
3585
+ "nodetype" : "member",
3586
+ "module" : "CAPWAP-BASE-MIB"
3587
+ },
3588
+ "capwapBaseWtpStateWtpCurrWtpProfileId" : {
3589
+ "nodetype" : "member",
3590
+ "module" : "CAPWAP-BASE-MIB"
3591
+ },
3592
+ }, # members
3593
+ "description" :
3594
+ """A collection of objects that is used to represent
3595
+ the WTP's state information.""",
3596
+ }, # group
3597
+ "capwapBaseWtpGroup" : {
3598
+ "nodetype" : "group",
3599
+ "moduleName" : "CAPWAP-BASE-MIB",
3600
+ "oid" : "1.3.6.1.2.1.196.2.2.8",
3601
+ "status" : "current",
3602
+ "members" : {
3603
+ "capwapBaseWtpBaseMacAddress" : {
3604
+ "nodetype" : "member",
3605
+ "module" : "CAPWAP-BASE-MIB"
3606
+ },
3607
+ "capwapBaseWtpTunnelModeOptions" : {
3608
+ "nodetype" : "member",
3609
+ "module" : "CAPWAP-BASE-MIB"
3610
+ },
3611
+ "capwapBaseWtpMacTypeOptions" : {
3612
+ "nodetype" : "member",
3613
+ "module" : "CAPWAP-BASE-MIB"
3614
+ },
3615
+ "capwapBaseWtpDiscoveryType" : {
3616
+ "nodetype" : "member",
3617
+ "module" : "CAPWAP-BASE-MIB"
3618
+ },
3619
+ "capwapBaseWtpRadiosInUseNum" : {
3620
+ "nodetype" : "member",
3621
+ "module" : "CAPWAP-BASE-MIB"
3622
+ },
3623
+ "capwapBaseWtpRadioNumLimit" : {
3624
+ "nodetype" : "member",
3625
+ "module" : "CAPWAP-BASE-MIB"
3626
+ },
3627
+ }, # members
3628
+ "description" :
3629
+ """A collection of objects that is used to represent
3630
+ the properties information for the WTPs in running state.""",
3631
+ }, # group
3632
+ "capwapBaseWtpGroup2" : {
3633
+ "nodetype" : "group",
3634
+ "moduleName" : "CAPWAP-BASE-MIB",
3635
+ "oid" : "1.3.6.1.2.1.196.2.2.9",
3636
+ "status" : "current",
3637
+ "members" : {
3638
+ "capwapBaseWtpPhyIndex" : {
3639
+ "nodetype" : "member",
3640
+ "module" : "CAPWAP-BASE-MIB"
3641
+ },
3642
+ "capwapBaseWtpRetransmitCount" : {
3643
+ "nodetype" : "member",
3644
+ "module" : "CAPWAP-BASE-MIB"
3645
+ },
3646
+ }, # members
3647
+ "description" :
3648
+ """A collection of optional objects that is used to represent
3649
+ the properties of the WTPs in running state.""",
3650
+ }, # group
3651
+ "capwapBaseRadioGroup" : {
3652
+ "nodetype" : "group",
3653
+ "moduleName" : "CAPWAP-BASE-MIB",
3654
+ "oid" : "1.3.6.1.2.1.196.2.2.10",
3655
+ "status" : "current",
3656
+ "members" : {
3657
+ "capwapBaseWirelessBindingVirtualRadioIfIndex" : {
3658
+ "nodetype" : "member",
3659
+ "module" : "CAPWAP-BASE-MIB"
3660
+ },
3661
+ "capwapBaseWirelessBindingType" : {
3662
+ "nodetype" : "member",
3663
+ "module" : "CAPWAP-BASE-MIB"
3664
+ },
3665
+ }, # members
3666
+ "description" :
3667
+ """A collection of objects that is used to represent
3668
+ the wireless binding type and the mappings between the
3669
+ ifIndexes of WLAN Virtual Radio Interfaces and PHY radios.""",
3670
+ }, # group
3671
+ "capwapBaseStationGroup" : {
3672
+ "nodetype" : "group",
3673
+ "moduleName" : "CAPWAP-BASE-MIB",
3674
+ "oid" : "1.3.6.1.2.1.196.2.2.11",
3675
+ "status" : "current",
3676
+ "members" : {
3677
+ "capwapBaseStationWtpId" : {
3678
+ "nodetype" : "member",
3679
+ "module" : "CAPWAP-BASE-MIB"
3680
+ },
3681
+ "capwapBaseStationWtpRadioId" : {
3682
+ "nodetype" : "member",
3683
+ "module" : "CAPWAP-BASE-MIB"
3684
+ },
3685
+ "capwapBaseStationAddedTime" : {
3686
+ "nodetype" : "member",
3687
+ "module" : "CAPWAP-BASE-MIB"
3688
+ },
3689
+ "capwapBaseStationVlanName" : {
3690
+ "nodetype" : "member",
3691
+ "module" : "CAPWAP-BASE-MIB"
3692
+ },
3693
+ }, # members
3694
+ "description" :
3695
+ """A collection of objects that is used to represent
3696
+ the stations' basic properties.""",
3697
+ }, # group
3698
+ "capwapBaseWtpEventsStatsGroup" : {
3699
+ "nodetype" : "group",
3700
+ "moduleName" : "CAPWAP-BASE-MIB",
3701
+ "oid" : "1.3.6.1.2.1.196.2.2.12",
3702
+ "status" : "current",
3703
+ "members" : {
3704
+ "capwapBaseWtpEventsStatsRebootCount" : {
3705
+ "nodetype" : "member",
3706
+ "module" : "CAPWAP-BASE-MIB"
3707
+ },
3708
+ "capwapBaseWtpEventsStatsInitCount" : {
3709
+ "nodetype" : "member",
3710
+ "module" : "CAPWAP-BASE-MIB"
3711
+ },
3712
+ "capwapBaseWtpEventsStatsLinkFailureCount" : {
3713
+ "nodetype" : "member",
3714
+ "module" : "CAPWAP-BASE-MIB"
3715
+ },
3716
+ "capwapBaseWtpEventsStatsSwFailureCount" : {
3717
+ "nodetype" : "member",
3718
+ "module" : "CAPWAP-BASE-MIB"
3719
+ },
3720
+ "capwapBaseWtpEventsStatsHwFailureCount" : {
3721
+ "nodetype" : "member",
3722
+ "module" : "CAPWAP-BASE-MIB"
3723
+ },
3724
+ "capwapBaseWtpEventsStatsOtherFailureCount" : {
3725
+ "nodetype" : "member",
3726
+ "module" : "CAPWAP-BASE-MIB"
3727
+ },
3728
+ "capwapBaseWtpEventsStatsUnknownFailureCount" : {
3729
+ "nodetype" : "member",
3730
+ "module" : "CAPWAP-BASE-MIB"
3731
+ },
3732
+ "capwapBaseWtpEventsStatsLastFailureType" : {
3733
+ "nodetype" : "member",
3734
+ "module" : "CAPWAP-BASE-MIB"
3735
+ },
3736
+ }, # members
3737
+ "description" :
3738
+ """A collection of objects that is used for collecting
3739
+ WTP reboot count, link failure count, hardware failure
3740
+ count, and so on.""",
3741
+ }, # group
3742
+ "capwapBaseRadioEventsStatsGroup" : {
3743
+ "nodetype" : "group",
3744
+ "moduleName" : "CAPWAP-BASE-MIB",
3745
+ "oid" : "1.3.6.1.2.1.196.2.2.13",
3746
+ "status" : "current",
3747
+ "members" : {
3748
+ "capwapBaseRadioEventsStatsResetCount" : {
3749
+ "nodetype" : "member",
3750
+ "module" : "CAPWAP-BASE-MIB"
3751
+ },
3752
+ "capwapBaseRadioEventsStatsSwFailureCount" : {
3753
+ "nodetype" : "member",
3754
+ "module" : "CAPWAP-BASE-MIB"
3755
+ },
3756
+ "capwapBaseRadioEventsStatsHwFailureCount" : {
3757
+ "nodetype" : "member",
3758
+ "module" : "CAPWAP-BASE-MIB"
3759
+ },
3760
+ "capwapBaseRadioEventsStatsOtherFailureCount" : {
3761
+ "nodetype" : "member",
3762
+ "module" : "CAPWAP-BASE-MIB"
3763
+ },
3764
+ "capwapBaseRadioEventsStatsUnknownFailureCount" : {
3765
+ "nodetype" : "member",
3766
+ "module" : "CAPWAP-BASE-MIB"
3767
+ },
3768
+ "capwapBaseRadioEventsStatsConfigUpdateCount" : {
3769
+ "nodetype" : "member",
3770
+ "module" : "CAPWAP-BASE-MIB"
3771
+ },
3772
+ "capwapBaseRadioEventsStatsChannelChangeCount" : {
3773
+ "nodetype" : "member",
3774
+ "module" : "CAPWAP-BASE-MIB"
3775
+ },
3776
+ "capwapBaseRadioEventsStatsBandChangeCount" : {
3777
+ "nodetype" : "member",
3778
+ "module" : "CAPWAP-BASE-MIB"
3779
+ },
3780
+ "capwapBaseRadioEventsStatsCurrNoiseFloor" : {
3781
+ "nodetype" : "member",
3782
+ "module" : "CAPWAP-BASE-MIB"
3783
+ },
3784
+ "capwapBaseRadioEventsStatsDecryptErrorCount" : {
3785
+ "nodetype" : "member",
3786
+ "module" : "CAPWAP-BASE-MIB"
3787
+ },
3788
+ "capwapBaseRadioEventsStatsLastFailureType" : {
3789
+ "nodetype" : "member",
3790
+ "module" : "CAPWAP-BASE-MIB"
3791
+ },
3792
+ }, # members
3793
+ "description" :
3794
+ """A collection of objects that is used for collecting
3795
+ radio reset count, channel change count, hardware failure
3796
+ count, and so on""",
3797
+ }, # group
3798
+ "capwapBaseParametersGroup" : {
3799
+ "nodetype" : "group",
3800
+ "moduleName" : "CAPWAP-BASE-MIB",
3801
+ "oid" : "1.3.6.1.2.1.196.2.2.14",
3802
+ "status" : "current",
3803
+ "members" : {
3804
+ "capwapBaseAcMaxRetransmit" : {
3805
+ "nodetype" : "member",
3806
+ "module" : "CAPWAP-BASE-MIB"
3807
+ },
3808
+ "capwapBaseAcChangeStatePendingTimer" : {
3809
+ "nodetype" : "member",
3810
+ "module" : "CAPWAP-BASE-MIB"
3811
+ },
3812
+ "capwapBaseAcDataCheckTimer" : {
3813
+ "nodetype" : "member",
3814
+ "module" : "CAPWAP-BASE-MIB"
3815
+ },
3816
+ "capwapBaseAcDTLSSessionDeleteTimer" : {
3817
+ "nodetype" : "member",
3818
+ "module" : "CAPWAP-BASE-MIB"
3819
+ },
3820
+ "capwapBaseAcEchoInterval" : {
3821
+ "nodetype" : "member",
3822
+ "module" : "CAPWAP-BASE-MIB"
3823
+ },
3824
+ "capwapBaseAcRetransmitInterval" : {
3825
+ "nodetype" : "member",
3826
+ "module" : "CAPWAP-BASE-MIB"
3827
+ },
3828
+ "capwapBaseAcSilentInterval" : {
3829
+ "nodetype" : "member",
3830
+ "module" : "CAPWAP-BASE-MIB"
3831
+ },
3832
+ "capwapBaseAcWaitDTLSTimer" : {
3833
+ "nodetype" : "member",
3834
+ "module" : "CAPWAP-BASE-MIB"
3835
+ },
3836
+ "capwapBaseAcWaitJoinTimer" : {
3837
+ "nodetype" : "member",
3838
+ "module" : "CAPWAP-BASE-MIB"
3839
+ },
3840
+ "capwapBaseAcEcnSupport" : {
3841
+ "nodetype" : "member",
3842
+ "module" : "CAPWAP-BASE-MIB"
3843
+ },
3844
+ }, # members
3845
+ "description" :
3846
+ """Objects used for the CAPWAP protocol's parameters.""",
3847
+ }, # group
3848
+ "capwapBaseStatsGroup" : {
3849
+ "nodetype" : "group",
3850
+ "moduleName" : "CAPWAP-BASE-MIB",
3851
+ "oid" : "1.3.6.1.2.1.196.2.2.15",
3852
+ "status" : "current",
3853
+ "members" : {
3854
+ "capwapBaseFailedDTLSAuthFailureCount" : {
3855
+ "nodetype" : "member",
3856
+ "module" : "CAPWAP-BASE-MIB"
3857
+ },
3858
+ "capwapBaseFailedDTLSSessionCount" : {
3859
+ "nodetype" : "member",
3860
+ "module" : "CAPWAP-BASE-MIB"
3861
+ },
3862
+ }, # members
3863
+ "description" :
3864
+ """Objects used for collecting the CAPWAP protocol's statistics.""",
3865
+ }, # group
3866
+ "capwapBaseNotificationsGroup" : {
3867
+ "nodetype" : "group",
3868
+ "moduleName" : "CAPWAP-BASE-MIB",
3869
+ "oid" : "1.3.6.1.2.1.196.2.2.16",
3870
+ "status" : "current",
3871
+ "members" : {
3872
+ "capwapBaseChannelUp" : {
3873
+ "nodetype" : "member",
3874
+ "module" : "CAPWAP-BASE-MIB"
3875
+ },
3876
+ "capwapBaseChannelDown" : {
3877
+ "nodetype" : "member",
3878
+ "module" : "CAPWAP-BASE-MIB"
3879
+ },
3880
+ "capwapBaseDecryptErrorReport" : {
3881
+ "nodetype" : "member",
3882
+ "module" : "CAPWAP-BASE-MIB"
3883
+ },
3884
+ "capwapBaseJoinFailure" : {
3885
+ "nodetype" : "member",
3886
+ "module" : "CAPWAP-BASE-MIB"
3887
+ },
3888
+ "capwapBaseImageUpgradeFailure" : {
3889
+ "nodetype" : "member",
3890
+ "module" : "CAPWAP-BASE-MIB"
3891
+ },
3892
+ "capwapBaseConfigMsgError" : {
3893
+ "nodetype" : "member",
3894
+ "module" : "CAPWAP-BASE-MIB"
3895
+ },
3896
+ "capwapBaseRadioOperableStatus" : {
3897
+ "nodetype" : "member",
3898
+ "module" : "CAPWAP-BASE-MIB"
3899
+ },
3900
+ "capwapBaseAuthenFailure" : {
3901
+ "nodetype" : "member",
3902
+ "module" : "CAPWAP-BASE-MIB"
3903
+ },
3904
+ }, # members
3905
+ "description" :
3906
+ """A collection of notifications in this MIB module.""",
3907
+ }, # group
3908
+ "capwapBaseNotifyVarsGroup" : {
3909
+ "nodetype" : "group",
3910
+ "moduleName" : "CAPWAP-BASE-MIB",
3911
+ "oid" : "1.3.6.1.2.1.196.2.2.17",
3912
+ "status" : "current",
3913
+ "members" : {
3914
+ "capwapBaseNtfWtpId" : {
3915
+ "nodetype" : "member",
3916
+ "module" : "CAPWAP-BASE-MIB"
3917
+ },
3918
+ "capwapBaseNtfRadioId" : {
3919
+ "nodetype" : "member",
3920
+ "module" : "CAPWAP-BASE-MIB"
3921
+ },
3922
+ "capwapBaseNtfChannelType" : {
3923
+ "nodetype" : "member",
3924
+ "module" : "CAPWAP-BASE-MIB"
3925
+ },
3926
+ "capwapBaseNtfAuthenMethod" : {
3927
+ "nodetype" : "member",
3928
+ "module" : "CAPWAP-BASE-MIB"
3929
+ },
3930
+ "capwapBaseNtfChannelDownReason" : {
3931
+ "nodetype" : "member",
3932
+ "module" : "CAPWAP-BASE-MIB"
3933
+ },
3934
+ "capwapBaseNtfStationIdList" : {
3935
+ "nodetype" : "member",
3936
+ "module" : "CAPWAP-BASE-MIB"
3937
+ },
3938
+ "capwapBaseNtfAuthenFailureReason" : {
3939
+ "nodetype" : "member",
3940
+ "module" : "CAPWAP-BASE-MIB"
3941
+ },
3942
+ "capwapBaseNtfRadioOperStatusFlag" : {
3943
+ "nodetype" : "member",
3944
+ "module" : "CAPWAP-BASE-MIB"
3945
+ },
3946
+ "capwapBaseNtfRadioStatusCause" : {
3947
+ "nodetype" : "member",
3948
+ "module" : "CAPWAP-BASE-MIB"
3949
+ },
3950
+ "capwapBaseNtfJoinFailureReason" : {
3951
+ "nodetype" : "member",
3952
+ "module" : "CAPWAP-BASE-MIB"
3953
+ },
3954
+ "capwapBaseNtfImageFailureReason" : {
3955
+ "nodetype" : "member",
3956
+ "module" : "CAPWAP-BASE-MIB"
3957
+ },
3958
+ "capwapBaseNtfConfigMsgErrorType" : {
3959
+ "nodetype" : "member",
3960
+ "module" : "CAPWAP-BASE-MIB"
3961
+ },
3962
+ "capwapBaseNtfMsgErrorElements" : {
3963
+ "nodetype" : "member",
3964
+ "module" : "CAPWAP-BASE-MIB"
3965
+ },
3966
+ }, # members
3967
+ "description" :
3968
+ """Objects used for notifications.""",
3969
+ }, # group
3970
+ "capwapBaseNotifyControlGroup" : {
3971
+ "nodetype" : "group",
3972
+ "moduleName" : "CAPWAP-BASE-MIB",
3973
+ "oid" : "1.3.6.1.2.1.196.2.2.18",
3974
+ "status" : "current",
3975
+ "members" : {
3976
+ "capwapBaseChannelUpDownNotifyEnable" : {
3977
+ "nodetype" : "member",
3978
+ "module" : "CAPWAP-BASE-MIB"
3979
+ },
3980
+ "capwapBaseDecryptErrorNotifyEnable" : {
3981
+ "nodetype" : "member",
3982
+ "module" : "CAPWAP-BASE-MIB"
3983
+ },
3984
+ "capwapBaseJoinFailureNotifyEnable" : {
3985
+ "nodetype" : "member",
3986
+ "module" : "CAPWAP-BASE-MIB"
3987
+ },
3988
+ "capwapBaseImageUpgradeFailureNotifyEnable" : {
3989
+ "nodetype" : "member",
3990
+ "module" : "CAPWAP-BASE-MIB"
3991
+ },
3992
+ "capwapBaseConfigMsgErrorNotifyEnable" : {
3993
+ "nodetype" : "member",
3994
+ "module" : "CAPWAP-BASE-MIB"
3995
+ },
3996
+ "capwapBaseRadioOperableStatusNotifyEnable" : {
3997
+ "nodetype" : "member",
3998
+ "module" : "CAPWAP-BASE-MIB"
3999
+ },
4000
+ "capwapBaseAuthenFailureNotifyEnable" : {
4001
+ "nodetype" : "member",
4002
+ "module" : "CAPWAP-BASE-MIB"
4003
+ },
4004
+ }, # members
4005
+ "description" :
4006
+ """Objects used to enable or disable notifications.""",
4007
+ }, # group
4008
+ }, # groups
4009
+
4010
+ "compliances" : {
4011
+ "capwapBaseCompliance" : {
4012
+ "nodetype" : "compliance",
4013
+ "moduleName" : "CAPWAP-BASE-MIB",
4014
+ "oid" : "1.3.6.1.2.1.196.2.1.1",
4015
+ "status" : "current",
4016
+ "description" :
4017
+ """Describes the requirements for conformance to the
4018
+ CAPWAP-BASE-MIB module.""",
4019
+ "requires" : {
4020
+ "ifGeneralInformationGroup" : {
4021
+ "nodetype" : "mandatory",
4022
+ "module" : "IF-MIB"
4023
+ },
4024
+ "capwapBaseAcNodeGroup" : {
4025
+ "nodetype" : "mandatory",
4026
+ "module" : "CAPWAP-BASE-MIB"
4027
+ },
4028
+ "capwapBaseWtpProfileGroup" : {
4029
+ "nodetype" : "mandatory",
4030
+ "module" : "CAPWAP-BASE-MIB"
4031
+ },
4032
+ "capwapBaseWtpStateGroup" : {
4033
+ "nodetype" : "mandatory",
4034
+ "module" : "CAPWAP-BASE-MIB"
4035
+ },
4036
+ "capwapBaseWtpGroup" : {
4037
+ "nodetype" : "mandatory",
4038
+ "module" : "CAPWAP-BASE-MIB"
4039
+ },
4040
+ "capwapBaseRadioGroup" : {
4041
+ "nodetype" : "mandatory",
4042
+ "module" : "CAPWAP-BASE-MIB"
4043
+ },
4044
+ "capwapBaseStationGroup" : {
4045
+ "nodetype" : "mandatory",
4046
+ "module" : "CAPWAP-BASE-MIB"
4047
+ },
4048
+ "capwapBaseAcNodeGroup2" : {
4049
+ "nodetype" : "optional",
4050
+ "module" : "CAPWAP-BASE-MIB",
4051
+ "description" :
4052
+ """The capwapBaseAcNodeGroup2 group is optional.""",
4053
+ },
4054
+ "capwapBaseAcNameListGroup" : {
4055
+ "nodetype" : "optional",
4056
+ "module" : "CAPWAP-BASE-MIB",
4057
+ "description" :
4058
+ """The capwapBaseAcNameListGroup group is optional.""",
4059
+ },
4060
+ "capwapBaseMacAclsGroup" : {
4061
+ "nodetype" : "optional",
4062
+ "module" : "CAPWAP-BASE-MIB",
4063
+ "description" :
4064
+ """The capwapBaseMacAclsGroup group is optional.""",
4065
+ },
4066
+ "capwapBaseWtpProfileGroup2" : {
4067
+ "nodetype" : "optional",
4068
+ "module" : "CAPWAP-BASE-MIB",
4069
+ "description" :
4070
+ """The capwapBaseWtpProfileGroup2 group is optional.""",
4071
+ },
4072
+ "capwapBaseWtpGroup2" : {
4073
+ "nodetype" : "optional",
4074
+ "module" : "CAPWAP-BASE-MIB",
4075
+ "description" :
4076
+ """The capwapBaseWtpGroup2 group is optional.""",
4077
+ },
4078
+ "capwapBaseWtpEventsStatsGroup" : {
4079
+ "nodetype" : "optional",
4080
+ "module" : "CAPWAP-BASE-MIB",
4081
+ "description" :
4082
+ """The capwapBaseWtpEventsStatsGroup group is optional.""",
4083
+ },
4084
+ "capwapBaseRadioEventsStatsGroup" : {
4085
+ "nodetype" : "optional",
4086
+ "module" : "CAPWAP-BASE-MIB",
4087
+ "description" :
4088
+ """The capwapBaseRadioEventsStatsGroup group is optional.""",
4089
+ },
4090
+ "capwapBaseParametersGroup" : {
4091
+ "nodetype" : "optional",
4092
+ "module" : "CAPWAP-BASE-MIB",
4093
+ "description" :
4094
+ """The capwapBaseParametersGroup group is optional.""",
4095
+ },
4096
+ "capwapBaseStatsGroup" : {
4097
+ "nodetype" : "optional",
4098
+ "module" : "CAPWAP-BASE-MIB",
4099
+ "description" :
4100
+ """The capwapBaseStatsGroup group is optional.""",
4101
+ },
4102
+ "capwapBaseNotificationsGroup" : {
4103
+ "nodetype" : "optional",
4104
+ "module" : "CAPWAP-BASE-MIB",
4105
+ "description" :
4106
+ """The capwapBaseNotificationsGroup group is optional.""",
4107
+ },
4108
+ "capwapBaseNotifyVarsGroup" : {
4109
+ "nodetype" : "optional",
4110
+ "module" : "CAPWAP-BASE-MIB",
4111
+ "description" :
4112
+ """The capwapBaseNotifyVarsGroup group is optional.
4113
+ If capwapBaseNotificationsGroup is supported,
4114
+ this group must be implemented.""",
4115
+ },
4116
+ "capwapBaseNotifyControlGroup" : {
4117
+ "nodetype" : "optional",
4118
+ "module" : "CAPWAP-BASE-MIB",
4119
+ "description" :
4120
+ """The capwapBaseNotifyControlGroup group is optional.
4121
+ If capwapBaseNotificationsGroup is supported,
4122
+ this group must be implemented.""",
4123
+ },
4124
+ }, # requires
4125
+ }, # compliance
4126
+ }, # compliances
4127
+
4128
+ }