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,3989 @@
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 IPSEC-SPD-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/IPSEC-SPD-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "IPSEC-SPD-MIB",
11
+
12
+ "IPSEC-SPD-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF IP Security Policy Working Group""",
17
+ "contact" :
18
+ """Michael Baer
19
+ P.O. Box 72682
20
+ Davis, CA 95617
21
+ Phone: +1 530 902 3131
22
+ Email: baerm@tislabs.com
23
+
24
+ Ricky Charlet
25
+ Email: rcharlet@alumni.calpoly.edu
26
+
27
+ Wes Hardaker
28
+ Sparta, Inc.
29
+ P.O. Box 382
30
+ Davis, CA 95617
31
+ Phone: +1 530 792 1913
32
+ Email: hardaker@tislabs.com
33
+
34
+ Robert Story
35
+ Revelstone Software
36
+ PO Box 1812
37
+
38
+
39
+
40
+ Tucker, GA 30085
41
+ Phone: +1 770 617 3722
42
+ Email: rstory@ipsp.revelstone.com
43
+
44
+ Cliff Wang
45
+ ARO
46
+ 4300 S. Miami Blvd.
47
+ Durham, NC 27703
48
+ E-Mail: cliffwangmail@yahoo.com""",
49
+ "description" :
50
+ """This MIB module defines configuration objects for managing
51
+ IPsec Security Policies. In general, this MIB can be
52
+ implemented anywhere IPsec security services exist (e.g.,
53
+ bump-in-the-wire, host, gateway, firewall, router, etc.).
54
+
55
+ Copyright (C) The IETF Trust (2007). This version of
56
+ this MIB module is part of RFC 4807; see the RFC itself for
57
+ full legal notices.""",
58
+ "revisions" : (
59
+ {
60
+ "date" : "2007-02-07 00:00",
61
+ "description" :
62
+ """Initial version, published as RFC 4807.""",
63
+ },
64
+ ),
65
+ "identity node" : "spdMIB",
66
+ },
67
+
68
+ "imports" : (
69
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
70
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
71
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
72
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
73
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
74
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
75
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
76
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
77
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
78
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
79
+ {"module" : "SNMPv2-TC", "name" : "StorageType"},
80
+ {"module" : "SNMPv2-TC", "name" : "VariablePointer"},
81
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
82
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
83
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
84
+ {"module" : "IF-MIB", "name" : "InterfaceIndex"},
85
+ {"module" : "DIFFSERV-MIB", "name" : "diffServMIBMultiFieldClfrGroup"},
86
+ {"module" : "DIFFSERV-MIB", "name" : "IfDirection"},
87
+ {"module" : "DIFFSERV-MIB", "name" : "diffServMultiFieldClfrNextFree"},
88
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddressType"},
89
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddress"},
90
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
91
+ ),
92
+
93
+ "typedefs" : {
94
+ "SpdBooleanOperator" : {
95
+ "basetype" : "Enumeration",
96
+ "status" : "current",
97
+ "or" : {
98
+ "nodetype" : "namednumber",
99
+ "number" : "1"
100
+ },
101
+ "and" : {
102
+ "nodetype" : "namednumber",
103
+ "number" : "2"
104
+ },
105
+ "description" :
106
+ """The SpdBooleanOperator operator is used to specify
107
+ whether sub-components in a decision-making process are
108
+
109
+
110
+
111
+ ANDed or ORed together to decide if the resulting
112
+ expression is true or false.""",
113
+ },
114
+ "SpdAdminStatus" : {
115
+ "basetype" : "Enumeration",
116
+ "status" : "current",
117
+ "enabled" : {
118
+ "nodetype" : "namednumber",
119
+ "number" : "1"
120
+ },
121
+ "disabled" : {
122
+ "nodetype" : "namednumber",
123
+ "number" : "2"
124
+ },
125
+ "description" :
126
+ """The SpdAdminStatus is used to specify the administrative
127
+ status of an object. Objects that are disabled MUST NOT
128
+ be used by the packet processing engine.""",
129
+ },
130
+ "SpdIPPacketLogging" : {
131
+ "basetype" : "Integer32",
132
+ "status" : "current",
133
+ "ranges" : [
134
+ {
135
+ "min" : "-1",
136
+ "max" : "65535"
137
+ },
138
+ ],
139
+ "range" : {
140
+ "min" : "-1",
141
+ "max" : "65535"
142
+ },
143
+ "format" : "d",
144
+ "description" :
145
+ """SpdIPPacketLogging specifies whether an audit message
146
+ SHOULD be logged if a packet is passed through a Security
147
+ Association (SA) and if some of that packet is included in
148
+ the log event. A value of '-1' indicates no logging. A
149
+ value of '0' or greater indicates that logging SHOULD be
150
+ done and indicates the number of bytes starting at the
151
+ beginning of the packet to place in the log. Values greater
152
+ than the size of the packet being processed indicate that
153
+ the entire packet SHOULD be sent.
154
+
155
+ Examples:
156
+ '-1' no logging
157
+ '0' log but do not include any of the packet in the log
158
+ '20' log and include the first 20 bytes of the packet
159
+ in the log.""",
160
+ },
161
+ "SpdTimePeriod" : {
162
+ "basetype" : "OctetString",
163
+ "status" : "current",
164
+ "ranges" : [
165
+ {
166
+ "min" : "0",
167
+ "max" : "31"
168
+ },
169
+ ],
170
+ "range" : {
171
+ "min" : "0",
172
+ "max" : "31"
173
+ },
174
+ "format" : "31t",
175
+ "description" :
176
+ """This property identifies an overall range of calendar dates
177
+ and time. In a boolean context, a value within this time
178
+ range, inclusive, is considered true.
179
+
180
+ This information is encoded as an octet string using
181
+ the UTF-8 transformation format described in STD 63,
182
+ RFC 3629.
183
+
184
+ It uses the format suggested in RFC 3060. An octet string
185
+
186
+
187
+
188
+ represents a start date and time and an end date and time.
189
+ For example:
190
+
191
+ yyyymmddThhmmss/yyyymmddThhmmss
192
+
193
+ Where: yyyy = year mm = month dd = day
194
+ hh = hour mm = minute ss = second
195
+
196
+ The first 'yyyymmddThhmmss' sub-string indicates the start
197
+ date and time. The second 'yyyymmddThhmmss' sub-string
198
+ indicates the end date and time. The character 'T' within
199
+ these sub-strings indicates the beginning of the time
200
+ portion of each sub-string. The solidus character '/'
201
+ separates the start from the end date and time. The end
202
+ date and time MUST be subsequent to the start date and
203
+ time.
204
+
205
+ There are also two allowed substitutes for a
206
+ 'yyyymmddThhmmss' sub-string: one for the start date and
207
+ time, and one for the end date and time.
208
+
209
+ If the start date and time are replaced with the string
210
+ 'THISANDPRIOR', this sub-string would indicate the current
211
+ date and time and the previous dates and time.
212
+
213
+ If the end date and time are replaced with the string
214
+ 'THISANDFUTURE', this sub-string would indicate the current
215
+ date and time and the subsequent dates and time.
216
+
217
+ Any of the following SHOULD be considered a
218
+ 'wrongValue' error:
219
+ - Setting a value with the end date and time earlier than
220
+ or equal to the start date and time.
221
+ - Setting the start date and time to 'THISANDFUTURE'.
222
+ - Setting the end date and time to 'THISANDPRIOR'.""",
223
+ "reference" :
224
+ """RFC 3060, 3269""",
225
+ },
226
+ }, # typedefs
227
+
228
+ "nodes" : {
229
+ "spdMIB" : {
230
+ "nodetype" : "node",
231
+ "moduleName" : "IPSEC-SPD-MIB",
232
+ "oid" : "1.3.6.1.2.1.153",
233
+ "status" : "current",
234
+ }, # node
235
+ "spdConfigObjects" : {
236
+ "nodetype" : "node",
237
+ "moduleName" : "IPSEC-SPD-MIB",
238
+ "oid" : "1.3.6.1.2.1.153.1",
239
+ }, # node
240
+ "spdLocalConfigObjects" : {
241
+ "nodetype" : "node",
242
+ "moduleName" : "IPSEC-SPD-MIB",
243
+ "oid" : "1.3.6.1.2.1.153.1.1",
244
+ }, # node
245
+ "spdIngressPolicyGroupName" : {
246
+ "nodetype" : "scalar",
247
+ "moduleName" : "IPSEC-SPD-MIB",
248
+ "oid" : "1.3.6.1.2.1.153.1.1.1",
249
+ "status" : "current",
250
+ "syntax" : {
251
+ "type" : {
252
+ "basetype" : "OctetString",
253
+ "parent module" : {
254
+ "name" : "SNMP-FRAMEWORK-MIB",
255
+ "type" : "SnmpAdminString",
256
+ },
257
+ "ranges" : [
258
+ {
259
+ "min" : "0",
260
+ "max" : "32"
261
+ },
262
+ ],
263
+ "range" : {
264
+ "min" : "0",
265
+ "max" : "32"
266
+ },
267
+ },
268
+ },
269
+ "access" : "readwrite",
270
+ "default" : "",
271
+ "description" :
272
+ """This object indicates the global system policy group that
273
+ is to be applied on ingress packets (i.e., arriving at an
274
+ interface from a network) when a given endpoint does not
275
+ contain a policy definition in the spdEndpointToGroupTable.
276
+ Its value can be used as an index into the
277
+ spdGroupContentsTable to retrieve a list of policies. A
278
+ zero length string indicates that no system-wide policy exists
279
+ and the default policy of 'drop' SHOULD be executed for
280
+ ingress packets until one is imposed by either this object
281
+ or by the endpoint processing a given packet.
282
+
283
+ This object MUST be persistent""",
284
+ }, # scalar
285
+ "spdEgressPolicyGroupName" : {
286
+ "nodetype" : "scalar",
287
+ "moduleName" : "IPSEC-SPD-MIB",
288
+ "oid" : "1.3.6.1.2.1.153.1.1.2",
289
+ "status" : "current",
290
+ "syntax" : {
291
+ "type" : {
292
+ "basetype" : "OctetString",
293
+ "parent module" : {
294
+ "name" : "SNMP-FRAMEWORK-MIB",
295
+ "type" : "SnmpAdminString",
296
+ },
297
+ "ranges" : [
298
+ {
299
+ "min" : "0",
300
+ "max" : "32"
301
+ },
302
+ ],
303
+ "range" : {
304
+ "min" : "0",
305
+ "max" : "32"
306
+ },
307
+ },
308
+ },
309
+ "access" : "readwrite",
310
+ "default" : "",
311
+ "description" :
312
+ """This object indicates the policy group containing the
313
+ global system policy that is to be applied on egress
314
+ packets (i.e., packets leaving an interface and entering a
315
+ network) when a given endpoint does not contain a policy
316
+ definition in the spdEndpointToGroupTable. Its value can
317
+ be used as an index into the spdGroupContentsTable to
318
+ retrieve a list of policies. A zero length string
319
+ indicates that no system-wide policy exists and the default
320
+ policy of 'drop' SHOULD be executed for egress packets
321
+ until one is imposed by either this object or by the
322
+ endpoint processing a given packet.
323
+
324
+ This object MUST be persistent""",
325
+ }, # scalar
326
+ "spdEndpointToGroupTable" : {
327
+ "nodetype" : "table",
328
+ "moduleName" : "IPSEC-SPD-MIB",
329
+ "oid" : "1.3.6.1.2.1.153.1.2",
330
+ "status" : "current",
331
+ "description" :
332
+ """This table maps policies (groupings) onto an endpoint
333
+ (interface). A policy group assigned to an endpoint is then
334
+ used to control access to the network traffic passing
335
+ through that endpoint.
336
+
337
+
338
+
339
+
340
+ If an endpoint has been configured with a policy group and
341
+ no rule within that policy group matches that packet, the
342
+ default action in this case SHALL be to drop the packet.
343
+
344
+ If no policy group has been assigned to an endpoint, then
345
+ the policy group specified by spdIngressPolicyGroupName MUST
346
+ be used on traffic inbound from the network through that
347
+ endpoint, and the policy group specified by
348
+ spdEgressPolicyGroupName MUST be used for traffic outbound
349
+ to the network through that endpoint.""",
350
+ }, # table
351
+ "spdEndpointToGroupEntry" : {
352
+ "nodetype" : "row",
353
+ "moduleName" : "IPSEC-SPD-MIB",
354
+ "oid" : "1.3.6.1.2.1.153.1.2.1",
355
+ "create" : "true",
356
+ "status" : "current",
357
+ "linkage" : [
358
+ "spdEndGroupDirection",
359
+ "spdEndGroupInterface",
360
+ ],
361
+ "description" :
362
+ """A mapping assigning a policy group to an endpoint.""",
363
+ }, # row
364
+ "spdEndGroupDirection" : {
365
+ "nodetype" : "column",
366
+ "moduleName" : "IPSEC-SPD-MIB",
367
+ "oid" : "1.3.6.1.2.1.153.1.2.1.1",
368
+ "status" : "current",
369
+ "syntax" : {
370
+ "type" : { "module" :"DIFFSERV-MIB", "name" : "IfDirection"},
371
+ },
372
+ "access" : "noaccess",
373
+ "description" :
374
+ """This object indicates which direction of packets crossing
375
+ the interface are associated with which spdEndGroupName
376
+ object. Ingress packets, or packets into the device match
377
+ when this value is inbound(1). Egress packets or packets
378
+ out of the device match when this value is outbound(2).""",
379
+ }, # column
380
+ "spdEndGroupInterface" : {
381
+ "nodetype" : "column",
382
+ "moduleName" : "IPSEC-SPD-MIB",
383
+ "oid" : "1.3.6.1.2.1.153.1.2.1.2",
384
+ "status" : "current",
385
+ "syntax" : {
386
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
387
+ },
388
+ "access" : "noaccess",
389
+ "description" :
390
+ """This value matches the IF-MIB's ifTable's ifIndex column
391
+ and indicates the interface associated with a given
392
+ endpoint. This object can be used to uniquely identify an
393
+ endpoint that a set of policy groups are applied to.""",
394
+ }, # column
395
+ "spdEndGroupName" : {
396
+ "nodetype" : "column",
397
+ "moduleName" : "IPSEC-SPD-MIB",
398
+ "oid" : "1.3.6.1.2.1.153.1.2.1.3",
399
+ "status" : "current",
400
+ "syntax" : {
401
+ "type" : {
402
+ "basetype" : "OctetString",
403
+ "parent module" : {
404
+ "name" : "SNMP-FRAMEWORK-MIB",
405
+ "type" : "SnmpAdminString",
406
+ },
407
+ "ranges" : [
408
+ {
409
+ "min" : "1",
410
+ "max" : "32"
411
+ },
412
+ ],
413
+ "range" : {
414
+ "min" : "1",
415
+ "max" : "32"
416
+ },
417
+ },
418
+ },
419
+ "access" : "readwrite",
420
+ "description" :
421
+ """The policy group name to apply at this endpoint. The
422
+ value of the spdEndGroupName object is then used as an
423
+ index into the spdGroupContentsTable to come up with a list
424
+ of rules that MUST be applied at this endpoint.""",
425
+ }, # column
426
+ "spdEndGroupLastChanged" : {
427
+ "nodetype" : "column",
428
+ "moduleName" : "IPSEC-SPD-MIB",
429
+ "oid" : "1.3.6.1.2.1.153.1.2.1.4",
430
+ "status" : "current",
431
+ "syntax" : {
432
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
433
+ },
434
+ "access" : "readonly",
435
+ "description" :
436
+ """The value of sysUpTime when this row was last modified
437
+ or created either through SNMP SETs or by some other
438
+ external means.
439
+
440
+ If this row has not been modified since the last
441
+ re-initialization of the network management subsystem, this
442
+ object SHOULD have a zero value.""",
443
+ }, # column
444
+ "spdEndGroupStorageType" : {
445
+ "nodetype" : "column",
446
+ "moduleName" : "IPSEC-SPD-MIB",
447
+ "oid" : "1.3.6.1.2.1.153.1.2.1.5",
448
+ "status" : "current",
449
+ "syntax" : {
450
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
451
+ },
452
+ "access" : "readwrite",
453
+ "default" : "nonVolatile",
454
+ "description" :
455
+ """The storage type for this row. Rows in this table that
456
+ were created through an external process MAY have a storage
457
+ type of readOnly or permanent.
458
+
459
+ For a storage type of permanent, none of the columns have
460
+ to be writable.""",
461
+ }, # column
462
+ "spdEndGroupRowStatus" : {
463
+ "nodetype" : "column",
464
+ "moduleName" : "IPSEC-SPD-MIB",
465
+ "oid" : "1.3.6.1.2.1.153.1.2.1.6",
466
+ "status" : "current",
467
+ "syntax" : {
468
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
469
+ },
470
+ "access" : "readwrite",
471
+ "description" :
472
+ """This object indicates the conceptual status of this row.
473
+
474
+ The value of this object has no effect on whether other
475
+ objects in this conceptual row can be modified.
476
+
477
+ This object is considered 'notReady' and MUST NOT be set to
478
+ active until one or more active rows exist within the
479
+ spdGroupContentsTable for the group referenced by the
480
+ spdEndGroupName object.""",
481
+ }, # column
482
+ "spdGroupContentsTable" : {
483
+ "nodetype" : "table",
484
+ "moduleName" : "IPSEC-SPD-MIB",
485
+ "oid" : "1.3.6.1.2.1.153.1.3",
486
+ "status" : "current",
487
+ "description" :
488
+ """This table contains a list of rules and/or subgroups
489
+ contained within a given policy group. For a given value
490
+ of spdGroupContName, the set of rows sharing that value
491
+ forms a 'group'. The rows in a group MUST be processed
492
+ according to the value of the spdGroupContPriority object
493
+ in each row. The processing MUST be executed starting with
494
+ the lowest value of spdGroupContPriority and in ascending
495
+ order thereafter.
496
+
497
+ If an action is executed as the result of the processing of
498
+ a row in a group, the processing of further rows in that
499
+ group MUST stop. Iterating to the next policy group row by
500
+ finding the next largest spdGroupContPriority object SHALL
501
+ only be done if no actions were run while processing the
502
+ current row for a given packet.""",
503
+ }, # table
504
+ "spdGroupContentsEntry" : {
505
+ "nodetype" : "row",
506
+ "moduleName" : "IPSEC-SPD-MIB",
507
+ "oid" : "1.3.6.1.2.1.153.1.3.1",
508
+ "create" : "true",
509
+ "status" : "current",
510
+ "linkage" : [
511
+ "spdGroupContName",
512
+ "spdGroupContPriority",
513
+ ],
514
+ "description" :
515
+ """Defines a given sub-component within a policy group. A
516
+ sub-component is either a rule or another group as
517
+ indicated by spdGroupContComponentType and referenced by
518
+ spdGroupContComponentName.""",
519
+ }, # row
520
+ "spdGroupContName" : {
521
+ "nodetype" : "column",
522
+ "moduleName" : "IPSEC-SPD-MIB",
523
+ "oid" : "1.3.6.1.2.1.153.1.3.1.1",
524
+ "status" : "current",
525
+ "syntax" : {
526
+ "type" : {
527
+ "basetype" : "OctetString",
528
+ "parent module" : {
529
+ "name" : "SNMP-FRAMEWORK-MIB",
530
+ "type" : "SnmpAdminString",
531
+ },
532
+ "ranges" : [
533
+ {
534
+ "min" : "1",
535
+ "max" : "32"
536
+ },
537
+ ],
538
+ "range" : {
539
+ "min" : "1",
540
+ "max" : "32"
541
+ },
542
+ },
543
+ },
544
+ "access" : "noaccess",
545
+ "description" :
546
+ """The administrative name of the group associated with this
547
+ row. A 'group' is formed by all the rows in this table that
548
+ have the same value of this object.""",
549
+ }, # column
550
+ "spdGroupContPriority" : {
551
+ "nodetype" : "column",
552
+ "moduleName" : "IPSEC-SPD-MIB",
553
+ "oid" : "1.3.6.1.2.1.153.1.3.1.2",
554
+ "status" : "current",
555
+ "syntax" : {
556
+ "type" : {
557
+ "basetype" : "Integer32",
558
+ "ranges" : [
559
+ {
560
+ "min" : "0",
561
+ "max" : "65535"
562
+ },
563
+ ],
564
+ "range" : {
565
+ "min" : "0",
566
+ "max" : "65535"
567
+ },
568
+ },
569
+ },
570
+ "access" : "noaccess",
571
+ "description" :
572
+ """The priority (sequence number) of the sub-component in
573
+ a group that this row represents. This value indicates
574
+ the order that each row of this table MUST be processed
575
+ from low to high. For example, a row with a priority of 0
576
+ is processed before a row with a priority of 1, a 1 before
577
+ a 2, etc.""",
578
+ }, # column
579
+ "spdGroupContFilter" : {
580
+ "nodetype" : "column",
581
+ "moduleName" : "IPSEC-SPD-MIB",
582
+ "oid" : "1.3.6.1.2.1.153.1.3.1.3",
583
+ "status" : "current",
584
+ "syntax" : {
585
+ "type" : { "module" :"SNMPv2-TC", "name" : "VariablePointer"},
586
+ },
587
+ "access" : "readwrite",
588
+ "default" : "1.3.6.1.2.1.153.1.7.1.0",
589
+ "description" :
590
+ """spdGroupContFilter points to a filter that is evaluated
591
+ to determine whether the spdGroupContComponentName within
592
+ this row is exercised. Managers can use this object to
593
+ classify groups of rules, or subgroups, together in order to
594
+ achieve a greater degree of control and optimization over
595
+ the execution order of the items within the group. If the
596
+
597
+
598
+
599
+ filter evaluates to false, the rule or subgroup will be
600
+ skipped and the next rule or subgroup will be evaluated
601
+ instead. This value can be used to indicate a scalar or
602
+ row in a table. When indicating a row in a table, this
603
+ value MUST point to the first column instance in that row.
604
+
605
+ An example usage of this object would be to limit a
606
+ group of rules to executing only when the IP packet
607
+ being processed is designated to be processed by IKE.
608
+ This effectively creates a group of IKE-specific rules.
609
+
610
+ The following tables and scalars can be pointed to by this
611
+ column. All but diffServMultiFieldClfrTable are defined in
612
+ this MIB:
613
+
614
+ diffServMultiFieldClfrTable
615
+ spdIpOffsetFilterTable
616
+ spdTimeFilterTable
617
+ spdCompoundFilterTable
618
+ spdTrueFilter
619
+ spdIpsoHeaderFilterTable
620
+
621
+ Implementations MAY choose to provide support for other
622
+ filter tables or scalars.
623
+
624
+ If this column is set to a VariablePointer value, which
625
+ references a non-existent row in an otherwise supported
626
+ table, the inconsistentName exception MUST be returned. If
627
+ the table or scalar pointed to by the VariablePointer is
628
+ not supported at all, then an inconsistentValue exception
629
+ MUST be returned.
630
+
631
+ If, during packet processing, a row in this table is applied
632
+ to a packet and the value of this column in that row
633
+ references a non-existent or non-supported object, the
634
+ packet MUST be dropped.""",
635
+ "reference" :
636
+ """RFC 3289""",
637
+ }, # column
638
+ "spdGroupContComponentType" : {
639
+ "nodetype" : "column",
640
+ "moduleName" : "IPSEC-SPD-MIB",
641
+ "oid" : "1.3.6.1.2.1.153.1.3.1.4",
642
+ "status" : "current",
643
+ "syntax" : {
644
+ "type" : {
645
+ "basetype" : "Enumeration",
646
+ "group" : {
647
+ "nodetype" : "namednumber",
648
+ "number" : "1"
649
+ },
650
+ "rule" : {
651
+ "nodetype" : "namednumber",
652
+ "number" : "2"
653
+ },
654
+ },
655
+ },
656
+ "access" : "readwrite",
657
+ "default" : "rule",
658
+ "description" :
659
+ """Indicates whether the spdGroupContComponentName object
660
+ is the name of another group defined within the
661
+ spdGroupContentsTable or is the name of a rule defined
662
+
663
+
664
+
665
+ within the spdRuleDefinitionTable.""",
666
+ }, # column
667
+ "spdGroupContComponentName" : {
668
+ "nodetype" : "column",
669
+ "moduleName" : "IPSEC-SPD-MIB",
670
+ "oid" : "1.3.6.1.2.1.153.1.3.1.5",
671
+ "status" : "current",
672
+ "syntax" : {
673
+ "type" : {
674
+ "basetype" : "OctetString",
675
+ "parent module" : {
676
+ "name" : "SNMP-FRAMEWORK-MIB",
677
+ "type" : "SnmpAdminString",
678
+ },
679
+ "ranges" : [
680
+ {
681
+ "min" : "1",
682
+ "max" : "32"
683
+ },
684
+ ],
685
+ "range" : {
686
+ "min" : "1",
687
+ "max" : "32"
688
+ },
689
+ },
690
+ },
691
+ "access" : "readwrite",
692
+ "description" :
693
+ """The name of the policy rule or subgroup contained within
694
+ this row, as indicated by the spdGroupContComponentType
695
+ object.""",
696
+ }, # column
697
+ "spdGroupContLastChanged" : {
698
+ "nodetype" : "column",
699
+ "moduleName" : "IPSEC-SPD-MIB",
700
+ "oid" : "1.3.6.1.2.1.153.1.3.1.6",
701
+ "status" : "current",
702
+ "syntax" : {
703
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
704
+ },
705
+ "access" : "readonly",
706
+ "description" :
707
+ """The value of sysUpTime when this row was last modified
708
+ or created either through SNMP SETs or by some other
709
+ external means.
710
+
711
+ If this row has not been modified since the last
712
+ re-initialization of the network management subsystem,
713
+ this object SHOULD have a zero value.""",
714
+ }, # column
715
+ "spdGroupContStorageType" : {
716
+ "nodetype" : "column",
717
+ "moduleName" : "IPSEC-SPD-MIB",
718
+ "oid" : "1.3.6.1.2.1.153.1.3.1.7",
719
+ "status" : "current",
720
+ "syntax" : {
721
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
722
+ },
723
+ "access" : "readwrite",
724
+ "default" : "nonVolatile",
725
+ "description" :
726
+ """The storage type for this row. Rows in this table that
727
+ were created through an external process MAY have a storage
728
+ type of readOnly or permanent.
729
+
730
+ For a storage type of permanent, none of the columns have
731
+ to be writable.""",
732
+ }, # column
733
+ "spdGroupContRowStatus" : {
734
+ "nodetype" : "column",
735
+ "moduleName" : "IPSEC-SPD-MIB",
736
+ "oid" : "1.3.6.1.2.1.153.1.3.1.8",
737
+ "status" : "current",
738
+ "syntax" : {
739
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
740
+ },
741
+ "access" : "readwrite",
742
+ "description" :
743
+ """This object indicates the conceptual status of this row.
744
+
745
+
746
+
747
+ The value of this object has no effect on whether other
748
+ objects in this conceptual row can be modified.
749
+
750
+ This object MUST NOT be set to active until the row to
751
+ which the spdGroupContComponentName points to exists and is
752
+ active.
753
+
754
+ If active, this object MUST remain active unless one of the
755
+ following two conditions are met:
756
+
757
+ I. No active row in spdEndpointToGroupTable exists that
758
+ references this row's group (i.e., indicate this row's
759
+ spdGroupContName).
760
+
761
+ II. Or at least one other active row in this table has a
762
+ matching spdGroupContName.
763
+
764
+ If neither condition is met, an attempt to set this row to
765
+ something other than active MUST result in an
766
+ inconsistentValue error.""",
767
+ }, # column
768
+ "spdRuleDefinitionTable" : {
769
+ "nodetype" : "table",
770
+ "moduleName" : "IPSEC-SPD-MIB",
771
+ "oid" : "1.3.6.1.2.1.153.1.4",
772
+ "status" : "current",
773
+ "description" :
774
+ """This table defines a rule by associating a filter
775
+ or a set of filters to an action to be executed.""",
776
+ }, # table
777
+ "spdRuleDefinitionEntry" : {
778
+ "nodetype" : "row",
779
+ "moduleName" : "IPSEC-SPD-MIB",
780
+ "oid" : "1.3.6.1.2.1.153.1.4.1",
781
+ "create" : "true",
782
+ "status" : "current",
783
+ "linkage" : [
784
+ "spdRuleDefName",
785
+ ],
786
+ "description" :
787
+ """A row defining a particular rule definition. A rule
788
+ definition binds a filter pointer to an action pointer.""",
789
+ }, # row
790
+ "spdRuleDefName" : {
791
+ "nodetype" : "column",
792
+ "moduleName" : "IPSEC-SPD-MIB",
793
+ "oid" : "1.3.6.1.2.1.153.1.4.1.1",
794
+ "status" : "current",
795
+ "syntax" : {
796
+ "type" : {
797
+ "basetype" : "OctetString",
798
+ "parent module" : {
799
+ "name" : "SNMP-FRAMEWORK-MIB",
800
+ "type" : "SnmpAdminString",
801
+ },
802
+ "ranges" : [
803
+ {
804
+ "min" : "1",
805
+ "max" : "32"
806
+ },
807
+ ],
808
+ "range" : {
809
+ "min" : "1",
810
+ "max" : "32"
811
+ },
812
+ },
813
+ },
814
+ "access" : "noaccess",
815
+ "description" :
816
+ """spdRuleDefName is the administratively assigned name of
817
+ the rule referred to by the spdGroupContComponentName
818
+ object.""",
819
+ }, # column
820
+ "spdRuleDefDescription" : {
821
+ "nodetype" : "column",
822
+ "moduleName" : "IPSEC-SPD-MIB",
823
+ "oid" : "1.3.6.1.2.1.153.1.4.1.2",
824
+ "status" : "current",
825
+ "syntax" : {
826
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
827
+ },
828
+ "access" : "readwrite",
829
+ "default" : "",
830
+ "description" :
831
+ """A user defined string. This field MAY be used for
832
+ administrative tracking purposes.""",
833
+ }, # column
834
+ "spdRuleDefFilter" : {
835
+ "nodetype" : "column",
836
+ "moduleName" : "IPSEC-SPD-MIB",
837
+ "oid" : "1.3.6.1.2.1.153.1.4.1.3",
838
+ "status" : "current",
839
+ "syntax" : {
840
+ "type" : { "module" :"SNMPv2-TC", "name" : "VariablePointer"},
841
+ },
842
+ "access" : "readwrite",
843
+ "description" :
844
+ """spdRuleDefFilter points to a filter that is used to
845
+ evaluate whether the action associated with this row is
846
+ executed or not. The action will only execute if the
847
+ filter referenced by this object evaluates to TRUE after
848
+ first applying any negation required by the
849
+ spdRuleDefFilterNegated object.
850
+
851
+ The following tables and scalars can be pointed to by this
852
+ column. All but diffServMultiFieldClfrTable are defined in
853
+ this MIB. Implementations MAY choose to provide support
854
+ for other filter tables or scalars as well:
855
+
856
+ diffServMultiFieldClfrTable
857
+
858
+
859
+
860
+ spdIpOffsetFilterTable
861
+ spdTimeFilterTable
862
+ spdCompoundFilterTable
863
+ spdTrueFilter
864
+
865
+ If this column is set to a VariablePointer value, which
866
+ references a non-existent row in an otherwise supported
867
+ table, the inconsistentName exception MUST be returned. If
868
+ the table or scalar pointed to by the VariablePointer is
869
+ not supported at all, then an inconsistentValue exception
870
+ MUST be returned.
871
+
872
+ If, during packet processing, this column has a value that
873
+ references a non-existent or non-supported object, the
874
+ packet MUST be dropped.""",
875
+ "reference" :
876
+ """RFC 3289""",
877
+ }, # column
878
+ "spdRuleDefFilterNegated" : {
879
+ "nodetype" : "column",
880
+ "moduleName" : "IPSEC-SPD-MIB",
881
+ "oid" : "1.3.6.1.2.1.153.1.4.1.4",
882
+ "status" : "current",
883
+ "syntax" : {
884
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
885
+ },
886
+ "access" : "readwrite",
887
+ "default" : "false",
888
+ "description" :
889
+ """spdRuleDefFilterNegated specifies whether or not the results of
890
+ the filter referenced by the spdRuleDefFilter object is
891
+ negated.""",
892
+ }, # column
893
+ "spdRuleDefAction" : {
894
+ "nodetype" : "column",
895
+ "moduleName" : "IPSEC-SPD-MIB",
896
+ "oid" : "1.3.6.1.2.1.153.1.4.1.5",
897
+ "status" : "current",
898
+ "syntax" : {
899
+ "type" : { "module" :"SNMPv2-TC", "name" : "VariablePointer"},
900
+ },
901
+ "access" : "readwrite",
902
+ "description" :
903
+ """This column points to the action to be taken. It MAY,
904
+ but is not limited to, point to a row in one of the
905
+ following tables:
906
+
907
+ spdCompoundActionTable
908
+ ipsaSaPreconfiguredActionTable
909
+ ipiaIkeActionTable
910
+ ipiaIpsecActionTable
911
+
912
+ It MAY also point to one of the scalar objects beneath
913
+ spdStaticActions.
914
+
915
+ If this object is set to a pointer to a row in an
916
+ unsupported (or unknown) table, an inconsistentValue
917
+
918
+
919
+
920
+ error MUST be returned.
921
+
922
+ If this object is set to point to a non-existent row in an
923
+ otherwise supported table, an inconsistentName error MUST
924
+ be returned.
925
+
926
+ If, during packet processing, this column has a value that
927
+ references a non-existent or non-supported object, the
928
+ packet MUST be dropped.""",
929
+ }, # column
930
+ "spdRuleDefAdminStatus" : {
931
+ "nodetype" : "column",
932
+ "moduleName" : "IPSEC-SPD-MIB",
933
+ "oid" : "1.3.6.1.2.1.153.1.4.1.6",
934
+ "status" : "current",
935
+ "syntax" : {
936
+ "type" : { "module" :"IPSEC-SPD-MIB", "name" : "SpdAdminStatus"},
937
+ },
938
+ "access" : "readwrite",
939
+ "default" : "enabled",
940
+ "description" :
941
+ """Indicates whether the current rule definition is considered
942
+ active. If the value is enabled, the rule MUST be evaluated
943
+ when processing packets. If the value is disabled, the
944
+ packet processing MUST continue as if this rule's filter
945
+ had effectively failed.""",
946
+ }, # column
947
+ "spdRuleDefLastChanged" : {
948
+ "nodetype" : "column",
949
+ "moduleName" : "IPSEC-SPD-MIB",
950
+ "oid" : "1.3.6.1.2.1.153.1.4.1.7",
951
+ "status" : "current",
952
+ "syntax" : {
953
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
954
+ },
955
+ "access" : "readonly",
956
+ "description" :
957
+ """The value of sysUpTime when this row was last modified
958
+ or created either through SNMP SETs or by some other
959
+ external means.
960
+
961
+ If this row has not been modified since the last
962
+ re-initialization of the network management subsystem, this
963
+ object SHOULD have a zero value.""",
964
+ }, # column
965
+ "spdRuleDefStorageType" : {
966
+ "nodetype" : "column",
967
+ "moduleName" : "IPSEC-SPD-MIB",
968
+ "oid" : "1.3.6.1.2.1.153.1.4.1.8",
969
+ "status" : "current",
970
+ "syntax" : {
971
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
972
+ },
973
+ "access" : "readwrite",
974
+ "default" : "nonVolatile",
975
+ "description" :
976
+ """The storage type for this row. Rows in this table that
977
+ were created through an external process MAY have a
978
+ storage type of readOnly or permanent.
979
+
980
+ For a storage type of permanent, none of the columns have
981
+
982
+
983
+
984
+ to be writable.""",
985
+ }, # column
986
+ "spdRuleDefRowStatus" : {
987
+ "nodetype" : "column",
988
+ "moduleName" : "IPSEC-SPD-MIB",
989
+ "oid" : "1.3.6.1.2.1.153.1.4.1.9",
990
+ "status" : "current",
991
+ "syntax" : {
992
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
993
+ },
994
+ "access" : "readwrite",
995
+ "description" :
996
+ """This object indicates the conceptual status of this row.
997
+
998
+ The value of this object has no effect on whether other
999
+ objects in this conceptual row can be modified.
1000
+
1001
+ This object MUST NOT be set to active until the containing
1002
+ conditions, filters, and actions have been defined. Once
1003
+ active, it MUST remain active until no active
1004
+ policyGroupContents entries are referencing it. A failed
1005
+ attempt to do so MUST return an inconsistentValue error.""",
1006
+ }, # column
1007
+ "spdCompoundFilterTable" : {
1008
+ "nodetype" : "table",
1009
+ "moduleName" : "IPSEC-SPD-MIB",
1010
+ "oid" : "1.3.6.1.2.1.153.1.5",
1011
+ "status" : "current",
1012
+ "description" :
1013
+ """A table defining compound filters and their associated
1014
+ parameters. A row in this table can be pointed to by a
1015
+ spdRuleDefFilter object.""",
1016
+ }, # table
1017
+ "spdCompoundFilterEntry" : {
1018
+ "nodetype" : "row",
1019
+ "moduleName" : "IPSEC-SPD-MIB",
1020
+ "oid" : "1.3.6.1.2.1.153.1.5.1",
1021
+ "create" : "true",
1022
+ "status" : "current",
1023
+ "linkage" : [
1024
+ "spdCompFiltName",
1025
+ ],
1026
+ "description" :
1027
+ """An entry in the spdCompoundFilterTable. Each entry in this
1028
+ table represents a compound filter. A filter defined by
1029
+ this table is considered to have a TRUE return value if and
1030
+ only if:
1031
+
1032
+ spdCompFiltLogicType is AND and all of the sub-filters
1033
+ associated with it, as defined in the spdSubfiltersTable,
1034
+ are all true themselves (after applying any required
1035
+
1036
+
1037
+
1038
+ negation, as defined by the ficFilterIsNegated object).
1039
+
1040
+ spdCompFiltLogicType is OR and at least one of the
1041
+ sub-filters associated with it, as defined in the
1042
+ spdSubfiltersTable, is true itself (after applying any
1043
+ required negation, as defined by the ficFilterIsNegated
1044
+ object.""",
1045
+ }, # row
1046
+ "spdCompFiltName" : {
1047
+ "nodetype" : "column",
1048
+ "moduleName" : "IPSEC-SPD-MIB",
1049
+ "oid" : "1.3.6.1.2.1.153.1.5.1.1",
1050
+ "status" : "current",
1051
+ "syntax" : {
1052
+ "type" : {
1053
+ "basetype" : "OctetString",
1054
+ "parent module" : {
1055
+ "name" : "SNMP-FRAMEWORK-MIB",
1056
+ "type" : "SnmpAdminString",
1057
+ },
1058
+ "ranges" : [
1059
+ {
1060
+ "min" : "1",
1061
+ "max" : "32"
1062
+ },
1063
+ ],
1064
+ "range" : {
1065
+ "min" : "1",
1066
+ "max" : "32"
1067
+ },
1068
+ },
1069
+ },
1070
+ "access" : "noaccess",
1071
+ "description" :
1072
+ """A user definable string. This value is used as an index
1073
+ into this table.""",
1074
+ }, # column
1075
+ "spdCompFiltDescription" : {
1076
+ "nodetype" : "column",
1077
+ "moduleName" : "IPSEC-SPD-MIB",
1078
+ "oid" : "1.3.6.1.2.1.153.1.5.1.2",
1079
+ "status" : "current",
1080
+ "syntax" : {
1081
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
1082
+ },
1083
+ "access" : "readwrite",
1084
+ "default" : "",
1085
+ "description" :
1086
+ """A user definable string. This field MAY be used for
1087
+ your administrative tracking purposes.""",
1088
+ }, # column
1089
+ "spdCompFiltLogicType" : {
1090
+ "nodetype" : "column",
1091
+ "moduleName" : "IPSEC-SPD-MIB",
1092
+ "oid" : "1.3.6.1.2.1.153.1.5.1.3",
1093
+ "status" : "current",
1094
+ "syntax" : {
1095
+ "type" : { "module" :"IPSEC-SPD-MIB", "name" : "SpdBooleanOperator"},
1096
+ },
1097
+ "access" : "readwrite",
1098
+ "default" : "and",
1099
+ "description" :
1100
+ """Indicates whether the sub-component filters of this
1101
+ compound filter are functionally ANDed or ORed together.""",
1102
+ }, # column
1103
+ "spdCompFiltLastChanged" : {
1104
+ "nodetype" : "column",
1105
+ "moduleName" : "IPSEC-SPD-MIB",
1106
+ "oid" : "1.3.6.1.2.1.153.1.5.1.4",
1107
+ "status" : "current",
1108
+ "syntax" : {
1109
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1110
+ },
1111
+ "access" : "readonly",
1112
+ "description" :
1113
+ """The value of sysUpTime when this row was last modified
1114
+ or created either through SNMP SETs or by some other
1115
+ external means.
1116
+
1117
+ If this row has not been modified since the last
1118
+ re-initialization of the network management subsystem, this
1119
+ object SHOULD have a zero value.""",
1120
+ }, # column
1121
+ "spdCompFiltStorageType" : {
1122
+ "nodetype" : "column",
1123
+ "moduleName" : "IPSEC-SPD-MIB",
1124
+ "oid" : "1.3.6.1.2.1.153.1.5.1.5",
1125
+ "status" : "current",
1126
+ "syntax" : {
1127
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
1128
+ },
1129
+ "access" : "readwrite",
1130
+ "default" : "nonVolatile",
1131
+ "description" :
1132
+ """The storage type for this row. Rows in this table that
1133
+ were created through an external process MAY have a
1134
+ storage type of readOnly or permanent.
1135
+
1136
+ For a storage type of permanent, none of the columns have
1137
+ to be writable.""",
1138
+ }, # column
1139
+ "spdCompFiltRowStatus" : {
1140
+ "nodetype" : "column",
1141
+ "moduleName" : "IPSEC-SPD-MIB",
1142
+ "oid" : "1.3.6.1.2.1.153.1.5.1.6",
1143
+ "status" : "current",
1144
+ "syntax" : {
1145
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1146
+ },
1147
+ "access" : "readwrite",
1148
+ "description" :
1149
+ """This object indicates the conceptual status of this row.
1150
+
1151
+ The value of this object has no effect on whether other
1152
+ objects in this conceptual row can be modified.
1153
+
1154
+ Once active, it MUST NOT have its value changed if any
1155
+ active rows in the spdRuleDefinitionTable are currently
1156
+ pointing at this row.""",
1157
+ }, # column
1158
+ "spdSubfiltersTable" : {
1159
+ "nodetype" : "table",
1160
+ "moduleName" : "IPSEC-SPD-MIB",
1161
+ "oid" : "1.3.6.1.2.1.153.1.6",
1162
+ "status" : "current",
1163
+ "description" :
1164
+ """This table defines a list of filters contained within a
1165
+ given compound filter defined in the
1166
+ spdCompoundFilterTable.""",
1167
+ }, # table
1168
+ "spdSubfiltersEntry" : {
1169
+ "nodetype" : "row",
1170
+ "moduleName" : "IPSEC-SPD-MIB",
1171
+ "oid" : "1.3.6.1.2.1.153.1.6.1",
1172
+ "create" : "true",
1173
+ "status" : "current",
1174
+ "linkage" : [
1175
+ "spdCompFiltName",
1176
+ "spdSubFiltPriority",
1177
+ ],
1178
+ "description" :
1179
+ """An entry in the spdSubfiltersTable. There is an entry in
1180
+ this table for each sub-filter of all compound filters
1181
+ present in the spdCompoundFilterTable.""",
1182
+ }, # row
1183
+ "spdSubFiltPriority" : {
1184
+ "nodetype" : "column",
1185
+ "moduleName" : "IPSEC-SPD-MIB",
1186
+ "oid" : "1.3.6.1.2.1.153.1.6.1.1",
1187
+ "status" : "current",
1188
+ "syntax" : {
1189
+ "type" : {
1190
+ "basetype" : "Integer32",
1191
+ "ranges" : [
1192
+ {
1193
+ "min" : "0",
1194
+ "max" : "65535"
1195
+ },
1196
+ ],
1197
+ "range" : {
1198
+ "min" : "0",
1199
+ "max" : "65535"
1200
+ },
1201
+ },
1202
+ },
1203
+ "access" : "noaccess",
1204
+ "description" :
1205
+ """The priority of a given filter within a compound filter.
1206
+ The order of execution is from lowest to highest priority
1207
+ value (i.e., priority 0 before priority 1, 1 before 2,
1208
+ etc.). Implementations MAY choose to follow this ordering,
1209
+ as set by the manager that created the rows. This can allow
1210
+ a manager to intelligently construct filter lists such that
1211
+ faster filters are evaluated first.""",
1212
+ }, # column
1213
+ "spdSubFiltSubfilter" : {
1214
+ "nodetype" : "column",
1215
+ "moduleName" : "IPSEC-SPD-MIB",
1216
+ "oid" : "1.3.6.1.2.1.153.1.6.1.2",
1217
+ "status" : "current",
1218
+ "syntax" : {
1219
+ "type" : { "module" :"SNMPv2-TC", "name" : "VariablePointer"},
1220
+ },
1221
+ "access" : "readwrite",
1222
+ "description" :
1223
+ """The OID of the contained filter. The value of this
1224
+ object is a VariablePointer that references the filter to
1225
+ be included in this compound filter.
1226
+
1227
+ The following tables and scalars can be pointed to by this
1228
+ column. All but diffServMultiFieldClfrTable are defined in
1229
+ this MIB. Implementations MAY choose to provide support
1230
+ for other filter tables or scalars as well:
1231
+
1232
+ diffServMultiFieldClfrTable
1233
+ spdIpsoHeaderFilterTable
1234
+ spdIpOffsetFilterTable
1235
+ spdTimeFilterTable
1236
+ spdCompoundFilterTable
1237
+ spdTrueFilter
1238
+
1239
+ If this column is set to a VariablePointer value that
1240
+ references a non-existent row in an otherwise supported
1241
+ table, the inconsistentName exception MUST be returned. If
1242
+ the table or scalar pointed to by the VariablePointer is
1243
+ not supported at all, then an inconsistentValue exception
1244
+ MUST be returned.
1245
+
1246
+ If, during packet processing, this column has a value that
1247
+ references a non-existent or non-supported object, the
1248
+ packet MUST be dropped.""",
1249
+ "reference" :
1250
+ """RFC 3289""",
1251
+ }, # column
1252
+ "spdSubFiltSubfilterIsNegated" : {
1253
+ "nodetype" : "column",
1254
+ "moduleName" : "IPSEC-SPD-MIB",
1255
+ "oid" : "1.3.6.1.2.1.153.1.6.1.3",
1256
+ "status" : "current",
1257
+ "syntax" : {
1258
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1259
+ },
1260
+ "access" : "readwrite",
1261
+ "default" : "false",
1262
+ "description" :
1263
+ """Indicates whether or not the result of applying this sub-filter
1264
+ is negated.""",
1265
+ }, # column
1266
+ "spdSubFiltLastChanged" : {
1267
+ "nodetype" : "column",
1268
+ "moduleName" : "IPSEC-SPD-MIB",
1269
+ "oid" : "1.3.6.1.2.1.153.1.6.1.4",
1270
+ "status" : "current",
1271
+ "syntax" : {
1272
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1273
+ },
1274
+ "access" : "readonly",
1275
+ "description" :
1276
+ """The value of sysUpTime when this row was last modified
1277
+ or created either through SNMP SETs or by some other
1278
+ external means.
1279
+
1280
+
1281
+
1282
+
1283
+ If this row has not been modified since the last
1284
+ re-initialization of the network management subsystem, this
1285
+ object SHOULD have a zero value.""",
1286
+ }, # column
1287
+ "spdSubFiltStorageType" : {
1288
+ "nodetype" : "column",
1289
+ "moduleName" : "IPSEC-SPD-MIB",
1290
+ "oid" : "1.3.6.1.2.1.153.1.6.1.5",
1291
+ "status" : "current",
1292
+ "syntax" : {
1293
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
1294
+ },
1295
+ "access" : "readwrite",
1296
+ "default" : "nonVolatile",
1297
+ "description" :
1298
+ """The storage type for this row. Rows in this table that
1299
+ were created through an external process MAY have a
1300
+ storage type of readOnly or permanent.
1301
+
1302
+ For a storage type of permanent, none of the columns have
1303
+ to be writable.""",
1304
+ }, # column
1305
+ "spdSubFiltRowStatus" : {
1306
+ "nodetype" : "column",
1307
+ "moduleName" : "IPSEC-SPD-MIB",
1308
+ "oid" : "1.3.6.1.2.1.153.1.6.1.6",
1309
+ "status" : "current",
1310
+ "syntax" : {
1311
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1312
+ },
1313
+ "access" : "readwrite",
1314
+ "description" :
1315
+ """This object indicates the conceptual status of this row.
1316
+
1317
+ The value of this object has no effect on whether other
1318
+ objects in this conceptual row can be modified.
1319
+
1320
+ This object cannot be made active until a filter
1321
+ referenced by the spdSubFiltSubfilter object is both
1322
+ defined and active. An attempt to do so MUST result in
1323
+ an inconsistentValue error.
1324
+
1325
+ If active, this object MUST remain active unless one of the
1326
+ following two conditions are met:
1327
+
1328
+ I. No active row in the SpdCompoundFilterTable exists
1329
+ that has a matching spdCompFiltName.
1330
+
1331
+ II. Or, at least one other active row in this table has a
1332
+ matching spdCompFiltName.
1333
+
1334
+ If neither condition is met, an attempt to set this row to
1335
+ something other than active MUST result in an
1336
+ inconsistentValue error.""",
1337
+ }, # column
1338
+ "spdStaticFilters" : {
1339
+ "nodetype" : "node",
1340
+ "moduleName" : "IPSEC-SPD-MIB",
1341
+ "oid" : "1.3.6.1.2.1.153.1.7",
1342
+ }, # node
1343
+ "spdTrueFilter" : {
1344
+ "nodetype" : "scalar",
1345
+ "moduleName" : "IPSEC-SPD-MIB",
1346
+ "oid" : "1.3.6.1.2.1.153.1.7.1",
1347
+ "status" : "current",
1348
+ "syntax" : {
1349
+ "type" : {
1350
+ "basetype" : "Integer32",
1351
+ "ranges" : [
1352
+ {
1353
+ "min" : "1",
1354
+ "max" : "1"
1355
+ },
1356
+ ],
1357
+ "range" : {
1358
+ "min" : "1",
1359
+ "max" : "1"
1360
+ },
1361
+ },
1362
+ },
1363
+ "access" : "readonly",
1364
+ "description" :
1365
+ """This scalar indicates a (automatic) true result for
1366
+ a filter. That is, this is a filter that is always
1367
+ true; it is useful for adding as a default filter for a
1368
+ default action or a set of actions.""",
1369
+ }, # scalar
1370
+ "spdTrueFilterInstance" : {
1371
+ "nodetype" : "node",
1372
+ "moduleName" : "IPSEC-SPD-MIB",
1373
+ "oid" : "1.3.6.1.2.1.153.1.7.1.0",
1374
+ }, # node
1375
+ "spdIpOffsetFilterTable" : {
1376
+ "nodetype" : "table",
1377
+ "moduleName" : "IPSEC-SPD-MIB",
1378
+ "oid" : "1.3.6.1.2.1.153.1.8",
1379
+ "status" : "current",
1380
+ "description" :
1381
+ """This table contains a list of filter definitions to be
1382
+ used within the spdRuleDefinitionTable or the
1383
+ spdSubfiltersTable.
1384
+
1385
+ This type of filter is used to compare an administrator
1386
+ specified octet string to the octets at a particular
1387
+ location in a packet.""",
1388
+ }, # table
1389
+ "spdIpOffsetFilterEntry" : {
1390
+ "nodetype" : "row",
1391
+ "moduleName" : "IPSEC-SPD-MIB",
1392
+ "oid" : "1.3.6.1.2.1.153.1.8.1",
1393
+ "create" : "true",
1394
+ "status" : "current",
1395
+ "linkage" : [
1396
+ "spdIpOffFiltName",
1397
+ ],
1398
+ "description" :
1399
+ """A definition of a particular filter.""",
1400
+ }, # row
1401
+ "spdIpOffFiltName" : {
1402
+ "nodetype" : "column",
1403
+ "moduleName" : "IPSEC-SPD-MIB",
1404
+ "oid" : "1.3.6.1.2.1.153.1.8.1.1",
1405
+ "status" : "current",
1406
+ "syntax" : {
1407
+ "type" : {
1408
+ "basetype" : "OctetString",
1409
+ "parent module" : {
1410
+ "name" : "SNMP-FRAMEWORK-MIB",
1411
+ "type" : "SnmpAdminString",
1412
+ },
1413
+ "ranges" : [
1414
+ {
1415
+ "min" : "1",
1416
+ "max" : "32"
1417
+ },
1418
+ ],
1419
+ "range" : {
1420
+ "min" : "1",
1421
+ "max" : "32"
1422
+ },
1423
+ },
1424
+ },
1425
+ "access" : "noaccess",
1426
+ "description" :
1427
+ """The administrative name for this filter.""",
1428
+ }, # column
1429
+ "spdIpOffFiltOffset" : {
1430
+ "nodetype" : "column",
1431
+ "moduleName" : "IPSEC-SPD-MIB",
1432
+ "oid" : "1.3.6.1.2.1.153.1.8.1.2",
1433
+ "status" : "current",
1434
+ "syntax" : {
1435
+ "type" : {
1436
+ "basetype" : "Unsigned32",
1437
+ "ranges" : [
1438
+ {
1439
+ "min" : "0",
1440
+ "max" : "65535"
1441
+ },
1442
+ ],
1443
+ "range" : {
1444
+ "min" : "0",
1445
+ "max" : "65535"
1446
+ },
1447
+ },
1448
+ },
1449
+ "access" : "readwrite",
1450
+ "description" :
1451
+ """This is the byte offset from the front of the entire IP
1452
+ packet where the value or arithmetic comparison is done. A
1453
+ value of '0' indicates the first byte of the packet header.
1454
+ If this value is greater than the length of the packet, the
1455
+ filter represented by this row should be considered to
1456
+ fail.""",
1457
+ }, # column
1458
+ "spdIpOffFiltType" : {
1459
+ "nodetype" : "column",
1460
+ "moduleName" : "IPSEC-SPD-MIB",
1461
+ "oid" : "1.3.6.1.2.1.153.1.8.1.3",
1462
+ "status" : "current",
1463
+ "syntax" : {
1464
+ "type" : {
1465
+ "basetype" : "Enumeration",
1466
+ "equal" : {
1467
+ "nodetype" : "namednumber",
1468
+ "number" : "1"
1469
+ },
1470
+ "notEqual" : {
1471
+ "nodetype" : "namednumber",
1472
+ "number" : "2"
1473
+ },
1474
+ "arithmeticLess" : {
1475
+ "nodetype" : "namednumber",
1476
+ "number" : "3"
1477
+ },
1478
+ "arithmeticGreaterOrEqual" : {
1479
+ "nodetype" : "namednumber",
1480
+ "number" : "4"
1481
+ },
1482
+ "arithmeticGreater" : {
1483
+ "nodetype" : "namednumber",
1484
+ "number" : "5"
1485
+ },
1486
+ "arithmeticLessOrEqual" : {
1487
+ "nodetype" : "namednumber",
1488
+ "number" : "6"
1489
+ },
1490
+ },
1491
+ },
1492
+ "access" : "readwrite",
1493
+ "description" :
1494
+ """This defines the various tests that are used when
1495
+ evaluating a given filter.
1496
+
1497
+ The various tests definable in this table are as follows:
1498
+
1499
+ equal:
1500
+ - Tests if the OCTET STRING, 'spdIpOffFiltValue', matches
1501
+
1502
+
1503
+
1504
+ a value in the packet starting at the given offset in
1505
+ the packet and comparing the entire OCTET STRING of
1506
+ 'spdIpOffFiltValue'. Any values compared this way are
1507
+ assumed to be unsigned integer values in network byte
1508
+ order of the same length as 'spdIpOffFiltValue'.
1509
+
1510
+ notEqual:
1511
+ - Tests if the OCTET STRING, 'spdIpOffFiltValue', does
1512
+ not match a value in the packet starting at the given
1513
+ offset in the packet and comparing to the entire OCTET
1514
+ STRING of 'spdIpOffFiltValue'. Any values compared
1515
+ this way are assumed to be unsigned integer values in
1516
+ network byte order of the same length as
1517
+ 'spdIpOffFiltValue'.
1518
+
1519
+ arithmeticLess:
1520
+ - Tests if the OCTET STRING, 'spdIpOffFiltValue', is
1521
+ arithmetically less than ('<') the value starting at
1522
+ the given offset within the packet. The value in the
1523
+ packet is assumed to be an unsigned integer in network
1524
+ byte order of the same length as 'spdIpOffFiltValue'.
1525
+
1526
+ arithmeticGreaterOrEqual:
1527
+ - Tests if the OCTET STRING, 'spdIpOffFiltValue', is
1528
+ arithmetically greater than or equal to ('>=') the
1529
+ value starting at the given offset within the packet.
1530
+ The value in the packet is assumed to be an unsigned
1531
+ integer in network byte order of the same length as
1532
+ 'spdIpOffFiltValue'.
1533
+
1534
+ arithmeticGreater:
1535
+ - Tests if the OCTET STRING, 'spdIpOffFiltValue', is
1536
+ arithmetically greater than ('>') the value starting at
1537
+ the given offset within the packet. The value in the
1538
+ packet is assumed to be an unsigned integer in network
1539
+ byte order of the same length as 'spdIpOffFiltValue'.
1540
+
1541
+ arithmeticLessOrEqual:
1542
+ - Tests if the OCTET STRING, 'spdIpOffFiltValue', is
1543
+ arithmetically less than or equal to ('<=') the value
1544
+ starting at the given offset within the packet. The
1545
+ value in the packet is assumed to be an unsigned
1546
+ integer in network byte order of the same length as
1547
+ 'spdIpOffFiltValue'.""",
1548
+ }, # column
1549
+ "spdIpOffFiltValue" : {
1550
+ "nodetype" : "column",
1551
+ "moduleName" : "IPSEC-SPD-MIB",
1552
+ "oid" : "1.3.6.1.2.1.153.1.8.1.4",
1553
+ "status" : "current",
1554
+ "syntax" : {
1555
+ "type" : {
1556
+ "basetype" : "OctetString",
1557
+ "ranges" : [
1558
+ {
1559
+ "min" : "1",
1560
+ "max" : "1024"
1561
+ },
1562
+ ],
1563
+ "range" : {
1564
+ "min" : "1",
1565
+ "max" : "1024"
1566
+ },
1567
+ },
1568
+ },
1569
+ "access" : "readwrite",
1570
+ "description" :
1571
+ """spdIpOffFiltValue is used for match comparisons of a
1572
+ packet at spdIpOffFiltOffset.""",
1573
+ }, # column
1574
+ "spdIpOffFiltLastChanged" : {
1575
+ "nodetype" : "column",
1576
+ "moduleName" : "IPSEC-SPD-MIB",
1577
+ "oid" : "1.3.6.1.2.1.153.1.8.1.5",
1578
+ "status" : "current",
1579
+ "syntax" : {
1580
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1581
+ },
1582
+ "access" : "readonly",
1583
+ "description" :
1584
+ """The value of sysUpTime when this row was last modified
1585
+ or created either through SNMP SETs or by some other
1586
+ external means.
1587
+
1588
+ If this row has not been modified since the last
1589
+ re-initialization of the network management subsystem, this
1590
+ object SHOULD have a zero value.""",
1591
+ }, # column
1592
+ "spdIpOffFiltStorageType" : {
1593
+ "nodetype" : "column",
1594
+ "moduleName" : "IPSEC-SPD-MIB",
1595
+ "oid" : "1.3.6.1.2.1.153.1.8.1.6",
1596
+ "status" : "current",
1597
+ "syntax" : {
1598
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
1599
+ },
1600
+ "access" : "readwrite",
1601
+ "default" : "nonVolatile",
1602
+ "description" :
1603
+ """The storage type for this row. Rows in this table that
1604
+ were created through an external process MAY have a
1605
+ storage type of readOnly or permanent.
1606
+
1607
+ For a storage type of permanent, none of the columns have
1608
+ to be writable.""",
1609
+ }, # column
1610
+ "spdIpOffFiltRowStatus" : {
1611
+ "nodetype" : "column",
1612
+ "moduleName" : "IPSEC-SPD-MIB",
1613
+ "oid" : "1.3.6.1.2.1.153.1.8.1.7",
1614
+ "status" : "current",
1615
+ "syntax" : {
1616
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1617
+ },
1618
+ "access" : "readwrite",
1619
+ "description" :
1620
+ """This object indicates the conceptual status of this row.
1621
+
1622
+ The value of this object has no effect on whether other
1623
+ objects in this conceptual row can be modified.
1624
+
1625
+ If active, this object MUST remain active if it is
1626
+
1627
+
1628
+
1629
+ referenced by an active row in another table. An attempt
1630
+ to set it to anything other than active while it is
1631
+ referenced by an active row in another table MUST result in
1632
+ an inconsistentValue error.""",
1633
+ }, # column
1634
+ "spdTimeFilterTable" : {
1635
+ "nodetype" : "table",
1636
+ "moduleName" : "IPSEC-SPD-MIB",
1637
+ "oid" : "1.3.6.1.2.1.153.1.9",
1638
+ "status" : "current",
1639
+ "description" :
1640
+ """Defines a table of filters that can be used to
1641
+ effectively enable or disable policies based on a valid
1642
+ time range.""",
1643
+ }, # table
1644
+ "spdTimeFilterEntry" : {
1645
+ "nodetype" : "row",
1646
+ "moduleName" : "IPSEC-SPD-MIB",
1647
+ "oid" : "1.3.6.1.2.1.153.1.9.1",
1648
+ "create" : "true",
1649
+ "status" : "current",
1650
+ "linkage" : [
1651
+ "spdTimeFiltName",
1652
+ ],
1653
+ "description" :
1654
+ """A row describing a given time frame for which a policy
1655
+ is filtered on to activate or deactivate the rule.
1656
+
1657
+ If all the column objects in a row are true for the current
1658
+ time, the row evaluates as 'true'. More explicitly, the
1659
+ time matching column objects in a row MUST be logically
1660
+ ANDed together to form the boolean true/false for the row.""",
1661
+ }, # row
1662
+ "spdTimeFiltName" : {
1663
+ "nodetype" : "column",
1664
+ "moduleName" : "IPSEC-SPD-MIB",
1665
+ "oid" : "1.3.6.1.2.1.153.1.9.1.1",
1666
+ "status" : "current",
1667
+ "syntax" : {
1668
+ "type" : {
1669
+ "basetype" : "OctetString",
1670
+ "parent module" : {
1671
+ "name" : "SNMP-FRAMEWORK-MIB",
1672
+ "type" : "SnmpAdminString",
1673
+ },
1674
+ "ranges" : [
1675
+ {
1676
+ "min" : "1",
1677
+ "max" : "32"
1678
+ },
1679
+ ],
1680
+ "range" : {
1681
+ "min" : "1",
1682
+ "max" : "32"
1683
+ },
1684
+ },
1685
+ },
1686
+ "access" : "noaccess",
1687
+ "description" :
1688
+ """An administratively assigned name for this filter.""",
1689
+ }, # column
1690
+ "spdTimeFiltPeriod" : {
1691
+ "nodetype" : "column",
1692
+ "moduleName" : "IPSEC-SPD-MIB",
1693
+ "oid" : "1.3.6.1.2.1.153.1.9.1.2",
1694
+ "status" : "current",
1695
+ "syntax" : {
1696
+ "type" : { "module" :"IPSEC-SPD-MIB", "name" : "SpdTimePeriod"},
1697
+ },
1698
+ "access" : "readwrite",
1699
+ "default" : "THISANDPRIOR/THISANDFUTURE",
1700
+ "description" :
1701
+ """The valid time period for this filter. This column is
1702
+ considered 'true' if the current time is within the range of
1703
+ this object.""",
1704
+ }, # column
1705
+ "spdTimeFiltMonthOfYearMask" : {
1706
+ "nodetype" : "column",
1707
+ "moduleName" : "IPSEC-SPD-MIB",
1708
+ "oid" : "1.3.6.1.2.1.153.1.9.1.3",
1709
+ "status" : "current",
1710
+ "syntax" : {
1711
+ "type" : {
1712
+ "basetype" : "Bits",
1713
+ "january" : {
1714
+ "nodetype" : "namednumber",
1715
+ "number" : "0"
1716
+ },
1717
+ "february" : {
1718
+ "nodetype" : "namednumber",
1719
+ "number" : "1"
1720
+ },
1721
+ "march" : {
1722
+ "nodetype" : "namednumber",
1723
+ "number" : "2"
1724
+ },
1725
+ "april" : {
1726
+ "nodetype" : "namednumber",
1727
+ "number" : "3"
1728
+ },
1729
+ "may" : {
1730
+ "nodetype" : "namednumber",
1731
+ "number" : "4"
1732
+ },
1733
+ "june" : {
1734
+ "nodetype" : "namednumber",
1735
+ "number" : "5"
1736
+ },
1737
+ "july" : {
1738
+ "nodetype" : "namednumber",
1739
+ "number" : "6"
1740
+ },
1741
+ "august" : {
1742
+ "nodetype" : "namednumber",
1743
+ "number" : "7"
1744
+ },
1745
+ "september" : {
1746
+ "nodetype" : "namednumber",
1747
+ "number" : "8"
1748
+ },
1749
+ "october" : {
1750
+ "nodetype" : "namednumber",
1751
+ "number" : "9"
1752
+ },
1753
+ "november" : {
1754
+ "nodetype" : "namednumber",
1755
+ "number" : "10"
1756
+ },
1757
+ "december" : {
1758
+ "nodetype" : "namednumber",
1759
+ "number" : "11"
1760
+ },
1761
+ },
1762
+ },
1763
+ "access" : "readwrite",
1764
+ "default" : "(january, february, march, april, may, june, july, august, september, october, november, december)",
1765
+ "description" :
1766
+ """A bit mask that indicates acceptable months of the year.
1767
+ This column evaluates to 'true' if the current month's bit
1768
+ is set.""",
1769
+ }, # column
1770
+ "spdTimeFiltDayOfMonthMask" : {
1771
+ "nodetype" : "column",
1772
+ "moduleName" : "IPSEC-SPD-MIB",
1773
+ "oid" : "1.3.6.1.2.1.153.1.9.1.4",
1774
+ "status" : "current",
1775
+ "syntax" : {
1776
+ "type" : {
1777
+ "basetype" : "OctetString",
1778
+ "ranges" : [
1779
+ {
1780
+ "min" : "8",
1781
+ "max" : "8"
1782
+ },
1783
+ ],
1784
+ "range" : {
1785
+ "min" : "8",
1786
+ "max" : "8"
1787
+ },
1788
+ },
1789
+ },
1790
+ "access" : "readwrite",
1791
+ "default" : "0xfffffffffffffffe",
1792
+ "description" :
1793
+ """Defines which days of the month the current time is
1794
+ valid for. It is a sequence of 64 BITS, where each BIT
1795
+ represents a corresponding day of the month in forward or
1796
+ reverse order. Starting from the left-most bit, the first
1797
+ 31 bits identify the day of the month, counting from the
1798
+ beginning of the month. The following 31 bits (bits 32-62)
1799
+ indicate the day of the month, counting from the end of the
1800
+
1801
+
1802
+
1803
+ month. For months with fewer than 31 days, the bits that
1804
+ correspond to the non-existent days of that month are
1805
+ ignored (e.g., for non-leap year Februarys, bits 29-31 and
1806
+ 60-62 are ignored).
1807
+
1808
+ This column evaluates to 'true' if the current day of the
1809
+ month's bit is set.
1810
+
1811
+ For example, a value of 0X'80 00 00 01 00 00 00 00'
1812
+ indicates that this column evaluates to true on the first
1813
+ and last days of the month.
1814
+
1815
+ The last two bits in the string MUST be zero.""",
1816
+ }, # column
1817
+ "spdTimeFiltDayOfWeekMask" : {
1818
+ "nodetype" : "column",
1819
+ "moduleName" : "IPSEC-SPD-MIB",
1820
+ "oid" : "1.3.6.1.2.1.153.1.9.1.5",
1821
+ "status" : "current",
1822
+ "syntax" : {
1823
+ "type" : {
1824
+ "basetype" : "Bits",
1825
+ "sunday" : {
1826
+ "nodetype" : "namednumber",
1827
+ "number" : "0"
1828
+ },
1829
+ "monday" : {
1830
+ "nodetype" : "namednumber",
1831
+ "number" : "1"
1832
+ },
1833
+ "tuesday" : {
1834
+ "nodetype" : "namednumber",
1835
+ "number" : "2"
1836
+ },
1837
+ "wednesday" : {
1838
+ "nodetype" : "namednumber",
1839
+ "number" : "3"
1840
+ },
1841
+ "thursday" : {
1842
+ "nodetype" : "namednumber",
1843
+ "number" : "4"
1844
+ },
1845
+ "friday" : {
1846
+ "nodetype" : "namednumber",
1847
+ "number" : "5"
1848
+ },
1849
+ "saturday" : {
1850
+ "nodetype" : "namednumber",
1851
+ "number" : "6"
1852
+ },
1853
+ },
1854
+ },
1855
+ "access" : "readwrite",
1856
+ "default" : "(sunday, monday, tuesday, wednesday, thursday, friday, saturday)",
1857
+ "description" :
1858
+ """A bit mask that defines which days of the week that the current
1859
+ time is valid for. This column evaluates to 'true' if the
1860
+ current day of the week's bit is set.""",
1861
+ }, # column
1862
+ "spdTimeFiltTimeOfDayMask" : {
1863
+ "nodetype" : "column",
1864
+ "moduleName" : "IPSEC-SPD-MIB",
1865
+ "oid" : "1.3.6.1.2.1.153.1.9.1.6",
1866
+ "status" : "current",
1867
+ "syntax" : {
1868
+ "type" : { "module" :"IPSEC-SPD-MIB", "name" : "SpdTimePeriod"},
1869
+ },
1870
+ "access" : "readwrite",
1871
+ "default" : "00000000T000000/00000000T240000",
1872
+ "description" :
1873
+ """Indicates the start and end time of the day for which this
1874
+ filter evaluates to true. The date portions of the
1875
+ spdTimePeriod TC are ignored for purposes of evaluating this
1876
+ mask, and only the time-specific portions are used.
1877
+
1878
+ This column evaluates to 'true' if the current time of day
1879
+ is within the range of the start and end times of the day
1880
+ indicated by this object.""",
1881
+ }, # column
1882
+ "spdTimeFiltLastChanged" : {
1883
+ "nodetype" : "column",
1884
+ "moduleName" : "IPSEC-SPD-MIB",
1885
+ "oid" : "1.3.6.1.2.1.153.1.9.1.7",
1886
+ "status" : "current",
1887
+ "syntax" : {
1888
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1889
+ },
1890
+ "access" : "readonly",
1891
+ "description" :
1892
+ """The value of sysUpTime when this row was last modified
1893
+ or created either through SNMP SETs or by some other
1894
+ external means.
1895
+
1896
+ If this row has not been modified since the last
1897
+ re-initialization of the network management subsystem, this
1898
+ object SHOULD have a zero value.""",
1899
+ }, # column
1900
+ "spdTimeFiltStorageType" : {
1901
+ "nodetype" : "column",
1902
+ "moduleName" : "IPSEC-SPD-MIB",
1903
+ "oid" : "1.3.6.1.2.1.153.1.9.1.8",
1904
+ "status" : "current",
1905
+ "syntax" : {
1906
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
1907
+ },
1908
+ "access" : "readwrite",
1909
+ "default" : "nonVolatile",
1910
+ "description" :
1911
+ """The storage type for this row. Rows in this table that
1912
+ were created through an external process MAY have a storage
1913
+ type of readOnly or permanent.
1914
+
1915
+ For a storage type of permanent, none of the columns have
1916
+ to be writable.""",
1917
+ }, # column
1918
+ "spdTimeFiltRowStatus" : {
1919
+ "nodetype" : "column",
1920
+ "moduleName" : "IPSEC-SPD-MIB",
1921
+ "oid" : "1.3.6.1.2.1.153.1.9.1.9",
1922
+ "status" : "current",
1923
+ "syntax" : {
1924
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1925
+ },
1926
+ "access" : "readwrite",
1927
+ "description" :
1928
+ """This object indicates the conceptual status of this
1929
+ row.
1930
+
1931
+ The value of this object has no effect on whether other
1932
+ objects in this conceptual row can be modified.
1933
+
1934
+ If active, this object MUST remain active if it is
1935
+ referenced by an active row in another table. An attempt
1936
+ to set it to anything other than active while it is
1937
+ referenced by an active row in another table MUST result in
1938
+ an inconsistentValue error.""",
1939
+ }, # column
1940
+ "spdIpsoHeaderFilterTable" : {
1941
+ "nodetype" : "table",
1942
+ "moduleName" : "IPSEC-SPD-MIB",
1943
+ "oid" : "1.3.6.1.2.1.153.1.10",
1944
+ "status" : "current",
1945
+ "description" :
1946
+ """This table contains a list of IPSO header filter
1947
+ definitions to be used within the spdRuleDefinitionTable or
1948
+ the spdSubfiltersTable. IPSO headers and their values are
1949
+ described in RFC 1108.""",
1950
+ "reference" :
1951
+ """RFC 1108""",
1952
+ }, # table
1953
+ "spdIpsoHeaderFilterEntry" : {
1954
+ "nodetype" : "row",
1955
+ "moduleName" : "IPSEC-SPD-MIB",
1956
+ "oid" : "1.3.6.1.2.1.153.1.10.1",
1957
+ "create" : "true",
1958
+ "status" : "current",
1959
+ "linkage" : [
1960
+ "spdIpsoHeadFiltName",
1961
+ ],
1962
+ "description" :
1963
+ """A definition of a particular filter.""",
1964
+ }, # row
1965
+ "spdIpsoHeadFiltName" : {
1966
+ "nodetype" : "column",
1967
+ "moduleName" : "IPSEC-SPD-MIB",
1968
+ "oid" : "1.3.6.1.2.1.153.1.10.1.1",
1969
+ "status" : "current",
1970
+ "syntax" : {
1971
+ "type" : {
1972
+ "basetype" : "OctetString",
1973
+ "parent module" : {
1974
+ "name" : "SNMP-FRAMEWORK-MIB",
1975
+ "type" : "SnmpAdminString",
1976
+ },
1977
+ "ranges" : [
1978
+ {
1979
+ "min" : "1",
1980
+ "max" : "32"
1981
+ },
1982
+ ],
1983
+ "range" : {
1984
+ "min" : "1",
1985
+ "max" : "32"
1986
+ },
1987
+ },
1988
+ },
1989
+ "access" : "noaccess",
1990
+ "description" :
1991
+ """The administrative name for this filter.""",
1992
+ }, # column
1993
+ "spdIpsoHeadFiltType" : {
1994
+ "nodetype" : "column",
1995
+ "moduleName" : "IPSEC-SPD-MIB",
1996
+ "oid" : "1.3.6.1.2.1.153.1.10.1.2",
1997
+ "status" : "current",
1998
+ "syntax" : {
1999
+ "type" : {
2000
+ "basetype" : "Bits",
2001
+ "classificationLevel" : {
2002
+ "nodetype" : "namednumber",
2003
+ "number" : "0"
2004
+ },
2005
+ "protectionAuthority" : {
2006
+ "nodetype" : "namednumber",
2007
+ "number" : "1"
2008
+ },
2009
+ },
2010
+ },
2011
+ "access" : "readwrite",
2012
+ "description" :
2013
+ """This object indicates which of the IPSO header field a
2014
+ packet is filtered on for this row. If this object is set
2015
+ to classification(0), the spdIpsoHeadFiltClassification
2016
+
2017
+
2018
+
2019
+ object indicates how the packet is filtered. If this object
2020
+ is set to protectionAuthority(1), the
2021
+ spdIpsoHeadFiltProtectionAuth object indicates how the
2022
+ packet is filtered.""",
2023
+ }, # column
2024
+ "spdIpsoHeadFiltClassification" : {
2025
+ "nodetype" : "column",
2026
+ "moduleName" : "IPSEC-SPD-MIB",
2027
+ "oid" : "1.3.6.1.2.1.153.1.10.1.3",
2028
+ "status" : "current",
2029
+ "syntax" : {
2030
+ "type" : {
2031
+ "basetype" : "Enumeration",
2032
+ "topSecret" : {
2033
+ "nodetype" : "namednumber",
2034
+ "number" : "61"
2035
+ },
2036
+ "secret" : {
2037
+ "nodetype" : "namednumber",
2038
+ "number" : "90"
2039
+ },
2040
+ "confidential" : {
2041
+ "nodetype" : "namednumber",
2042
+ "number" : "150"
2043
+ },
2044
+ "unclassified" : {
2045
+ "nodetype" : "namednumber",
2046
+ "number" : "171"
2047
+ },
2048
+ },
2049
+ },
2050
+ "access" : "readwrite",
2051
+ "description" :
2052
+ """This object indicates the IPSO classification header field
2053
+ value that the packet MUST have for this row to evaluate to
2054
+ 'true'.
2055
+
2056
+ The values of these enumerations are defined by RFC 1108.""",
2057
+ "reference" :
2058
+ """RFC 1108""",
2059
+ }, # column
2060
+ "spdIpsoHeadFiltProtectionAuth" : {
2061
+ "nodetype" : "column",
2062
+ "moduleName" : "IPSEC-SPD-MIB",
2063
+ "oid" : "1.3.6.1.2.1.153.1.10.1.4",
2064
+ "status" : "current",
2065
+ "syntax" : {
2066
+ "type" : {
2067
+ "basetype" : "Enumeration",
2068
+ "genser" : {
2069
+ "nodetype" : "namednumber",
2070
+ "number" : "0"
2071
+ },
2072
+ "siopesi" : {
2073
+ "nodetype" : "namednumber",
2074
+ "number" : "1"
2075
+ },
2076
+ "sci" : {
2077
+ "nodetype" : "namednumber",
2078
+ "number" : "2"
2079
+ },
2080
+ "nsa" : {
2081
+ "nodetype" : "namednumber",
2082
+ "number" : "3"
2083
+ },
2084
+ "doe" : {
2085
+ "nodetype" : "namednumber",
2086
+ "number" : "4"
2087
+ },
2088
+ },
2089
+ },
2090
+ "access" : "readwrite",
2091
+ "description" :
2092
+ """This object indicates the IPSO protection authority header
2093
+ field value that the packet MUST have for this row to
2094
+ evaluate to 'true'.
2095
+
2096
+ The values of these enumerations are defined by RFC 1108.
2097
+ Hence the reason the SMIv2 convention of not using 0 in
2098
+ enumerated lists is violated here.""",
2099
+ "reference" :
2100
+ """RFC 1108""",
2101
+ }, # column
2102
+ "spdIpsoHeadFiltLastChanged" : {
2103
+ "nodetype" : "column",
2104
+ "moduleName" : "IPSEC-SPD-MIB",
2105
+ "oid" : "1.3.6.1.2.1.153.1.10.1.5",
2106
+ "status" : "current",
2107
+ "syntax" : {
2108
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
2109
+ },
2110
+ "access" : "readonly",
2111
+ "description" :
2112
+ """The value of sysUpTime when this row was last modified
2113
+ or created either through SNMP SETs or by some other
2114
+ external means.
2115
+
2116
+ If this row has not been modified since the last
2117
+ re-initialization of the network management subsystem, this
2118
+ object SHOULD have a zero value.""",
2119
+ }, # column
2120
+ "spdIpsoHeadFiltStorageType" : {
2121
+ "nodetype" : "column",
2122
+ "moduleName" : "IPSEC-SPD-MIB",
2123
+ "oid" : "1.3.6.1.2.1.153.1.10.1.6",
2124
+ "status" : "current",
2125
+ "syntax" : {
2126
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
2127
+ },
2128
+ "access" : "readwrite",
2129
+ "default" : "nonVolatile",
2130
+ "description" :
2131
+ """The storage type for this row. Rows in this table that
2132
+ were created through an external process MAY have a storage
2133
+ type of readOnly or permanent.
2134
+
2135
+ For a storage type of permanent, none of the columns have
2136
+ to be writable.""",
2137
+ }, # column
2138
+ "spdIpsoHeadFiltRowStatus" : {
2139
+ "nodetype" : "column",
2140
+ "moduleName" : "IPSEC-SPD-MIB",
2141
+ "oid" : "1.3.6.1.2.1.153.1.10.1.7",
2142
+ "status" : "current",
2143
+ "syntax" : {
2144
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
2145
+ },
2146
+ "access" : "readwrite",
2147
+ "description" :
2148
+ """This object indicates the conceptual status of this row.
2149
+
2150
+ The value of this object has no effect on whether other
2151
+ objects in this conceptual row can be modified.
2152
+
2153
+ However, this object MUST NOT be set to active if the
2154
+ requirements of the spdIpsoHeadFiltType object are not met.
2155
+ Specifically, if the spdIpsoHeadFiltType bit for
2156
+ classification(0) is set, the spdIpsoHeadFiltClassification
2157
+ column MUST have a valid value for the row status to be set
2158
+ to active. If the spdIpsoHeadFiltType bit for
2159
+ protectionAuthority(1) is set, the
2160
+ spdIpsoHeadFiltProtectionAuth column MUST have a valid
2161
+ value for the row status to be set to active.
2162
+
2163
+ If active, this object MUST remain active if it is
2164
+ referenced by an active row in another table. An attempt
2165
+ to set it to anything other than active while it is
2166
+ referenced by an active row in another table MUST result in
2167
+ an inconsistentValue error.""",
2168
+ }, # column
2169
+ "spdCompoundActionTable" : {
2170
+ "nodetype" : "table",
2171
+ "moduleName" : "IPSEC-SPD-MIB",
2172
+ "oid" : "1.3.6.1.2.1.153.1.11",
2173
+ "status" : "current",
2174
+ "description" :
2175
+ """Table used to allow multiple actions to be associated
2176
+ with a rule. It uses the spdSubactionsTable to do this.
2177
+ The rows from spdSubactionsTable that are partially indexed
2178
+ by spdCompActName form the set of compound actions to be
2179
+ performed. The spdCompActExecutionStrategy column in this
2180
+ table indicates how those actions are processed.""",
2181
+ }, # table
2182
+ "spdCompoundActionEntry" : {
2183
+ "nodetype" : "row",
2184
+ "moduleName" : "IPSEC-SPD-MIB",
2185
+ "oid" : "1.3.6.1.2.1.153.1.11.1",
2186
+ "create" : "true",
2187
+ "status" : "current",
2188
+ "linkage" : [
2189
+ "spdCompActName",
2190
+ ],
2191
+ "description" :
2192
+ """A row in the spdCompoundActionTable.""",
2193
+ }, # row
2194
+ "spdCompActName" : {
2195
+ "nodetype" : "column",
2196
+ "moduleName" : "IPSEC-SPD-MIB",
2197
+ "oid" : "1.3.6.1.2.1.153.1.11.1.1",
2198
+ "status" : "current",
2199
+ "syntax" : {
2200
+ "type" : {
2201
+ "basetype" : "OctetString",
2202
+ "parent module" : {
2203
+ "name" : "SNMP-FRAMEWORK-MIB",
2204
+ "type" : "SnmpAdminString",
2205
+ },
2206
+ "ranges" : [
2207
+ {
2208
+ "min" : "1",
2209
+ "max" : "32"
2210
+ },
2211
+ ],
2212
+ "range" : {
2213
+ "min" : "1",
2214
+ "max" : "32"
2215
+ },
2216
+ },
2217
+ },
2218
+ "access" : "noaccess",
2219
+ "description" :
2220
+ """This is an administratively assigned name of this
2221
+ compound action.""",
2222
+ }, # column
2223
+ "spdCompActExecutionStrategy" : {
2224
+ "nodetype" : "column",
2225
+ "moduleName" : "IPSEC-SPD-MIB",
2226
+ "oid" : "1.3.6.1.2.1.153.1.11.1.2",
2227
+ "status" : "current",
2228
+ "syntax" : {
2229
+ "type" : {
2230
+ "basetype" : "Enumeration",
2231
+ "doAll" : {
2232
+ "nodetype" : "namednumber",
2233
+ "number" : "1"
2234
+ },
2235
+ "doUntilSuccess" : {
2236
+ "nodetype" : "namednumber",
2237
+ "number" : "2"
2238
+ },
2239
+ "doUntilFailure" : {
2240
+ "nodetype" : "namednumber",
2241
+ "number" : "3"
2242
+ },
2243
+ },
2244
+ },
2245
+ "access" : "readwrite",
2246
+ "default" : "doUntilSuccess",
2247
+ "description" :
2248
+ """This object indicates how the sub-actions are executed
2249
+ based on the success of the actions as they finish
2250
+ executing.
2251
+
2252
+
2253
+
2254
+ doAll - run each sub-action regardless of the
2255
+ exit status of the previous action.
2256
+ This parent action is always
2257
+ considered to have acted successfully.
2258
+
2259
+ doUntilSuccess - run each sub-action until one succeeds,
2260
+ at which point stop processing the
2261
+ sub-actions within this parent
2262
+ compound action. If one of the
2263
+ sub-actions did execute successfully,
2264
+ this parent action is also considered
2265
+ to have executed successfully.
2266
+
2267
+ doUntilFailure - run each sub-action until one fails,
2268
+ at which point stop processing the
2269
+ sub-actions within this compound
2270
+ action. If any sub-action fails, the
2271
+ result of this parent action is
2272
+ considered to have failed.""",
2273
+ }, # column
2274
+ "spdCompActLastChanged" : {
2275
+ "nodetype" : "column",
2276
+ "moduleName" : "IPSEC-SPD-MIB",
2277
+ "oid" : "1.3.6.1.2.1.153.1.11.1.3",
2278
+ "status" : "current",
2279
+ "syntax" : {
2280
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
2281
+ },
2282
+ "access" : "readonly",
2283
+ "description" :
2284
+ """The value of sysUpTime when this row was last modified
2285
+ or created either through SNMP SETs or by some other
2286
+ external means.
2287
+
2288
+ If this row has not been modified since the last
2289
+ re-initialization of the network management subsystem, this
2290
+ object SHOULD have a zero value.""",
2291
+ }, # column
2292
+ "spdCompActStorageType" : {
2293
+ "nodetype" : "column",
2294
+ "moduleName" : "IPSEC-SPD-MIB",
2295
+ "oid" : "1.3.6.1.2.1.153.1.11.1.4",
2296
+ "status" : "current",
2297
+ "syntax" : {
2298
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
2299
+ },
2300
+ "access" : "readwrite",
2301
+ "default" : "nonVolatile",
2302
+ "description" :
2303
+ """The storage type for this row. Rows in this table that
2304
+ were created through an external process MAY have a storage
2305
+ type of readOnly or permanent.
2306
+
2307
+ For a storage type of permanent, none of the columns have
2308
+ to be writable.""",
2309
+ }, # column
2310
+ "spdCompActRowStatus" : {
2311
+ "nodetype" : "column",
2312
+ "moduleName" : "IPSEC-SPD-MIB",
2313
+ "oid" : "1.3.6.1.2.1.153.1.11.1.5",
2314
+ "status" : "current",
2315
+ "syntax" : {
2316
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
2317
+ },
2318
+ "access" : "readwrite",
2319
+ "description" :
2320
+ """This object indicates the conceptual status of this row.
2321
+
2322
+ The value of this object has no effect on whether other
2323
+ objects in this conceptual row can be modified.
2324
+
2325
+ Once a row in the spdCompoundActionTable has been made
2326
+ active, this object MUST NOT be set to destroy without
2327
+ first destroying all the contained rows listed in the
2328
+ spdSubactionsTable.""",
2329
+ }, # column
2330
+ "spdSubactionsTable" : {
2331
+ "nodetype" : "table",
2332
+ "moduleName" : "IPSEC-SPD-MIB",
2333
+ "oid" : "1.3.6.1.2.1.153.1.12",
2334
+ "status" : "current",
2335
+ "description" :
2336
+ """This table contains a list of the sub-actions within a
2337
+ given compound action. Compound actions executing these
2338
+ actions MUST execute them in series based on the
2339
+ spdSubActPriority value, with the lowest value executing
2340
+ first.""",
2341
+ }, # table
2342
+ "spdSubactionsEntry" : {
2343
+ "nodetype" : "row",
2344
+ "moduleName" : "IPSEC-SPD-MIB",
2345
+ "oid" : "1.3.6.1.2.1.153.1.12.1",
2346
+ "create" : "true",
2347
+ "status" : "current",
2348
+ "linkage" : [
2349
+ "spdCompActName",
2350
+ "spdSubActPriority",
2351
+ ],
2352
+ "description" :
2353
+ """A row containing a reference to a given compound-action
2354
+ sub-action.""",
2355
+ }, # row
2356
+ "spdSubActPriority" : {
2357
+ "nodetype" : "column",
2358
+ "moduleName" : "IPSEC-SPD-MIB",
2359
+ "oid" : "1.3.6.1.2.1.153.1.12.1.1",
2360
+ "status" : "current",
2361
+ "syntax" : {
2362
+ "type" : {
2363
+ "basetype" : "Integer32",
2364
+ "ranges" : [
2365
+ {
2366
+ "min" : "0",
2367
+ "max" : "65535"
2368
+ },
2369
+ ],
2370
+ "range" : {
2371
+ "min" : "0",
2372
+ "max" : "65535"
2373
+ },
2374
+ },
2375
+ },
2376
+ "access" : "noaccess",
2377
+ "description" :
2378
+ """The priority of a given sub-action within a compound
2379
+ action. The order in which sub-actions MUST be executed
2380
+ are based on the value from this column, with the lowest
2381
+ numeric value executing first (i.e., priority 0 before
2382
+ priority 1, 1 before 2, etc.).""",
2383
+ }, # column
2384
+ "spdSubActSubActionName" : {
2385
+ "nodetype" : "column",
2386
+ "moduleName" : "IPSEC-SPD-MIB",
2387
+ "oid" : "1.3.6.1.2.1.153.1.12.1.2",
2388
+ "status" : "current",
2389
+ "syntax" : {
2390
+ "type" : { "module" :"SNMPv2-TC", "name" : "VariablePointer"},
2391
+ },
2392
+ "access" : "readwrite",
2393
+ "description" :
2394
+ """This column points to the action to be taken. It MAY,
2395
+ but is not limited to, point to a row in one of the
2396
+ following tables:
2397
+
2398
+ spdCompoundActionTable - Allowing recursion
2399
+ ipsaSaPreconfiguredActionTable
2400
+ ipiaIkeActionTable
2401
+ ipiaIpsecActionTable
2402
+
2403
+ It MAY also point to one of the scalar objects beneath
2404
+ spdStaticActions.
2405
+
2406
+ If this object is set to a pointer to a row in an
2407
+ unsupported (or unknown) table, an inconsistentValue
2408
+ error MUST be returned.
2409
+
2410
+ If this object is set to point to a non-existent row in
2411
+ an otherwise supported table, an inconsistentName error
2412
+ MUST be returned.
2413
+
2414
+ If, during packet processing, this column has a value that
2415
+ references a non-existent or non-supported object, the
2416
+ packet MUST be dropped.""",
2417
+ }, # column
2418
+ "spdSubActLastChanged" : {
2419
+ "nodetype" : "column",
2420
+ "moduleName" : "IPSEC-SPD-MIB",
2421
+ "oid" : "1.3.6.1.2.1.153.1.12.1.3",
2422
+ "status" : "current",
2423
+ "syntax" : {
2424
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
2425
+ },
2426
+ "access" : "readonly",
2427
+ "description" :
2428
+ """The value of sysUpTime when this row was last modified
2429
+ or created either through SNMP SETs or by some other
2430
+ external means.
2431
+
2432
+ If this row has not been modified since the last
2433
+ re-initialization of the network management subsystem, this
2434
+ object SHOULD have a zero value.""",
2435
+ }, # column
2436
+ "spdSubActStorageType" : {
2437
+ "nodetype" : "column",
2438
+ "moduleName" : "IPSEC-SPD-MIB",
2439
+ "oid" : "1.3.6.1.2.1.153.1.12.1.4",
2440
+ "status" : "current",
2441
+ "syntax" : {
2442
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
2443
+ },
2444
+ "access" : "readwrite",
2445
+ "default" : "nonVolatile",
2446
+ "description" :
2447
+ """The storage type for this row. Rows in this table that
2448
+ were created through an external process MAY have a storage
2449
+ type of readOnly or permanent.
2450
+
2451
+ For a storage type of permanent, none of the columns have
2452
+ to be writable.""",
2453
+ }, # column
2454
+ "spdSubActRowStatus" : {
2455
+ "nodetype" : "column",
2456
+ "moduleName" : "IPSEC-SPD-MIB",
2457
+ "oid" : "1.3.6.1.2.1.153.1.12.1.5",
2458
+ "status" : "current",
2459
+ "syntax" : {
2460
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
2461
+ },
2462
+ "access" : "readwrite",
2463
+ "description" :
2464
+ """This object indicates the conceptual status of this row.
2465
+
2466
+ The value of this object has no effect on whether other
2467
+ objects in this conceptual row can be modified.
2468
+
2469
+ If active, this object MUST remain active unless one of the
2470
+ following two conditions are met. An attempt to set it to
2471
+ anything other than active while the following conditions
2472
+ are not met MUST result in an inconsistentValue error. The
2473
+ two conditions are:
2474
+
2475
+ I. No active row in the spdCompoundActionTable exists
2476
+ which has a matching spdCompActName.
2477
+
2478
+ II. Or, at least one other active row in this table has a
2479
+ matching spdCompActName.""",
2480
+ }, # column
2481
+ "spdStaticActions" : {
2482
+ "nodetype" : "node",
2483
+ "moduleName" : "IPSEC-SPD-MIB",
2484
+ "oid" : "1.3.6.1.2.1.153.1.13",
2485
+ }, # node
2486
+ "spdDropAction" : {
2487
+ "nodetype" : "scalar",
2488
+ "moduleName" : "IPSEC-SPD-MIB",
2489
+ "oid" : "1.3.6.1.2.1.153.1.13.1",
2490
+ "status" : "current",
2491
+ "syntax" : {
2492
+ "type" : {
2493
+ "basetype" : "Integer32",
2494
+ "ranges" : [
2495
+ {
2496
+ "min" : "1",
2497
+ "max" : "1"
2498
+ },
2499
+ ],
2500
+ "range" : {
2501
+ "min" : "1",
2502
+ "max" : "1"
2503
+ },
2504
+ },
2505
+ },
2506
+ "access" : "readonly",
2507
+ "description" :
2508
+ """This scalar indicates that a packet MUST be dropped
2509
+ and SHOULD NOT have action/packet logging.""",
2510
+ }, # scalar
2511
+ "spdDropActionLog" : {
2512
+ "nodetype" : "scalar",
2513
+ "moduleName" : "IPSEC-SPD-MIB",
2514
+ "oid" : "1.3.6.1.2.1.153.1.13.2",
2515
+ "status" : "current",
2516
+ "syntax" : {
2517
+ "type" : {
2518
+ "basetype" : "Integer32",
2519
+ "ranges" : [
2520
+ {
2521
+ "min" : "1",
2522
+ "max" : "1"
2523
+ },
2524
+ ],
2525
+ "range" : {
2526
+ "min" : "1",
2527
+ "max" : "1"
2528
+ },
2529
+ },
2530
+ },
2531
+ "access" : "readonly",
2532
+ "description" :
2533
+ """This scalar indicates that a packet MUST be dropped
2534
+ and SHOULD have action/packet logging.""",
2535
+ }, # scalar
2536
+ "spdAcceptAction" : {
2537
+ "nodetype" : "scalar",
2538
+ "moduleName" : "IPSEC-SPD-MIB",
2539
+ "oid" : "1.3.6.1.2.1.153.1.13.3",
2540
+ "status" : "current",
2541
+ "syntax" : {
2542
+ "type" : {
2543
+ "basetype" : "Integer32",
2544
+ "ranges" : [
2545
+ {
2546
+ "min" : "1",
2547
+ "max" : "1"
2548
+ },
2549
+ ],
2550
+ "range" : {
2551
+ "min" : "1",
2552
+ "max" : "1"
2553
+ },
2554
+ },
2555
+ },
2556
+ "access" : "readonly",
2557
+ "description" :
2558
+ """This Scalar indicates that a packet MUST be accepted
2559
+ (pass-through) and SHOULD NOT have action/packet logging.""",
2560
+ }, # scalar
2561
+ "spdAcceptActionLog" : {
2562
+ "nodetype" : "scalar",
2563
+ "moduleName" : "IPSEC-SPD-MIB",
2564
+ "oid" : "1.3.6.1.2.1.153.1.13.4",
2565
+ "status" : "current",
2566
+ "syntax" : {
2567
+ "type" : {
2568
+ "basetype" : "Integer32",
2569
+ "ranges" : [
2570
+ {
2571
+ "min" : "1",
2572
+ "max" : "1"
2573
+ },
2574
+ ],
2575
+ "range" : {
2576
+ "min" : "1",
2577
+ "max" : "1"
2578
+ },
2579
+ },
2580
+ },
2581
+ "access" : "readonly",
2582
+ "description" :
2583
+ """This scalar indicates that a packet MUST be accepted
2584
+ (pass-through) and SHOULD have action/packet logging.""",
2585
+ }, # scalar
2586
+ "spdNotificationObjects" : {
2587
+ "nodetype" : "node",
2588
+ "moduleName" : "IPSEC-SPD-MIB",
2589
+ "oid" : "1.3.6.1.2.1.153.2",
2590
+ }, # node
2591
+ "spdNotifications" : {
2592
+ "nodetype" : "node",
2593
+ "moduleName" : "IPSEC-SPD-MIB",
2594
+ "oid" : "1.3.6.1.2.1.153.2.0",
2595
+ }, # node
2596
+ "spdNotificationVariables" : {
2597
+ "nodetype" : "node",
2598
+ "moduleName" : "IPSEC-SPD-MIB",
2599
+ "oid" : "1.3.6.1.2.1.153.2.1",
2600
+ }, # node
2601
+ "spdActionExecuted" : {
2602
+ "nodetype" : "scalar",
2603
+ "moduleName" : "IPSEC-SPD-MIB",
2604
+ "oid" : "1.3.6.1.2.1.153.2.1.1",
2605
+ "status" : "current",
2606
+ "syntax" : {
2607
+ "type" : { "module" :"SNMPv2-TC", "name" : "VariablePointer"},
2608
+ },
2609
+ "access" : "notifyonly",
2610
+ "description" :
2611
+ """Points to the action instance that was executed that
2612
+ resulted in the notification being sent.""",
2613
+ }, # scalar
2614
+ "spdIPEndpointAddType" : {
2615
+ "nodetype" : "scalar",
2616
+ "moduleName" : "IPSEC-SPD-MIB",
2617
+ "oid" : "1.3.6.1.2.1.153.2.1.2",
2618
+ "status" : "current",
2619
+ "syntax" : {
2620
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
2621
+ },
2622
+ "access" : "notifyonly",
2623
+ "description" :
2624
+ """Contains the address type for the interface that the
2625
+ notification triggering packet is passing through.""",
2626
+ }, # scalar
2627
+ "spdIPEndpointAddress" : {
2628
+ "nodetype" : "scalar",
2629
+ "moduleName" : "IPSEC-SPD-MIB",
2630
+ "oid" : "1.3.6.1.2.1.153.2.1.3",
2631
+ "status" : "current",
2632
+ "syntax" : {
2633
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
2634
+ },
2635
+ "access" : "notifyonly",
2636
+ "description" :
2637
+ """Contains the interface address for the interface that the
2638
+ notification triggering packet is passing through.
2639
+
2640
+ The format of this object is specified by the
2641
+ spdIPEndpointAddType object.""",
2642
+ }, # scalar
2643
+ "spdIPSourceType" : {
2644
+ "nodetype" : "scalar",
2645
+ "moduleName" : "IPSEC-SPD-MIB",
2646
+ "oid" : "1.3.6.1.2.1.153.2.1.4",
2647
+ "status" : "current",
2648
+ "syntax" : {
2649
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
2650
+ },
2651
+ "access" : "notifyonly",
2652
+ "description" :
2653
+ """Contains the source address type of the packet that
2654
+
2655
+
2656
+
2657
+ triggered the notification.""",
2658
+ }, # scalar
2659
+ "spdIPSourceAddress" : {
2660
+ "nodetype" : "scalar",
2661
+ "moduleName" : "IPSEC-SPD-MIB",
2662
+ "oid" : "1.3.6.1.2.1.153.2.1.5",
2663
+ "status" : "current",
2664
+ "syntax" : {
2665
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
2666
+ },
2667
+ "access" : "notifyonly",
2668
+ "description" :
2669
+ """Contains the source address of the packet that
2670
+ triggered the notification.
2671
+
2672
+ The format of this object is specified by the
2673
+ spdIPSourceType object.""",
2674
+ }, # scalar
2675
+ "spdIPDestinationType" : {
2676
+ "nodetype" : "scalar",
2677
+ "moduleName" : "IPSEC-SPD-MIB",
2678
+ "oid" : "1.3.6.1.2.1.153.2.1.6",
2679
+ "status" : "current",
2680
+ "syntax" : {
2681
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
2682
+ },
2683
+ "access" : "notifyonly",
2684
+ "description" :
2685
+ """Contains the destination address type of the packet
2686
+ that triggered the notification.""",
2687
+ }, # scalar
2688
+ "spdIPDestinationAddress" : {
2689
+ "nodetype" : "scalar",
2690
+ "moduleName" : "IPSEC-SPD-MIB",
2691
+ "oid" : "1.3.6.1.2.1.153.2.1.7",
2692
+ "status" : "current",
2693
+ "syntax" : {
2694
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
2695
+ },
2696
+ "access" : "notifyonly",
2697
+ "description" :
2698
+ """Contains the destination address of the packet that
2699
+ triggered the notification.
2700
+
2701
+ The format of this object is specified by the
2702
+ spdIPDestinationType object.""",
2703
+ }, # scalar
2704
+ "spdPacketDirection" : {
2705
+ "nodetype" : "scalar",
2706
+ "moduleName" : "IPSEC-SPD-MIB",
2707
+ "oid" : "1.3.6.1.2.1.153.2.1.8",
2708
+ "status" : "current",
2709
+ "syntax" : {
2710
+ "type" : { "module" :"DIFFSERV-MIB", "name" : "IfDirection"},
2711
+ },
2712
+ "access" : "notifyonly",
2713
+ "description" :
2714
+ """Indicates if the packet that triggered the action in
2715
+ questions was ingress (inbound) or egress (outbound).""",
2716
+ }, # scalar
2717
+ "spdPacketPart" : {
2718
+ "nodetype" : "scalar",
2719
+ "moduleName" : "IPSEC-SPD-MIB",
2720
+ "oid" : "1.3.6.1.2.1.153.2.1.9",
2721
+ "status" : "current",
2722
+ "syntax" : {
2723
+ "type" : {
2724
+ "basetype" : "OctetString",
2725
+ "ranges" : [
2726
+ {
2727
+ "min" : "0",
2728
+ "max" : "65535"
2729
+ },
2730
+ ],
2731
+ "range" : {
2732
+ "min" : "0",
2733
+ "max" : "65535"
2734
+ },
2735
+ },
2736
+ },
2737
+ "access" : "notifyonly",
2738
+ "description" :
2739
+ """spdPacketPart is the front part of the full IP packet that
2740
+ triggered this notification. The initial size limit is
2741
+ determined by the smaller of the size, indicated by:
2742
+
2743
+ I. The value of the object with the TC syntax
2744
+ 'SpdIPPacketLogging' that indicated the packet SHOULD be
2745
+ logged and
2746
+
2747
+ II. The size of the triggering packet.
2748
+
2749
+ The final limit is determined by the SNMP packet size when
2750
+ sending the notification. The maximum size that can be
2751
+ included will be the smaller of the initial size, given the
2752
+ above, and the length that will fit in a single SNMP
2753
+ notification packet after the rest of the notification's
2754
+ objects and any other necessary packet data (headers encoding,
2755
+ etc.) have been included in the packet.""",
2756
+ }, # scalar
2757
+ "spdConformanceObjects" : {
2758
+ "nodetype" : "node",
2759
+ "moduleName" : "IPSEC-SPD-MIB",
2760
+ "oid" : "1.3.6.1.2.1.153.3",
2761
+ }, # node
2762
+ "spdCompliances" : {
2763
+ "nodetype" : "node",
2764
+ "moduleName" : "IPSEC-SPD-MIB",
2765
+ "oid" : "1.3.6.1.2.1.153.3.1",
2766
+ }, # node
2767
+ "spdGroups" : {
2768
+ "nodetype" : "node",
2769
+ "moduleName" : "IPSEC-SPD-MIB",
2770
+ "oid" : "1.3.6.1.2.1.153.3.2",
2771
+ }, # node
2772
+ "spdActions" : {
2773
+ "nodetype" : "node",
2774
+ "moduleName" : "IPSEC-SPD-MIB",
2775
+ "oid" : "1.3.6.1.2.1.153.4",
2776
+ }, # node
2777
+ }, # nodes
2778
+
2779
+ "notifications" : {
2780
+ "spdActionNotification" : {
2781
+ "nodetype" : "notification",
2782
+ "moduleName" : "IPSEC-SPD-MIB",
2783
+ "oid" : "1.3.6.1.2.1.153.2.0.1",
2784
+ "status" : "current",
2785
+ "objects" : {
2786
+ "spdActionExecuted" : {
2787
+ "nodetype" : "object",
2788
+ "module" : "IPSEC-SPD-MIB"
2789
+ },
2790
+ "spdIPEndpointAddType" : {
2791
+ "nodetype" : "object",
2792
+ "module" : "IPSEC-SPD-MIB"
2793
+ },
2794
+ "spdIPEndpointAddress" : {
2795
+ "nodetype" : "object",
2796
+ "module" : "IPSEC-SPD-MIB"
2797
+ },
2798
+ "spdIPSourceType" : {
2799
+ "nodetype" : "object",
2800
+ "module" : "IPSEC-SPD-MIB"
2801
+ },
2802
+ "spdIPSourceAddress" : {
2803
+ "nodetype" : "object",
2804
+ "module" : "IPSEC-SPD-MIB"
2805
+ },
2806
+ "spdIPDestinationType" : {
2807
+ "nodetype" : "object",
2808
+ "module" : "IPSEC-SPD-MIB"
2809
+ },
2810
+ "spdIPDestinationAddress" : {
2811
+ "nodetype" : "object",
2812
+ "module" : "IPSEC-SPD-MIB"
2813
+ },
2814
+ "spdPacketDirection" : {
2815
+ "nodetype" : "object",
2816
+ "module" : "IPSEC-SPD-MIB"
2817
+ },
2818
+ },
2819
+ "description" :
2820
+ """Notification that an action was executed by a rule.
2821
+ Only actions with logging enabled will result in this
2822
+ notification getting sent. The object includes the
2823
+ spdActionExecuted object, which will indicate which action
2824
+ was executed within the scope of the rule. Additionally,
2825
+ the spdIPSourceType, spdIPSourceAddress,
2826
+ spdIPDestinationType, and spdIPDestinationAddress objects
2827
+ are included to indicate the packet source and destination
2828
+ of the packet that triggered the action. Finally, the
2829
+ spdIPEndpointAddType, spdIPEndpointAddress, and
2830
+ spdPacketDirection objects indicate which interface the
2831
+ executed action was associated with, and if the packet was
2832
+ ingress or egress through the endpoint.
2833
+
2834
+ A spdActionNotification SHOULD be limited to a maximum of
2835
+ one notification sent per minute for any action
2836
+ notifications that do not have any other configuration
2837
+ controlling their send rate.
2838
+
2839
+
2840
+
2841
+ Note that compound actions with multiple executed
2842
+ sub-actions may result in multiple notifications being sent
2843
+ from a single rule execution.""",
2844
+ }, # notification
2845
+ "spdPacketNotification" : {
2846
+ "nodetype" : "notification",
2847
+ "moduleName" : "IPSEC-SPD-MIB",
2848
+ "oid" : "1.3.6.1.2.1.153.2.0.2",
2849
+ "status" : "current",
2850
+ "objects" : {
2851
+ "spdActionExecuted" : {
2852
+ "nodetype" : "object",
2853
+ "module" : "IPSEC-SPD-MIB"
2854
+ },
2855
+ "spdIPEndpointAddType" : {
2856
+ "nodetype" : "object",
2857
+ "module" : "IPSEC-SPD-MIB"
2858
+ },
2859
+ "spdIPEndpointAddress" : {
2860
+ "nodetype" : "object",
2861
+ "module" : "IPSEC-SPD-MIB"
2862
+ },
2863
+ "spdIPSourceType" : {
2864
+ "nodetype" : "object",
2865
+ "module" : "IPSEC-SPD-MIB"
2866
+ },
2867
+ "spdIPSourceAddress" : {
2868
+ "nodetype" : "object",
2869
+ "module" : "IPSEC-SPD-MIB"
2870
+ },
2871
+ "spdIPDestinationType" : {
2872
+ "nodetype" : "object",
2873
+ "module" : "IPSEC-SPD-MIB"
2874
+ },
2875
+ "spdIPDestinationAddress" : {
2876
+ "nodetype" : "object",
2877
+ "module" : "IPSEC-SPD-MIB"
2878
+ },
2879
+ "spdPacketDirection" : {
2880
+ "nodetype" : "object",
2881
+ "module" : "IPSEC-SPD-MIB"
2882
+ },
2883
+ "spdPacketPart" : {
2884
+ "nodetype" : "object",
2885
+ "module" : "IPSEC-SPD-MIB"
2886
+ },
2887
+ },
2888
+ "description" :
2889
+ """Notification that a packet passed through a Security
2890
+ Association (SA). Only SAs created by actions with packet
2891
+ logging enabled will result in this notification getting
2892
+ sent. The objects sent MUST include the spdActionExecuted,
2893
+ which will indicate which action was executed within the
2894
+ scope of the rule. Additionally, the spdIPSourceType,
2895
+ spdIPSourceAddress, spdIPDestinationType, and
2896
+ spdIPDestinationAddress objects MUST be included to
2897
+ indicate the packet source and destination of the packet
2898
+ that triggered the action. The spdIPEndpointAddType,
2899
+ spdIPEndpointAddress, and spdPacketDirection objects are
2900
+ included to indicate which endpoint the packet was
2901
+ associated with. Finally, spdPacketPart is included to
2902
+ enable sending a variable sized part of the front of the
2903
+ packet with the size dependent on the value of the object of
2904
+ TC syntax 'SpdIPPacketLogging', which indicated that logging
2905
+ should be done.
2906
+
2907
+ A spdPacketNotification SHOULD be limited to a maximum of
2908
+ one notification sent per minute for any action
2909
+ notifications that do not have any other configuration
2910
+ controlling their send rate.
2911
+
2912
+ An action notification SHOULD be limited to a maximum of
2913
+ one notification sent per minute for any action
2914
+ notifications that do not have any other configuration
2915
+ controlling their send rate.""",
2916
+ }, # notification
2917
+ }, # notifications
2918
+
2919
+ "groups" : {
2920
+ "spdEndpointGroup" : {
2921
+ "nodetype" : "group",
2922
+ "moduleName" : "IPSEC-SPD-MIB",
2923
+ "oid" : "1.3.6.1.2.1.153.3.2.1",
2924
+ "status" : "current",
2925
+ "members" : {
2926
+ "spdEndGroupName" : {
2927
+ "nodetype" : "member",
2928
+ "module" : "IPSEC-SPD-MIB"
2929
+ },
2930
+ "spdEndGroupLastChanged" : {
2931
+ "nodetype" : "member",
2932
+ "module" : "IPSEC-SPD-MIB"
2933
+ },
2934
+ "spdEndGroupStorageType" : {
2935
+ "nodetype" : "member",
2936
+ "module" : "IPSEC-SPD-MIB"
2937
+ },
2938
+ "spdEndGroupRowStatus" : {
2939
+ "nodetype" : "member",
2940
+ "module" : "IPSEC-SPD-MIB"
2941
+ },
2942
+ }, # members
2943
+ "description" :
2944
+ """This group is made up of objects from the IPsec Policy
2945
+ Endpoint Table.""",
2946
+ }, # group
2947
+ "spdGroupContentsGroup" : {
2948
+ "nodetype" : "group",
2949
+ "moduleName" : "IPSEC-SPD-MIB",
2950
+ "oid" : "1.3.6.1.2.1.153.3.2.2",
2951
+ "status" : "current",
2952
+ "members" : {
2953
+ "spdGroupContComponentType" : {
2954
+ "nodetype" : "member",
2955
+ "module" : "IPSEC-SPD-MIB"
2956
+ },
2957
+ "spdGroupContFilter" : {
2958
+ "nodetype" : "member",
2959
+ "module" : "IPSEC-SPD-MIB"
2960
+ },
2961
+ "spdGroupContComponentName" : {
2962
+ "nodetype" : "member",
2963
+ "module" : "IPSEC-SPD-MIB"
2964
+ },
2965
+ "spdGroupContLastChanged" : {
2966
+ "nodetype" : "member",
2967
+ "module" : "IPSEC-SPD-MIB"
2968
+ },
2969
+ "spdGroupContStorageType" : {
2970
+ "nodetype" : "member",
2971
+ "module" : "IPSEC-SPD-MIB"
2972
+ },
2973
+ "spdGroupContRowStatus" : {
2974
+ "nodetype" : "member",
2975
+ "module" : "IPSEC-SPD-MIB"
2976
+ },
2977
+ }, # members
2978
+ "description" :
2979
+ """This group is made up of objects from the IPsec Policy
2980
+ Group Contents Table.""",
2981
+ }, # group
2982
+ "spdIpsecSystemPolicyNameGroup" : {
2983
+ "nodetype" : "group",
2984
+ "moduleName" : "IPSEC-SPD-MIB",
2985
+ "oid" : "1.3.6.1.2.1.153.3.2.3",
2986
+ "status" : "current",
2987
+ "members" : {
2988
+ "spdIngressPolicyGroupName" : {
2989
+ "nodetype" : "member",
2990
+ "module" : "IPSEC-SPD-MIB"
2991
+ },
2992
+ "spdEgressPolicyGroupName" : {
2993
+ "nodetype" : "member",
2994
+ "module" : "IPSEC-SPD-MIB"
2995
+ },
2996
+ }, # members
2997
+ "description" :
2998
+ """This group is made up of objects represent the System
2999
+ Policy Group Names.""",
3000
+ }, # group
3001
+ "spdRuleDefinitionGroup" : {
3002
+ "nodetype" : "group",
3003
+ "moduleName" : "IPSEC-SPD-MIB",
3004
+ "oid" : "1.3.6.1.2.1.153.3.2.4",
3005
+ "status" : "current",
3006
+ "members" : {
3007
+ "spdRuleDefDescription" : {
3008
+ "nodetype" : "member",
3009
+ "module" : "IPSEC-SPD-MIB"
3010
+ },
3011
+ "spdRuleDefFilter" : {
3012
+ "nodetype" : "member",
3013
+ "module" : "IPSEC-SPD-MIB"
3014
+ },
3015
+ "spdRuleDefFilterNegated" : {
3016
+ "nodetype" : "member",
3017
+ "module" : "IPSEC-SPD-MIB"
3018
+ },
3019
+ "spdRuleDefAction" : {
3020
+ "nodetype" : "member",
3021
+ "module" : "IPSEC-SPD-MIB"
3022
+ },
3023
+ "spdRuleDefAdminStatus" : {
3024
+ "nodetype" : "member",
3025
+ "module" : "IPSEC-SPD-MIB"
3026
+ },
3027
+ "spdRuleDefLastChanged" : {
3028
+ "nodetype" : "member",
3029
+ "module" : "IPSEC-SPD-MIB"
3030
+ },
3031
+ "spdRuleDefStorageType" : {
3032
+ "nodetype" : "member",
3033
+ "module" : "IPSEC-SPD-MIB"
3034
+ },
3035
+ "spdRuleDefRowStatus" : {
3036
+ "nodetype" : "member",
3037
+ "module" : "IPSEC-SPD-MIB"
3038
+ },
3039
+ }, # members
3040
+ "description" :
3041
+ """This group is made up of objects from the IPsec Policy Rule
3042
+ Definition Table.""",
3043
+ }, # group
3044
+ "spdCompoundFilterGroup" : {
3045
+ "nodetype" : "group",
3046
+ "moduleName" : "IPSEC-SPD-MIB",
3047
+ "oid" : "1.3.6.1.2.1.153.3.2.5",
3048
+ "status" : "current",
3049
+ "members" : {
3050
+ "spdCompFiltDescription" : {
3051
+ "nodetype" : "member",
3052
+ "module" : "IPSEC-SPD-MIB"
3053
+ },
3054
+ "spdCompFiltLogicType" : {
3055
+ "nodetype" : "member",
3056
+ "module" : "IPSEC-SPD-MIB"
3057
+ },
3058
+ "spdCompFiltLastChanged" : {
3059
+ "nodetype" : "member",
3060
+ "module" : "IPSEC-SPD-MIB"
3061
+ },
3062
+ "spdCompFiltStorageType" : {
3063
+ "nodetype" : "member",
3064
+ "module" : "IPSEC-SPD-MIB"
3065
+ },
3066
+ "spdCompFiltRowStatus" : {
3067
+ "nodetype" : "member",
3068
+ "module" : "IPSEC-SPD-MIB"
3069
+ },
3070
+ "spdSubFiltSubfilter" : {
3071
+ "nodetype" : "member",
3072
+ "module" : "IPSEC-SPD-MIB"
3073
+ },
3074
+ "spdSubFiltSubfilterIsNegated" : {
3075
+ "nodetype" : "member",
3076
+ "module" : "IPSEC-SPD-MIB"
3077
+ },
3078
+ "spdSubFiltLastChanged" : {
3079
+ "nodetype" : "member",
3080
+ "module" : "IPSEC-SPD-MIB"
3081
+ },
3082
+ "spdSubFiltStorageType" : {
3083
+ "nodetype" : "member",
3084
+ "module" : "IPSEC-SPD-MIB"
3085
+ },
3086
+ "spdSubFiltRowStatus" : {
3087
+ "nodetype" : "member",
3088
+ "module" : "IPSEC-SPD-MIB"
3089
+ },
3090
+ }, # members
3091
+ "description" :
3092
+ """This group is made up of objects from the IPsec Policy
3093
+ Compound Filter Table and Sub-Filter Table Group.""",
3094
+ }, # group
3095
+ "spdStaticFilterGroup" : {
3096
+ "nodetype" : "group",
3097
+ "moduleName" : "IPSEC-SPD-MIB",
3098
+ "oid" : "1.3.6.1.2.1.153.3.2.6",
3099
+ "status" : "current",
3100
+ "members" : {
3101
+ "spdTrueFilter" : {
3102
+ "nodetype" : "member",
3103
+ "module" : "IPSEC-SPD-MIB"
3104
+ },
3105
+ }, # members
3106
+ "description" :
3107
+ """The static filter group. Currently this is just a true
3108
+ filter.""",
3109
+ }, # group
3110
+ "spdIPOffsetFilterGroup" : {
3111
+ "nodetype" : "group",
3112
+ "moduleName" : "IPSEC-SPD-MIB",
3113
+ "oid" : "1.3.6.1.2.1.153.3.2.7",
3114
+ "status" : "current",
3115
+ "members" : {
3116
+ "spdIpOffFiltOffset" : {
3117
+ "nodetype" : "member",
3118
+ "module" : "IPSEC-SPD-MIB"
3119
+ },
3120
+ "spdIpOffFiltType" : {
3121
+ "nodetype" : "member",
3122
+ "module" : "IPSEC-SPD-MIB"
3123
+ },
3124
+ "spdIpOffFiltValue" : {
3125
+ "nodetype" : "member",
3126
+ "module" : "IPSEC-SPD-MIB"
3127
+ },
3128
+ "spdIpOffFiltLastChanged" : {
3129
+ "nodetype" : "member",
3130
+ "module" : "IPSEC-SPD-MIB"
3131
+ },
3132
+ "spdIpOffFiltStorageType" : {
3133
+ "nodetype" : "member",
3134
+ "module" : "IPSEC-SPD-MIB"
3135
+ },
3136
+ "spdIpOffFiltRowStatus" : {
3137
+ "nodetype" : "member",
3138
+ "module" : "IPSEC-SPD-MIB"
3139
+ },
3140
+ }, # members
3141
+ "description" :
3142
+ """This group is made up of objects from the IPsec Policy IP
3143
+ Offset Filter Table.""",
3144
+ }, # group
3145
+ "spdTimeFilterGroup" : {
3146
+ "nodetype" : "group",
3147
+ "moduleName" : "IPSEC-SPD-MIB",
3148
+ "oid" : "1.3.6.1.2.1.153.3.2.8",
3149
+ "status" : "current",
3150
+ "members" : {
3151
+ "spdTimeFiltPeriod" : {
3152
+ "nodetype" : "member",
3153
+ "module" : "IPSEC-SPD-MIB"
3154
+ },
3155
+ "spdTimeFiltMonthOfYearMask" : {
3156
+ "nodetype" : "member",
3157
+ "module" : "IPSEC-SPD-MIB"
3158
+ },
3159
+ "spdTimeFiltDayOfMonthMask" : {
3160
+ "nodetype" : "member",
3161
+ "module" : "IPSEC-SPD-MIB"
3162
+ },
3163
+ "spdTimeFiltDayOfWeekMask" : {
3164
+ "nodetype" : "member",
3165
+ "module" : "IPSEC-SPD-MIB"
3166
+ },
3167
+ "spdTimeFiltTimeOfDayMask" : {
3168
+ "nodetype" : "member",
3169
+ "module" : "IPSEC-SPD-MIB"
3170
+ },
3171
+ "spdTimeFiltLastChanged" : {
3172
+ "nodetype" : "member",
3173
+ "module" : "IPSEC-SPD-MIB"
3174
+ },
3175
+ "spdTimeFiltStorageType" : {
3176
+ "nodetype" : "member",
3177
+ "module" : "IPSEC-SPD-MIB"
3178
+ },
3179
+ "spdTimeFiltRowStatus" : {
3180
+ "nodetype" : "member",
3181
+ "module" : "IPSEC-SPD-MIB"
3182
+ },
3183
+ }, # members
3184
+ "description" :
3185
+ """This group is made up of objects from the IPsec Policy Time
3186
+ Filter Table.""",
3187
+ }, # group
3188
+ "spdIpsoHeaderFilterGroup" : {
3189
+ "nodetype" : "group",
3190
+ "moduleName" : "IPSEC-SPD-MIB",
3191
+ "oid" : "1.3.6.1.2.1.153.3.2.9",
3192
+ "status" : "current",
3193
+ "members" : {
3194
+ "spdIpsoHeadFiltType" : {
3195
+ "nodetype" : "member",
3196
+ "module" : "IPSEC-SPD-MIB"
3197
+ },
3198
+ "spdIpsoHeadFiltClassification" : {
3199
+ "nodetype" : "member",
3200
+ "module" : "IPSEC-SPD-MIB"
3201
+ },
3202
+ "spdIpsoHeadFiltProtectionAuth" : {
3203
+ "nodetype" : "member",
3204
+ "module" : "IPSEC-SPD-MIB"
3205
+ },
3206
+ "spdIpsoHeadFiltLastChanged" : {
3207
+ "nodetype" : "member",
3208
+ "module" : "IPSEC-SPD-MIB"
3209
+ },
3210
+ "spdIpsoHeadFiltStorageType" : {
3211
+ "nodetype" : "member",
3212
+ "module" : "IPSEC-SPD-MIB"
3213
+ },
3214
+ "spdIpsoHeadFiltRowStatus" : {
3215
+ "nodetype" : "member",
3216
+ "module" : "IPSEC-SPD-MIB"
3217
+ },
3218
+ }, # members
3219
+ "description" :
3220
+ """This group is made up of objects from the IPsec Policy IPSO
3221
+ Header Filter Table.""",
3222
+ }, # group
3223
+ "spdStaticActionGroup" : {
3224
+ "nodetype" : "group",
3225
+ "moduleName" : "IPSEC-SPD-MIB",
3226
+ "oid" : "1.3.6.1.2.1.153.3.2.10",
3227
+ "status" : "current",
3228
+ "members" : {
3229
+ "spdDropAction" : {
3230
+ "nodetype" : "member",
3231
+ "module" : "IPSEC-SPD-MIB"
3232
+ },
3233
+ "spdAcceptAction" : {
3234
+ "nodetype" : "member",
3235
+ "module" : "IPSEC-SPD-MIB"
3236
+ },
3237
+ "spdDropActionLog" : {
3238
+ "nodetype" : "member",
3239
+ "module" : "IPSEC-SPD-MIB"
3240
+ },
3241
+ "spdAcceptActionLog" : {
3242
+ "nodetype" : "member",
3243
+ "module" : "IPSEC-SPD-MIB"
3244
+ },
3245
+ }, # members
3246
+ "description" :
3247
+ """This group is made up of objects from the IPsec Policy
3248
+ Static Actions.""",
3249
+ }, # group
3250
+ "spdCompoundActionGroup" : {
3251
+ "nodetype" : "group",
3252
+ "moduleName" : "IPSEC-SPD-MIB",
3253
+ "oid" : "1.3.6.1.2.1.153.3.2.11",
3254
+ "status" : "current",
3255
+ "members" : {
3256
+ "spdCompActExecutionStrategy" : {
3257
+ "nodetype" : "member",
3258
+ "module" : "IPSEC-SPD-MIB"
3259
+ },
3260
+ "spdCompActLastChanged" : {
3261
+ "nodetype" : "member",
3262
+ "module" : "IPSEC-SPD-MIB"
3263
+ },
3264
+ "spdCompActStorageType" : {
3265
+ "nodetype" : "member",
3266
+ "module" : "IPSEC-SPD-MIB"
3267
+ },
3268
+ "spdCompActRowStatus" : {
3269
+ "nodetype" : "member",
3270
+ "module" : "IPSEC-SPD-MIB"
3271
+ },
3272
+ "spdSubActSubActionName" : {
3273
+ "nodetype" : "member",
3274
+ "module" : "IPSEC-SPD-MIB"
3275
+ },
3276
+ "spdSubActLastChanged" : {
3277
+ "nodetype" : "member",
3278
+ "module" : "IPSEC-SPD-MIB"
3279
+ },
3280
+ "spdSubActStorageType" : {
3281
+ "nodetype" : "member",
3282
+ "module" : "IPSEC-SPD-MIB"
3283
+ },
3284
+ "spdSubActRowStatus" : {
3285
+ "nodetype" : "member",
3286
+ "module" : "IPSEC-SPD-MIB"
3287
+ },
3288
+ }, # members
3289
+ "description" :
3290
+ """The IPsec Policy Compound Action Table and Actions In
3291
+
3292
+
3293
+
3294
+ Compound Action Table Group.""",
3295
+ }, # group
3296
+ "spdActionLoggingObjectGroup" : {
3297
+ "nodetype" : "group",
3298
+ "moduleName" : "IPSEC-SPD-MIB",
3299
+ "oid" : "1.3.6.1.2.1.153.3.2.12",
3300
+ "status" : "current",
3301
+ "members" : {
3302
+ "spdActionExecuted" : {
3303
+ "nodetype" : "member",
3304
+ "module" : "IPSEC-SPD-MIB"
3305
+ },
3306
+ "spdIPEndpointAddType" : {
3307
+ "nodetype" : "member",
3308
+ "module" : "IPSEC-SPD-MIB"
3309
+ },
3310
+ "spdIPEndpointAddress" : {
3311
+ "nodetype" : "member",
3312
+ "module" : "IPSEC-SPD-MIB"
3313
+ },
3314
+ "spdIPSourceType" : {
3315
+ "nodetype" : "member",
3316
+ "module" : "IPSEC-SPD-MIB"
3317
+ },
3318
+ "spdIPSourceAddress" : {
3319
+ "nodetype" : "member",
3320
+ "module" : "IPSEC-SPD-MIB"
3321
+ },
3322
+ "spdIPDestinationType" : {
3323
+ "nodetype" : "member",
3324
+ "module" : "IPSEC-SPD-MIB"
3325
+ },
3326
+ "spdIPDestinationAddress" : {
3327
+ "nodetype" : "member",
3328
+ "module" : "IPSEC-SPD-MIB"
3329
+ },
3330
+ "spdPacketDirection" : {
3331
+ "nodetype" : "member",
3332
+ "module" : "IPSEC-SPD-MIB"
3333
+ },
3334
+ "spdPacketPart" : {
3335
+ "nodetype" : "member",
3336
+ "module" : "IPSEC-SPD-MIB"
3337
+ },
3338
+ }, # members
3339
+ "description" :
3340
+ """This group is made up of all the Notification objects for
3341
+ this MIB.""",
3342
+ }, # group
3343
+ "spdActionNotificationGroup" : {
3344
+ "nodetype" : "group",
3345
+ "moduleName" : "IPSEC-SPD-MIB",
3346
+ "oid" : "1.3.6.1.2.1.153.3.2.13",
3347
+ "status" : "current",
3348
+ "members" : {
3349
+ "spdActionNotification" : {
3350
+ "nodetype" : "member",
3351
+ "module" : "IPSEC-SPD-MIB"
3352
+ },
3353
+ "spdPacketNotification" : {
3354
+ "nodetype" : "member",
3355
+ "module" : "IPSEC-SPD-MIB"
3356
+ },
3357
+ }, # members
3358
+ "description" :
3359
+ """This group is made up of all the Notifications for this MIB.""",
3360
+ }, # group
3361
+ }, # groups
3362
+
3363
+ "compliances" : {
3364
+ "spdRuleFilterFullCompliance" : {
3365
+ "nodetype" : "compliance",
3366
+ "moduleName" : "IPSEC-SPD-MIB",
3367
+ "oid" : "1.3.6.1.2.1.153.3.1.1",
3368
+ "status" : "current",
3369
+ "description" :
3370
+ """The compliance statement for SNMP entities that include
3371
+ an IPsec MIB implementation with Endpoint, Rules, and
3372
+ filters support.
3373
+
3374
+ When this MIB is implemented with support for read-create,
3375
+ then such an implementation can claim full compliance. Such
3376
+ devices can then be both monitored and configured with this
3377
+ MIB.""",
3378
+ "requires" : {
3379
+ "spdEndpointGroup" : {
3380
+ "nodetype" : "mandatory",
3381
+ "module" : "IPSEC-SPD-MIB"
3382
+ },
3383
+ "spdGroupContentsGroup" : {
3384
+ "nodetype" : "mandatory",
3385
+ "module" : "IPSEC-SPD-MIB"
3386
+ },
3387
+ "spdRuleDefinitionGroup" : {
3388
+ "nodetype" : "mandatory",
3389
+ "module" : "IPSEC-SPD-MIB"
3390
+ },
3391
+ "spdStaticFilterGroup" : {
3392
+ "nodetype" : "mandatory",
3393
+ "module" : "IPSEC-SPD-MIB"
3394
+ },
3395
+ "spdStaticActionGroup" : {
3396
+ "nodetype" : "mandatory",
3397
+ "module" : "IPSEC-SPD-MIB"
3398
+ },
3399
+ "diffServMIBMultiFieldClfrGroup" : {
3400
+ "nodetype" : "mandatory",
3401
+ "module" : "DIFFSERV-MIB"
3402
+ },
3403
+ "spdIpsecSystemPolicyNameGroup" : {
3404
+ "nodetype" : "optional",
3405
+ "module" : "IPSEC-SPD-MIB",
3406
+ "description" :
3407
+ """This group is mandatory for IPsec Policy
3408
+ implementations that support a system policy group
3409
+ name.""",
3410
+ },
3411
+ "spdCompoundFilterGroup" : {
3412
+ "nodetype" : "optional",
3413
+ "module" : "IPSEC-SPD-MIB",
3414
+ "description" :
3415
+ """This group is mandatory for IPsec Policy
3416
+ implementations that support compound filters.""",
3417
+ },
3418
+ "spdIPOffsetFilterGroup" : {
3419
+ "nodetype" : "optional",
3420
+ "module" : "IPSEC-SPD-MIB",
3421
+ "description" :
3422
+ """This group is mandatory for IPsec Policy
3423
+ implementations that support IP Offset filters. In
3424
+ general, this SHOULD be supported by a compliant IPsec
3425
+
3426
+
3427
+
3428
+ Policy implementation.""",
3429
+ },
3430
+ "spdTimeFilterGroup" : {
3431
+ "nodetype" : "optional",
3432
+ "module" : "IPSEC-SPD-MIB",
3433
+ "description" :
3434
+ """This group is mandatory for IPsec Policy
3435
+ implementations that support time filters.""",
3436
+ },
3437
+ "spdIpsoHeaderFilterGroup" : {
3438
+ "nodetype" : "optional",
3439
+ "module" : "IPSEC-SPD-MIB",
3440
+ "description" :
3441
+ """This group is mandatory for IPsec Policy
3442
+ implementations that support IPSO Header filters.""",
3443
+ },
3444
+ "spdCompoundActionGroup" : {
3445
+ "nodetype" : "optional",
3446
+ "module" : "IPSEC-SPD-MIB",
3447
+ "description" :
3448
+ """This group is mandatory for IPsec Policy
3449
+ implementations that support compound actions.""",
3450
+ },
3451
+ }, # requires
3452
+ "refinements" : {
3453
+ "spdEndGroupLastChanged" : {
3454
+ "module" : "IPSEC-SPD-MIB",
3455
+ "access" : "noaccess",
3456
+ "description" :
3457
+ """This object not required for compliance.""",
3458
+ },
3459
+ "spdGroupContComponentType" : {
3460
+ "module" : "IPSEC-SPD-MIB",
3461
+ "syntax" : {
3462
+ "type" : {
3463
+ "basetype" : "Enumeration",
3464
+ "rule" : {
3465
+ "nodetype" : "namednumber",
3466
+ "number" : "2"
3467
+ },
3468
+ },
3469
+ }, # syntax
3470
+ "description" :
3471
+ """Support of the value group(1) is only required for
3472
+ implementations that support Policy Groups within
3473
+ Policy Groups.""",
3474
+ },
3475
+ "spdGroupContLastChanged" : {
3476
+ "module" : "IPSEC-SPD-MIB",
3477
+ "access" : "noaccess",
3478
+ "description" :
3479
+ """This object not required for compliance.""",
3480
+ },
3481
+ "spdRuleDefLastChanged" : {
3482
+ "module" : "IPSEC-SPD-MIB",
3483
+ "access" : "noaccess",
3484
+ "description" :
3485
+ """This object not required for compliance.""",
3486
+ },
3487
+ "spdCompFiltLastChanged" : {
3488
+ "module" : "IPSEC-SPD-MIB",
3489
+ "access" : "noaccess",
3490
+ "description" :
3491
+ """This object not required for compliance.""",
3492
+ },
3493
+ "spdSubFiltLastChanged" : {
3494
+ "module" : "IPSEC-SPD-MIB",
3495
+ "access" : "noaccess",
3496
+ "description" :
3497
+ """This object not required for compliance.""",
3498
+ },
3499
+ "spdIpOffFiltLastChanged" : {
3500
+ "module" : "IPSEC-SPD-MIB",
3501
+ "access" : "noaccess",
3502
+ "description" :
3503
+ """This object not required for compliance.""",
3504
+ },
3505
+ "spdTimeFiltLastChanged" : {
3506
+ "module" : "IPSEC-SPD-MIB",
3507
+ "access" : "noaccess",
3508
+ "description" :
3509
+ """This object not required for compliance.""",
3510
+ },
3511
+ "spdIpsoHeadFiltLastChanged" : {
3512
+ "module" : "IPSEC-SPD-MIB",
3513
+ "access" : "noaccess",
3514
+ "description" :
3515
+ """This object not required for compliance.""",
3516
+ },
3517
+ "spdCompActLastChanged" : {
3518
+ "module" : "IPSEC-SPD-MIB",
3519
+ "access" : "noaccess",
3520
+ "description" :
3521
+ """This object not required for compliance.""",
3522
+ },
3523
+ "spdSubActLastChanged" : {
3524
+ "module" : "IPSEC-SPD-MIB",
3525
+ "access" : "noaccess",
3526
+ "description" :
3527
+ """This object not required for compliance.""",
3528
+ },
3529
+ "diffServMultiFieldClfrNextFree" : {
3530
+ "module" : "DIFFSERV-MIB",
3531
+ "access" : "noaccess",
3532
+ "description" :
3533
+ """This object is not required for compliance.""",
3534
+ },
3535
+ }, # refinements
3536
+
3537
+ }, # compliance
3538
+ "spdLoggingCompliance" : {
3539
+ "nodetype" : "compliance",
3540
+ "moduleName" : "IPSEC-SPD-MIB",
3541
+ "oid" : "1.3.6.1.2.1.153.3.1.2",
3542
+ "status" : "current",
3543
+ "description" :
3544
+ """The compliance statement for SNMP entities that support
3545
+ sending notifications when actions are invoked.""",
3546
+ "requires" : {
3547
+ "spdActionLoggingObjectGroup" : {
3548
+ "nodetype" : "mandatory",
3549
+ "module" : "IPSEC-SPD-MIB"
3550
+ },
3551
+ "spdActionNotificationGroup" : {
3552
+ "nodetype" : "mandatory",
3553
+ "module" : "IPSEC-SPD-MIB"
3554
+ },
3555
+ }, # requires
3556
+ }, # compliance
3557
+ "spdRuleFilterReadOnlyCompliance" : {
3558
+ "nodetype" : "compliance",
3559
+ "moduleName" : "IPSEC-SPD-MIB",
3560
+ "oid" : "1.3.6.1.2.1.153.3.1.3",
3561
+ "status" : "current",
3562
+ "description" :
3563
+ """The compliance statement for SNMP entities that include
3564
+ an IPsec MIB implementation with Endpoint, Rules, and
3565
+ filters support.
3566
+
3567
+ If this MIB is implemented without support for read-create
3568
+ (i.e., in read-only), it is not in full compliance, but it
3569
+ can claim read-only compliance. Such a device can then be
3570
+ monitored, but cannot be configured with this MIB.""",
3571
+ "requires" : {
3572
+ "spdEndpointGroup" : {
3573
+ "nodetype" : "mandatory",
3574
+ "module" : "IPSEC-SPD-MIB"
3575
+ },
3576
+ "spdGroupContentsGroup" : {
3577
+ "nodetype" : "mandatory",
3578
+ "module" : "IPSEC-SPD-MIB"
3579
+ },
3580
+ "spdRuleDefinitionGroup" : {
3581
+ "nodetype" : "mandatory",
3582
+ "module" : "IPSEC-SPD-MIB"
3583
+ },
3584
+ "spdStaticFilterGroup" : {
3585
+ "nodetype" : "mandatory",
3586
+ "module" : "IPSEC-SPD-MIB"
3587
+ },
3588
+ "spdStaticActionGroup" : {
3589
+ "nodetype" : "mandatory",
3590
+ "module" : "IPSEC-SPD-MIB"
3591
+ },
3592
+ "diffServMIBMultiFieldClfrGroup" : {
3593
+ "nodetype" : "mandatory",
3594
+ "module" : "DIFFSERV-MIB"
3595
+ },
3596
+ "spdIpsecSystemPolicyNameGroup" : {
3597
+ "nodetype" : "optional",
3598
+ "module" : "IPSEC-SPD-MIB",
3599
+ "description" :
3600
+ """This group is mandatory for IPsec Policy
3601
+ implementations that support a system policy group
3602
+ name.""",
3603
+ },
3604
+ "spdCompoundFilterGroup" : {
3605
+ "nodetype" : "optional",
3606
+ "module" : "IPSEC-SPD-MIB",
3607
+ "description" :
3608
+ """This group is mandatory for IPsec Policy
3609
+ implementations that support compound filters.""",
3610
+ },
3611
+ "spdIPOffsetFilterGroup" : {
3612
+ "nodetype" : "optional",
3613
+ "module" : "IPSEC-SPD-MIB",
3614
+ "description" :
3615
+ """This group is mandatory for IPsec Policy
3616
+ implementations that support IP Offset filters. In
3617
+ general, this SHOULD be supported by a compliant IPsec
3618
+ Policy implementation.""",
3619
+ },
3620
+ "spdTimeFilterGroup" : {
3621
+ "nodetype" : "optional",
3622
+ "module" : "IPSEC-SPD-MIB",
3623
+ "description" :
3624
+ """This group is mandatory for IPsec Policy
3625
+ implementations that support time filters.""",
3626
+ },
3627
+ "spdIpsoHeaderFilterGroup" : {
3628
+ "nodetype" : "optional",
3629
+ "module" : "IPSEC-SPD-MIB",
3630
+ "description" :
3631
+ """This group is mandatory for IPsec Policy
3632
+
3633
+
3634
+
3635
+ implementations that support IPSO Header filters.""",
3636
+ },
3637
+ "spdCompoundActionGroup" : {
3638
+ "nodetype" : "optional",
3639
+ "module" : "IPSEC-SPD-MIB",
3640
+ "description" :
3641
+ """This group is mandatory for IPsec Policy
3642
+ implementations that support compound actions.""",
3643
+ },
3644
+ }, # requires
3645
+ "refinements" : {
3646
+ "spdCompActExecutionStrategy" : {
3647
+ "module" : "IPSEC-SPD-MIB",
3648
+ "access" : "readonly",
3649
+ "description" :
3650
+ """Write access is not required.""",
3651
+ },
3652
+ "spdCompActLastChanged" : {
3653
+ "module" : "IPSEC-SPD-MIB",
3654
+ "description" :
3655
+ """This object is not required for compliance.""",
3656
+ },
3657
+ "spdCompActRowStatus" : {
3658
+ "module" : "IPSEC-SPD-MIB",
3659
+ "access" : "readonly",
3660
+ "description" :
3661
+ """Write access is not required.""",
3662
+ },
3663
+ "spdCompActStorageType" : {
3664
+ "module" : "IPSEC-SPD-MIB",
3665
+ "access" : "readonly",
3666
+ "description" :
3667
+ """Write access is not required.""",
3668
+ },
3669
+ "spdCompFiltDescription" : {
3670
+ "module" : "IPSEC-SPD-MIB",
3671
+ "access" : "readonly",
3672
+ "description" :
3673
+ """Write access is not required.""",
3674
+ },
3675
+ "spdCompFiltLastChanged" : {
3676
+ "module" : "IPSEC-SPD-MIB",
3677
+ "description" :
3678
+ """This object is not required for compliance.""",
3679
+ },
3680
+ "spdCompFiltLogicType" : {
3681
+ "module" : "IPSEC-SPD-MIB",
3682
+ "access" : "readonly",
3683
+ "description" :
3684
+ """Write access is not required.""",
3685
+ },
3686
+ "spdCompFiltRowStatus" : {
3687
+ "module" : "IPSEC-SPD-MIB",
3688
+ "access" : "readonly",
3689
+ "description" :
3690
+ """Write access is not required.""",
3691
+ },
3692
+ "spdCompFiltStorageType" : {
3693
+ "module" : "IPSEC-SPD-MIB",
3694
+ "access" : "readonly",
3695
+ "description" :
3696
+ """Write access is not required.""",
3697
+ },
3698
+ "spdEgressPolicyGroupName" : {
3699
+ "module" : "IPSEC-SPD-MIB",
3700
+ "access" : "readonly",
3701
+ "description" :
3702
+ """Write access is not required.""",
3703
+ },
3704
+ "spdEndGroupLastChanged" : {
3705
+ "module" : "IPSEC-SPD-MIB",
3706
+ "description" :
3707
+ """This object is not required for compliance.""",
3708
+ },
3709
+ "spdEndGroupName" : {
3710
+ "module" : "IPSEC-SPD-MIB",
3711
+ "access" : "readonly",
3712
+ "description" :
3713
+ """Write access is not required.""",
3714
+ },
3715
+ "spdEndGroupRowStatus" : {
3716
+ "module" : "IPSEC-SPD-MIB",
3717
+ "access" : "readonly",
3718
+ "description" :
3719
+ """Write access is not required.""",
3720
+ },
3721
+ "spdEndGroupStorageType" : {
3722
+ "module" : "IPSEC-SPD-MIB",
3723
+ "access" : "readonly",
3724
+ "description" :
3725
+ """Write access is not required.""",
3726
+ },
3727
+ "spdGroupContComponentName" : {
3728
+ "module" : "IPSEC-SPD-MIB",
3729
+ "access" : "readonly",
3730
+ "description" :
3731
+ """Write access is not required.""",
3732
+ },
3733
+ "spdGroupContComponentType" : {
3734
+ "module" : "IPSEC-SPD-MIB",
3735
+ "access" : "readonly",
3736
+ "description" :
3737
+ """Write access is not required.""",
3738
+ },
3739
+ "spdGroupContFilter" : {
3740
+ "module" : "IPSEC-SPD-MIB",
3741
+ "access" : "readonly",
3742
+ "description" :
3743
+ """Write access is not required.""",
3744
+ },
3745
+ "spdGroupContLastChanged" : {
3746
+ "module" : "IPSEC-SPD-MIB",
3747
+ "description" :
3748
+ """This object is not required for compliance.""",
3749
+ },
3750
+ "spdGroupContRowStatus" : {
3751
+ "module" : "IPSEC-SPD-MIB",
3752
+ "access" : "readonly",
3753
+ "description" :
3754
+ """Write access is not required.""",
3755
+ },
3756
+ "spdGroupContStorageType" : {
3757
+ "module" : "IPSEC-SPD-MIB",
3758
+ "access" : "readonly",
3759
+ "description" :
3760
+ """Write access is not required.""",
3761
+ },
3762
+ "spdIngressPolicyGroupName" : {
3763
+ "module" : "IPSEC-SPD-MIB",
3764
+ "access" : "readonly",
3765
+ "description" :
3766
+ """Write access is not required.""",
3767
+ },
3768
+ "spdIpOffFiltLastChanged" : {
3769
+ "module" : "IPSEC-SPD-MIB",
3770
+ "description" :
3771
+ """This object is not required for compliance.""",
3772
+ },
3773
+ "spdIpOffFiltOffset" : {
3774
+ "module" : "IPSEC-SPD-MIB",
3775
+ "access" : "readonly",
3776
+ "description" :
3777
+ """Write access is not required.""",
3778
+ },
3779
+ "spdIpOffFiltRowStatus" : {
3780
+ "module" : "IPSEC-SPD-MIB",
3781
+ "access" : "readonly",
3782
+ "description" :
3783
+ """Write access is not required.""",
3784
+ },
3785
+ "spdIpOffFiltStorageType" : {
3786
+ "module" : "IPSEC-SPD-MIB",
3787
+ "access" : "readonly",
3788
+ "description" :
3789
+ """Write access is not required.""",
3790
+ },
3791
+ "spdIpOffFiltType" : {
3792
+ "module" : "IPSEC-SPD-MIB",
3793
+ "access" : "readonly",
3794
+ "description" :
3795
+ """Write access is not required.""",
3796
+ },
3797
+ "spdIpOffFiltValue" : {
3798
+ "module" : "IPSEC-SPD-MIB",
3799
+ "access" : "readonly",
3800
+ "description" :
3801
+ """Write access is not required.""",
3802
+ },
3803
+ "spdIpsoHeadFiltClassification" : {
3804
+ "module" : "IPSEC-SPD-MIB",
3805
+ "access" : "readonly",
3806
+ "description" :
3807
+ """Write access is not required.""",
3808
+ },
3809
+ "spdIpsoHeadFiltLastChanged" : {
3810
+ "module" : "IPSEC-SPD-MIB",
3811
+ "description" :
3812
+ """This object is not required for compliance.""",
3813
+ },
3814
+ "spdIpsoHeadFiltProtectionAuth" : {
3815
+ "module" : "IPSEC-SPD-MIB",
3816
+ "access" : "readonly",
3817
+ "description" :
3818
+ """Write access is not required.""",
3819
+ },
3820
+ "spdIpsoHeadFiltRowStatus" : {
3821
+ "module" : "IPSEC-SPD-MIB",
3822
+ "access" : "readonly",
3823
+ "description" :
3824
+ """Write access is not required.""",
3825
+ },
3826
+ "spdIpsoHeadFiltStorageType" : {
3827
+ "module" : "IPSEC-SPD-MIB",
3828
+ "access" : "readonly",
3829
+ "description" :
3830
+ """Write access is not required.""",
3831
+ },
3832
+ "spdIpsoHeadFiltType" : {
3833
+ "module" : "IPSEC-SPD-MIB",
3834
+ "access" : "readonly",
3835
+ "description" :
3836
+ """Write access is not required.""",
3837
+ },
3838
+ "spdRuleDefAction" : {
3839
+ "module" : "IPSEC-SPD-MIB",
3840
+ "access" : "readonly",
3841
+ "description" :
3842
+ """Write access is not required.""",
3843
+ },
3844
+ "spdRuleDefAdminStatus" : {
3845
+ "module" : "IPSEC-SPD-MIB",
3846
+ "access" : "readonly",
3847
+ "description" :
3848
+ """Write access is not required.""",
3849
+ },
3850
+ "spdRuleDefDescription" : {
3851
+ "module" : "IPSEC-SPD-MIB",
3852
+ "access" : "readonly",
3853
+ "description" :
3854
+ """Write access is not required.""",
3855
+ },
3856
+ "spdRuleDefFilter" : {
3857
+ "module" : "IPSEC-SPD-MIB",
3858
+ "access" : "readonly",
3859
+ "description" :
3860
+ """Write access is not required.""",
3861
+ },
3862
+ "spdRuleDefFilterNegated" : {
3863
+ "module" : "IPSEC-SPD-MIB",
3864
+ "access" : "readonly",
3865
+ "description" :
3866
+ """Write access is not required.""",
3867
+ },
3868
+ "spdRuleDefLastChanged" : {
3869
+ "module" : "IPSEC-SPD-MIB",
3870
+ "description" :
3871
+ """This object is not required for compliance.""",
3872
+ },
3873
+ "spdRuleDefRowStatus" : {
3874
+ "module" : "IPSEC-SPD-MIB",
3875
+ "access" : "readonly",
3876
+ "description" :
3877
+ """Write access is not required.""",
3878
+ },
3879
+ "spdRuleDefStorageType" : {
3880
+ "module" : "IPSEC-SPD-MIB",
3881
+ "access" : "readonly",
3882
+ "description" :
3883
+ """Write access is not required.""",
3884
+ },
3885
+ "spdSubActLastChanged" : {
3886
+ "module" : "IPSEC-SPD-MIB",
3887
+ "description" :
3888
+ """This object is not required for compliance.""",
3889
+ },
3890
+ "spdSubActRowStatus" : {
3891
+ "module" : "IPSEC-SPD-MIB",
3892
+ "access" : "readonly",
3893
+ "description" :
3894
+ """Write access is not required.""",
3895
+ },
3896
+ "spdSubActStorageType" : {
3897
+ "module" : "IPSEC-SPD-MIB",
3898
+ "access" : "readonly",
3899
+ "description" :
3900
+ """Write access is not required.""",
3901
+ },
3902
+ "spdSubActSubActionName" : {
3903
+ "module" : "IPSEC-SPD-MIB",
3904
+ "access" : "readonly",
3905
+ "description" :
3906
+ """Write access is not required.""",
3907
+ },
3908
+ "spdSubFiltLastChanged" : {
3909
+ "module" : "IPSEC-SPD-MIB",
3910
+ "description" :
3911
+ """This object is not required for compliance.""",
3912
+ },
3913
+ "spdSubFiltRowStatus" : {
3914
+ "module" : "IPSEC-SPD-MIB",
3915
+ "access" : "readonly",
3916
+ "description" :
3917
+ """Write access is not required.""",
3918
+ },
3919
+ "spdSubFiltStorageType" : {
3920
+ "module" : "IPSEC-SPD-MIB",
3921
+ "access" : "readonly",
3922
+ "description" :
3923
+ """Write access is not required.""",
3924
+ },
3925
+ "spdSubFiltSubfilter" : {
3926
+ "module" : "IPSEC-SPD-MIB",
3927
+ "access" : "readonly",
3928
+ "description" :
3929
+ """Write access is not required.""",
3930
+ },
3931
+ "spdSubFiltSubfilterIsNegated" : {
3932
+ "module" : "IPSEC-SPD-MIB",
3933
+ "access" : "readonly",
3934
+ "description" :
3935
+ """Write access is not required.""",
3936
+ },
3937
+ "spdTimeFiltDayOfMonthMask" : {
3938
+ "module" : "IPSEC-SPD-MIB",
3939
+ "access" : "readonly",
3940
+ "description" :
3941
+ """Write access is not required.""",
3942
+ },
3943
+ "spdTimeFiltDayOfWeekMask" : {
3944
+ "module" : "IPSEC-SPD-MIB",
3945
+ "access" : "readonly",
3946
+ "description" :
3947
+ """Write access is not required.""",
3948
+ },
3949
+ "spdTimeFiltLastChanged" : {
3950
+ "module" : "IPSEC-SPD-MIB",
3951
+ "description" :
3952
+ """This object is not required for compliance.""",
3953
+ },
3954
+ "spdTimeFiltMonthOfYearMask" : {
3955
+ "module" : "IPSEC-SPD-MIB",
3956
+ "access" : "readonly",
3957
+ "description" :
3958
+ """Write access is not required.""",
3959
+ },
3960
+ "spdTimeFiltPeriod" : {
3961
+ "module" : "IPSEC-SPD-MIB",
3962
+ "access" : "readonly",
3963
+ "description" :
3964
+ """Write access is not required.""",
3965
+ },
3966
+ "spdTimeFiltRowStatus" : {
3967
+ "module" : "IPSEC-SPD-MIB",
3968
+ "access" : "readonly",
3969
+ "description" :
3970
+ """Write access is not required.""",
3971
+ },
3972
+ "spdTimeFiltTimeOfDayMask" : {
3973
+ "module" : "IPSEC-SPD-MIB",
3974
+ "access" : "readonly",
3975
+ "description" :
3976
+ """Write access is not required.""",
3977
+ },
3978
+ "spdTimeFiltStorageType" : {
3979
+ "module" : "IPSEC-SPD-MIB",
3980
+ "access" : "readonly",
3981
+ "description" :
3982
+ """Write access is not required.""",
3983
+ },
3984
+ }, # refinements
3985
+
3986
+ }, # compliance
3987
+ }, # compliances
3988
+
3989
+ }