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,4527 @@
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 SLAPM-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/SLAPM-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "SLAPM-MIB",
11
+
12
+ "SLAPM-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """International Business Machines Corp.""",
17
+ "contact" :
18
+ """Kenneth White
19
+
20
+ International Business Machines Corporation
21
+ Network Computing Software Division
22
+ Research Triangle Park, NC, USA
23
+
24
+ E-mail: wkenneth@us.ibm.com""",
25
+ "description" :
26
+ """The Service Level Agreement Performance Monitoring MIB
27
+ (SLAPM-MIB) provides data collection and monitoring
28
+ capabilities for Service Level Agreements (SLAs)
29
+ policy definitions.""",
30
+ "revisions" : (
31
+ {
32
+ "date" : "2000-01-24 00:00",
33
+ "description" :
34
+ """This version published as RFC 2758.""",
35
+ },
36
+ ),
37
+ "identity node" : "slapmMIB",
38
+ },
39
+
40
+ "imports" : (
41
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
42
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
43
+ {"module" : "SNMPv2-SMI", "name" : "experimental"},
44
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
45
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
46
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
47
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
48
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
49
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
50
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
51
+ {"module" : "SNMPv2-TC", "name" : "TestAndIncr"},
52
+ {"module" : "SNMPv2-TC", "name" : "DateAndTime"},
53
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
54
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
55
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
56
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
57
+ ),
58
+
59
+ "typedefs" : {
60
+ "SlapmNameType" : {
61
+ "basetype" : "OctetString",
62
+ "status" : "deprecated",
63
+ "parent module" : {
64
+ "name" : "SNMP-FRAMEWORK-MIB",
65
+ "type" : "SnmpAdminString",
66
+ },
67
+ "ranges" : [
68
+ {
69
+ "min" : "0",
70
+ "max" : "32"
71
+ },
72
+ ],
73
+ "range" : {
74
+ "min" : "0",
75
+ "max" : "32"
76
+ },
77
+ "description" :
78
+ """The textual convention for naming entities
79
+ within this MIB. The actual contents of an object
80
+ defined using this textual convention should consist
81
+ of the distinguished name portion of an name.
82
+ This is usually the right-most
83
+ portion of the name. This convention is necessary,
84
+ since names within this MIB can be used as index
85
+ items and an instance identifier is limited to 128
86
+ subidentifiers.
87
+
88
+ This textual convention has been deprecated. All of the
89
+ tables defined within this MIB that use this textual
90
+ convention have been deprecated as well since the method
91
+ of using a portion of the name (either of a policy
92
+ definition or of a traffic profile) has been replaced
93
+ by using an Unsigned32 index. The new slapmPolicyNameTable
94
+ would then map the Unsigned32 index to a real name.""",
95
+ },
96
+ "SlapmStatus" : {
97
+ "basetype" : "Bits",
98
+ "status" : "current",
99
+ "slaMinInRateNotAchieved" : {
100
+ "nodetype" : "namednumber",
101
+ "number" : "0"
102
+ },
103
+ "slaMaxInRateExceeded" : {
104
+ "nodetype" : "namednumber",
105
+ "number" : "1"
106
+ },
107
+ "slaMaxDelayExceeded" : {
108
+ "nodetype" : "namednumber",
109
+ "number" : "2"
110
+ },
111
+ "slaMinOutRateNotAchieved" : {
112
+ "nodetype" : "namednumber",
113
+ "number" : "3"
114
+ },
115
+ "slaMaxOutRateExceeded" : {
116
+ "nodetype" : "namednumber",
117
+ "number" : "4"
118
+ },
119
+ "monitorMinInRateNotAchieved" : {
120
+ "nodetype" : "namednumber",
121
+ "number" : "5"
122
+ },
123
+ "monitorMaxInRateExceeded" : {
124
+ "nodetype" : "namednumber",
125
+ "number" : "6"
126
+ },
127
+ "monitorMaxDelayExceeded" : {
128
+ "nodetype" : "namednumber",
129
+ "number" : "7"
130
+ },
131
+ "monitorMinOutRateNotAchieved" : {
132
+ "nodetype" : "namednumber",
133
+ "number" : "8"
134
+ },
135
+ "monitorMaxOutRateExceeded" : {
136
+ "nodetype" : "namednumber",
137
+ "number" : "9"
138
+ },
139
+ "description" :
140
+ """The textual convention for defining the various
141
+ slapmPRMonTable (or old slapmPolicyMonitorTable)
142
+ and the slapmSubcomponentTable states for actual policy
143
+ rule traffic monitoring.""",
144
+ },
145
+ "SlapmPolicyRuleName" : {
146
+ "basetype" : "OctetString",
147
+ "status" : "current",
148
+ "ranges" : [
149
+ {
150
+ "min" : "0",
151
+ "max" : "1024"
152
+ },
153
+ ],
154
+ "range" : {
155
+ "min" : "0",
156
+ "max" : "1024"
157
+ },
158
+ "format" : "1024t",
159
+ "description" :
160
+ """To facilitate internationalization, this TC
161
+ represents information taken from the ISO/IEC IS
162
+ 10646-1 character set, encoded as an octet string
163
+ using the UTF-8 character encoding scheme described
164
+ in RFC 2044. For strings in 7-bit US-ASCII,
165
+ there is no impact since the UTF-8 representation
166
+ is identical to the US-ASCII encoding.""",
167
+ },
168
+ }, # typedefs
169
+
170
+ "nodes" : {
171
+ "slapmMIB" : {
172
+ "nodetype" : "node",
173
+ "moduleName" : "SLAPM-MIB",
174
+ "oid" : "1.3.6.1.3.88",
175
+ "status" : "current",
176
+ }, # node
177
+ "slapmNotifications" : {
178
+ "nodetype" : "node",
179
+ "moduleName" : "SLAPM-MIB",
180
+ "oid" : "1.3.6.1.3.88.0",
181
+ }, # node
182
+ "slapmObjects" : {
183
+ "nodetype" : "node",
184
+ "moduleName" : "SLAPM-MIB",
185
+ "oid" : "1.3.6.1.3.88.1",
186
+ }, # node
187
+ "slapmBaseObjects" : {
188
+ "nodetype" : "node",
189
+ "moduleName" : "SLAPM-MIB",
190
+ "oid" : "1.3.6.1.3.88.1.1",
191
+ }, # node
192
+ "slapmSpinLock" : {
193
+ "nodetype" : "scalar",
194
+ "moduleName" : "SLAPM-MIB",
195
+ "oid" : "1.3.6.1.3.88.1.1.1",
196
+ "status" : "current",
197
+ "syntax" : {
198
+ "type" : { "module" :"SNMPv2-TC", "name" : "TestAndIncr"},
199
+ },
200
+ "access" : "readwrite",
201
+ "description" :
202
+ """An advisory lock used to allow cooperating applications
203
+ to coordinate their use of the contents of this MIB. This
204
+ typically occurs when an application seeks to create an
205
+ new entry or alter an existing entry in
206
+ slapmPRMonTable (or old slapmPolicyMonitorTable). A
207
+ management implementation MAY utilize the slapmSpinLock to
208
+ serialize its changes or additions. This usage is not
209
+ required. However, slapmSpinLock MUST be supported by
210
+ agent implementations.""",
211
+ }, # scalar
212
+ "slapmPolicyCountQueries" : {
213
+ "nodetype" : "scalar",
214
+ "moduleName" : "SLAPM-MIB",
215
+ "oid" : "1.3.6.1.3.88.1.1.2",
216
+ "status" : "current",
217
+ "syntax" : {
218
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
219
+ },
220
+ "access" : "readonly",
221
+ "description" :
222
+ """The total number of times that a policy lookup occurred
223
+ with respect to a policy agent.
224
+ This is the number of times that a reference was made to
225
+ a policy definition at a system and includes the number
226
+ of times that a policy repository was accessed,
227
+ slapmPolicyCountAccesses. The object
228
+ slapmPolicyCountAccesses should be less than
229
+ slapmPolicyCountQueries when policy definitions are
230
+ cached at a system.""",
231
+ }, # scalar
232
+ "slapmPolicyCountAccesses" : {
233
+ "nodetype" : "scalar",
234
+ "moduleName" : "SLAPM-MIB",
235
+ "oid" : "1.3.6.1.3.88.1.1.3",
236
+ "status" : "current",
237
+ "syntax" : {
238
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
239
+ },
240
+ "access" : "readonly",
241
+ "description" :
242
+ """Total number of times that a policy repository was
243
+ accessed with respect to a policy agent.
244
+ The value of this object should be less than
245
+ slapmPolicyCountQueries, since typically policy entries
246
+ are cached to minimize repository accesses.""",
247
+ }, # scalar
248
+ "slapmPolicyCountSuccessAccesses" : {
249
+ "nodetype" : "scalar",
250
+ "moduleName" : "SLAPM-MIB",
251
+ "oid" : "1.3.6.1.3.88.1.1.4",
252
+ "status" : "current",
253
+ "syntax" : {
254
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
255
+ },
256
+ "access" : "readonly",
257
+ "description" :
258
+ """Total number of successful policy repository accesses
259
+ with respect to a policy agent.""",
260
+ }, # scalar
261
+ "slapmPolicyCountNotFounds" : {
262
+ "nodetype" : "scalar",
263
+ "moduleName" : "SLAPM-MIB",
264
+ "oid" : "1.3.6.1.3.88.1.1.5",
265
+ "status" : "current",
266
+ "syntax" : {
267
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
268
+ },
269
+ "access" : "readonly",
270
+ "description" :
271
+ """Total number of policy repository accesses,
272
+ with respect to a policy agent, that
273
+ resulted in an entry not being located.""",
274
+ }, # scalar
275
+ "slapmPolicyPurgeTime" : {
276
+ "nodetype" : "scalar",
277
+ "moduleName" : "SLAPM-MIB",
278
+ "oid" : "1.3.6.1.3.88.1.1.6",
279
+ "status" : "current",
280
+ "syntax" : {
281
+ "type" : {
282
+ "basetype" : "Integer32",
283
+ "ranges" : [
284
+ {
285
+ "min" : "0",
286
+ "max" : "3600"
287
+ },
288
+ ],
289
+ "range" : {
290
+ "min" : "0",
291
+ "max" : "3600"
292
+ },
293
+ },
294
+ },
295
+ "access" : "readwrite",
296
+ "default" : "900",
297
+ "units" : "seconds",
298
+ "description" :
299
+ """The purpose of this object is to define the amount
300
+ of time (in seconds) to wait before removing an
301
+ slapmPolicyRuleStatsEntry (or old slapmPolicyStatsEntry)
302
+ when a system detects that the associated policy
303
+ definition has been deleted. This gives any polling
304
+ management applications time to complete their last poll
305
+ before an entry is removed. An slapmPolicyRuleStatsEntry
306
+ (or old slapmPolicyStatsEntry) enters the
307
+ deleteNeeded(3) state via slapmPolicyRuleStatsOperStatus
308
+ (or old slapmPolicyStatsOperStatus) when a system first
309
+ detects that the entry needs to be removed.
310
+
311
+ Once slapmPolicyPurgeTime has expired for an entry in
312
+ deleteNeeded(3) state it is removed a long with any
313
+ dependent slapmPRMonTable (or slapmPolicyMonitorTable)
314
+ entries.
315
+
316
+ A value of 0 for this option disables this function and
317
+ results in the automatic purging of slapmPRMonTable
318
+ (or slapmPolicyTable) entries upon transition into
319
+ deleteNeeded(3) state.
320
+
321
+ A slapmPolicyRuleDeleted (or slapmPolicyProfileDeleted)
322
+ notification is sent when an slapmPolicyRuleStatsEntry (or
323
+ slapmPolicyStatsEntry) is removed. Dependent
324
+ slapmPRMonTable (or slapmPolicyMonitorTable)
325
+ deletion results in a slapmPolicyRuleMonDeleted (or
326
+ slapmPolicyMonitorDeleted) notification being sent.
327
+ These notifications are suppressed if the value of
328
+ slapmPolicyTrapEnable is disabled(2).""",
329
+ }, # scalar
330
+ "slapmPolicyTrapEnable" : {
331
+ "nodetype" : "scalar",
332
+ "moduleName" : "SLAPM-MIB",
333
+ "oid" : "1.3.6.1.3.88.1.1.7",
334
+ "status" : "current",
335
+ "syntax" : {
336
+ "type" : {
337
+ "basetype" : "Enumeration",
338
+ "enabled" : {
339
+ "nodetype" : "namednumber",
340
+ "number" : "1"
341
+ },
342
+ "disabled" : {
343
+ "nodetype" : "namednumber",
344
+ "number" : "2"
345
+ },
346
+ },
347
+ },
348
+ "access" : "readwrite",
349
+ "default" : "disabled",
350
+ "description" :
351
+ """Indicates whether slapmPolicyRuleDeleted and
352
+ slapmPolicyRuleMonDeleted (or slapmPolicyProfileDeleted
353
+ and slapmPolicyMonitorDeleted) notifications should be
354
+ generated by this system.""",
355
+ }, # scalar
356
+ "slapmPolicyTrapFilter" : {
357
+ "nodetype" : "scalar",
358
+ "moduleName" : "SLAPM-MIB",
359
+ "oid" : "1.3.6.1.3.88.1.1.8",
360
+ "status" : "current",
361
+ "syntax" : {
362
+ "type" : {
363
+ "basetype" : "Integer32",
364
+ "ranges" : [
365
+ {
366
+ "min" : "0",
367
+ "max" : "64"
368
+ },
369
+ ],
370
+ "range" : {
371
+ "min" : "0",
372
+ "max" : "64"
373
+ },
374
+ },
375
+ },
376
+ "access" : "readwrite",
377
+ "default" : "3",
378
+ "units" : "intervals",
379
+ "description" :
380
+ """The purpose of this object is to suppress unnecessary
381
+ slapmSubcMonitorNotOkay (or
382
+ slapmSubcomponentMonitoredEventNotAchieved), for example,
383
+ notifications. Basically, a monitored event has to
384
+ not meet its SLA requirement for the number of
385
+ consecutive intervals indicated by the value of this
386
+ object.""",
387
+ }, # scalar
388
+ "slapmTableObjects" : {
389
+ "nodetype" : "node",
390
+ "moduleName" : "SLAPM-MIB",
391
+ "oid" : "1.3.6.1.3.88.1.2",
392
+ }, # node
393
+ "slapmPolicyStatsTable" : {
394
+ "nodetype" : "table",
395
+ "moduleName" : "SLAPM-MIB",
396
+ "oid" : "1.3.6.1.3.88.1.2.1",
397
+ "status" : "deprecated",
398
+ "description" :
399
+ """Provides statistics on all policies known at a
400
+ system.
401
+
402
+ This table has been deprecated and replaced with
403
+ the slapmPolicyRuleStatsTable. Older implementations of
404
+ this MIB are expected to continue their support of this
405
+ table.""",
406
+ }, # table
407
+ "slapmPolicyStatsEntry" : {
408
+ "nodetype" : "row",
409
+ "moduleName" : "SLAPM-MIB",
410
+ "oid" : "1.3.6.1.3.88.1.2.1.1",
411
+ "status" : "deprecated",
412
+ "linkage" : [
413
+ "slapmPolicyStatsSystemAddress",
414
+ "slapmPolicyStatsPolicyName",
415
+ "slapmPolicyStatsTrafficProfileName",
416
+ ],
417
+ "description" :
418
+ """Defines an entry in the slapmPolicyStatsTable. This table
419
+ defines a set of statistics that is kept on a per system,
420
+ policy and traffic profile basis. A policy can be
421
+ defined to contain multiple traffic profiles that map to
422
+ a single action.
423
+
424
+ Entries in this table are not created or deleted via SNMP
425
+ but reflect the set of policy definitions known at a system.""",
426
+ }, # row
427
+ "slapmPolicyStatsSystemAddress" : {
428
+ "nodetype" : "column",
429
+ "moduleName" : "SLAPM-MIB",
430
+ "oid" : "1.3.6.1.3.88.1.2.1.1.1",
431
+ "status" : "deprecated",
432
+ "syntax" : {
433
+ "type" : {
434
+ "basetype" : "OctetString",
435
+ "ranges" : [
436
+ {
437
+ "min" : "0",
438
+ "max" : "0"
439
+ },
440
+ {
441
+ "min" : "4",
442
+ "max" : "4"
443
+ },
444
+ {
445
+ "min" : "16",
446
+ "max" : "16"
447
+ },
448
+ ],
449
+ "range" : {
450
+ "min" : "0",
451
+ "max" : "16"
452
+ },
453
+ },
454
+ },
455
+ "access" : "noaccess",
456
+ "description" :
457
+ """Address of a system that an Policy definition relates to.
458
+ A zero length octet string must be used to indicate that
459
+ only a single system is being represented.
460
+ Otherwise, the length of the octet string must be
461
+ 4 for an ipv4 address or 16 for an ipv6 address.""",
462
+ }, # column
463
+ "slapmPolicyStatsPolicyName" : {
464
+ "nodetype" : "column",
465
+ "moduleName" : "SLAPM-MIB",
466
+ "oid" : "1.3.6.1.3.88.1.2.1.1.2",
467
+ "status" : "deprecated",
468
+ "syntax" : {
469
+ "type" : { "module" :"SLAPM-MIB", "name" : "SlapmNameType"},
470
+ },
471
+ "access" : "noaccess",
472
+ "description" :
473
+ """Policy name that this entry relates to.""",
474
+ }, # column
475
+ "slapmPolicyStatsTrafficProfileName" : {
476
+ "nodetype" : "column",
477
+ "moduleName" : "SLAPM-MIB",
478
+ "oid" : "1.3.6.1.3.88.1.2.1.1.3",
479
+ "status" : "deprecated",
480
+ "syntax" : {
481
+ "type" : { "module" :"SLAPM-MIB", "name" : "SlapmNameType"},
482
+ },
483
+ "access" : "noaccess",
484
+ "description" :
485
+ """The name of a traffic profile that is associated with
486
+ a policy.""",
487
+ }, # column
488
+ "slapmPolicyStatsOperStatus" : {
489
+ "nodetype" : "column",
490
+ "moduleName" : "SLAPM-MIB",
491
+ "oid" : "1.3.6.1.3.88.1.2.1.1.4",
492
+ "status" : "deprecated",
493
+ "syntax" : {
494
+ "type" : {
495
+ "basetype" : "Enumeration",
496
+ "inactive" : {
497
+ "nodetype" : "namednumber",
498
+ "number" : "1"
499
+ },
500
+ "active" : {
501
+ "nodetype" : "namednumber",
502
+ "number" : "2"
503
+ },
504
+ "deleteNeeded" : {
505
+ "nodetype" : "namednumber",
506
+ "number" : "3"
507
+ },
508
+ },
509
+ },
510
+ "access" : "readonly",
511
+ "description" :
512
+ """The state of a policy entry:
513
+
514
+ inactive(1) - An policy entry was either defined
515
+ by local system definition or
516
+ discovered via a directory search
517
+ but has not been activated (not
518
+ currently being used).
519
+ active(2) - Policy entry is being used to affect
520
+ traffic flows.
521
+ deleteNeeded(3) - Either though local implementation
522
+ dependent methods or by discovering
523
+ that the directory entry corresponding
524
+ to this table entry no longer
525
+ exists and slapmPolicyPurgeTime needs
526
+ to expire before attempting to remove
527
+ the corresponding slapmPolicyStatsEntry
528
+ and any dependent slapmPolicyMonitor
529
+ table entries.
530
+ Note: a policy traffic profile in a state other than
531
+ active(1) is not being used to affect traffic flows.""",
532
+ }, # column
533
+ "slapmPolicyStatsActiveConns" : {
534
+ "nodetype" : "column",
535
+ "moduleName" : "SLAPM-MIB",
536
+ "oid" : "1.3.6.1.3.88.1.2.1.1.5",
537
+ "status" : "deprecated",
538
+ "syntax" : {
539
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
540
+ },
541
+ "access" : "readonly",
542
+ "description" :
543
+ """The number of active TCP connections that are
544
+ affected by the corresponding policy entry.""",
545
+ }, # column
546
+ "slapmPolicyStatsTotalConns" : {
547
+ "nodetype" : "column",
548
+ "moduleName" : "SLAPM-MIB",
549
+ "oid" : "1.3.6.1.3.88.1.2.1.1.6",
550
+ "status" : "deprecated",
551
+ "syntax" : {
552
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
553
+ },
554
+ "access" : "readonly",
555
+ "description" :
556
+ """The number of total TCP connections that are
557
+ affected by the corresponding policy entry.""",
558
+ }, # column
559
+ "slapmPolicyStatsFirstActivated" : {
560
+ "nodetype" : "column",
561
+ "moduleName" : "SLAPM-MIB",
562
+ "oid" : "1.3.6.1.3.88.1.2.1.1.7",
563
+ "status" : "deprecated",
564
+ "syntax" : {
565
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
566
+ },
567
+ "access" : "readonly",
568
+ "default" : "0x0000000000000000",
569
+ "description" :
570
+ """The timestamp for when the corresponding policy entry
571
+ is activated. The value of this object serves as
572
+ the discontinuity event indicator when polling entries
573
+ in this table. The value of this object is updated on
574
+ transition of slapmPolicyStatsOperStatus into the active(2)
575
+ state.""",
576
+ }, # column
577
+ "slapmPolicyStatsLastMapping" : {
578
+ "nodetype" : "column",
579
+ "moduleName" : "SLAPM-MIB",
580
+ "oid" : "1.3.6.1.3.88.1.2.1.1.8",
581
+ "status" : "deprecated",
582
+ "syntax" : {
583
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
584
+ },
585
+ "access" : "readonly",
586
+ "default" : "0x0000000000000000",
587
+ "description" :
588
+ """The timestamp for when the last time
589
+ that the associated policy entry was used.""",
590
+ }, # column
591
+ "slapmPolicyStatsInOctets" : {
592
+ "nodetype" : "column",
593
+ "moduleName" : "SLAPM-MIB",
594
+ "oid" : "1.3.6.1.3.88.1.2.1.1.9",
595
+ "status" : "deprecated",
596
+ "syntax" : {
597
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
598
+ },
599
+ "access" : "readonly",
600
+ "description" :
601
+ """The number of octets that was received by IP for an
602
+ entity that map to this entry.""",
603
+ }, # column
604
+ "slapmPolicyStatsOutOctets" : {
605
+ "nodetype" : "column",
606
+ "moduleName" : "SLAPM-MIB",
607
+ "oid" : "1.3.6.1.3.88.1.2.1.1.10",
608
+ "status" : "deprecated",
609
+ "syntax" : {
610
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
611
+ },
612
+ "access" : "readonly",
613
+ "description" :
614
+ """The number of octets that was transmitted by IP for an
615
+ entity that map to this entry.""",
616
+ }, # column
617
+ "slapmPolicyStatsConnectionLimit" : {
618
+ "nodetype" : "column",
619
+ "moduleName" : "SLAPM-MIB",
620
+ "oid" : "1.3.6.1.3.88.1.2.1.1.11",
621
+ "status" : "deprecated",
622
+ "syntax" : {
623
+ "type" : { "module" :"", "name" : "Integer32"},
624
+ },
625
+ "access" : "readonly",
626
+ "description" :
627
+ """The limit for the number of active TCP connections that
628
+ are allowed for this policy definition. A value of zero
629
+ for this object implies that a connection limit has not
630
+ been specified.""",
631
+ }, # column
632
+ "slapmPolicyStatsCountAccepts" : {
633
+ "nodetype" : "column",
634
+ "moduleName" : "SLAPM-MIB",
635
+ "oid" : "1.3.6.1.3.88.1.2.1.1.12",
636
+ "status" : "deprecated",
637
+ "syntax" : {
638
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
639
+ },
640
+ "access" : "readonly",
641
+ "description" :
642
+ """This counter is incremented when a policy action's
643
+ Permission value is set to Accept and a session
644
+ (TCP connection) is accepted.""",
645
+ }, # column
646
+ "slapmPolicyStatsCountDenies" : {
647
+ "nodetype" : "column",
648
+ "moduleName" : "SLAPM-MIB",
649
+ "oid" : "1.3.6.1.3.88.1.2.1.1.13",
650
+ "status" : "deprecated",
651
+ "syntax" : {
652
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
653
+ },
654
+ "access" : "readonly",
655
+ "description" :
656
+ """This counter is incremented when a policy action's
657
+ Permission value is set to Deny and a session is denied,
658
+ or when a session (TCP connection) is rejected due to a
659
+ policy's connection limit (slapmPolicyStatsConnectLimit)
660
+ being reached.""",
661
+ }, # column
662
+ "slapmPolicyStatsInDiscards" : {
663
+ "nodetype" : "column",
664
+ "moduleName" : "SLAPM-MIB",
665
+ "oid" : "1.3.6.1.3.88.1.2.1.1.14",
666
+ "status" : "deprecated",
667
+ "syntax" : {
668
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
669
+ },
670
+ "access" : "readonly",
671
+ "description" :
672
+ """This counter counts the number of in octets discarded.
673
+ This occurs when an error is detected. Examples of this
674
+ are buffer overflow, checksum error, or bad packet
675
+ format.""",
676
+ }, # column
677
+ "slapmPolicyStatsOutDiscards" : {
678
+ "nodetype" : "column",
679
+ "moduleName" : "SLAPM-MIB",
680
+ "oid" : "1.3.6.1.3.88.1.2.1.1.15",
681
+ "status" : "deprecated",
682
+ "syntax" : {
683
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
684
+ },
685
+ "access" : "readonly",
686
+ "description" :
687
+ """This counter counts the number of out octets discarded.
688
+ Examples of this are buffer overflow, checksum error, or
689
+ bad packet format.""",
690
+ }, # column
691
+ "slapmPolicyStatsInPackets" : {
692
+ "nodetype" : "column",
693
+ "moduleName" : "SLAPM-MIB",
694
+ "oid" : "1.3.6.1.3.88.1.2.1.1.16",
695
+ "status" : "deprecated",
696
+ "syntax" : {
697
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
698
+ },
699
+ "access" : "readonly",
700
+ "description" :
701
+ """This counter counts the number of in packets received
702
+ that relate to this policy entry from IP.""",
703
+ }, # column
704
+ "slapmPolicyStatsOutPackets" : {
705
+ "nodetype" : "column",
706
+ "moduleName" : "SLAPM-MIB",
707
+ "oid" : "1.3.6.1.3.88.1.2.1.1.17",
708
+ "status" : "deprecated",
709
+ "syntax" : {
710
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
711
+ },
712
+ "access" : "readonly",
713
+ "description" :
714
+ """This counter counts the number of out packets sent
715
+ by IP that relate to this policy entry.""",
716
+ }, # column
717
+ "slapmPolicyStatsInProfileOctets" : {
718
+ "nodetype" : "column",
719
+ "moduleName" : "SLAPM-MIB",
720
+ "oid" : "1.3.6.1.3.88.1.2.1.1.18",
721
+ "status" : "deprecated",
722
+ "syntax" : {
723
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
724
+ },
725
+ "access" : "readonly",
726
+ "description" :
727
+ """This counter counts the number of in octets that are
728
+ determined to be within profile.""",
729
+ }, # column
730
+ "slapmPolicyStatsOutProfileOctets" : {
731
+ "nodetype" : "column",
732
+ "moduleName" : "SLAPM-MIB",
733
+ "oid" : "1.3.6.1.3.88.1.2.1.1.19",
734
+ "status" : "deprecated",
735
+ "syntax" : {
736
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
737
+ },
738
+ "access" : "readonly",
739
+ "description" :
740
+ """This counter counts the number of out octets that are
741
+ determined to be within profile.""",
742
+ }, # column
743
+ "slapmPolicyStatsMinRate" : {
744
+ "nodetype" : "column",
745
+ "moduleName" : "SLAPM-MIB",
746
+ "oid" : "1.3.6.1.3.88.1.2.1.1.20",
747
+ "status" : "deprecated",
748
+ "syntax" : {
749
+ "type" : { "module" :"", "name" : "Integer32"},
750
+ },
751
+ "access" : "readonly",
752
+ "units" : "Kilobits per second",
753
+ "description" :
754
+ """The minimum transfer rate defined for this entry.""",
755
+ }, # column
756
+ "slapmPolicyStatsMaxRate" : {
757
+ "nodetype" : "column",
758
+ "moduleName" : "SLAPM-MIB",
759
+ "oid" : "1.3.6.1.3.88.1.2.1.1.21",
760
+ "status" : "deprecated",
761
+ "syntax" : {
762
+ "type" : { "module" :"", "name" : "Integer32"},
763
+ },
764
+ "access" : "readonly",
765
+ "units" : "Kilobits per second",
766
+ "description" :
767
+ """The maximum transfer rate defined for this entry.""",
768
+ }, # column
769
+ "slapmPolicyStatsMaxDelay" : {
770
+ "nodetype" : "column",
771
+ "moduleName" : "SLAPM-MIB",
772
+ "oid" : "1.3.6.1.3.88.1.2.1.1.22",
773
+ "status" : "deprecated",
774
+ "syntax" : {
775
+ "type" : { "module" :"", "name" : "Integer32"},
776
+ },
777
+ "access" : "readonly",
778
+ "units" : "milliseconds",
779
+ "description" :
780
+ """The maximum delay defined for this entry.""",
781
+ }, # column
782
+ "slapmPolicyMonitorTable" : {
783
+ "nodetype" : "table",
784
+ "moduleName" : "SLAPM-MIB",
785
+ "oid" : "1.3.6.1.3.88.1.2.2",
786
+ "status" : "deprecated",
787
+ "description" :
788
+ """Provides a method of monitoring policies and their
789
+ effect at a system.
790
+
791
+ This table has been deprecated and replaced with
792
+ the slapmPRMonTable. Older implementations of
793
+ this MIB are expected to continue their support
794
+ of this table.""",
795
+ }, # table
796
+ "slapmPolicyMonitorEntry" : {
797
+ "nodetype" : "row",
798
+ "moduleName" : "SLAPM-MIB",
799
+ "oid" : "1.3.6.1.3.88.1.2.2.1",
800
+ "create" : "true",
801
+ "status" : "deprecated",
802
+ "linkage" : [
803
+ "slapmPolicyMonitorOwnerIndex",
804
+ "slapmPolicyMonitorSystemAddress",
805
+ "slapmPolicyMonitorPolicyName",
806
+ "slapmPolicyMonitorTrafficProfileName",
807
+ ],
808
+ "description" :
809
+ """Defines an entry in the slapmPolicyMonitorTable. This
810
+ table defines which policies should be monitored on a
811
+ per policy traffic profile basis.""",
812
+ }, # row
813
+ "slapmPolicyMonitorOwnerIndex" : {
814
+ "nodetype" : "column",
815
+ "moduleName" : "SLAPM-MIB",
816
+ "oid" : "1.3.6.1.3.88.1.2.2.1.1",
817
+ "status" : "deprecated",
818
+ "syntax" : {
819
+ "type" : {
820
+ "basetype" : "OctetString",
821
+ "parent module" : {
822
+ "name" : "SNMP-FRAMEWORK-MIB",
823
+ "type" : "SnmpAdminString",
824
+ },
825
+ "ranges" : [
826
+ {
827
+ "min" : "0",
828
+ "max" : "16"
829
+ },
830
+ ],
831
+ "range" : {
832
+ "min" : "0",
833
+ "max" : "16"
834
+ },
835
+ },
836
+ },
837
+ "access" : "noaccess",
838
+ "description" :
839
+ """To facilitate the provisioning of access control by a
840
+ security administrator using the View-Based Access
841
+ Control Model (RFC 2575, VACM) for tables in which
842
+ multiple users may need to independently create or modify
843
+ entries, the initial index is used as an 'owner index'.
844
+ Such an initial index has a syntax of SnmpAdminString,
845
+ and can thus be trivially mapped to a securityName or
846
+ groupName as defined in VACM, in accordance with a
847
+ security policy.
848
+
849
+ All entries in that table belonging to a particular user
850
+ will have the same value for this initial index. For a
851
+ given user's entries in a particular table, the object
852
+ identifiers for the information in these entries will
853
+ have the same subidentifiers (except for the 'column'
854
+ subidentifier) up to the end of the encoded owner index.
855
+ To configure VACM to permit access to this portion of the
856
+ table, one would create vacmViewTreeFamilyTable entries
857
+ with the value of vacmViewTreeFamilySubtree including the
858
+ owner index portion, and vacmViewTreeFamilyMask
859
+ 'wildcarding' the column subidentifier. More elaborate
860
+ configurations are possible.""",
861
+ }, # column
862
+ "slapmPolicyMonitorSystemAddress" : {
863
+ "nodetype" : "column",
864
+ "moduleName" : "SLAPM-MIB",
865
+ "oid" : "1.3.6.1.3.88.1.2.2.1.2",
866
+ "status" : "deprecated",
867
+ "syntax" : {
868
+ "type" : {
869
+ "basetype" : "OctetString",
870
+ "ranges" : [
871
+ {
872
+ "min" : "0",
873
+ "max" : "0"
874
+ },
875
+ {
876
+ "min" : "4",
877
+ "max" : "4"
878
+ },
879
+ {
880
+ "min" : "16",
881
+ "max" : "16"
882
+ },
883
+ ],
884
+ "range" : {
885
+ "min" : "0",
886
+ "max" : "16"
887
+ },
888
+ },
889
+ },
890
+ "access" : "noaccess",
891
+ "description" :
892
+ """Address of a system that an Policy definition relates to.
893
+ A zero length octet string can be used to indicate that
894
+ only a single system is being represented.
895
+ Otherwise, the length of the octet string should be
896
+ 4 for an ipv4 address and 16 for an ipv6 address.""",
897
+ }, # column
898
+ "slapmPolicyMonitorPolicyName" : {
899
+ "nodetype" : "column",
900
+ "moduleName" : "SLAPM-MIB",
901
+ "oid" : "1.3.6.1.3.88.1.2.2.1.3",
902
+ "status" : "deprecated",
903
+ "syntax" : {
904
+ "type" : { "module" :"SLAPM-MIB", "name" : "SlapmNameType"},
905
+ },
906
+ "access" : "noaccess",
907
+ "description" :
908
+ """Policy name that this entry relates to.""",
909
+ }, # column
910
+ "slapmPolicyMonitorTrafficProfileName" : {
911
+ "nodetype" : "column",
912
+ "moduleName" : "SLAPM-MIB",
913
+ "oid" : "1.3.6.1.3.88.1.2.2.1.4",
914
+ "status" : "deprecated",
915
+ "syntax" : {
916
+ "type" : { "module" :"SLAPM-MIB", "name" : "SlapmNameType"},
917
+ },
918
+ "access" : "noaccess",
919
+ "description" :
920
+ """The corresponding Traffic Profile name.""",
921
+ }, # column
922
+ "slapmPolicyMonitorControl" : {
923
+ "nodetype" : "column",
924
+ "moduleName" : "SLAPM-MIB",
925
+ "oid" : "1.3.6.1.3.88.1.2.2.1.5",
926
+ "status" : "deprecated",
927
+ "syntax" : {
928
+ "type" : {
929
+ "basetype" : "Bits",
930
+ "monitorMinRate" : {
931
+ "nodetype" : "namednumber",
932
+ "number" : "0"
933
+ },
934
+ "monitorMaxRate" : {
935
+ "nodetype" : "namednumber",
936
+ "number" : "1"
937
+ },
938
+ "monitorMaxDelay" : {
939
+ "nodetype" : "namednumber",
940
+ "number" : "2"
941
+ },
942
+ "enableAggregateTraps" : {
943
+ "nodetype" : "namednumber",
944
+ "number" : "3"
945
+ },
946
+ "enableSubcomponentTraps" : {
947
+ "nodetype" : "namednumber",
948
+ "number" : "4"
949
+ },
950
+ "monitorSubcomponents" : {
951
+ "nodetype" : "namednumber",
952
+ "number" : "5"
953
+ },
954
+ },
955
+ },
956
+ "access" : "readwrite",
957
+ "default" : "(monitorMinRate, monitorMaxRate, monitorMaxDelay)",
958
+ "description" :
959
+ """The value of this object determines the type and level
960
+ of monitoring that is applied to a policy/profile. The
961
+ value of this object can't be changed once the table
962
+ entry that it is a part of is activated via a
963
+ slapmPolicyMonitorRowStatus transition to active state.
964
+
965
+ monitorMinRate(0) - Monitor minimum transfer rate.
966
+ monitorMaxRate(1) - Monitor maximum transfer rate.
967
+ monitorMaxDelay(2) - Monitor maximum delay.
968
+ enableAggregateTraps(3) - The enableAggregateTraps(3)
969
+ BITS setting enables notification generation
970
+ when monitoring a policy traffic profile as an
971
+ aggregate using the values in the corresponding
972
+ slapmPolicyStatsEntry. By default this function
973
+ is not enabled.
974
+ enableSubcomponentTraps(4) - This BITS setting enables
975
+ notification generation when monitoring all
976
+ subcomponents that are mapped to an corresponding
977
+ slapmPolicyStatsEntry. By default this
978
+ function is not enabled.
979
+ monitorSubcomponents(5) - This BITS setting enables
980
+ monitoring of each subcomponent (typically a
981
+ TCP connection or UDP listener) individually.""",
982
+ }, # column
983
+ "slapmPolicyMonitorStatus" : {
984
+ "nodetype" : "column",
985
+ "moduleName" : "SLAPM-MIB",
986
+ "oid" : "1.3.6.1.3.88.1.2.2.1.6",
987
+ "status" : "deprecated",
988
+ "syntax" : {
989
+ "type" : { "module" :"SLAPM-MIB", "name" : "SlapmStatus"},
990
+ },
991
+ "access" : "readonly",
992
+ "description" :
993
+ """The value of this object indicates when a monitored
994
+ value has not meet a threshold or isn't meeting the
995
+ defined service level. The SlapmStatus TEXTUAL-CONVENTION
996
+ defines two levels of not meeting a threshold. The first
997
+ set:
998
+ slaMinInRateNotAchieved(0),
999
+ slaMaxInRateExceeded(1),
1000
+ slaMaxDelayExceeded(2),
1001
+ slaMinOutRateNotAchieved(3),
1002
+ slaMaxOutRateExceeded(4)
1003
+
1004
+ are used to indicate when the SLA as an aggregate is
1005
+ not meeting a threshold while the second set:
1006
+
1007
+ monitorMinInRateNotAchieved(5),
1008
+ monitorMaxInRateExceeded(6),
1009
+ monitorMaxDelayExceeded(7),
1010
+ monitorMinOutRateNotAchieved(8),
1011
+ monitorMaxOutRateExceeded(9)
1012
+
1013
+ indicate that at least one subcomponent is not meeting
1014
+ a threshold.""",
1015
+ }, # column
1016
+ "slapmPolicyMonitorInterval" : {
1017
+ "nodetype" : "column",
1018
+ "moduleName" : "SLAPM-MIB",
1019
+ "oid" : "1.3.6.1.3.88.1.2.2.1.7",
1020
+ "status" : "deprecated",
1021
+ "syntax" : {
1022
+ "type" : {
1023
+ "basetype" : "Integer32",
1024
+ "ranges" : [
1025
+ {
1026
+ "min" : "15",
1027
+ "max" : "86400"
1028
+ },
1029
+ ],
1030
+ "range" : {
1031
+ "min" : "15",
1032
+ "max" : "86400"
1033
+ },
1034
+ },
1035
+ },
1036
+ "access" : "readwrite",
1037
+ "default" : "20",
1038
+ "units" : "seconds",
1039
+ "description" :
1040
+ """The number of seconds that defines the sample period.""",
1041
+ }, # column
1042
+ "slapmPolicyMonitorIntTime" : {
1043
+ "nodetype" : "column",
1044
+ "moduleName" : "SLAPM-MIB",
1045
+ "oid" : "1.3.6.1.3.88.1.2.2.1.8",
1046
+ "status" : "deprecated",
1047
+ "syntax" : {
1048
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
1049
+ },
1050
+ "access" : "readonly",
1051
+ "default" : "0x0000000000000000",
1052
+ "description" :
1053
+ """The timestamp for when the last interval ended.""",
1054
+ }, # column
1055
+ "slapmPolicyMonitorCurrentInRate" : {
1056
+ "nodetype" : "column",
1057
+ "moduleName" : "SLAPM-MIB",
1058
+ "oid" : "1.3.6.1.3.88.1.2.2.1.9",
1059
+ "status" : "deprecated",
1060
+ "syntax" : {
1061
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1062
+ },
1063
+ "access" : "readonly",
1064
+ "units" : "kilobits per second",
1065
+ "description" :
1066
+ """Using the value of the corresponding
1067
+ slapmPolicyMonitorInterval, slapmPolicyStatsInOctets
1068
+ is sampled and then divided by slapmPolicyMonitorInterval
1069
+ to determine the current in transfer rate.""",
1070
+ }, # column
1071
+ "slapmPolicyMonitorCurrentOutRate" : {
1072
+ "nodetype" : "column",
1073
+ "moduleName" : "SLAPM-MIB",
1074
+ "oid" : "1.3.6.1.3.88.1.2.2.1.10",
1075
+ "status" : "deprecated",
1076
+ "syntax" : {
1077
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1078
+ },
1079
+ "access" : "readonly",
1080
+ "units" : "kilobits per second",
1081
+ "description" :
1082
+ """Using the value of the corresponding
1083
+ slapmPolicyMonitorInterval, slapmPolicyStatsOutOctets
1084
+ is sampled and then divided by slapmPolicyMonitorInterval
1085
+ to determine the current out transfer rate.""",
1086
+ }, # column
1087
+ "slapmPolicyMonitorMinRateLow" : {
1088
+ "nodetype" : "column",
1089
+ "moduleName" : "SLAPM-MIB",
1090
+ "oid" : "1.3.6.1.3.88.1.2.2.1.11",
1091
+ "status" : "deprecated",
1092
+ "syntax" : {
1093
+ "type" : { "module" :"", "name" : "Integer32"},
1094
+ },
1095
+ "access" : "readwrite",
1096
+ "units" : "kilobits per second",
1097
+ "description" :
1098
+ """The threshold for generating a
1099
+ slapmMonitoredEventNotAchieved notification, signalling
1100
+ that a monitored minimum transfer rate has not been meet.
1101
+
1102
+ A slapmMonitoredEventNotAchieved notification is not
1103
+ generated again for an slapmPolicyMonitorEntry until
1104
+ the minimum transfer rate
1105
+ exceeds slapmPolicyMonitorMinRateHigh (a
1106
+ slapmMonitoredEventOkay notification is then transmitted)
1107
+ and then fails below slapmPolicyMonitorMinRateLow. This
1108
+ behavior reduces the slapmMonitoredEventNotAchieved
1109
+ notifications that are transmitted.
1110
+
1111
+ A value of zero for this object is returned when the
1112
+ slapmPolicyMonitorControl monitorMinRate(0) is not
1113
+ enabled. When enabled the default value for this object
1114
+ is the min rate value specified in the associated
1115
+ action definition minus 10%. If the action definition
1116
+ doesn't have a min rate defined then there is no
1117
+ default for this object and a value MUST be specified
1118
+ prior to activating this entry when monitorMinRate(0)
1119
+ is selected.
1120
+
1121
+ Note: The corresponding slapmPolicyMonitorControl
1122
+ BITS setting, enableAggregateTraps(3), MUST be selected in
1123
+ order for any notification relating to this entry to
1124
+ potentially be generated.""",
1125
+ }, # column
1126
+ "slapmPolicyMonitorMinRateHigh" : {
1127
+ "nodetype" : "column",
1128
+ "moduleName" : "SLAPM-MIB",
1129
+ "oid" : "1.3.6.1.3.88.1.2.2.1.12",
1130
+ "status" : "deprecated",
1131
+ "syntax" : {
1132
+ "type" : { "module" :"", "name" : "Integer32"},
1133
+ },
1134
+ "access" : "readwrite",
1135
+ "units" : "kilobits per second",
1136
+ "description" :
1137
+ """The threshold for generating a slapmMonitoredEventOkay
1138
+ notification, signalling that a monitored minimum
1139
+ transfer rate has increased to an acceptable level.
1140
+
1141
+ A value of zero for this object is returned when the
1142
+ slapmPolicyMonitorControl monitorMinRate(0) is not
1143
+ enabled. When enabled the default value for this object
1144
+ is the min rate value specified in the associated
1145
+ action definition plus 10%. If the action definition
1146
+ doesn't have a min rate defined then there is no
1147
+ default for this object and a value MUST be specified
1148
+ prior to activating this entry when monitorMinRate(0)
1149
+ is selected.
1150
+
1151
+ Note: The corresponding slapmPolicyMonitorControl
1152
+ BITS setting, enableAggregateTraps(3), MUST be selected
1153
+ in order for any notification relating to this entry to
1154
+ potentially be generated.""",
1155
+ }, # column
1156
+ "slapmPolicyMonitorMaxRateHigh" : {
1157
+ "nodetype" : "column",
1158
+ "moduleName" : "SLAPM-MIB",
1159
+ "oid" : "1.3.6.1.3.88.1.2.2.1.13",
1160
+ "status" : "deprecated",
1161
+ "syntax" : {
1162
+ "type" : { "module" :"", "name" : "Integer32"},
1163
+ },
1164
+ "access" : "readwrite",
1165
+ "units" : "kilobits per second",
1166
+ "description" :
1167
+ """The threshold for generating a
1168
+ slapmMonitoredEventNotAchieved notification, signalling
1169
+ that a monitored maximum transfer rate has been exceeded.
1170
+
1171
+ A slapmMonitoredEventNotAchieved notification is not
1172
+ generated again for an slapmPolicyMonitorEntry until the
1173
+ maximum transfer rate fails below
1174
+ slapmPolicyMonitorMaxRateLow (a slapmMonitoredEventOkay
1175
+ notification is then transmitted) and then raises above
1176
+ slapmPolicyMonitorMaxRateHigh. This behavior reduces the
1177
+ slapmMonitoredEventNotAchieved notifications that are
1178
+ transmitted.
1179
+
1180
+ A value of zero for this object is returned when the
1181
+ slapmPolicyMonitorControl monitorMaxRate(1) is not
1182
+ enabled. When enabled the default value for this object
1183
+ is the max rate value specified in the associated
1184
+ action definition plus 10%. If the action definition
1185
+ doesn't have a max rate defined then there is no
1186
+ default for this object and a value MUST be specified
1187
+ prior to activating this entry when monitorMaxRate(1)
1188
+ is selected.
1189
+
1190
+ Note: The corresponding slapmPolicyMonitorControl
1191
+ BITS setting, enableAggregateTraps(3), MUST be selected in
1192
+ order for any notification relating to this entry to
1193
+ potentially be generated.""",
1194
+ }, # column
1195
+ "slapmPolicyMonitorMaxRateLow" : {
1196
+ "nodetype" : "column",
1197
+ "moduleName" : "SLAPM-MIB",
1198
+ "oid" : "1.3.6.1.3.88.1.2.2.1.14",
1199
+ "status" : "deprecated",
1200
+ "syntax" : {
1201
+ "type" : { "module" :"", "name" : "Integer32"},
1202
+ },
1203
+ "access" : "readwrite",
1204
+ "units" : "kilobits per second",
1205
+ "description" :
1206
+ """The threshold for generating a slapmMonitoredEventOkay
1207
+ notification, signalling that a monitored maximum
1208
+ transfer rate has fallen to an acceptable level.
1209
+
1210
+ A value of zero for this object is returned when the
1211
+ slapmPolicyMonitorControl monitorMaxRate(1) is not
1212
+ enabled. When enabled the default value for this object
1213
+ is the max rate value specified in the associated
1214
+ action definition minus 10%. If the action definition
1215
+ doesn't have a max rate defined then there is no
1216
+ default for this object and a value MUST be specified
1217
+ prior to activating this entry when monitorMaxRate(1)
1218
+ is selected.
1219
+
1220
+ Note: The corresponding slapmPolicyMonitorControl
1221
+ BITS setting, enableAggregateTraps(3), MUST be selected in
1222
+ order for any notification relating to this entry to
1223
+ potentially be generated.""",
1224
+ }, # column
1225
+ "slapmPolicyMonitorMaxDelayHigh" : {
1226
+ "nodetype" : "column",
1227
+ "moduleName" : "SLAPM-MIB",
1228
+ "oid" : "1.3.6.1.3.88.1.2.2.1.15",
1229
+ "status" : "deprecated",
1230
+ "syntax" : {
1231
+ "type" : { "module" :"", "name" : "Integer32"},
1232
+ },
1233
+ "access" : "readwrite",
1234
+ "units" : "milliseconds",
1235
+ "description" :
1236
+ """The threshold for generating a
1237
+ slapmMonitoredEventNotAchieved notification, signalling
1238
+ that a monitored maximum delay rate has been exceeded.
1239
+
1240
+ A slapmMonitoredEventNotAchieved notification is not
1241
+ generated again for an slapmPolicyMonitorEntry until
1242
+ the maximum delay rate falls below
1243
+ slapmPolicyMonitorMaxDelayLow (a slapmMonitoredEventOkay
1244
+ notification is then transmitted) and raises above
1245
+ slapmPolicyMonitorMaxDelayHigh. This behavior reduces
1246
+ the slapmMonitoredEventNotAchieved notifications that are
1247
+ transmitted.
1248
+
1249
+ A value of zero for this object is returned when the
1250
+ slapmPolicyMonitorControl monitorMaxDelay(4) is not
1251
+ enabled. When enabled the default value for this object
1252
+ is the max delay value specified in the associated
1253
+ action definition plus 10%. If the action definition
1254
+ doesn't have a max delay defined then there is no
1255
+ default for this object and a value MUST be specified
1256
+ prior to activating this entry when monitorMaxDelay(4)
1257
+ is selected.
1258
+
1259
+ Note: The corresponding slapmPolicyMonitorControl
1260
+ BITS setting, enableAggregateTraps(3), MUST be selected
1261
+ in order for any notification relating to this entry to
1262
+ potentially be generated.""",
1263
+ }, # column
1264
+ "slapmPolicyMonitorMaxDelayLow" : {
1265
+ "nodetype" : "column",
1266
+ "moduleName" : "SLAPM-MIB",
1267
+ "oid" : "1.3.6.1.3.88.1.2.2.1.16",
1268
+ "status" : "deprecated",
1269
+ "syntax" : {
1270
+ "type" : { "module" :"", "name" : "Integer32"},
1271
+ },
1272
+ "access" : "readwrite",
1273
+ "units" : "milliseconds",
1274
+ "description" :
1275
+ """The threshold for generating a slapmMonitoredEventOkay
1276
+ notification, signalling that a monitored maximum delay
1277
+ rate has fallen to an acceptable level.
1278
+
1279
+ A value of zero for this object is returned when the
1280
+ slapmPolicyMonitorControl monitorMaxDelay(4) is not
1281
+ enabled. When enabled the default value for this object
1282
+ is the max delay value specified in the associated
1283
+ action definition minus 10%. If the action definition
1284
+ doesn't have a max delay defined then there is no
1285
+ default for this object and a value MUST be specified
1286
+ prior to activating this entry when monitorMaxDelay(4)
1287
+ is selected.
1288
+
1289
+ Note: The corresponding slapmPolicyMonitorControl
1290
+ BITS setting, enableAggregateTraps(3), MUST be selected
1291
+ in order for any notification relating to this entry to
1292
+ potentially be generated.""",
1293
+ }, # column
1294
+ "slapmPolicyMonitorMinInRateNotAchieves" : {
1295
+ "nodetype" : "column",
1296
+ "moduleName" : "SLAPM-MIB",
1297
+ "oid" : "1.3.6.1.3.88.1.2.2.1.17",
1298
+ "status" : "deprecated",
1299
+ "syntax" : {
1300
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1301
+ },
1302
+ "access" : "readonly",
1303
+ "description" :
1304
+ """The number of times that a minimum transfer in rate
1305
+ was not achieved.""",
1306
+ }, # column
1307
+ "slapmPolicyMonitorMaxInRateExceeds" : {
1308
+ "nodetype" : "column",
1309
+ "moduleName" : "SLAPM-MIB",
1310
+ "oid" : "1.3.6.1.3.88.1.2.2.1.18",
1311
+ "status" : "deprecated",
1312
+ "syntax" : {
1313
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1314
+ },
1315
+ "access" : "readonly",
1316
+ "description" :
1317
+ """The number of times that a maximum transfer in rate
1318
+ was exceeded.""",
1319
+ }, # column
1320
+ "slapmPolicyMonitorMaxDelayExceeds" : {
1321
+ "nodetype" : "column",
1322
+ "moduleName" : "SLAPM-MIB",
1323
+ "oid" : "1.3.6.1.3.88.1.2.2.1.19",
1324
+ "status" : "deprecated",
1325
+ "syntax" : {
1326
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1327
+ },
1328
+ "access" : "readonly",
1329
+ "description" :
1330
+ """The number of times that a maximum delay in rate
1331
+ was exceeded.""",
1332
+ }, # column
1333
+ "slapmPolicyMonitorMinOutRateNotAchieves" : {
1334
+ "nodetype" : "column",
1335
+ "moduleName" : "SLAPM-MIB",
1336
+ "oid" : "1.3.6.1.3.88.1.2.2.1.20",
1337
+ "status" : "deprecated",
1338
+ "syntax" : {
1339
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1340
+ },
1341
+ "access" : "readonly",
1342
+ "description" :
1343
+ """The number of times that a minimum transfer out rate
1344
+ was not achieved.""",
1345
+ }, # column
1346
+ "slapmPolicyMonitorMaxOutRateExceeds" : {
1347
+ "nodetype" : "column",
1348
+ "moduleName" : "SLAPM-MIB",
1349
+ "oid" : "1.3.6.1.3.88.1.2.2.1.21",
1350
+ "status" : "deprecated",
1351
+ "syntax" : {
1352
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1353
+ },
1354
+ "access" : "readonly",
1355
+ "description" :
1356
+ """The number of times that a maximum transfer out rate
1357
+ was exceeded.""",
1358
+ }, # column
1359
+ "slapmPolicyMonitorCurrentDelayRate" : {
1360
+ "nodetype" : "column",
1361
+ "moduleName" : "SLAPM-MIB",
1362
+ "oid" : "1.3.6.1.3.88.1.2.2.1.22",
1363
+ "status" : "deprecated",
1364
+ "syntax" : {
1365
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1366
+ },
1367
+ "access" : "readonly",
1368
+ "units" : "milliseconds",
1369
+ "description" :
1370
+ """The current delay rate for this entry. This is
1371
+ calculated by taking the average of the TCP
1372
+ round trip times for all associating
1373
+ slapmSubcomponentTable entries within a interval.""",
1374
+ }, # column
1375
+ "slapmPolicyMonitorRowStatus" : {
1376
+ "nodetype" : "column",
1377
+ "moduleName" : "SLAPM-MIB",
1378
+ "oid" : "1.3.6.1.3.88.1.2.2.1.23",
1379
+ "status" : "deprecated",
1380
+ "syntax" : {
1381
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1382
+ },
1383
+ "access" : "readwrite",
1384
+ "description" :
1385
+ """This object allows entries to be created and deleted
1386
+ in the slapmPolicyMonitorTable. An entry in this table
1387
+ is deleted by setting this object to destroy(6).
1388
+
1389
+ Removal of a corresponding (same policy and traffic profile
1390
+ names) slapmPolicyStatsEntry has the side effect of the
1391
+ automatic deletion an entry in this table.""",
1392
+ }, # column
1393
+ "slapmSubcomponentTable" : {
1394
+ "nodetype" : "table",
1395
+ "moduleName" : "SLAPM-MIB",
1396
+ "oid" : "1.3.6.1.3.88.1.2.3",
1397
+ "status" : "current",
1398
+ "description" :
1399
+ """Defines a table to provide information on the
1400
+ individually components that are mapped to
1401
+ a policy rule (or old traffic profile).
1402
+
1403
+ The indexing for this table is designed to support
1404
+ the use of an SNMP GET-NEXT operation using only
1405
+ the remote address and remote port as a way for
1406
+ a management station to retrieve the table entries
1407
+ relating to a particular client.""",
1408
+ }, # table
1409
+ "slapmSubcomponentEntry" : {
1410
+ "nodetype" : "row",
1411
+ "moduleName" : "SLAPM-MIB",
1412
+ "oid" : "1.3.6.1.3.88.1.2.3.1",
1413
+ "status" : "current",
1414
+ "linkage" : [
1415
+ "slapmSubcomponentRemAddress",
1416
+ "slapmSubcomponentRemPort",
1417
+ "slapmSubcomponentLocalAddress",
1418
+ "slapmSubcomponentLocalPort",
1419
+ ],
1420
+ "description" :
1421
+ """Describes a particular subcomponent entry. This
1422
+ table does not have an OwnerIndex as
1423
+ part of its indexing since this table's contents
1424
+ is intended to span multiple users.""",
1425
+ }, # row
1426
+ "slapmSubcomponentRemAddress" : {
1427
+ "nodetype" : "column",
1428
+ "moduleName" : "SLAPM-MIB",
1429
+ "oid" : "1.3.6.1.3.88.1.2.3.1.1",
1430
+ "status" : "current",
1431
+ "syntax" : {
1432
+ "type" : {
1433
+ "basetype" : "OctetString",
1434
+ "ranges" : [
1435
+ {
1436
+ "min" : "0",
1437
+ "max" : "0"
1438
+ },
1439
+ {
1440
+ "min" : "4",
1441
+ "max" : "4"
1442
+ },
1443
+ {
1444
+ "min" : "16",
1445
+ "max" : "16"
1446
+ },
1447
+ ],
1448
+ "range" : {
1449
+ "min" : "0",
1450
+ "max" : "16"
1451
+ },
1452
+ },
1453
+ },
1454
+ "access" : "noaccess",
1455
+ "description" :
1456
+ """Indicate the remote address of a subcomponent.
1457
+ A remote address can be either an ipv4 address in which
1458
+ case 4 octets are required or as an ipv6 address that
1459
+ requires 16 octets. The value of this subidentifier
1460
+ is a zero length octet string when this entry relates
1461
+ to a UDP listener.""",
1462
+ }, # column
1463
+ "slapmSubcomponentRemPort" : {
1464
+ "nodetype" : "column",
1465
+ "moduleName" : "SLAPM-MIB",
1466
+ "oid" : "1.3.6.1.3.88.1.2.3.1.2",
1467
+ "status" : "current",
1468
+ "syntax" : {
1469
+ "type" : {
1470
+ "basetype" : "Integer32",
1471
+ "ranges" : [
1472
+ {
1473
+ "min" : "0",
1474
+ "max" : "65535"
1475
+ },
1476
+ ],
1477
+ "range" : {
1478
+ "min" : "0",
1479
+ "max" : "65535"
1480
+ },
1481
+ },
1482
+ },
1483
+ "access" : "noaccess",
1484
+ "description" :
1485
+ """Indicate the remote port of a subcomponent.
1486
+ The value of this subidentifier
1487
+ is 0 when this entry relates to a UDP listener.""",
1488
+ }, # column
1489
+ "slapmSubcomponentLocalAddress" : {
1490
+ "nodetype" : "column",
1491
+ "moduleName" : "SLAPM-MIB",
1492
+ "oid" : "1.3.6.1.3.88.1.2.3.1.3",
1493
+ "status" : "current",
1494
+ "syntax" : {
1495
+ "type" : {
1496
+ "basetype" : "OctetString",
1497
+ "ranges" : [
1498
+ {
1499
+ "min" : "4",
1500
+ "max" : "4"
1501
+ },
1502
+ {
1503
+ "min" : "16",
1504
+ "max" : "16"
1505
+ },
1506
+ ],
1507
+ "range" : {
1508
+ "min" : "4",
1509
+ "max" : "16"
1510
+ },
1511
+ },
1512
+ },
1513
+ "access" : "noaccess",
1514
+ "description" :
1515
+ """Indicate the local address of a subcomponent.
1516
+ A local address can be either an ipv4 address in which
1517
+ case 4 octets are required or as an ipv6 address that
1518
+ requires 16 octets.""",
1519
+ }, # column
1520
+ "slapmSubcomponentLocalPort" : {
1521
+ "nodetype" : "column",
1522
+ "moduleName" : "SLAPM-MIB",
1523
+ "oid" : "1.3.6.1.3.88.1.2.3.1.4",
1524
+ "status" : "current",
1525
+ "syntax" : {
1526
+ "type" : {
1527
+ "basetype" : "Integer32",
1528
+ "ranges" : [
1529
+ {
1530
+ "min" : "0",
1531
+ "max" : "65535"
1532
+ },
1533
+ ],
1534
+ "range" : {
1535
+ "min" : "0",
1536
+ "max" : "65535"
1537
+ },
1538
+ },
1539
+ },
1540
+ "access" : "noaccess",
1541
+ "description" :
1542
+ """Indicate the local port of a subcomponent.""",
1543
+ }, # column
1544
+ "slapmSubcomponentProtocol" : {
1545
+ "nodetype" : "column",
1546
+ "moduleName" : "SLAPM-MIB",
1547
+ "oid" : "1.3.6.1.3.88.1.2.3.1.5",
1548
+ "status" : "current",
1549
+ "syntax" : {
1550
+ "type" : {
1551
+ "basetype" : "Enumeration",
1552
+ "udpListener" : {
1553
+ "nodetype" : "namednumber",
1554
+ "number" : "1"
1555
+ },
1556
+ "tcpConnection" : {
1557
+ "nodetype" : "namednumber",
1558
+ "number" : "2"
1559
+ },
1560
+ },
1561
+ },
1562
+ "access" : "readonly",
1563
+ "description" :
1564
+ """Indicate the protocol in use that identifies the
1565
+ type of subcomponent.""",
1566
+ }, # column
1567
+ "slapmSubcomponentSystemAddress" : {
1568
+ "nodetype" : "column",
1569
+ "moduleName" : "SLAPM-MIB",
1570
+ "oid" : "1.3.6.1.3.88.1.2.3.1.6",
1571
+ "status" : "current",
1572
+ "syntax" : {
1573
+ "type" : {
1574
+ "basetype" : "OctetString",
1575
+ "ranges" : [
1576
+ {
1577
+ "min" : "0",
1578
+ "max" : "0"
1579
+ },
1580
+ {
1581
+ "min" : "4",
1582
+ "max" : "4"
1583
+ },
1584
+ {
1585
+ "min" : "16",
1586
+ "max" : "16"
1587
+ },
1588
+ ],
1589
+ "range" : {
1590
+ "min" : "0",
1591
+ "max" : "16"
1592
+ },
1593
+ },
1594
+ },
1595
+ "access" : "readonly",
1596
+ "description" :
1597
+ """Address of a system that an Policy definition relates to.
1598
+ A zero length octet string can be used to indicate that
1599
+ only a single system is being represented.
1600
+ Otherwise, the length of the octet string should be
1601
+ 4 for an ipv4 address and 16 for an ipv6 address.""",
1602
+ }, # column
1603
+ "slapmSubcomponentPolicyName" : {
1604
+ "nodetype" : "column",
1605
+ "moduleName" : "SLAPM-MIB",
1606
+ "oid" : "1.3.6.1.3.88.1.2.3.1.7",
1607
+ "status" : "deprecated",
1608
+ "syntax" : {
1609
+ "type" : { "module" :"SLAPM-MIB", "name" : "SlapmNameType"},
1610
+ },
1611
+ "access" : "readonly",
1612
+ "description" :
1613
+ """Policy name that this entry relates to.
1614
+
1615
+ This object, along with slapmSubcomponentTrafficProfileName,
1616
+ have been replaced with the use of an unsigned integer
1617
+ index that is mapped to an slapmPolicyNameEntry to actually
1618
+ identify policy naming.""",
1619
+ }, # column
1620
+ "slapmSubcomponentTrafficProfileName" : {
1621
+ "nodetype" : "column",
1622
+ "moduleName" : "SLAPM-MIB",
1623
+ "oid" : "1.3.6.1.3.88.1.2.3.1.8",
1624
+ "status" : "deprecated",
1625
+ "syntax" : {
1626
+ "type" : { "module" :"SLAPM-MIB", "name" : "SlapmNameType"},
1627
+ },
1628
+ "access" : "readonly",
1629
+ "description" :
1630
+ """The corresponding traffic profile name.
1631
+
1632
+ This object, along with slapmSubcomponentProfileName,
1633
+ have been replaced with the use of an unsigned integer
1634
+ index that is mapped to an slapmPolicyNameEntry to
1635
+ actually identify policy naming.""",
1636
+ }, # column
1637
+ "slapmSubcomponentLastActivity" : {
1638
+ "nodetype" : "column",
1639
+ "moduleName" : "SLAPM-MIB",
1640
+ "oid" : "1.3.6.1.3.88.1.2.3.1.9",
1641
+ "status" : "current",
1642
+ "syntax" : {
1643
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
1644
+ },
1645
+ "access" : "readonly",
1646
+ "default" : "0x0000000000000000",
1647
+ "description" :
1648
+ """The date and timestamp of when this entry was last used.""",
1649
+ }, # column
1650
+ "slapmSubcomponentInOctets" : {
1651
+ "nodetype" : "column",
1652
+ "moduleName" : "SLAPM-MIB",
1653
+ "oid" : "1.3.6.1.3.88.1.2.3.1.10",
1654
+ "status" : "current",
1655
+ "syntax" : {
1656
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1657
+ },
1658
+ "access" : "readonly",
1659
+ "description" :
1660
+ """The number of octets received from IP for this
1661
+ connection.""",
1662
+ }, # column
1663
+ "slapmSubcomponentOutOctets" : {
1664
+ "nodetype" : "column",
1665
+ "moduleName" : "SLAPM-MIB",
1666
+ "oid" : "1.3.6.1.3.88.1.2.3.1.11",
1667
+ "status" : "current",
1668
+ "syntax" : {
1669
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1670
+ },
1671
+ "access" : "readonly",
1672
+ "description" :
1673
+ """The number of octets sent to IP for this connection.""",
1674
+ }, # column
1675
+ "slapmSubcomponentTcpOutBufferedOctets" : {
1676
+ "nodetype" : "column",
1677
+ "moduleName" : "SLAPM-MIB",
1678
+ "oid" : "1.3.6.1.3.88.1.2.3.1.12",
1679
+ "status" : "current",
1680
+ "syntax" : {
1681
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1682
+ },
1683
+ "access" : "readonly",
1684
+ "description" :
1685
+ """Number of outgoing octets buffered. The value
1686
+ of this object is zero when the entry is not
1687
+ for a TCP connection.""",
1688
+ }, # column
1689
+ "slapmSubcomponentTcpInBufferedOctets" : {
1690
+ "nodetype" : "column",
1691
+ "moduleName" : "SLAPM-MIB",
1692
+ "oid" : "1.3.6.1.3.88.1.2.3.1.13",
1693
+ "status" : "current",
1694
+ "syntax" : {
1695
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1696
+ },
1697
+ "access" : "readonly",
1698
+ "description" :
1699
+ """Number of incoming octets buffered. The value
1700
+ of this object is zero when the entry is not
1701
+ for a TCP connection.""",
1702
+ }, # column
1703
+ "slapmSubcomponentTcpReXmts" : {
1704
+ "nodetype" : "column",
1705
+ "moduleName" : "SLAPM-MIB",
1706
+ "oid" : "1.3.6.1.3.88.1.2.3.1.14",
1707
+ "status" : "current",
1708
+ "syntax" : {
1709
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1710
+ },
1711
+ "access" : "readonly",
1712
+ "description" :
1713
+ """Number of retransmissions. The value
1714
+ of this object is zero when the entry is not
1715
+ for a TCP connection.""",
1716
+ }, # column
1717
+ "slapmSubcomponentTcpRoundTripTime" : {
1718
+ "nodetype" : "column",
1719
+ "moduleName" : "SLAPM-MIB",
1720
+ "oid" : "1.3.6.1.3.88.1.2.3.1.15",
1721
+ "status" : "current",
1722
+ "syntax" : {
1723
+ "type" : { "module" :"", "name" : "Integer32"},
1724
+ },
1725
+ "access" : "readonly",
1726
+ "units" : "milliseconds",
1727
+ "description" :
1728
+ """The amount of time that has elapsed, measured in
1729
+ milliseconds, from when the last TCP segment was
1730
+ transmitted by the TCP Stack until the ACK was
1731
+ received.
1732
+
1733
+ The value of this object is zero when the entry is not
1734
+ for a TCP connection.""",
1735
+ }, # column
1736
+ "slapmSubcomponentTcpRoundTripVariance" : {
1737
+ "nodetype" : "column",
1738
+ "moduleName" : "SLAPM-MIB",
1739
+ "oid" : "1.3.6.1.3.88.1.2.3.1.16",
1740
+ "status" : "current",
1741
+ "syntax" : {
1742
+ "type" : { "module" :"", "name" : "Integer32"},
1743
+ },
1744
+ "access" : "readonly",
1745
+ "description" :
1746
+ """Round trip time variance.
1747
+
1748
+ The value of this object is zero when the entry is not
1749
+ for a TCP connection.""",
1750
+ }, # column
1751
+ "slapmSubcomponentInPdus" : {
1752
+ "nodetype" : "column",
1753
+ "moduleName" : "SLAPM-MIB",
1754
+ "oid" : "1.3.6.1.3.88.1.2.3.1.17",
1755
+ "status" : "current",
1756
+ "syntax" : {
1757
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1758
+ },
1759
+ "access" : "readonly",
1760
+ "description" :
1761
+ """The number of protocol related data units transferred
1762
+ inbound:
1763
+
1764
+ slapmSubcomponentProtocol PDU Type
1765
+
1766
+ udpListener(1) UDP datagrams
1767
+ tcpConnection(2) TCP segments""",
1768
+ }, # column
1769
+ "slapmSubcomponentOutPdus" : {
1770
+ "nodetype" : "column",
1771
+ "moduleName" : "SLAPM-MIB",
1772
+ "oid" : "1.3.6.1.3.88.1.2.3.1.18",
1773
+ "status" : "current",
1774
+ "syntax" : {
1775
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1776
+ },
1777
+ "access" : "readonly",
1778
+ "description" :
1779
+ """The number of protocol related data units transferred
1780
+ outbound:
1781
+
1782
+ slapmSubcomponentProtocol PDU Type
1783
+
1784
+ udpListener(1) UDP datagrams
1785
+ tcpConnection(2) TCP segments""",
1786
+ }, # column
1787
+ "slapmSubcomponentApplName" : {
1788
+ "nodetype" : "column",
1789
+ "moduleName" : "SLAPM-MIB",
1790
+ "oid" : "1.3.6.1.3.88.1.2.3.1.19",
1791
+ "status" : "current",
1792
+ "syntax" : {
1793
+ "type" : {
1794
+ "basetype" : "OctetString",
1795
+ "parent module" : {
1796
+ "name" : "SNMP-FRAMEWORK-MIB",
1797
+ "type" : "SnmpAdminString",
1798
+ },
1799
+ "ranges" : [
1800
+ {
1801
+ "min" : "0",
1802
+ "max" : "32"
1803
+ },
1804
+ ],
1805
+ "range" : {
1806
+ "min" : "0",
1807
+ "max" : "32"
1808
+ },
1809
+ },
1810
+ },
1811
+ "access" : "readonly",
1812
+ "description" :
1813
+ """The application name associated with this entry if known,
1814
+ otherwise a zero-length octet string is returned as the
1815
+ value of this object.""",
1816
+ }, # column
1817
+ "slapmSubcomponentMonitorStatus" : {
1818
+ "nodetype" : "column",
1819
+ "moduleName" : "SLAPM-MIB",
1820
+ "oid" : "1.3.6.1.3.88.1.2.3.1.20",
1821
+ "status" : "current",
1822
+ "syntax" : {
1823
+ "type" : { "module" :"SLAPM-MIB", "name" : "SlapmStatus"},
1824
+ },
1825
+ "access" : "readonly",
1826
+ "description" :
1827
+ """The value of this object indicates when a monitored
1828
+ value has exceeded a threshold or isn't meeting the
1829
+ defined service level. Only the following SlapmStatus
1830
+ BITS setting can be reported here:
1831
+
1832
+ monitorMinInRateNotAchieved(5),
1833
+ monitorMaxInRateExceeded(6),
1834
+ monitorMaxDelayExceeded(7),
1835
+ monitorMinOutRateNotAchieved(8),
1836
+ monitorMaxOutRateExceeded(9)
1837
+
1838
+ This object only has meaning when an corresponding
1839
+ slapmPolicyMonitorEntry exists with the
1840
+ slapmPolicyMonitorControl BITS setting
1841
+ monitorSubcomponents(5) enabled.""",
1842
+ }, # column
1843
+ "slapmSubcomponentMonitorIntTime" : {
1844
+ "nodetype" : "column",
1845
+ "moduleName" : "SLAPM-MIB",
1846
+ "oid" : "1.3.6.1.3.88.1.2.3.1.21",
1847
+ "status" : "current",
1848
+ "syntax" : {
1849
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
1850
+ },
1851
+ "access" : "readonly",
1852
+ "default" : "0x0000000000000000",
1853
+ "description" :
1854
+ """The timestamp for when the last interval ended.
1855
+
1856
+ This object only has meaning when an corresponding
1857
+ slapmPRMonEntry (or old slapmPolicyMonitorEntry)
1858
+ exists with the slapmPRMonControl (or
1859
+ slapmPolicyMonitorControl) BITS setting
1860
+ monitorSubcomponents(5) enabled. All of the
1861
+ octets returned when monitoring is not in effect
1862
+ must be zero.""",
1863
+ }, # column
1864
+ "slapmSubcomponentMonitorCurrentInRate" : {
1865
+ "nodetype" : "column",
1866
+ "moduleName" : "SLAPM-MIB",
1867
+ "oid" : "1.3.6.1.3.88.1.2.3.1.22",
1868
+ "status" : "current",
1869
+ "syntax" : {
1870
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1871
+ },
1872
+ "access" : "readonly",
1873
+ "units" : "kilobits per second",
1874
+ "description" :
1875
+ """Using the value of the corresponding
1876
+ slapmPRMonInterval (or slapmPolicyMonitorInterval),
1877
+ slapmSubcomponentStatsInOctets
1878
+ is divided by slapmSubcomponentMonitorInterval to determine
1879
+ the current in transfer rate.
1880
+
1881
+ This object only has meaning when an corresponding
1882
+ slapmPRMonEntry (or slapmPolicyMonitorEntry)
1883
+ exists with the slapmPRMonControl (or
1884
+ slapmPolicyMonitorControl) BITS setting
1885
+ monitorSubcomponents(5) enabled. The value of this
1886
+ object is zero when monitoring is not in effect.""",
1887
+ }, # column
1888
+ "slapmSubcomponentMonitorCurrentOutRate" : {
1889
+ "nodetype" : "column",
1890
+ "moduleName" : "SLAPM-MIB",
1891
+ "oid" : "1.3.6.1.3.88.1.2.3.1.23",
1892
+ "status" : "current",
1893
+ "syntax" : {
1894
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1895
+ },
1896
+ "access" : "readonly",
1897
+ "units" : "kilobits per second",
1898
+ "description" :
1899
+ """Using the value of the corresponding slapmPRMonInterval (or
1900
+ slapmPolicyMonitorInterva)l, slapmSubcomponentStatsOutOctets
1901
+ is divided by slapmPRMonInterval (or
1902
+ slapmPolicyMonitorInterval) to determine the
1903
+ current out transfer rate.
1904
+
1905
+ This object only has meaning when an corresponding
1906
+ slapmPRMonEntry (or slapmPolicyMonitorEntry) exists with
1907
+ the slapmPRMonControl (or slapmPolicyMonitorControl)
1908
+ BITS setting monitorSubcomponents(5) enabled. The value
1909
+ of this object is zero when monitoring is not in effect.""",
1910
+ }, # column
1911
+ "slapmSubcomponentPolicyRuleIndex" : {
1912
+ "nodetype" : "column",
1913
+ "moduleName" : "SLAPM-MIB",
1914
+ "oid" : "1.3.6.1.3.88.1.2.3.1.24",
1915
+ "status" : "current",
1916
+ "syntax" : {
1917
+ "type" : {
1918
+ "basetype" : "Unsigned32",
1919
+ "ranges" : [
1920
+ {
1921
+ "min" : "0",
1922
+ "max" : "4294967295"
1923
+ },
1924
+ ],
1925
+ "range" : {
1926
+ "min" : "0",
1927
+ "max" : "4294967295"
1928
+ },
1929
+ },
1930
+ },
1931
+ "access" : "readonly",
1932
+ "description" :
1933
+ """Points to an slapmPolicyNameEntry when combined with
1934
+ slapmSubcomponentSystemAddress to indicate the
1935
+ policy naming that relates to this entry.
1936
+
1937
+ A value of 0 for this object MUST be returned when
1938
+ the corresponding slapmSubcomponentEntry has no
1939
+ policy rule associated with it.""",
1940
+ }, # column
1941
+ "slapmPolicyNameTable" : {
1942
+ "nodetype" : "table",
1943
+ "moduleName" : "SLAPM-MIB",
1944
+ "oid" : "1.3.6.1.3.88.1.2.4",
1945
+ "status" : "current",
1946
+ "description" :
1947
+ """Provides the mapping between a policy index as a
1948
+ unsigned 32 bit integer and the unique name associated
1949
+ with a policy rule.""",
1950
+ }, # table
1951
+ "slapmPolicyNameEntry" : {
1952
+ "nodetype" : "row",
1953
+ "moduleName" : "SLAPM-MIB",
1954
+ "oid" : "1.3.6.1.3.88.1.2.4.1",
1955
+ "status" : "current",
1956
+ "linkage" : [
1957
+ "slapmPolicyNameSystemAddress",
1958
+ "slapmPolicyNameIndex",
1959
+ ],
1960
+ "description" :
1961
+ """Defines an entry in the slapmPolicyNameTable.""",
1962
+ }, # row
1963
+ "slapmPolicyNameSystemAddress" : {
1964
+ "nodetype" : "column",
1965
+ "moduleName" : "SLAPM-MIB",
1966
+ "oid" : "1.3.6.1.3.88.1.2.4.1.1",
1967
+ "status" : "current",
1968
+ "syntax" : {
1969
+ "type" : {
1970
+ "basetype" : "OctetString",
1971
+ "ranges" : [
1972
+ {
1973
+ "min" : "0",
1974
+ "max" : "0"
1975
+ },
1976
+ {
1977
+ "min" : "4",
1978
+ "max" : "4"
1979
+ },
1980
+ {
1981
+ "min" : "16",
1982
+ "max" : "16"
1983
+ },
1984
+ ],
1985
+ "range" : {
1986
+ "min" : "0",
1987
+ "max" : "16"
1988
+ },
1989
+ },
1990
+ },
1991
+ "access" : "noaccess",
1992
+ "description" :
1993
+ """Address of a system that an Policy rule definition relates
1994
+ to. A zero length octet string must be used to indicate
1995
+ that only a single system is being represented.
1996
+ Otherwise, the length of the octet string must be
1997
+ 4 for an ipv4 address or 16 for an ipv6 address.""",
1998
+ }, # column
1999
+ "slapmPolicyNameIndex" : {
2000
+ "nodetype" : "column",
2001
+ "moduleName" : "SLAPM-MIB",
2002
+ "oid" : "1.3.6.1.3.88.1.2.4.1.2",
2003
+ "status" : "current",
2004
+ "syntax" : {
2005
+ "type" : {
2006
+ "basetype" : "Unsigned32",
2007
+ "ranges" : [
2008
+ {
2009
+ "min" : "1",
2010
+ "max" : "4294967295"
2011
+ },
2012
+ ],
2013
+ "range" : {
2014
+ "min" : "1",
2015
+ "max" : "4294967295"
2016
+ },
2017
+ },
2018
+ },
2019
+ "access" : "noaccess",
2020
+ "description" :
2021
+ """A locally arbitrary, but unique identifier associated
2022
+ with this table entry. This value is not expected to
2023
+ remain constant across reIPLs.""",
2024
+ }, # column
2025
+ "slapmPolicyNameOfRule" : {
2026
+ "nodetype" : "column",
2027
+ "moduleName" : "SLAPM-MIB",
2028
+ "oid" : "1.3.6.1.3.88.1.2.4.1.3",
2029
+ "status" : "current",
2030
+ "syntax" : {
2031
+ "type" : { "module" :"SLAPM-MIB", "name" : "SlapmPolicyRuleName"},
2032
+ },
2033
+ "access" : "readonly",
2034
+ "description" :
2035
+ """The unique name that identifies a policy rule definition.""",
2036
+ }, # column
2037
+ "slapmPolicyRuleStatsTable" : {
2038
+ "nodetype" : "table",
2039
+ "moduleName" : "SLAPM-MIB",
2040
+ "oid" : "1.3.6.1.3.88.1.2.5",
2041
+ "status" : "current",
2042
+ "description" :
2043
+ """Provides statistics on a per system and a per policy
2044
+ rule basis.""",
2045
+ }, # table
2046
+ "slapmPolicyRuleStatsEntry" : {
2047
+ "nodetype" : "row",
2048
+ "moduleName" : "SLAPM-MIB",
2049
+ "oid" : "1.3.6.1.3.88.1.2.5.1",
2050
+ "status" : "current",
2051
+ "linkage" : [
2052
+ "slapmPolicyNameSystemAddress",
2053
+ "slapmPolicyNameIndex",
2054
+ ],
2055
+ "description" :
2056
+ """Defines an entry in the slapmPolicyRuleStatsTable.
2057
+ This table defines a set of statistics that is kept
2058
+ on a per system and per policy rule basis.
2059
+
2060
+ Entries in this table are not created or deleted via SNMP
2061
+ but reflect the set of policy rule definitions known
2062
+ at a system.""",
2063
+ }, # row
2064
+ "slapmPolicyRuleStatsOperStatus" : {
2065
+ "nodetype" : "column",
2066
+ "moduleName" : "SLAPM-MIB",
2067
+ "oid" : "1.3.6.1.3.88.1.2.5.1.1",
2068
+ "status" : "current",
2069
+ "syntax" : {
2070
+ "type" : {
2071
+ "basetype" : "Enumeration",
2072
+ "inactive" : {
2073
+ "nodetype" : "namednumber",
2074
+ "number" : "1"
2075
+ },
2076
+ "active" : {
2077
+ "nodetype" : "namednumber",
2078
+ "number" : "2"
2079
+ },
2080
+ "deleteNeeded" : {
2081
+ "nodetype" : "namednumber",
2082
+ "number" : "3"
2083
+ },
2084
+ },
2085
+ },
2086
+ "access" : "readonly",
2087
+ "description" :
2088
+ """The state of a policy entry:
2089
+
2090
+ inactive(1) - An policy entry was either defined
2091
+ by local system definition or
2092
+ discovered via
2093
+ a directory search but has not been
2094
+ activated (not currently being used).
2095
+ active(2) - Policy entry is being used to affect
2096
+ traffic flows.
2097
+ deleteNeeded(3) - Either though local implementation
2098
+ dependent methods or by discovering
2099
+ that the directory entry corresponding
2100
+ to this table entry no longer
2101
+ exists and slapmPolicyPurgeTime needs
2102
+ to expire before attempting to remove
2103
+ the corresponding slapmPolicyStatsEntry
2104
+ and any dependent slapmPolicyMonitor
2105
+ table entries.
2106
+ Note: a policy rule in a state other than
2107
+ active(2) is not being used to affect traffic flows.""",
2108
+ }, # column
2109
+ "slapmPolicyRuleStatsActiveConns" : {
2110
+ "nodetype" : "column",
2111
+ "moduleName" : "SLAPM-MIB",
2112
+ "oid" : "1.3.6.1.3.88.1.2.5.1.2",
2113
+ "status" : "current",
2114
+ "syntax" : {
2115
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
2116
+ },
2117
+ "access" : "readonly",
2118
+ "description" :
2119
+ """The number of active TCP connections that are
2120
+ affected by the corresponding policy entry.""",
2121
+ }, # column
2122
+ "slapmPolicyRuleStatsTotalConns" : {
2123
+ "nodetype" : "column",
2124
+ "moduleName" : "SLAPM-MIB",
2125
+ "oid" : "1.3.6.1.3.88.1.2.5.1.3",
2126
+ "status" : "current",
2127
+ "syntax" : {
2128
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2129
+ },
2130
+ "access" : "readonly",
2131
+ "description" :
2132
+ """The number of total TCP connections that are
2133
+ affected by the corresponding policy entry.""",
2134
+ }, # column
2135
+ "slapmPolicyRuleStatsLActivated" : {
2136
+ "nodetype" : "column",
2137
+ "moduleName" : "SLAPM-MIB",
2138
+ "oid" : "1.3.6.1.3.88.1.2.5.1.4",
2139
+ "status" : "current",
2140
+ "syntax" : {
2141
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
2142
+ },
2143
+ "access" : "readonly",
2144
+ "default" : "0x0000000000000000",
2145
+ "description" :
2146
+ """The timestamp for when the corresponding policy entry
2147
+ was last activated. The value of this object serves as
2148
+ the discontinuity event indicator when polling entries
2149
+ in this table. The value of this object is updated on
2150
+ transition of slapmPolicyRuleStatsOperStatus into the
2151
+ active(2) state.""",
2152
+ }, # column
2153
+ "slapmPolicyRuleStatsLastMapping" : {
2154
+ "nodetype" : "column",
2155
+ "moduleName" : "SLAPM-MIB",
2156
+ "oid" : "1.3.6.1.3.88.1.2.5.1.5",
2157
+ "status" : "current",
2158
+ "syntax" : {
2159
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
2160
+ },
2161
+ "access" : "readonly",
2162
+ "default" : "0x0000000000000000",
2163
+ "description" :
2164
+ """The timestamp for when the last time
2165
+ that the associated policy entry was used.""",
2166
+ }, # column
2167
+ "slapmPolicyRuleStatsInOctets" : {
2168
+ "nodetype" : "column",
2169
+ "moduleName" : "SLAPM-MIB",
2170
+ "oid" : "1.3.6.1.3.88.1.2.5.1.6",
2171
+ "status" : "current",
2172
+ "syntax" : {
2173
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2174
+ },
2175
+ "access" : "readonly",
2176
+ "description" :
2177
+ """The number of octets that was received by IP for an
2178
+ entity that map to this entry.""",
2179
+ }, # column
2180
+ "slapmPolicyRuleStatsOutOctets" : {
2181
+ "nodetype" : "column",
2182
+ "moduleName" : "SLAPM-MIB",
2183
+ "oid" : "1.3.6.1.3.88.1.2.5.1.7",
2184
+ "status" : "current",
2185
+ "syntax" : {
2186
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2187
+ },
2188
+ "access" : "readonly",
2189
+ "description" :
2190
+ """The number of octets that was transmitted by IP for an
2191
+ entity that map to this entry.""",
2192
+ }, # column
2193
+ "slapmPolicyRuleStatsConnLimit" : {
2194
+ "nodetype" : "column",
2195
+ "moduleName" : "SLAPM-MIB",
2196
+ "oid" : "1.3.6.1.3.88.1.2.5.1.8",
2197
+ "status" : "current",
2198
+ "syntax" : {
2199
+ "type" : { "module" :"", "name" : "Unsigned32"},
2200
+ },
2201
+ "access" : "readonly",
2202
+ "description" :
2203
+ """The limit for the number of active TCP connections that
2204
+ are allowed for this policy definition. A value of zero
2205
+ for this object implies that a connection limit has not
2206
+ been specified.""",
2207
+ }, # column
2208
+ "slapmPolicyRuleStatsCountAccepts" : {
2209
+ "nodetype" : "column",
2210
+ "moduleName" : "SLAPM-MIB",
2211
+ "oid" : "1.3.6.1.3.88.1.2.5.1.9",
2212
+ "status" : "current",
2213
+ "syntax" : {
2214
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2215
+ },
2216
+ "access" : "readonly",
2217
+ "description" :
2218
+ """This counter is incremented when a policy action's
2219
+ Permission value is set to Accept and a session
2220
+ (TCP connection) is accepted.""",
2221
+ }, # column
2222
+ "slapmPolicyRuleStatsCountDenies" : {
2223
+ "nodetype" : "column",
2224
+ "moduleName" : "SLAPM-MIB",
2225
+ "oid" : "1.3.6.1.3.88.1.2.5.1.10",
2226
+ "status" : "current",
2227
+ "syntax" : {
2228
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2229
+ },
2230
+ "access" : "readonly",
2231
+ "description" :
2232
+ """This counter is incremented when a policy action's
2233
+ Permission value is set to Deny and a session is denied,
2234
+ or when a session (TCP connection) is rejected due to a
2235
+ policy's connection limit (slapmPolicyRuleStatsConnectLimit)
2236
+ being reached.""",
2237
+ }, # column
2238
+ "slapmPolicyRuleStatsInDiscards" : {
2239
+ "nodetype" : "column",
2240
+ "moduleName" : "SLAPM-MIB",
2241
+ "oid" : "1.3.6.1.3.88.1.2.5.1.11",
2242
+ "status" : "current",
2243
+ "syntax" : {
2244
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2245
+ },
2246
+ "access" : "readonly",
2247
+ "description" :
2248
+ """This counter counts the number of in octets discarded.
2249
+ This occurs when an error is detected. Examples of this
2250
+ are buffer overflow, checksum error, or bad packet
2251
+ format.""",
2252
+ }, # column
2253
+ "slapmPolicyRuleStatsOutDiscards" : {
2254
+ "nodetype" : "column",
2255
+ "moduleName" : "SLAPM-MIB",
2256
+ "oid" : "1.3.6.1.3.88.1.2.5.1.12",
2257
+ "status" : "current",
2258
+ "syntax" : {
2259
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2260
+ },
2261
+ "access" : "readonly",
2262
+ "description" :
2263
+ """This counter counts the number of out octets discarded.
2264
+ Examples of this are buffer overflow, checksum error, or
2265
+ bad packet format.""",
2266
+ }, # column
2267
+ "slapmPolicyRuleStatsInPackets" : {
2268
+ "nodetype" : "column",
2269
+ "moduleName" : "SLAPM-MIB",
2270
+ "oid" : "1.3.6.1.3.88.1.2.5.1.13",
2271
+ "status" : "current",
2272
+ "syntax" : {
2273
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2274
+ },
2275
+ "access" : "readonly",
2276
+ "description" :
2277
+ """This counter counts the number of in packets received
2278
+ that relate to this policy entry from IP.""",
2279
+ }, # column
2280
+ "slapmPolicyRuleStatsOutPackets" : {
2281
+ "nodetype" : "column",
2282
+ "moduleName" : "SLAPM-MIB",
2283
+ "oid" : "1.3.6.1.3.88.1.2.5.1.14",
2284
+ "status" : "current",
2285
+ "syntax" : {
2286
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2287
+ },
2288
+ "access" : "readonly",
2289
+ "description" :
2290
+ """This counter counts the number of out packets sent
2291
+ by IP that relate to this policy entry.""",
2292
+ }, # column
2293
+ "slapmPolicyRuleStatsInProOctets" : {
2294
+ "nodetype" : "column",
2295
+ "moduleName" : "SLAPM-MIB",
2296
+ "oid" : "1.3.6.1.3.88.1.2.5.1.15",
2297
+ "status" : "current",
2298
+ "syntax" : {
2299
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2300
+ },
2301
+ "access" : "readonly",
2302
+ "description" :
2303
+ """This counter counts the number of in octets that are
2304
+ determined to be within profile.""",
2305
+ }, # column
2306
+ "slapmPolicyRuleStatsOutProOctets" : {
2307
+ "nodetype" : "column",
2308
+ "moduleName" : "SLAPM-MIB",
2309
+ "oid" : "1.3.6.1.3.88.1.2.5.1.16",
2310
+ "status" : "current",
2311
+ "syntax" : {
2312
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2313
+ },
2314
+ "access" : "readonly",
2315
+ "description" :
2316
+ """This counter counts the number of out octets that are
2317
+ determined to be within profile.""",
2318
+ }, # column
2319
+ "slapmPolicyRuleStatsMinRate" : {
2320
+ "nodetype" : "column",
2321
+ "moduleName" : "SLAPM-MIB",
2322
+ "oid" : "1.3.6.1.3.88.1.2.5.1.17",
2323
+ "status" : "current",
2324
+ "syntax" : {
2325
+ "type" : { "module" :"", "name" : "Unsigned32"},
2326
+ },
2327
+ "access" : "readonly",
2328
+ "units" : "Kilobits per second",
2329
+ "description" :
2330
+ """The minimum transfer rate defined for this entry.""",
2331
+ }, # column
2332
+ "slapmPolicyRuleStatsMaxRate" : {
2333
+ "nodetype" : "column",
2334
+ "moduleName" : "SLAPM-MIB",
2335
+ "oid" : "1.3.6.1.3.88.1.2.5.1.18",
2336
+ "status" : "current",
2337
+ "syntax" : {
2338
+ "type" : { "module" :"", "name" : "Unsigned32"},
2339
+ },
2340
+ "access" : "readonly",
2341
+ "units" : "Kilobits per second",
2342
+ "description" :
2343
+ """The maximum transfer rate defined for this entry.""",
2344
+ }, # column
2345
+ "slapmPolicyRuleStatsMaxDelay" : {
2346
+ "nodetype" : "column",
2347
+ "moduleName" : "SLAPM-MIB",
2348
+ "oid" : "1.3.6.1.3.88.1.2.5.1.19",
2349
+ "status" : "current",
2350
+ "syntax" : {
2351
+ "type" : { "module" :"", "name" : "Unsigned32"},
2352
+ },
2353
+ "access" : "readonly",
2354
+ "units" : "milliseconds",
2355
+ "description" :
2356
+ """The maximum delay defined for this entry.""",
2357
+ }, # column
2358
+ "slapmPolicyRuleStatsTotalRsvpFlows" : {
2359
+ "nodetype" : "column",
2360
+ "moduleName" : "SLAPM-MIB",
2361
+ "oid" : "1.3.6.1.3.88.1.2.5.1.20",
2362
+ "status" : "current",
2363
+ "syntax" : {
2364
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2365
+ },
2366
+ "access" : "readonly",
2367
+ "description" :
2368
+ """Total number of RSVP flows that have be activated.""",
2369
+ }, # column
2370
+ "slapmPolicyRuleStatsActRsvpFlows" : {
2371
+ "nodetype" : "column",
2372
+ "moduleName" : "SLAPM-MIB",
2373
+ "oid" : "1.3.6.1.3.88.1.2.5.1.21",
2374
+ "status" : "current",
2375
+ "syntax" : {
2376
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
2377
+ },
2378
+ "access" : "readonly",
2379
+ "description" :
2380
+ """Current number of active RSVP flows.""",
2381
+ }, # column
2382
+ "slapmPRMonTable" : {
2383
+ "nodetype" : "table",
2384
+ "moduleName" : "SLAPM-MIB",
2385
+ "oid" : "1.3.6.1.3.88.1.2.6",
2386
+ "status" : "current",
2387
+ "description" :
2388
+ """Provides a method of monitoring policies and their
2389
+ effect at a system.""",
2390
+ }, # table
2391
+ "slapmPRMonEntry" : {
2392
+ "nodetype" : "row",
2393
+ "moduleName" : "SLAPM-MIB",
2394
+ "oid" : "1.3.6.1.3.88.1.2.6.1",
2395
+ "create" : "true",
2396
+ "status" : "current",
2397
+ "linkage" : [
2398
+ "slapmPRMonOwnerIndex",
2399
+ "slapmPRMonSystemAddress",
2400
+ "slapmPRMonIndex",
2401
+ ],
2402
+ "description" :
2403
+ """Defines an entry in the slapmPRMonTable. This
2404
+ table defines which policies should be monitored on a
2405
+ per policy rule basis.
2406
+
2407
+ An attempt to set any read-create object defined within an
2408
+ slapmPRMonEntry while the value of slapmPRMonRowStatus is
2409
+ active(1) will result in an inconsistentValue error.""",
2410
+ }, # row
2411
+ "slapmPRMonOwnerIndex" : {
2412
+ "nodetype" : "column",
2413
+ "moduleName" : "SLAPM-MIB",
2414
+ "oid" : "1.3.6.1.3.88.1.2.6.1.1",
2415
+ "status" : "current",
2416
+ "syntax" : {
2417
+ "type" : {
2418
+ "basetype" : "OctetString",
2419
+ "parent module" : {
2420
+ "name" : "SNMP-FRAMEWORK-MIB",
2421
+ "type" : "SnmpAdminString",
2422
+ },
2423
+ "ranges" : [
2424
+ {
2425
+ "min" : "0",
2426
+ "max" : "16"
2427
+ },
2428
+ ],
2429
+ "range" : {
2430
+ "min" : "0",
2431
+ "max" : "16"
2432
+ },
2433
+ },
2434
+ },
2435
+ "access" : "noaccess",
2436
+ "description" :
2437
+ """To facilitate the provisioning of access control by a
2438
+ security administrator using the View-Based Access
2439
+ Control Model (RFC 2575, VACM) for tables in which
2440
+ multiple users may need to independently create or modify
2441
+ entries, the initial index is used as an 'owner index'.
2442
+ Such an initial index has a syntax of SnmpAdminString,
2443
+ and can thus be trivially mapped to a securityName or
2444
+ groupName as defined in VACM, in accordance with a
2445
+ security policy.
2446
+
2447
+ All entries in that table belonging to a particular user
2448
+ will have the same value for this initial index. For a
2449
+ given user's entries in a particular table, the object
2450
+ identifiers for the information in these entries will
2451
+ have the same subidentifiers (except for the 'column'
2452
+ subidentifier) up to the end of the encoded owner index.
2453
+ To configure VACM to permit access to this portion of the
2454
+ table, one would create vacmViewTreeFamilyTable entries
2455
+ with the value of vacmViewTreeFamilySubtree including the
2456
+ owner index portion, and vacmViewTreeFamilyMask
2457
+ 'wildcarding' the column subidentifier. More elaborate
2458
+ configurations are possible.""",
2459
+ }, # column
2460
+ "slapmPRMonSystemAddress" : {
2461
+ "nodetype" : "column",
2462
+ "moduleName" : "SLAPM-MIB",
2463
+ "oid" : "1.3.6.1.3.88.1.2.6.1.2",
2464
+ "status" : "current",
2465
+ "syntax" : {
2466
+ "type" : {
2467
+ "basetype" : "OctetString",
2468
+ "ranges" : [
2469
+ {
2470
+ "min" : "0",
2471
+ "max" : "0"
2472
+ },
2473
+ {
2474
+ "min" : "4",
2475
+ "max" : "4"
2476
+ },
2477
+ {
2478
+ "min" : "16",
2479
+ "max" : "16"
2480
+ },
2481
+ ],
2482
+ "range" : {
2483
+ "min" : "0",
2484
+ "max" : "16"
2485
+ },
2486
+ },
2487
+ },
2488
+ "access" : "noaccess",
2489
+ "description" :
2490
+ """Address of a system that an Policy definition relates to.
2491
+ A zero length octet string can be used to indicate that
2492
+ only a single system is being represented.
2493
+ Otherwise, the length of the octet string should be
2494
+ 4 for an ipv4 address and 16 for an ipv6 address.""",
2495
+ }, # column
2496
+ "slapmPRMonIndex" : {
2497
+ "nodetype" : "column",
2498
+ "moduleName" : "SLAPM-MIB",
2499
+ "oid" : "1.3.6.1.3.88.1.2.6.1.3",
2500
+ "status" : "current",
2501
+ "syntax" : {
2502
+ "type" : { "module" :"", "name" : "Unsigned32"},
2503
+ },
2504
+ "access" : "noaccess",
2505
+ "description" :
2506
+ """An slapmPolicyNameTable index, slapmPolicyNameIndex,
2507
+ that points to the unique name associated with a
2508
+ policy rule definition.""",
2509
+ }, # column
2510
+ "slapmPRMonControl" : {
2511
+ "nodetype" : "column",
2512
+ "moduleName" : "SLAPM-MIB",
2513
+ "oid" : "1.3.6.1.3.88.1.2.6.1.4",
2514
+ "status" : "current",
2515
+ "syntax" : {
2516
+ "type" : {
2517
+ "basetype" : "Bits",
2518
+ "monitorMinRate" : {
2519
+ "nodetype" : "namednumber",
2520
+ "number" : "0"
2521
+ },
2522
+ "monitorMaxRate" : {
2523
+ "nodetype" : "namednumber",
2524
+ "number" : "1"
2525
+ },
2526
+ "monitorMaxDelay" : {
2527
+ "nodetype" : "namednumber",
2528
+ "number" : "2"
2529
+ },
2530
+ "enableAggregateTraps" : {
2531
+ "nodetype" : "namednumber",
2532
+ "number" : "3"
2533
+ },
2534
+ "enableSubcomponentTraps" : {
2535
+ "nodetype" : "namednumber",
2536
+ "number" : "4"
2537
+ },
2538
+ "monitorSubcomponents" : {
2539
+ "nodetype" : "namednumber",
2540
+ "number" : "5"
2541
+ },
2542
+ },
2543
+ },
2544
+ "access" : "readwrite",
2545
+ "default" : "(monitorMinRate, monitorMaxRate, monitorMaxDelay)",
2546
+ "description" :
2547
+ """The value of this object determines the type and level
2548
+ of monitoring that is applied to a policy rule. The
2549
+ value of this object can't be changed once the table
2550
+ entry that it is a part of is activated via a
2551
+ slapmPRMonRowStatus transition to active state.
2552
+
2553
+ monitorMinRate(0) - Monitor minimum transfer rate.
2554
+ monitorMaxRate(1) - Monitor maximum transfer rate.
2555
+ monitorMaxDelay(2) - Monitor maximum delay.
2556
+ enableAggregateTraps(3) - The enableAggregateTraps(3)
2557
+ BITS setting enables notification generation
2558
+ when monitoring a policy rule as an
2559
+ aggregate using the values in the corresponding
2560
+ slapmPRMonStatsEntry. By default this function
2561
+ is not enabled.
2562
+ enableSubcomponentTraps(4) - This BITS setting enables
2563
+ notification generation when monitoring all
2564
+ subcomponents that are mapped to an corresponding
2565
+ slapmPRMonStatsEntry. By default this
2566
+ function is not enabled.
2567
+ monitorSubcomponents(5) - This BITS setting enables
2568
+ monitoring of each subcomponent (typically a
2569
+ TCP connection or UDP listener) individually.""",
2570
+ }, # column
2571
+ "slapmPRMonStatus" : {
2572
+ "nodetype" : "column",
2573
+ "moduleName" : "SLAPM-MIB",
2574
+ "oid" : "1.3.6.1.3.88.1.2.6.1.5",
2575
+ "status" : "current",
2576
+ "syntax" : {
2577
+ "type" : { "module" :"SLAPM-MIB", "name" : "SlapmStatus"},
2578
+ },
2579
+ "access" : "readonly",
2580
+ "description" :
2581
+ """The value of this object indicates when a monitored
2582
+ value has not meet a threshold or isn't meeting the
2583
+ defined service level. The SlapmStatus TEXTUAL-CONVENTION
2584
+ defines two levels of not meeting a threshold. The first
2585
+ set:
2586
+ slaMinInRateNotAchieved(0),
2587
+ slaMaxInRateExceeded(1),
2588
+ slaMaxDelayExceeded(2),
2589
+ slaMinOutRateNotAchieved(3),
2590
+ slaMaxOutRateExceeded(4)
2591
+
2592
+ are used to indicate when the SLA as an aggregate is
2593
+ not meeting a threshold while the second set:
2594
+
2595
+ monitorMinInRateNotAchieved(5),
2596
+ monitorMaxInRateExceeded(6),
2597
+ monitorMaxDelayExceeded(7),
2598
+ monitorMinOutRateNotAchieved(8),
2599
+ monitorMaxOutRateExceeded(9)
2600
+
2601
+ indicate that at least one subcomponent is not meeting
2602
+ a threshold.""",
2603
+ }, # column
2604
+ "slapmPRMonInterval" : {
2605
+ "nodetype" : "column",
2606
+ "moduleName" : "SLAPM-MIB",
2607
+ "oid" : "1.3.6.1.3.88.1.2.6.1.6",
2608
+ "status" : "current",
2609
+ "syntax" : {
2610
+ "type" : {
2611
+ "basetype" : "Unsigned32",
2612
+ "ranges" : [
2613
+ {
2614
+ "min" : "15",
2615
+ "max" : "86400"
2616
+ },
2617
+ ],
2618
+ "range" : {
2619
+ "min" : "15",
2620
+ "max" : "86400"
2621
+ },
2622
+ },
2623
+ },
2624
+ "access" : "readwrite",
2625
+ "default" : "20",
2626
+ "units" : "seconds",
2627
+ "description" :
2628
+ """The number of seconds that defines the sample period.""",
2629
+ }, # column
2630
+ "slapmPRMonIntTime" : {
2631
+ "nodetype" : "column",
2632
+ "moduleName" : "SLAPM-MIB",
2633
+ "oid" : "1.3.6.1.3.88.1.2.6.1.7",
2634
+ "status" : "current",
2635
+ "syntax" : {
2636
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
2637
+ },
2638
+ "access" : "readonly",
2639
+ "default" : "0x0000000000000000",
2640
+ "description" :
2641
+ """The timestamp for when the last interval ended.""",
2642
+ }, # column
2643
+ "slapmPRMonCurrentInRate" : {
2644
+ "nodetype" : "column",
2645
+ "moduleName" : "SLAPM-MIB",
2646
+ "oid" : "1.3.6.1.3.88.1.2.6.1.8",
2647
+ "status" : "current",
2648
+ "syntax" : {
2649
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
2650
+ },
2651
+ "access" : "readonly",
2652
+ "units" : "kilobits per second",
2653
+ "description" :
2654
+ """Using the value of the corresponding
2655
+ slapmPRMonInterval, slapmPolicyRuleStatsInOctets
2656
+ is sampled and then divided by slapmPRMonInterval
2657
+ to determine the current in transfer rate.""",
2658
+ }, # column
2659
+ "slapmPRMonCurrentOutRate" : {
2660
+ "nodetype" : "column",
2661
+ "moduleName" : "SLAPM-MIB",
2662
+ "oid" : "1.3.6.1.3.88.1.2.6.1.9",
2663
+ "status" : "current",
2664
+ "syntax" : {
2665
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
2666
+ },
2667
+ "access" : "readonly",
2668
+ "units" : "kilobits per second",
2669
+ "description" :
2670
+ """Using the value of the corresponding
2671
+ slapmPolicyMonInterval, slapmPolicyRuleStatsOutOctets
2672
+ is sampled and then divided by slapmPRMonInterval
2673
+ to determine the current out transfer rate.""",
2674
+ }, # column
2675
+ "slapmPRMonMinRateLow" : {
2676
+ "nodetype" : "column",
2677
+ "moduleName" : "SLAPM-MIB",
2678
+ "oid" : "1.3.6.1.3.88.1.2.6.1.10",
2679
+ "status" : "current",
2680
+ "syntax" : {
2681
+ "type" : { "module" :"", "name" : "Unsigned32"},
2682
+ },
2683
+ "access" : "readwrite",
2684
+ "units" : "kilobits per second",
2685
+ "description" :
2686
+ """The threshold for generating a
2687
+ slapmPolicyRuleMonNotOkay notification, signalling
2688
+ that a monitored minimum transfer rate has not been meet.
2689
+ A slapmPolicyRuleMonNotOkay notification is not
2690
+ generated again for an slapmPRMonEntry until
2691
+ the minimum transfer rate
2692
+ exceeds slapmPRMonMinRateHigh (a
2693
+ slapmPolicyRuleMonOkay notification is then transmitted)
2694
+ and then fails below slapmPRMonMinRateLow. This
2695
+ behavior reduces the slapmPolicyRuleMonNotOkay
2696
+ notifications that are transmitted.
2697
+
2698
+ A value of zero for this object is returned when the
2699
+ slapmPRMonControl monitorMinRate(0) is not
2700
+ enabled. When enabled the default value for this object
2701
+ is the min rate value specified in the associated
2702
+ action definition minus 10%. If the action definition
2703
+ doesn't have a min rate defined then there is no
2704
+ default for this object and a value MUST be specified
2705
+ prior to activating this entry when monitorMinRate(0)
2706
+ is selected.
2707
+
2708
+ Note: The corresponding slapmPRMonControl
2709
+ BITS setting, enableAggregateTraps(3), MUST be selected in
2710
+ order for any notification relating to this entry to
2711
+ potentially be generated.""",
2712
+ }, # column
2713
+ "slapmPRMonMinRateHigh" : {
2714
+ "nodetype" : "column",
2715
+ "moduleName" : "SLAPM-MIB",
2716
+ "oid" : "1.3.6.1.3.88.1.2.6.1.11",
2717
+ "status" : "current",
2718
+ "syntax" : {
2719
+ "type" : { "module" :"", "name" : "Unsigned32"},
2720
+ },
2721
+ "access" : "readwrite",
2722
+ "units" : "kilobits per second",
2723
+ "description" :
2724
+ """The threshold for generating a slapmPolicyRuleMonOkay
2725
+ notification, signalling that a monitored minimum
2726
+ transfer rate has increased to an acceptable level.
2727
+
2728
+ A value of zero for this object is returned when the
2729
+ slapmPRMonControl monitorMinRate(0) is not
2730
+ enabled. When enabled the default value for this object
2731
+ is the min rate value specified in the associated
2732
+ action definition plus 10%. If the action definition
2733
+ doesn't have a min rate defined then there is no
2734
+ default for this object and a value MUST be specified
2735
+ prior to activating this entry when monitorMinRate(0)
2736
+ is selected.
2737
+
2738
+ Note: The corresponding slapmPRMonControl
2739
+ BITS setting, enableAggregateTraps(3), MUST be selected
2740
+ in order for any notification relating to this entry to
2741
+ potentially be generated.""",
2742
+ }, # column
2743
+ "slapmPRMonMaxRateHigh" : {
2744
+ "nodetype" : "column",
2745
+ "moduleName" : "SLAPM-MIB",
2746
+ "oid" : "1.3.6.1.3.88.1.2.6.1.12",
2747
+ "status" : "current",
2748
+ "syntax" : {
2749
+ "type" : { "module" :"", "name" : "Unsigned32"},
2750
+ },
2751
+ "access" : "readwrite",
2752
+ "units" : "kilobits per second",
2753
+ "description" :
2754
+ """The threshold for generating a
2755
+ slapmPolicyRuleMonNotOkay notification, signalling
2756
+ that a monitored maximum transfer rate has been exceeded.
2757
+
2758
+ A slapmPolicyRuleNotOkay notification is not
2759
+ generated again for an slapmPRMonEntry until the
2760
+ maximum transfer rate fails below
2761
+ slapmPRMonMaxRateLow (a slapmPolicyRuleMonOkay
2762
+ notification is then transmitted) and then raises above
2763
+ slapmPRMonMaxRateHigh. This behavior reduces the
2764
+ slapmPolicyRuleMonNotOkay notifications that are
2765
+ transmitted.
2766
+
2767
+ A value of zero for this object is returned when the
2768
+ slapmPRMonControl monitorMaxRate(1) is not
2769
+ enabled. When enabled the default value for this object
2770
+ is the max rate value specified in the associated
2771
+ action definition plus 10%. If the action definition
2772
+ doesn't have a max rate defined then there is no
2773
+ default for this object and a value MUST be specified
2774
+ prior to activating this entry when monitorMaxRate(1)
2775
+ is selected.
2776
+
2777
+ Note: The corresponding slapmPRMonControl
2778
+ BITS setting, enableAggregateTraps(3), MUST be selected in
2779
+ order for any notification relating to this entry to
2780
+ potentially be generated.""",
2781
+ }, # column
2782
+ "slapmPRMonMaxRateLow" : {
2783
+ "nodetype" : "column",
2784
+ "moduleName" : "SLAPM-MIB",
2785
+ "oid" : "1.3.6.1.3.88.1.2.6.1.13",
2786
+ "status" : "current",
2787
+ "syntax" : {
2788
+ "type" : { "module" :"", "name" : "Unsigned32"},
2789
+ },
2790
+ "access" : "readwrite",
2791
+ "units" : "kilobits per second",
2792
+ "description" :
2793
+ """The threshold for generating a slapmPolicyRuleMonOkay
2794
+ notification, signalling that a monitored maximum
2795
+ transfer rate has fallen to an acceptable level.
2796
+ A value of zero for this object is returned when the
2797
+ slapmPRMonControl monitorMaxRate(1) is not
2798
+ enabled. When enabled the default value for this object
2799
+ is the max rate value specified in the associated
2800
+ action definition minus 10%. If the action definition
2801
+ doesn't have a max rate defined then there is no
2802
+ default for this object and a value MUST be specified
2803
+ prior to activating this entry when monitorMaxRate(1)
2804
+ is selected.
2805
+
2806
+ Note: The corresponding slapmPRMonControl
2807
+ BITS setting, enableAggregateTraps(3), MUST be selected in
2808
+ order for any notification relating to this entry to
2809
+ potentially be generated.""",
2810
+ }, # column
2811
+ "slapmPRMonMaxDelayHigh" : {
2812
+ "nodetype" : "column",
2813
+ "moduleName" : "SLAPM-MIB",
2814
+ "oid" : "1.3.6.1.3.88.1.2.6.1.14",
2815
+ "status" : "current",
2816
+ "syntax" : {
2817
+ "type" : { "module" :"", "name" : "Unsigned32"},
2818
+ },
2819
+ "access" : "readwrite",
2820
+ "units" : "milliseconds",
2821
+ "description" :
2822
+ """The threshold for generating a
2823
+ slapmPolicyRuleMonNotOkay notification, signalling
2824
+ that a monitored maximum delay rate has been exceeded.
2825
+
2826
+ A slapmPolicyRuleMonNotOkay notification is not
2827
+ generated again for an slapmPRMonEntry until
2828
+ the maximum delay rate falls below
2829
+ slapmPRMonMaxDelayLow (a slapmPolicyRuleMonOkay
2830
+ notification is then transmitted) and raises above
2831
+ slapmPRMonMaxDelayHigh. This behavior reduces
2832
+ the slapmPolicyRuleMonNotOkay notifications that are
2833
+ transmitted.
2834
+
2835
+ A value of zero for this object is returned when the
2836
+ slapmPRMonControl monitorMaxDelay(4) is not
2837
+ enabled. When enabled the default value for this object
2838
+ is the max delay value specified in the associated
2839
+ action definition plus 10%. If the action definition
2840
+ doesn't have a max delay defined then there is no
2841
+ default for this object and a value MUST be specified
2842
+ prior to activating this entry when monitorMaxDelay(4)
2843
+ is selected.
2844
+
2845
+ Note: The corresponding slapmPRMonControl
2846
+ BITS setting, enableAggregateTraps(3), MUST be selected
2847
+ in order for any notification relating to this entry to
2848
+ potentially be generated.""",
2849
+ }, # column
2850
+ "slapmPRMonMaxDelayLow" : {
2851
+ "nodetype" : "column",
2852
+ "moduleName" : "SLAPM-MIB",
2853
+ "oid" : "1.3.6.1.3.88.1.2.6.1.15",
2854
+ "status" : "current",
2855
+ "syntax" : {
2856
+ "type" : { "module" :"", "name" : "Unsigned32"},
2857
+ },
2858
+ "access" : "readwrite",
2859
+ "units" : "milliseconds",
2860
+ "description" :
2861
+ """The threshold for generating a slapmPolicyRuleMonOkay
2862
+ notification, signalling that a monitored maximum delay
2863
+ rate has fallen to an acceptable level.
2864
+
2865
+ A value of zero for this object is returned when the
2866
+ slapmPRMonControl monitorMaxDelay(4) is not
2867
+ enabled. When enabled the default value for this object
2868
+ is the max delay value specified in the associated
2869
+ action definition minus 10%. If the action definition
2870
+ doesn't have a max delay defined then there is no
2871
+ default for this object and a value MUST be specified
2872
+ prior to activating this entry when monitorMaxDelay(4)
2873
+ is selected.
2874
+
2875
+ Note: The corresponding slapmPRMonControl
2876
+ BITS setting, enableAggregateTraps(3), MUST be selected
2877
+ in order for any notification relating to this entry to
2878
+ potentially be generated.""",
2879
+ }, # column
2880
+ "slapmPRMonMinInRateNotAchieves" : {
2881
+ "nodetype" : "column",
2882
+ "moduleName" : "SLAPM-MIB",
2883
+ "oid" : "1.3.6.1.3.88.1.2.6.1.16",
2884
+ "status" : "current",
2885
+ "syntax" : {
2886
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2887
+ },
2888
+ "access" : "readonly",
2889
+ "description" :
2890
+ """The number of times that a minimum transfer in rate
2891
+ was not achieved.""",
2892
+ }, # column
2893
+ "slapmPRMonMaxInRateExceeds" : {
2894
+ "nodetype" : "column",
2895
+ "moduleName" : "SLAPM-MIB",
2896
+ "oid" : "1.3.6.1.3.88.1.2.6.1.17",
2897
+ "status" : "current",
2898
+ "syntax" : {
2899
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2900
+ },
2901
+ "access" : "readonly",
2902
+ "description" :
2903
+ """The number of times that a maximum transfer in rate
2904
+ was exceeded.""",
2905
+ }, # column
2906
+ "slapmPRMonMaxDelayExceeds" : {
2907
+ "nodetype" : "column",
2908
+ "moduleName" : "SLAPM-MIB",
2909
+ "oid" : "1.3.6.1.3.88.1.2.6.1.18",
2910
+ "status" : "current",
2911
+ "syntax" : {
2912
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2913
+ },
2914
+ "access" : "readonly",
2915
+ "description" :
2916
+ """The number of times that a maximum delay in rate
2917
+ was exceeded.""",
2918
+ }, # column
2919
+ "slapmPRMonMinOutRateNotAchieves" : {
2920
+ "nodetype" : "column",
2921
+ "moduleName" : "SLAPM-MIB",
2922
+ "oid" : "1.3.6.1.3.88.1.2.6.1.19",
2923
+ "status" : "current",
2924
+ "syntax" : {
2925
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2926
+ },
2927
+ "access" : "readonly",
2928
+ "description" :
2929
+ """The number of times that a minimum transfer out rate
2930
+ was not achieved.""",
2931
+ }, # column
2932
+ "slapmPRMonMaxOutRateExceeds" : {
2933
+ "nodetype" : "column",
2934
+ "moduleName" : "SLAPM-MIB",
2935
+ "oid" : "1.3.6.1.3.88.1.2.6.1.20",
2936
+ "status" : "current",
2937
+ "syntax" : {
2938
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2939
+ },
2940
+ "access" : "readonly",
2941
+ "description" :
2942
+ """The number of times that a maximum transfer out rate
2943
+ was exceeded.""",
2944
+ }, # column
2945
+ "slapmPRMonCurrentDelayRate" : {
2946
+ "nodetype" : "column",
2947
+ "moduleName" : "SLAPM-MIB",
2948
+ "oid" : "1.3.6.1.3.88.1.2.6.1.21",
2949
+ "status" : "current",
2950
+ "syntax" : {
2951
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
2952
+ },
2953
+ "access" : "readonly",
2954
+ "units" : "milliseconds",
2955
+ "description" :
2956
+ """The current delay rate for this entry. This is
2957
+ calculated by taking the average of the TCP
2958
+ round trip times for all associating
2959
+ slapmSubcomponentTable entries within a interval.""",
2960
+ }, # column
2961
+ "slapmPRMonRowStatus" : {
2962
+ "nodetype" : "column",
2963
+ "moduleName" : "SLAPM-MIB",
2964
+ "oid" : "1.3.6.1.3.88.1.2.6.1.22",
2965
+ "status" : "current",
2966
+ "syntax" : {
2967
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
2968
+ },
2969
+ "access" : "readwrite",
2970
+ "description" :
2971
+ """This object allows entries to be created and deleted
2972
+ in the slapmPRMonTable. An entry in this table
2973
+ is deleted by setting this object to destroy(6).
2974
+
2975
+ Removal of an corresponding (same policy index)
2976
+ slapmPolicyRuleStatsEntry has the side effect of the
2977
+ automatic deletion an entry in this table.
2978
+
2979
+ Note that an attempt to set any read-create object
2980
+ defined within an slapmPRMonEntry while the value
2981
+ of slapmPRMonRowStatus is active(1) will result in
2982
+ an inconsistentValue error.""",
2983
+ }, # column
2984
+ "slapmConformance" : {
2985
+ "nodetype" : "node",
2986
+ "moduleName" : "SLAPM-MIB",
2987
+ "oid" : "1.3.6.1.3.88.2",
2988
+ }, # node
2989
+ "slapmCompliances" : {
2990
+ "nodetype" : "node",
2991
+ "moduleName" : "SLAPM-MIB",
2992
+ "oid" : "1.3.6.1.3.88.2.1",
2993
+ }, # node
2994
+ "slapmGroups" : {
2995
+ "nodetype" : "node",
2996
+ "moduleName" : "SLAPM-MIB",
2997
+ "oid" : "1.3.6.1.3.88.2.2",
2998
+ }, # node
2999
+ }, # nodes
3000
+
3001
+ "notifications" : {
3002
+ "slapmMonitoredEventNotAchieved" : {
3003
+ "nodetype" : "notification",
3004
+ "moduleName" : "SLAPM-MIB",
3005
+ "oid" : "1.3.6.1.3.88.0.1",
3006
+ "status" : "deprecated",
3007
+ "objects" : {
3008
+ "slapmPolicyMonitorIntTime" : {
3009
+ "nodetype" : "object",
3010
+ "module" : "SLAPM-MIB"
3011
+ },
3012
+ "slapmPolicyMonitorControl" : {
3013
+ "nodetype" : "object",
3014
+ "module" : "SLAPM-MIB"
3015
+ },
3016
+ "slapmPolicyMonitorStatus" : {
3017
+ "nodetype" : "object",
3018
+ "module" : "SLAPM-MIB"
3019
+ },
3020
+ "slapmPolicyMonitorStatus" : {
3021
+ "nodetype" : "object",
3022
+ "module" : "SLAPM-MIB"
3023
+ },
3024
+ "slapmPolicyMonitorCurrentInRate" : {
3025
+ "nodetype" : "object",
3026
+ "module" : "SLAPM-MIB"
3027
+ },
3028
+ "slapmPolicyMonitorCurrentOutRate" : {
3029
+ "nodetype" : "object",
3030
+ "module" : "SLAPM-MIB"
3031
+ },
3032
+ "slapmPolicyMonitorCurrentDelayRate" : {
3033
+ "nodetype" : "object",
3034
+ "module" : "SLAPM-MIB"
3035
+ },
3036
+ },
3037
+ "description" :
3038
+ """This notification is generated when an monitored event
3039
+ is not achieved with respect to threshold. This
3040
+ applies only towards monitoring a policy traffic
3041
+ profile as an aggregate via an associating
3042
+ slapmPolicyStatsEntry. The value
3043
+ of slapmPolicyMonitorControl can be examined to
3044
+ determine what is being monitored. The first
3045
+ slapmPolicyMonitorStatus value supplies the current
3046
+ monitor status while the 2nd value supplies the
3047
+ previous status.
3048
+
3049
+ Note: The corresponding slapmPolicyMonitorControl
3050
+ BITS setting, enableAggregateTraps(3), MUST be
3051
+ selected in order for this notification to
3052
+ potentially be generated.""",
3053
+ }, # notification
3054
+ "slapmMonitoredEventOkay" : {
3055
+ "nodetype" : "notification",
3056
+ "moduleName" : "SLAPM-MIB",
3057
+ "oid" : "1.3.6.1.3.88.0.2",
3058
+ "status" : "deprecated",
3059
+ "objects" : {
3060
+ "slapmPolicyMonitorIntTime" : {
3061
+ "nodetype" : "object",
3062
+ "module" : "SLAPM-MIB"
3063
+ },
3064
+ "slapmPolicyMonitorControl" : {
3065
+ "nodetype" : "object",
3066
+ "module" : "SLAPM-MIB"
3067
+ },
3068
+ "slapmPolicyMonitorStatus" : {
3069
+ "nodetype" : "object",
3070
+ "module" : "SLAPM-MIB"
3071
+ },
3072
+ "slapmPolicyMonitorStatus" : {
3073
+ "nodetype" : "object",
3074
+ "module" : "SLAPM-MIB"
3075
+ },
3076
+ "slapmPolicyMonitorCurrentInRate" : {
3077
+ "nodetype" : "object",
3078
+ "module" : "SLAPM-MIB"
3079
+ },
3080
+ "slapmPolicyMonitorCurrentOutRate" : {
3081
+ "nodetype" : "object",
3082
+ "module" : "SLAPM-MIB"
3083
+ },
3084
+ "slapmPolicyMonitorCurrentDelayRate" : {
3085
+ "nodetype" : "object",
3086
+ "module" : "SLAPM-MIB"
3087
+ },
3088
+ },
3089
+ "description" :
3090
+ """This notification is generated when a monitored
3091
+ event has improved to an acceptable level. This
3092
+ applies only towards monitoring a policy traffic
3093
+ profile as an aggregate via an associating
3094
+ slapmPolicyStatsEntry. The value
3095
+ of slapmPolicyMonitorControl can be examined to
3096
+ determine what is being monitored. The first
3097
+ slapmPolicyMonitorStatus value supplies the current
3098
+ monitor status while the 2nd value supplies the
3099
+ previous status.
3100
+
3101
+ Note: The corresponding slapmPolicyMonitorControl
3102
+ BITS setting, enableAggregateTraps(3), MUST be
3103
+ selected in order for this notification to
3104
+ potentially be generated.""",
3105
+ }, # notification
3106
+ "slapmPolicyProfileDeleted" : {
3107
+ "nodetype" : "notification",
3108
+ "moduleName" : "SLAPM-MIB",
3109
+ "oid" : "1.3.6.1.3.88.0.3",
3110
+ "status" : "deprecated",
3111
+ "objects" : {
3112
+ "slapmPolicyStatsActiveConns" : {
3113
+ "nodetype" : "object",
3114
+ "module" : "SLAPM-MIB"
3115
+ },
3116
+ "slapmPolicyStatsTotalConns" : {
3117
+ "nodetype" : "object",
3118
+ "module" : "SLAPM-MIB"
3119
+ },
3120
+ "slapmPolicyStatsFirstActivated" : {
3121
+ "nodetype" : "object",
3122
+ "module" : "SLAPM-MIB"
3123
+ },
3124
+ "slapmPolicyStatsLastMapping" : {
3125
+ "nodetype" : "object",
3126
+ "module" : "SLAPM-MIB"
3127
+ },
3128
+ "slapmPolicyStatsInOctets" : {
3129
+ "nodetype" : "object",
3130
+ "module" : "SLAPM-MIB"
3131
+ },
3132
+ "slapmPolicyStatsOutOctets" : {
3133
+ "nodetype" : "object",
3134
+ "module" : "SLAPM-MIB"
3135
+ },
3136
+ "slapmPolicyStatsConnectionLimit" : {
3137
+ "nodetype" : "object",
3138
+ "module" : "SLAPM-MIB"
3139
+ },
3140
+ "slapmPolicyStatsCountAccepts" : {
3141
+ "nodetype" : "object",
3142
+ "module" : "SLAPM-MIB"
3143
+ },
3144
+ "slapmPolicyStatsCountDenies" : {
3145
+ "nodetype" : "object",
3146
+ "module" : "SLAPM-MIB"
3147
+ },
3148
+ "slapmPolicyStatsInDiscards" : {
3149
+ "nodetype" : "object",
3150
+ "module" : "SLAPM-MIB"
3151
+ },
3152
+ "slapmPolicyStatsOutDiscards" : {
3153
+ "nodetype" : "object",
3154
+ "module" : "SLAPM-MIB"
3155
+ },
3156
+ "slapmPolicyStatsInPackets" : {
3157
+ "nodetype" : "object",
3158
+ "module" : "SLAPM-MIB"
3159
+ },
3160
+ "slapmPolicyStatsOutPackets" : {
3161
+ "nodetype" : "object",
3162
+ "module" : "SLAPM-MIB"
3163
+ },
3164
+ "slapmPolicyStatsInProfileOctets" : {
3165
+ "nodetype" : "object",
3166
+ "module" : "SLAPM-MIB"
3167
+ },
3168
+ "slapmPolicyStatsOutProfileOctets" : {
3169
+ "nodetype" : "object",
3170
+ "module" : "SLAPM-MIB"
3171
+ },
3172
+ "slapmPolicyStatsMinRate" : {
3173
+ "nodetype" : "object",
3174
+ "module" : "SLAPM-MIB"
3175
+ },
3176
+ "slapmPolicyStatsMaxRate" : {
3177
+ "nodetype" : "object",
3178
+ "module" : "SLAPM-MIB"
3179
+ },
3180
+ "slapmPolicyStatsMaxDelay" : {
3181
+ "nodetype" : "object",
3182
+ "module" : "SLAPM-MIB"
3183
+ },
3184
+ },
3185
+ "description" :
3186
+ """A slapmPolicyDeleted notification is sent when a
3187
+ slapmPolicyStatsEntry is deleted if the value of
3188
+ slapmPolicyTrapEnable is enabled(1).""",
3189
+ }, # notification
3190
+ "slapmPolicyMonitorDeleted" : {
3191
+ "nodetype" : "notification",
3192
+ "moduleName" : "SLAPM-MIB",
3193
+ "oid" : "1.3.6.1.3.88.0.4",
3194
+ "status" : "deprecated",
3195
+ "objects" : {
3196
+ "slapmPolicyMonitorStatus" : {
3197
+ "nodetype" : "object",
3198
+ "module" : "SLAPM-MIB"
3199
+ },
3200
+ "slapmPolicyMonitorInterval" : {
3201
+ "nodetype" : "object",
3202
+ "module" : "SLAPM-MIB"
3203
+ },
3204
+ "slapmPolicyMonitorIntTime" : {
3205
+ "nodetype" : "object",
3206
+ "module" : "SLAPM-MIB"
3207
+ },
3208
+ "slapmPolicyMonitorCurrentInRate" : {
3209
+ "nodetype" : "object",
3210
+ "module" : "SLAPM-MIB"
3211
+ },
3212
+ "slapmPolicyMonitorCurrentOutRate" : {
3213
+ "nodetype" : "object",
3214
+ "module" : "SLAPM-MIB"
3215
+ },
3216
+ "slapmPolicyMonitorCurrentDelayRate" : {
3217
+ "nodetype" : "object",
3218
+ "module" : "SLAPM-MIB"
3219
+ },
3220
+ "slapmPolicyMonitorMinRateLow" : {
3221
+ "nodetype" : "object",
3222
+ "module" : "SLAPM-MIB"
3223
+ },
3224
+ "slapmPolicyMonitorMinRateHigh" : {
3225
+ "nodetype" : "object",
3226
+ "module" : "SLAPM-MIB"
3227
+ },
3228
+ "slapmPolicyMonitorMaxRateHigh" : {
3229
+ "nodetype" : "object",
3230
+ "module" : "SLAPM-MIB"
3231
+ },
3232
+ "slapmPolicyMonitorMaxRateLow" : {
3233
+ "nodetype" : "object",
3234
+ "module" : "SLAPM-MIB"
3235
+ },
3236
+ "slapmPolicyMonitorMaxDelayHigh" : {
3237
+ "nodetype" : "object",
3238
+ "module" : "SLAPM-MIB"
3239
+ },
3240
+ "slapmPolicyMonitorMaxDelayLow" : {
3241
+ "nodetype" : "object",
3242
+ "module" : "SLAPM-MIB"
3243
+ },
3244
+ "slapmPolicyMonitorMinInRateNotAchieves" : {
3245
+ "nodetype" : "object",
3246
+ "module" : "SLAPM-MIB"
3247
+ },
3248
+ "slapmPolicyMonitorMaxInRateExceeds" : {
3249
+ "nodetype" : "object",
3250
+ "module" : "SLAPM-MIB"
3251
+ },
3252
+ "slapmPolicyMonitorMaxDelayExceeds" : {
3253
+ "nodetype" : "object",
3254
+ "module" : "SLAPM-MIB"
3255
+ },
3256
+ "slapmPolicyMonitorMinOutRateNotAchieves" : {
3257
+ "nodetype" : "object",
3258
+ "module" : "SLAPM-MIB"
3259
+ },
3260
+ "slapmPolicyMonitorMaxOutRateExceeds" : {
3261
+ "nodetype" : "object",
3262
+ "module" : "SLAPM-MIB"
3263
+ },
3264
+ },
3265
+ "description" :
3266
+ """A slapmPolicyMonitorDeleted notification is sent when a
3267
+ slapmPolicyMonitorEntry is deleted if the value of
3268
+ slapmPolicyTrapEnable is enabled(1).""",
3269
+ }, # notification
3270
+ "slapmSubcomponentMonitoredEventNotAchieved" : {
3271
+ "nodetype" : "notification",
3272
+ "moduleName" : "SLAPM-MIB",
3273
+ "oid" : "1.3.6.1.3.88.0.5",
3274
+ "status" : "deprecated",
3275
+ "objects" : {
3276
+ "slapmSubcomponentSystemAddress" : {
3277
+ "nodetype" : "object",
3278
+ "module" : "SLAPM-MIB"
3279
+ },
3280
+ "slapmSubcomponentPolicyName" : {
3281
+ "nodetype" : "object",
3282
+ "module" : "SLAPM-MIB"
3283
+ },
3284
+ "slapmSubcomponentTrafficProfileName" : {
3285
+ "nodetype" : "object",
3286
+ "module" : "SLAPM-MIB"
3287
+ },
3288
+ "slapmSubcomponentMonitorStatus" : {
3289
+ "nodetype" : "object",
3290
+ "module" : "SLAPM-MIB"
3291
+ },
3292
+ "slapmSubcomponentMonitorStatus" : {
3293
+ "nodetype" : "object",
3294
+ "module" : "SLAPM-MIB"
3295
+ },
3296
+ "slapmSubcomponentMonitorIntTime" : {
3297
+ "nodetype" : "object",
3298
+ "module" : "SLAPM-MIB"
3299
+ },
3300
+ "slapmSubcomponentMonitorCurrentInRate" : {
3301
+ "nodetype" : "object",
3302
+ "module" : "SLAPM-MIB"
3303
+ },
3304
+ "slapmSubcomponentMonitorCurrentOutRate" : {
3305
+ "nodetype" : "object",
3306
+ "module" : "SLAPM-MIB"
3307
+ },
3308
+ "slapmSubcomponentTcpRoundTripTime" : {
3309
+ "nodetype" : "object",
3310
+ "module" : "SLAPM-MIB"
3311
+ },
3312
+ },
3313
+ "description" :
3314
+ """This notification is generated when a monitored value
3315
+ does not achieved a threshold specification. This
3316
+ applies only towards monitoring the individual components
3317
+ of a policy traffic profile. The value of the
3318
+ corresponding slapmPolicyMonitorControl can be examined
3319
+ to determine what is being monitored. The first
3320
+ slapmSubcomponentMonitorStatus value supplies the current
3321
+ monitor status while the 2nd value supplies the
3322
+ previous status.
3323
+
3324
+ Note: The corresponding slapmPolicyMonitorControl
3325
+ BITS setting, enableSubcomponentTraps(4), MUST be selected
3326
+ in order for this notification to potentially be generated.""",
3327
+ }, # notification
3328
+ "slapmSubcomponentMonitoredEventOkay" : {
3329
+ "nodetype" : "notification",
3330
+ "moduleName" : "SLAPM-MIB",
3331
+ "oid" : "1.3.6.1.3.88.0.6",
3332
+ "status" : "deprecated",
3333
+ "objects" : {
3334
+ "slapmSubcomponentSystemAddress" : {
3335
+ "nodetype" : "object",
3336
+ "module" : "SLAPM-MIB"
3337
+ },
3338
+ "slapmSubcomponentPolicyName" : {
3339
+ "nodetype" : "object",
3340
+ "module" : "SLAPM-MIB"
3341
+ },
3342
+ "slapmSubcomponentTrafficProfileName" : {
3343
+ "nodetype" : "object",
3344
+ "module" : "SLAPM-MIB"
3345
+ },
3346
+ "slapmSubcomponentMonitorStatus" : {
3347
+ "nodetype" : "object",
3348
+ "module" : "SLAPM-MIB"
3349
+ },
3350
+ "slapmSubcomponentMonitorStatus" : {
3351
+ "nodetype" : "object",
3352
+ "module" : "SLAPM-MIB"
3353
+ },
3354
+ "slapmSubcomponentMonitorIntTime" : {
3355
+ "nodetype" : "object",
3356
+ "module" : "SLAPM-MIB"
3357
+ },
3358
+ "slapmSubcomponentMonitorCurrentInRate" : {
3359
+ "nodetype" : "object",
3360
+ "module" : "SLAPM-MIB"
3361
+ },
3362
+ "slapmSubcomponentMonitorCurrentOutRate" : {
3363
+ "nodetype" : "object",
3364
+ "module" : "SLAPM-MIB"
3365
+ },
3366
+ "slapmSubcomponentTcpRoundTripTime" : {
3367
+ "nodetype" : "object",
3368
+ "module" : "SLAPM-MIB"
3369
+ },
3370
+ },
3371
+ "description" :
3372
+ """This notification is generated when a monitored value
3373
+ has reached an acceptable level.
3374
+
3375
+ Note: The corresponding slapmPolicyMonitorControl
3376
+ BITS setting, enableSubcomponentTraps(3), MUST be
3377
+ selected in order for this notification to potentially
3378
+ be generated.""",
3379
+ }, # notification
3380
+ "slapmPolicyRuleMonNotOkay" : {
3381
+ "nodetype" : "notification",
3382
+ "moduleName" : "SLAPM-MIB",
3383
+ "oid" : "1.3.6.1.3.88.0.7",
3384
+ "status" : "current",
3385
+ "objects" : {
3386
+ "slapmPRMonIntTime" : {
3387
+ "nodetype" : "object",
3388
+ "module" : "SLAPM-MIB"
3389
+ },
3390
+ "slapmPRMonControl" : {
3391
+ "nodetype" : "object",
3392
+ "module" : "SLAPM-MIB"
3393
+ },
3394
+ "slapmPRMonStatus" : {
3395
+ "nodetype" : "object",
3396
+ "module" : "SLAPM-MIB"
3397
+ },
3398
+ "slapmPRMonStatus" : {
3399
+ "nodetype" : "object",
3400
+ "module" : "SLAPM-MIB"
3401
+ },
3402
+ "slapmPRMonCurrentInRate" : {
3403
+ "nodetype" : "object",
3404
+ "module" : "SLAPM-MIB"
3405
+ },
3406
+ "slapmPRMonCurrentOutRate" : {
3407
+ "nodetype" : "object",
3408
+ "module" : "SLAPM-MIB"
3409
+ },
3410
+ "slapmPRMonCurrentDelayRate" : {
3411
+ "nodetype" : "object",
3412
+ "module" : "SLAPM-MIB"
3413
+ },
3414
+ },
3415
+ "description" :
3416
+ """This notification is generated when an monitored event
3417
+ is not achieved with respect to a threshold. This
3418
+ applies only towards monitoring a policy rule
3419
+ as an aggregate via an associating
3420
+ slapmPolicyRuleStatsEntry. The value
3421
+ of slapmPRMonControl can be examined to
3422
+ determine what is being monitored. The first
3423
+ slapmPRMonStatus value supplies the current
3424
+ monitor status while the 2nd value supplies the
3425
+ previous status.
3426
+
3427
+ Note: The corresponding slapmPRMonControl
3428
+ BITS setting, enableAggregateTraps(3), MUST be
3429
+ selected in order for this notification to
3430
+ potentially be generated.""",
3431
+ }, # notification
3432
+ "slapmPolicyRuleMonOkay" : {
3433
+ "nodetype" : "notification",
3434
+ "moduleName" : "SLAPM-MIB",
3435
+ "oid" : "1.3.6.1.3.88.0.8",
3436
+ "status" : "current",
3437
+ "objects" : {
3438
+ "slapmPRMonIntTime" : {
3439
+ "nodetype" : "object",
3440
+ "module" : "SLAPM-MIB"
3441
+ },
3442
+ "slapmPRMonControl" : {
3443
+ "nodetype" : "object",
3444
+ "module" : "SLAPM-MIB"
3445
+ },
3446
+ "slapmPRMonStatus" : {
3447
+ "nodetype" : "object",
3448
+ "module" : "SLAPM-MIB"
3449
+ },
3450
+ "slapmPRMonStatus" : {
3451
+ "nodetype" : "object",
3452
+ "module" : "SLAPM-MIB"
3453
+ },
3454
+ "slapmPRMonCurrentInRate" : {
3455
+ "nodetype" : "object",
3456
+ "module" : "SLAPM-MIB"
3457
+ },
3458
+ "slapmPRMonCurrentOutRate" : {
3459
+ "nodetype" : "object",
3460
+ "module" : "SLAPM-MIB"
3461
+ },
3462
+ "slapmPRMonCurrentDelayRate" : {
3463
+ "nodetype" : "object",
3464
+ "module" : "SLAPM-MIB"
3465
+ },
3466
+ },
3467
+ "description" :
3468
+ """This notification is generated when a monitored
3469
+ event has improved to an acceptable level. This
3470
+ applies only towards monitoring a policy rule
3471
+ as an aggregate via an associating
3472
+ slapmPolicyRuleStatsEntry. The value
3473
+ of slapmPRMonControl can be examined to
3474
+ determine what is being monitored. The first
3475
+ slapmPRMonStatus value supplies the current
3476
+ monitor status while the 2nd value supplies the
3477
+ previous status.
3478
+
3479
+ Note: The corresponding slapmPRMonControl
3480
+ BITS setting, enableAggregateTraps(3), MUST be
3481
+ selected in order for this notification to
3482
+ potentially be generated.""",
3483
+ }, # notification
3484
+ "slapmPolicyRuleDeleted" : {
3485
+ "nodetype" : "notification",
3486
+ "moduleName" : "SLAPM-MIB",
3487
+ "oid" : "1.3.6.1.3.88.0.9",
3488
+ "status" : "current",
3489
+ "objects" : {
3490
+ "slapmPolicyRuleStatsActiveConns" : {
3491
+ "nodetype" : "object",
3492
+ "module" : "SLAPM-MIB"
3493
+ },
3494
+ "slapmPolicyRuleStatsTotalConns" : {
3495
+ "nodetype" : "object",
3496
+ "module" : "SLAPM-MIB"
3497
+ },
3498
+ "slapmPolicyRuleStatsLActivated" : {
3499
+ "nodetype" : "object",
3500
+ "module" : "SLAPM-MIB"
3501
+ },
3502
+ "slapmPolicyRuleStatsLastMapping" : {
3503
+ "nodetype" : "object",
3504
+ "module" : "SLAPM-MIB"
3505
+ },
3506
+ "slapmPolicyRuleStatsInOctets" : {
3507
+ "nodetype" : "object",
3508
+ "module" : "SLAPM-MIB"
3509
+ },
3510
+ "slapmPolicyRuleStatsOutOctets" : {
3511
+ "nodetype" : "object",
3512
+ "module" : "SLAPM-MIB"
3513
+ },
3514
+ "slapmPolicyRuleStatsConnLimit" : {
3515
+ "nodetype" : "object",
3516
+ "module" : "SLAPM-MIB"
3517
+ },
3518
+ "slapmPolicyRuleStatsCountAccepts" : {
3519
+ "nodetype" : "object",
3520
+ "module" : "SLAPM-MIB"
3521
+ },
3522
+ "slapmPolicyRuleStatsCountDenies" : {
3523
+ "nodetype" : "object",
3524
+ "module" : "SLAPM-MIB"
3525
+ },
3526
+ "slapmPolicyRuleStatsInDiscards" : {
3527
+ "nodetype" : "object",
3528
+ "module" : "SLAPM-MIB"
3529
+ },
3530
+ "slapmPolicyRuleStatsOutDiscards" : {
3531
+ "nodetype" : "object",
3532
+ "module" : "SLAPM-MIB"
3533
+ },
3534
+ "slapmPolicyRuleStatsInPackets" : {
3535
+ "nodetype" : "object",
3536
+ "module" : "SLAPM-MIB"
3537
+ },
3538
+ "slapmPolicyRuleStatsOutPackets" : {
3539
+ "nodetype" : "object",
3540
+ "module" : "SLAPM-MIB"
3541
+ },
3542
+ "slapmPolicyRuleStatsInProOctets" : {
3543
+ "nodetype" : "object",
3544
+ "module" : "SLAPM-MIB"
3545
+ },
3546
+ "slapmPolicyRuleStatsOutProOctets" : {
3547
+ "nodetype" : "object",
3548
+ "module" : "SLAPM-MIB"
3549
+ },
3550
+ "slapmPolicyRuleStatsMinRate" : {
3551
+ "nodetype" : "object",
3552
+ "module" : "SLAPM-MIB"
3553
+ },
3554
+ "slapmPolicyRuleStatsMaxRate" : {
3555
+ "nodetype" : "object",
3556
+ "module" : "SLAPM-MIB"
3557
+ },
3558
+ "slapmPolicyRuleStatsMaxDelay" : {
3559
+ "nodetype" : "object",
3560
+ "module" : "SLAPM-MIB"
3561
+ },
3562
+ "slapmPolicyRuleStatsTotalRsvpFlows" : {
3563
+ "nodetype" : "object",
3564
+ "module" : "SLAPM-MIB"
3565
+ },
3566
+ "slapmPolicyRuleStatsActRsvpFlows" : {
3567
+ "nodetype" : "object",
3568
+ "module" : "SLAPM-MIB"
3569
+ },
3570
+ },
3571
+ "description" :
3572
+ """A slapmPolicyRuleDeleted notification is sent when a
3573
+ slapmPolicyRuleStatsEntry is deleted if the value of
3574
+ slapmPolicyTrapEnable is enabled(1).""",
3575
+ }, # notification
3576
+ "slapmPolicyRuleMonDeleted" : {
3577
+ "nodetype" : "notification",
3578
+ "moduleName" : "SLAPM-MIB",
3579
+ "oid" : "1.3.6.1.3.88.0.10",
3580
+ "status" : "current",
3581
+ "objects" : {
3582
+ "slapmPRMonControl" : {
3583
+ "nodetype" : "object",
3584
+ "module" : "SLAPM-MIB"
3585
+ },
3586
+ "slapmPRMonStatus" : {
3587
+ "nodetype" : "object",
3588
+ "module" : "SLAPM-MIB"
3589
+ },
3590
+ "slapmPRMonInterval" : {
3591
+ "nodetype" : "object",
3592
+ "module" : "SLAPM-MIB"
3593
+ },
3594
+ "slapmPRMonIntTime" : {
3595
+ "nodetype" : "object",
3596
+ "module" : "SLAPM-MIB"
3597
+ },
3598
+ "slapmPRMonCurrentInRate" : {
3599
+ "nodetype" : "object",
3600
+ "module" : "SLAPM-MIB"
3601
+ },
3602
+ "slapmPRMonCurrentOutRate" : {
3603
+ "nodetype" : "object",
3604
+ "module" : "SLAPM-MIB"
3605
+ },
3606
+ "slapmPRMonCurrentDelayRate" : {
3607
+ "nodetype" : "object",
3608
+ "module" : "SLAPM-MIB"
3609
+ },
3610
+ "slapmPRMonMinRateLow" : {
3611
+ "nodetype" : "object",
3612
+ "module" : "SLAPM-MIB"
3613
+ },
3614
+ "slapmPRMonMinRateHigh" : {
3615
+ "nodetype" : "object",
3616
+ "module" : "SLAPM-MIB"
3617
+ },
3618
+ "slapmPRMonMaxRateHigh" : {
3619
+ "nodetype" : "object",
3620
+ "module" : "SLAPM-MIB"
3621
+ },
3622
+ "slapmPRMonMaxRateLow" : {
3623
+ "nodetype" : "object",
3624
+ "module" : "SLAPM-MIB"
3625
+ },
3626
+ "slapmPRMonMaxDelayHigh" : {
3627
+ "nodetype" : "object",
3628
+ "module" : "SLAPM-MIB"
3629
+ },
3630
+ "slapmPRMonMaxDelayLow" : {
3631
+ "nodetype" : "object",
3632
+ "module" : "SLAPM-MIB"
3633
+ },
3634
+ "slapmPRMonMinInRateNotAchieves" : {
3635
+ "nodetype" : "object",
3636
+ "module" : "SLAPM-MIB"
3637
+ },
3638
+ "slapmPRMonMaxInRateExceeds" : {
3639
+ "nodetype" : "object",
3640
+ "module" : "SLAPM-MIB"
3641
+ },
3642
+ "slapmPRMonMaxDelayExceeds" : {
3643
+ "nodetype" : "object",
3644
+ "module" : "SLAPM-MIB"
3645
+ },
3646
+ "slapmPRMonMinOutRateNotAchieves" : {
3647
+ "nodetype" : "object",
3648
+ "module" : "SLAPM-MIB"
3649
+ },
3650
+ "slapmPRMonMaxOutRateExceeds" : {
3651
+ "nodetype" : "object",
3652
+ "module" : "SLAPM-MIB"
3653
+ },
3654
+ },
3655
+ "description" :
3656
+ """A slapmPolicyRuleMonDeleted notification is sent when a
3657
+ slapmPRMonEntry is deleted if the value of
3658
+ slapmPolicyTrapEnable is enabled(1).""",
3659
+ }, # notification
3660
+ "slapmSubcMonitorNotOkay" : {
3661
+ "nodetype" : "notification",
3662
+ "moduleName" : "SLAPM-MIB",
3663
+ "oid" : "1.3.6.1.3.88.0.11",
3664
+ "status" : "current",
3665
+ "objects" : {
3666
+ "slapmSubcomponentSystemAddress" : {
3667
+ "nodetype" : "object",
3668
+ "module" : "SLAPM-MIB"
3669
+ },
3670
+ "slapmSubcomponentPolicyRuleIndex" : {
3671
+ "nodetype" : "object",
3672
+ "module" : "SLAPM-MIB"
3673
+ },
3674
+ "slapmPRMonControl" : {
3675
+ "nodetype" : "object",
3676
+ "module" : "SLAPM-MIB"
3677
+ },
3678
+ "slapmSubcomponentMonitorStatus" : {
3679
+ "nodetype" : "object",
3680
+ "module" : "SLAPM-MIB"
3681
+ },
3682
+ "slapmSubcomponentMonitorStatus" : {
3683
+ "nodetype" : "object",
3684
+ "module" : "SLAPM-MIB"
3685
+ },
3686
+ "slapmSubcomponentMonitorIntTime" : {
3687
+ "nodetype" : "object",
3688
+ "module" : "SLAPM-MIB"
3689
+ },
3690
+ "slapmSubcomponentMonitorCurrentInRate" : {
3691
+ "nodetype" : "object",
3692
+ "module" : "SLAPM-MIB"
3693
+ },
3694
+ "slapmSubcomponentMonitorCurrentOutRate" : {
3695
+ "nodetype" : "object",
3696
+ "module" : "SLAPM-MIB"
3697
+ },
3698
+ "slapmSubcomponentTcpRoundTripTime" : {
3699
+ "nodetype" : "object",
3700
+ "module" : "SLAPM-MIB"
3701
+ },
3702
+ },
3703
+ "description" :
3704
+ """This notification is generated when a monitored value
3705
+ does not achieved a threshold specification. This
3706
+ applies only towards monitoring the individual components
3707
+ of a policy rule. The value of the
3708
+ corresponding slapmPRMonControl can be examined
3709
+ to determine what is being monitored. The first
3710
+ slapmSubcomponentMonitorStatus value supplies the current
3711
+ monitor status while the 2nd value supplies the
3712
+ previous status.
3713
+
3714
+ Note: The corresponding slapmPRMonControl
3715
+ BITS setting, enableSubcomponentTraps(4), MUST be selected
3716
+ in order for this notification to potentially be generated.""",
3717
+ }, # notification
3718
+ "slapmSubcMonitorOkay" : {
3719
+ "nodetype" : "notification",
3720
+ "moduleName" : "SLAPM-MIB",
3721
+ "oid" : "1.3.6.1.3.88.0.12",
3722
+ "status" : "current",
3723
+ "objects" : {
3724
+ "slapmSubcomponentSystemAddress" : {
3725
+ "nodetype" : "object",
3726
+ "module" : "SLAPM-MIB"
3727
+ },
3728
+ "slapmSubcomponentPolicyRuleIndex" : {
3729
+ "nodetype" : "object",
3730
+ "module" : "SLAPM-MIB"
3731
+ },
3732
+ "slapmPRMonControl" : {
3733
+ "nodetype" : "object",
3734
+ "module" : "SLAPM-MIB"
3735
+ },
3736
+ "slapmSubcomponentMonitorStatus" : {
3737
+ "nodetype" : "object",
3738
+ "module" : "SLAPM-MIB"
3739
+ },
3740
+ "slapmSubcomponentMonitorStatus" : {
3741
+ "nodetype" : "object",
3742
+ "module" : "SLAPM-MIB"
3743
+ },
3744
+ "slapmSubcomponentMonitorIntTime" : {
3745
+ "nodetype" : "object",
3746
+ "module" : "SLAPM-MIB"
3747
+ },
3748
+ "slapmSubcomponentMonitorCurrentInRate" : {
3749
+ "nodetype" : "object",
3750
+ "module" : "SLAPM-MIB"
3751
+ },
3752
+ "slapmSubcomponentMonitorCurrentOutRate" : {
3753
+ "nodetype" : "object",
3754
+ "module" : "SLAPM-MIB"
3755
+ },
3756
+ "slapmSubcomponentTcpRoundTripTime" : {
3757
+ "nodetype" : "object",
3758
+ "module" : "SLAPM-MIB"
3759
+ },
3760
+ },
3761
+ "description" :
3762
+ """This notification is generated when a monitored value
3763
+ has reached an acceptable level.
3764
+
3765
+ Note: The corresponding slapmPRMonControl
3766
+ BITS setting, enableSubcomponentTraps(3), MUST be
3767
+ selected in order for this notification to potentially
3768
+ be generated.""",
3769
+ }, # notification
3770
+ }, # notifications
3771
+
3772
+ "groups" : {
3773
+ "slapmBaseGroup" : {
3774
+ "nodetype" : "group",
3775
+ "moduleName" : "SLAPM-MIB",
3776
+ "oid" : "1.3.6.1.3.88.2.2.1",
3777
+ "status" : "deprecated",
3778
+ "members" : {
3779
+ "slapmSpinLock" : {
3780
+ "nodetype" : "member",
3781
+ "module" : "SLAPM-MIB"
3782
+ },
3783
+ "slapmPolicyCountQueries" : {
3784
+ "nodetype" : "member",
3785
+ "module" : "SLAPM-MIB"
3786
+ },
3787
+ "slapmPolicyCountAccesses" : {
3788
+ "nodetype" : "member",
3789
+ "module" : "SLAPM-MIB"
3790
+ },
3791
+ "slapmPolicyCountSuccessAccesses" : {
3792
+ "nodetype" : "member",
3793
+ "module" : "SLAPM-MIB"
3794
+ },
3795
+ "slapmPolicyCountNotFounds" : {
3796
+ "nodetype" : "member",
3797
+ "module" : "SLAPM-MIB"
3798
+ },
3799
+ "slapmPolicyPurgeTime" : {
3800
+ "nodetype" : "member",
3801
+ "module" : "SLAPM-MIB"
3802
+ },
3803
+ "slapmPolicyTrapEnable" : {
3804
+ "nodetype" : "member",
3805
+ "module" : "SLAPM-MIB"
3806
+ },
3807
+ "slapmPolicyStatsOperStatus" : {
3808
+ "nodetype" : "member",
3809
+ "module" : "SLAPM-MIB"
3810
+ },
3811
+ "slapmPolicyStatsActiveConns" : {
3812
+ "nodetype" : "member",
3813
+ "module" : "SLAPM-MIB"
3814
+ },
3815
+ "slapmPolicyStatsFirstActivated" : {
3816
+ "nodetype" : "member",
3817
+ "module" : "SLAPM-MIB"
3818
+ },
3819
+ "slapmPolicyStatsLastMapping" : {
3820
+ "nodetype" : "member",
3821
+ "module" : "SLAPM-MIB"
3822
+ },
3823
+ "slapmPolicyStatsInOctets" : {
3824
+ "nodetype" : "member",
3825
+ "module" : "SLAPM-MIB"
3826
+ },
3827
+ "slapmPolicyStatsOutOctets" : {
3828
+ "nodetype" : "member",
3829
+ "module" : "SLAPM-MIB"
3830
+ },
3831
+ "slapmPolicyStatsConnectionLimit" : {
3832
+ "nodetype" : "member",
3833
+ "module" : "SLAPM-MIB"
3834
+ },
3835
+ "slapmPolicyStatsTotalConns" : {
3836
+ "nodetype" : "member",
3837
+ "module" : "SLAPM-MIB"
3838
+ },
3839
+ "slapmPolicyStatsCountAccepts" : {
3840
+ "nodetype" : "member",
3841
+ "module" : "SLAPM-MIB"
3842
+ },
3843
+ "slapmPolicyStatsCountDenies" : {
3844
+ "nodetype" : "member",
3845
+ "module" : "SLAPM-MIB"
3846
+ },
3847
+ "slapmPolicyStatsInDiscards" : {
3848
+ "nodetype" : "member",
3849
+ "module" : "SLAPM-MIB"
3850
+ },
3851
+ "slapmPolicyStatsOutDiscards" : {
3852
+ "nodetype" : "member",
3853
+ "module" : "SLAPM-MIB"
3854
+ },
3855
+ "slapmPolicyStatsInPackets" : {
3856
+ "nodetype" : "member",
3857
+ "module" : "SLAPM-MIB"
3858
+ },
3859
+ "slapmPolicyStatsOutPackets" : {
3860
+ "nodetype" : "member",
3861
+ "module" : "SLAPM-MIB"
3862
+ },
3863
+ "slapmPolicyStatsMinRate" : {
3864
+ "nodetype" : "member",
3865
+ "module" : "SLAPM-MIB"
3866
+ },
3867
+ "slapmPolicyStatsMaxRate" : {
3868
+ "nodetype" : "member",
3869
+ "module" : "SLAPM-MIB"
3870
+ },
3871
+ "slapmPolicyStatsMaxDelay" : {
3872
+ "nodetype" : "member",
3873
+ "module" : "SLAPM-MIB"
3874
+ },
3875
+ "slapmPolicyMonitorControl" : {
3876
+ "nodetype" : "member",
3877
+ "module" : "SLAPM-MIB"
3878
+ },
3879
+ "slapmPolicyMonitorStatus" : {
3880
+ "nodetype" : "member",
3881
+ "module" : "SLAPM-MIB"
3882
+ },
3883
+ "slapmPolicyMonitorInterval" : {
3884
+ "nodetype" : "member",
3885
+ "module" : "SLAPM-MIB"
3886
+ },
3887
+ "slapmPolicyMonitorIntTime" : {
3888
+ "nodetype" : "member",
3889
+ "module" : "SLAPM-MIB"
3890
+ },
3891
+ "slapmPolicyMonitorCurrentInRate" : {
3892
+ "nodetype" : "member",
3893
+ "module" : "SLAPM-MIB"
3894
+ },
3895
+ "slapmPolicyMonitorCurrentOutRate" : {
3896
+ "nodetype" : "member",
3897
+ "module" : "SLAPM-MIB"
3898
+ },
3899
+ "slapmPolicyMonitorMinRateLow" : {
3900
+ "nodetype" : "member",
3901
+ "module" : "SLAPM-MIB"
3902
+ },
3903
+ "slapmPolicyMonitorMinRateHigh" : {
3904
+ "nodetype" : "member",
3905
+ "module" : "SLAPM-MIB"
3906
+ },
3907
+ "slapmPolicyMonitorMaxRateHigh" : {
3908
+ "nodetype" : "member",
3909
+ "module" : "SLAPM-MIB"
3910
+ },
3911
+ "slapmPolicyMonitorMaxRateLow" : {
3912
+ "nodetype" : "member",
3913
+ "module" : "SLAPM-MIB"
3914
+ },
3915
+ "slapmPolicyMonitorMaxDelayHigh" : {
3916
+ "nodetype" : "member",
3917
+ "module" : "SLAPM-MIB"
3918
+ },
3919
+ "slapmPolicyMonitorMaxDelayLow" : {
3920
+ "nodetype" : "member",
3921
+ "module" : "SLAPM-MIB"
3922
+ },
3923
+ "slapmPolicyMonitorMinInRateNotAchieves" : {
3924
+ "nodetype" : "member",
3925
+ "module" : "SLAPM-MIB"
3926
+ },
3927
+ "slapmPolicyMonitorMaxInRateExceeds" : {
3928
+ "nodetype" : "member",
3929
+ "module" : "SLAPM-MIB"
3930
+ },
3931
+ "slapmPolicyMonitorMaxDelayExceeds" : {
3932
+ "nodetype" : "member",
3933
+ "module" : "SLAPM-MIB"
3934
+ },
3935
+ "slapmPolicyMonitorMinOutRateNotAchieves" : {
3936
+ "nodetype" : "member",
3937
+ "module" : "SLAPM-MIB"
3938
+ },
3939
+ "slapmPolicyMonitorMaxOutRateExceeds" : {
3940
+ "nodetype" : "member",
3941
+ "module" : "SLAPM-MIB"
3942
+ },
3943
+ "slapmPolicyMonitorCurrentDelayRate" : {
3944
+ "nodetype" : "member",
3945
+ "module" : "SLAPM-MIB"
3946
+ },
3947
+ "slapmPolicyMonitorRowStatus" : {
3948
+ "nodetype" : "member",
3949
+ "module" : "SLAPM-MIB"
3950
+ },
3951
+ }, # members
3952
+ "description" :
3953
+ """The group of objects defined by this MIB that are
3954
+ required for all implementations to be compliant.""",
3955
+ }, # group
3956
+ "slapmOptionalGroup" : {
3957
+ "nodetype" : "group",
3958
+ "moduleName" : "SLAPM-MIB",
3959
+ "oid" : "1.3.6.1.3.88.2.2.2",
3960
+ "status" : "deprecated",
3961
+ "members" : {
3962
+ "slapmPolicyStatsInProfileOctets" : {
3963
+ "nodetype" : "member",
3964
+ "module" : "SLAPM-MIB"
3965
+ },
3966
+ "slapmPolicyStatsOutProfileOctets" : {
3967
+ "nodetype" : "member",
3968
+ "module" : "SLAPM-MIB"
3969
+ },
3970
+ }, # members
3971
+ "description" :
3972
+ """The group of objects defined by this MIB that are
3973
+ optional.""",
3974
+ }, # group
3975
+ "slapmEndSystemGroup" : {
3976
+ "nodetype" : "group",
3977
+ "moduleName" : "SLAPM-MIB",
3978
+ "oid" : "1.3.6.1.3.88.2.2.3",
3979
+ "status" : "deprecated",
3980
+ "members" : {
3981
+ "slapmPolicyTrapFilter" : {
3982
+ "nodetype" : "member",
3983
+ "module" : "SLAPM-MIB"
3984
+ },
3985
+ "slapmSubcomponentProtocol" : {
3986
+ "nodetype" : "member",
3987
+ "module" : "SLAPM-MIB"
3988
+ },
3989
+ "slapmSubcomponentSystemAddress" : {
3990
+ "nodetype" : "member",
3991
+ "module" : "SLAPM-MIB"
3992
+ },
3993
+ "slapmSubcomponentPolicyName" : {
3994
+ "nodetype" : "member",
3995
+ "module" : "SLAPM-MIB"
3996
+ },
3997
+ "slapmSubcomponentTrafficProfileName" : {
3998
+ "nodetype" : "member",
3999
+ "module" : "SLAPM-MIB"
4000
+ },
4001
+ "slapmSubcomponentLastActivity" : {
4002
+ "nodetype" : "member",
4003
+ "module" : "SLAPM-MIB"
4004
+ },
4005
+ "slapmSubcomponentInOctets" : {
4006
+ "nodetype" : "member",
4007
+ "module" : "SLAPM-MIB"
4008
+ },
4009
+ "slapmSubcomponentOutOctets" : {
4010
+ "nodetype" : "member",
4011
+ "module" : "SLAPM-MIB"
4012
+ },
4013
+ "slapmSubcomponentTcpOutBufferedOctets" : {
4014
+ "nodetype" : "member",
4015
+ "module" : "SLAPM-MIB"
4016
+ },
4017
+ "slapmSubcomponentTcpInBufferedOctets" : {
4018
+ "nodetype" : "member",
4019
+ "module" : "SLAPM-MIB"
4020
+ },
4021
+ "slapmSubcomponentTcpReXmts" : {
4022
+ "nodetype" : "member",
4023
+ "module" : "SLAPM-MIB"
4024
+ },
4025
+ "slapmSubcomponentTcpRoundTripTime" : {
4026
+ "nodetype" : "member",
4027
+ "module" : "SLAPM-MIB"
4028
+ },
4029
+ "slapmSubcomponentTcpRoundTripVariance" : {
4030
+ "nodetype" : "member",
4031
+ "module" : "SLAPM-MIB"
4032
+ },
4033
+ "slapmSubcomponentInPdus" : {
4034
+ "nodetype" : "member",
4035
+ "module" : "SLAPM-MIB"
4036
+ },
4037
+ "slapmSubcomponentOutPdus" : {
4038
+ "nodetype" : "member",
4039
+ "module" : "SLAPM-MIB"
4040
+ },
4041
+ "slapmSubcomponentApplName" : {
4042
+ "nodetype" : "member",
4043
+ "module" : "SLAPM-MIB"
4044
+ },
4045
+ "slapmSubcomponentMonitorStatus" : {
4046
+ "nodetype" : "member",
4047
+ "module" : "SLAPM-MIB"
4048
+ },
4049
+ "slapmSubcomponentMonitorIntTime" : {
4050
+ "nodetype" : "member",
4051
+ "module" : "SLAPM-MIB"
4052
+ },
4053
+ "slapmSubcomponentMonitorCurrentOutRate" : {
4054
+ "nodetype" : "member",
4055
+ "module" : "SLAPM-MIB"
4056
+ },
4057
+ "slapmSubcomponentMonitorCurrentInRate" : {
4058
+ "nodetype" : "member",
4059
+ "module" : "SLAPM-MIB"
4060
+ },
4061
+ }, # members
4062
+ "description" :
4063
+ """The group of objects defined by this MIB that are
4064
+ required for end system implementations.""",
4065
+ }, # group
4066
+ "slapmNotGroup" : {
4067
+ "nodetype" : "group",
4068
+ "moduleName" : "SLAPM-MIB",
4069
+ "oid" : "1.3.6.1.3.88.2.2.4",
4070
+ "status" : "deprecated",
4071
+ "members" : {
4072
+ "slapmMonitoredEventNotAchieved" : {
4073
+ "nodetype" : "member",
4074
+ "module" : "SLAPM-MIB"
4075
+ },
4076
+ "slapmMonitoredEventOkay" : {
4077
+ "nodetype" : "member",
4078
+ "module" : "SLAPM-MIB"
4079
+ },
4080
+ "slapmPolicyProfileDeleted" : {
4081
+ "nodetype" : "member",
4082
+ "module" : "SLAPM-MIB"
4083
+ },
4084
+ "slapmPolicyMonitorDeleted" : {
4085
+ "nodetype" : "member",
4086
+ "module" : "SLAPM-MIB"
4087
+ },
4088
+ }, # members
4089
+ "description" :
4090
+ """The group of notifications defined by this MIB that MUST
4091
+ be implemented.""",
4092
+ }, # group
4093
+ "slapmEndSystemNotGroup" : {
4094
+ "nodetype" : "group",
4095
+ "moduleName" : "SLAPM-MIB",
4096
+ "oid" : "1.3.6.1.3.88.2.2.5",
4097
+ "status" : "deprecated",
4098
+ "members" : {
4099
+ "slapmSubcomponentMonitoredEventNotAchieved" : {
4100
+ "nodetype" : "member",
4101
+ "module" : "SLAPM-MIB"
4102
+ },
4103
+ "slapmSubcomponentMonitoredEventOkay" : {
4104
+ "nodetype" : "member",
4105
+ "module" : "SLAPM-MIB"
4106
+ },
4107
+ }, # members
4108
+ "description" :
4109
+ """The group of objects defined by this MIB that are
4110
+ required for end system implementations.""",
4111
+ }, # group
4112
+ "slapmBaseGroup2" : {
4113
+ "nodetype" : "group",
4114
+ "moduleName" : "SLAPM-MIB",
4115
+ "oid" : "1.3.6.1.3.88.2.2.6",
4116
+ "status" : "current",
4117
+ "members" : {
4118
+ "slapmSpinLock" : {
4119
+ "nodetype" : "member",
4120
+ "module" : "SLAPM-MIB"
4121
+ },
4122
+ "slapmPolicyCountQueries" : {
4123
+ "nodetype" : "member",
4124
+ "module" : "SLAPM-MIB"
4125
+ },
4126
+ "slapmPolicyCountAccesses" : {
4127
+ "nodetype" : "member",
4128
+ "module" : "SLAPM-MIB"
4129
+ },
4130
+ "slapmPolicyCountSuccessAccesses" : {
4131
+ "nodetype" : "member",
4132
+ "module" : "SLAPM-MIB"
4133
+ },
4134
+ "slapmPolicyCountNotFounds" : {
4135
+ "nodetype" : "member",
4136
+ "module" : "SLAPM-MIB"
4137
+ },
4138
+ "slapmPolicyPurgeTime" : {
4139
+ "nodetype" : "member",
4140
+ "module" : "SLAPM-MIB"
4141
+ },
4142
+ "slapmPolicyTrapEnable" : {
4143
+ "nodetype" : "member",
4144
+ "module" : "SLAPM-MIB"
4145
+ },
4146
+ "slapmPolicyNameOfRule" : {
4147
+ "nodetype" : "member",
4148
+ "module" : "SLAPM-MIB"
4149
+ },
4150
+ "slapmPolicyRuleStatsOperStatus" : {
4151
+ "nodetype" : "member",
4152
+ "module" : "SLAPM-MIB"
4153
+ },
4154
+ "slapmPolicyRuleStatsActiveConns" : {
4155
+ "nodetype" : "member",
4156
+ "module" : "SLAPM-MIB"
4157
+ },
4158
+ "slapmPolicyRuleStatsTotalConns" : {
4159
+ "nodetype" : "member",
4160
+ "module" : "SLAPM-MIB"
4161
+ },
4162
+ "slapmPolicyRuleStatsLActivated" : {
4163
+ "nodetype" : "member",
4164
+ "module" : "SLAPM-MIB"
4165
+ },
4166
+ "slapmPolicyRuleStatsLastMapping" : {
4167
+ "nodetype" : "member",
4168
+ "module" : "SLAPM-MIB"
4169
+ },
4170
+ "slapmPolicyRuleStatsInOctets" : {
4171
+ "nodetype" : "member",
4172
+ "module" : "SLAPM-MIB"
4173
+ },
4174
+ "slapmPolicyRuleStatsOutOctets" : {
4175
+ "nodetype" : "member",
4176
+ "module" : "SLAPM-MIB"
4177
+ },
4178
+ "slapmPolicyRuleStatsConnLimit" : {
4179
+ "nodetype" : "member",
4180
+ "module" : "SLAPM-MIB"
4181
+ },
4182
+ "slapmPolicyRuleStatsCountAccepts" : {
4183
+ "nodetype" : "member",
4184
+ "module" : "SLAPM-MIB"
4185
+ },
4186
+ "slapmPolicyRuleStatsCountDenies" : {
4187
+ "nodetype" : "member",
4188
+ "module" : "SLAPM-MIB"
4189
+ },
4190
+ "slapmPolicyRuleStatsInDiscards" : {
4191
+ "nodetype" : "member",
4192
+ "module" : "SLAPM-MIB"
4193
+ },
4194
+ "slapmPolicyRuleStatsOutDiscards" : {
4195
+ "nodetype" : "member",
4196
+ "module" : "SLAPM-MIB"
4197
+ },
4198
+ "slapmPolicyRuleStatsInPackets" : {
4199
+ "nodetype" : "member",
4200
+ "module" : "SLAPM-MIB"
4201
+ },
4202
+ "slapmPolicyRuleStatsOutPackets" : {
4203
+ "nodetype" : "member",
4204
+ "module" : "SLAPM-MIB"
4205
+ },
4206
+ "slapmPolicyRuleStatsInProOctets" : {
4207
+ "nodetype" : "member",
4208
+ "module" : "SLAPM-MIB"
4209
+ },
4210
+ "slapmPolicyRuleStatsOutProOctets" : {
4211
+ "nodetype" : "member",
4212
+ "module" : "SLAPM-MIB"
4213
+ },
4214
+ "slapmPolicyRuleStatsMinRate" : {
4215
+ "nodetype" : "member",
4216
+ "module" : "SLAPM-MIB"
4217
+ },
4218
+ "slapmPolicyRuleStatsMaxRate" : {
4219
+ "nodetype" : "member",
4220
+ "module" : "SLAPM-MIB"
4221
+ },
4222
+ "slapmPolicyRuleStatsMaxDelay" : {
4223
+ "nodetype" : "member",
4224
+ "module" : "SLAPM-MIB"
4225
+ },
4226
+ "slapmPolicyRuleStatsTotalRsvpFlows" : {
4227
+ "nodetype" : "member",
4228
+ "module" : "SLAPM-MIB"
4229
+ },
4230
+ "slapmPolicyRuleStatsActRsvpFlows" : {
4231
+ "nodetype" : "member",
4232
+ "module" : "SLAPM-MIB"
4233
+ },
4234
+ "slapmPRMonControl" : {
4235
+ "nodetype" : "member",
4236
+ "module" : "SLAPM-MIB"
4237
+ },
4238
+ "slapmPRMonStatus" : {
4239
+ "nodetype" : "member",
4240
+ "module" : "SLAPM-MIB"
4241
+ },
4242
+ "slapmPRMonInterval" : {
4243
+ "nodetype" : "member",
4244
+ "module" : "SLAPM-MIB"
4245
+ },
4246
+ "slapmPRMonIntTime" : {
4247
+ "nodetype" : "member",
4248
+ "module" : "SLAPM-MIB"
4249
+ },
4250
+ "slapmPRMonCurrentInRate" : {
4251
+ "nodetype" : "member",
4252
+ "module" : "SLAPM-MIB"
4253
+ },
4254
+ "slapmPRMonCurrentOutRate" : {
4255
+ "nodetype" : "member",
4256
+ "module" : "SLAPM-MIB"
4257
+ },
4258
+ "slapmPRMonMinRateLow" : {
4259
+ "nodetype" : "member",
4260
+ "module" : "SLAPM-MIB"
4261
+ },
4262
+ "slapmPRMonMinRateHigh" : {
4263
+ "nodetype" : "member",
4264
+ "module" : "SLAPM-MIB"
4265
+ },
4266
+ "slapmPRMonMaxRateHigh" : {
4267
+ "nodetype" : "member",
4268
+ "module" : "SLAPM-MIB"
4269
+ },
4270
+ "slapmPRMonMaxRateLow" : {
4271
+ "nodetype" : "member",
4272
+ "module" : "SLAPM-MIB"
4273
+ },
4274
+ "slapmPRMonMaxDelayHigh" : {
4275
+ "nodetype" : "member",
4276
+ "module" : "SLAPM-MIB"
4277
+ },
4278
+ "slapmPRMonMaxDelayLow" : {
4279
+ "nodetype" : "member",
4280
+ "module" : "SLAPM-MIB"
4281
+ },
4282
+ "slapmPRMonMinInRateNotAchieves" : {
4283
+ "nodetype" : "member",
4284
+ "module" : "SLAPM-MIB"
4285
+ },
4286
+ "slapmPRMonMaxInRateExceeds" : {
4287
+ "nodetype" : "member",
4288
+ "module" : "SLAPM-MIB"
4289
+ },
4290
+ "slapmPRMonMaxDelayExceeds" : {
4291
+ "nodetype" : "member",
4292
+ "module" : "SLAPM-MIB"
4293
+ },
4294
+ "slapmPRMonMinOutRateNotAchieves" : {
4295
+ "nodetype" : "member",
4296
+ "module" : "SLAPM-MIB"
4297
+ },
4298
+ "slapmPRMonMaxOutRateExceeds" : {
4299
+ "nodetype" : "member",
4300
+ "module" : "SLAPM-MIB"
4301
+ },
4302
+ "slapmPRMonCurrentDelayRate" : {
4303
+ "nodetype" : "member",
4304
+ "module" : "SLAPM-MIB"
4305
+ },
4306
+ "slapmPRMonRowStatus" : {
4307
+ "nodetype" : "member",
4308
+ "module" : "SLAPM-MIB"
4309
+ },
4310
+ }, # members
4311
+ "description" :
4312
+ """The group of objects defined by this MIB that are
4313
+ required for all implementations to be compliant.""",
4314
+ }, # group
4315
+ "slapmEndSystemGroup2" : {
4316
+ "nodetype" : "group",
4317
+ "moduleName" : "SLAPM-MIB",
4318
+ "oid" : "1.3.6.1.3.88.2.2.7",
4319
+ "status" : "current",
4320
+ "members" : {
4321
+ "slapmPolicyTrapFilter" : {
4322
+ "nodetype" : "member",
4323
+ "module" : "SLAPM-MIB"
4324
+ },
4325
+ "slapmSubcomponentProtocol" : {
4326
+ "nodetype" : "member",
4327
+ "module" : "SLAPM-MIB"
4328
+ },
4329
+ "slapmSubcomponentSystemAddress" : {
4330
+ "nodetype" : "member",
4331
+ "module" : "SLAPM-MIB"
4332
+ },
4333
+ "slapmSubcomponentLastActivity" : {
4334
+ "nodetype" : "member",
4335
+ "module" : "SLAPM-MIB"
4336
+ },
4337
+ "slapmSubcomponentInOctets" : {
4338
+ "nodetype" : "member",
4339
+ "module" : "SLAPM-MIB"
4340
+ },
4341
+ "slapmSubcomponentOutOctets" : {
4342
+ "nodetype" : "member",
4343
+ "module" : "SLAPM-MIB"
4344
+ },
4345
+ "slapmSubcomponentTcpOutBufferedOctets" : {
4346
+ "nodetype" : "member",
4347
+ "module" : "SLAPM-MIB"
4348
+ },
4349
+ "slapmSubcomponentTcpInBufferedOctets" : {
4350
+ "nodetype" : "member",
4351
+ "module" : "SLAPM-MIB"
4352
+ },
4353
+ "slapmSubcomponentTcpReXmts" : {
4354
+ "nodetype" : "member",
4355
+ "module" : "SLAPM-MIB"
4356
+ },
4357
+ "slapmSubcomponentTcpRoundTripTime" : {
4358
+ "nodetype" : "member",
4359
+ "module" : "SLAPM-MIB"
4360
+ },
4361
+ "slapmSubcomponentTcpRoundTripVariance" : {
4362
+ "nodetype" : "member",
4363
+ "module" : "SLAPM-MIB"
4364
+ },
4365
+ "slapmSubcomponentInPdus" : {
4366
+ "nodetype" : "member",
4367
+ "module" : "SLAPM-MIB"
4368
+ },
4369
+ "slapmSubcomponentOutPdus" : {
4370
+ "nodetype" : "member",
4371
+ "module" : "SLAPM-MIB"
4372
+ },
4373
+ "slapmSubcomponentApplName" : {
4374
+ "nodetype" : "member",
4375
+ "module" : "SLAPM-MIB"
4376
+ },
4377
+ "slapmSubcomponentMonitorStatus" : {
4378
+ "nodetype" : "member",
4379
+ "module" : "SLAPM-MIB"
4380
+ },
4381
+ "slapmSubcomponentMonitorIntTime" : {
4382
+ "nodetype" : "member",
4383
+ "module" : "SLAPM-MIB"
4384
+ },
4385
+ "slapmSubcomponentMonitorCurrentOutRate" : {
4386
+ "nodetype" : "member",
4387
+ "module" : "SLAPM-MIB"
4388
+ },
4389
+ "slapmSubcomponentMonitorCurrentInRate" : {
4390
+ "nodetype" : "member",
4391
+ "module" : "SLAPM-MIB"
4392
+ },
4393
+ "slapmSubcomponentPolicyRuleIndex" : {
4394
+ "nodetype" : "member",
4395
+ "module" : "SLAPM-MIB"
4396
+ },
4397
+ }, # members
4398
+ "description" :
4399
+ """The group of objects defined by this MIB that are
4400
+ required for end system implementations.""",
4401
+ }, # group
4402
+ "slapmNotGroup2" : {
4403
+ "nodetype" : "group",
4404
+ "moduleName" : "SLAPM-MIB",
4405
+ "oid" : "1.3.6.1.3.88.2.2.8",
4406
+ "status" : "current",
4407
+ "members" : {
4408
+ "slapmPolicyRuleMonNotOkay" : {
4409
+ "nodetype" : "member",
4410
+ "module" : "SLAPM-MIB"
4411
+ },
4412
+ "slapmPolicyRuleMonOkay" : {
4413
+ "nodetype" : "member",
4414
+ "module" : "SLAPM-MIB"
4415
+ },
4416
+ "slapmPolicyRuleDeleted" : {
4417
+ "nodetype" : "member",
4418
+ "module" : "SLAPM-MIB"
4419
+ },
4420
+ "slapmPolicyRuleMonDeleted" : {
4421
+ "nodetype" : "member",
4422
+ "module" : "SLAPM-MIB"
4423
+ },
4424
+ }, # members
4425
+ "description" :
4426
+ """The group of notifications defined by this MIB that MUST
4427
+ be implemented.""",
4428
+ }, # group
4429
+ "slapmEndSystemNotGroup2" : {
4430
+ "nodetype" : "group",
4431
+ "moduleName" : "SLAPM-MIB",
4432
+ "oid" : "1.3.6.1.3.88.2.2.9",
4433
+ "status" : "current",
4434
+ "members" : {
4435
+ "slapmSubcMonitorNotOkay" : {
4436
+ "nodetype" : "member",
4437
+ "module" : "SLAPM-MIB"
4438
+ },
4439
+ "slapmSubcMonitorOkay" : {
4440
+ "nodetype" : "member",
4441
+ "module" : "SLAPM-MIB"
4442
+ },
4443
+ }, # members
4444
+ "description" :
4445
+ """The group of objects defined by this MIB that are
4446
+ required for end system implementations.""",
4447
+ }, # group
4448
+ }, # groups
4449
+
4450
+ "compliances" : {
4451
+ "slapmCompliance" : {
4452
+ "nodetype" : "compliance",
4453
+ "moduleName" : "SLAPM-MIB",
4454
+ "oid" : "1.3.6.1.3.88.2.1.1",
4455
+ "status" : "current",
4456
+ "description" :
4457
+ """The compliance statement for the SLAPM-MIB.""",
4458
+ "requires" : {
4459
+ "slapmBaseGroup2" : {
4460
+ "nodetype" : "mandatory",
4461
+ "module" : "SLAPM-MIB"
4462
+ },
4463
+ "slapmNotGroup2" : {
4464
+ "nodetype" : "mandatory",
4465
+ "module" : "SLAPM-MIB"
4466
+ },
4467
+ "slapmEndSystemGroup2" : {
4468
+ "nodetype" : "optional",
4469
+ "module" : "SLAPM-MIB",
4470
+ "description" :
4471
+ """The contents of this group is required by end-system
4472
+ implementations.""",
4473
+ },
4474
+ "slapmEndSystemNotGroup2" : {
4475
+ "nodetype" : "optional",
4476
+ "module" : "SLAPM-MIB",
4477
+ "description" :
4478
+ """The contents of this group is required by end-system
4479
+ implementations.""",
4480
+ },
4481
+ "slapmBaseGroup" : {
4482
+ "nodetype" : "optional",
4483
+ "module" : "SLAPM-MIB",
4484
+ "description" :
4485
+ """The contents of this group has been deprecated in favor
4486
+ of the new slapmBaseGroup2. Older implementations of this
4487
+ MIB would continue its support of the contents of this
4488
+ group.""",
4489
+ },
4490
+ "slapmNotGroup" : {
4491
+ "nodetype" : "optional",
4492
+ "module" : "SLAPM-MIB",
4493
+ "description" :
4494
+ """The contents of this group has been deprecated in favor
4495
+ of the new slapmNotGroup2. Older implementations of this
4496
+ MIB would continue its support of the contents of
4497
+ this group.""",
4498
+ },
4499
+ "slapmOptionalGroup" : {
4500
+ "nodetype" : "optional",
4501
+ "module" : "SLAPM-MIB",
4502
+ "description" :
4503
+ """The contents of this group has been deprecated.""",
4504
+ },
4505
+ "slapmEndSystemGroup" : {
4506
+ "nodetype" : "optional",
4507
+ "module" : "SLAPM-MIB",
4508
+ "description" :
4509
+ """The contents of this group has been deprecated in favor
4510
+ of the new slapmEndSystemGroup2. Older implementations
4511
+ of this MIB would continue its support of the
4512
+ contents of this group.""",
4513
+ },
4514
+ "slapmEndSystemNotGroup" : {
4515
+ "nodetype" : "optional",
4516
+ "module" : "SLAPM-MIB",
4517
+ "description" :
4518
+ """The contents of this group has been deprecated in favor
4519
+ of the new slapmEndSystemNotGroup2. Older
4520
+ implementations of this MIB would continue its support
4521
+ of the contents of this group.""",
4522
+ },
4523
+ }, # requires
4524
+ }, # compliance
4525
+ }, # compliances
4526
+
4527
+ }