summaryrefslogtreecommitdiff
path: root/MIBS/watchguard/WATCHGUARD-POLICY-MIB
diff options
context:
space:
mode:
authorDavid Leutgeb <david.leutgeb@mannundmouse.com>2023-12-05 12:25:34 +0100
committerDavid Leutgeb <david.leutgeb@mannundmouse.com>2023-12-05 12:25:34 +0100
commit98a672123c7872f6b9b75a9a2b6bb3aea504de6a (patch)
tree9b13bd7f563c3198047bd359195327cf28b3caf0 /MIBS/watchguard/WATCHGUARD-POLICY-MIB
downloadmibs-98a672123c7872f6b9b75a9a2b6bb3aea504de6a.tar.gz
mibs-98a672123c7872f6b9b75a9a2b6bb3aea504de6a.zip
Initial commitHEADmain
Diffstat (limited to 'MIBS/watchguard/WATCHGUARD-POLICY-MIB')
-rw-r--r--MIBS/watchguard/WATCHGUARD-POLICY-MIB320
1 files changed, 320 insertions, 0 deletions
diff --git a/MIBS/watchguard/WATCHGUARD-POLICY-MIB b/MIBS/watchguard/WATCHGUARD-POLICY-MIB
new file mode 100644
index 0000000..3485a41
--- /dev/null
+++ b/MIBS/watchguard/WATCHGUARD-POLICY-MIB
@@ -0,0 +1,320 @@
+WATCHGUARD-POLICY-MIB DEFINITIONS ::= BEGIN
+
+ IMPORTS
+ MODULE-IDENTITY, OBJECT-TYPE, Unsigned32, Counter64,
+ OBJECT-IDENTITY, enterprises,
+ IpAddress, TimeTicks FROM SNMPv2-SMI
+ DateAndTime FROM SNMPv2-TC
+ watchguard FROM WATCHGUARD-SMI;
+
+ wgPolicyMIB MODULE-IDENTITY
+ LAST-UPDATED "200701251200Z"
+ ORGANIZATION "WatchGuard Technologies, Inc."
+ CONTACT-INFO
+ " WatchGuard Technologies, Inc.
+
+ 505 Fifth Avenue South
+ Suite 500
+ Seattle, WA 98104
+ United States
+
+ +1.206.613.6600 "
+
+ DESCRIPTION
+ "The MIB module describes various policy objects
+ of WatchGuard system."
+
+
+ REVISION "200701251200Z"
+ DESCRIPTION
+ "Initial revision."
+ ::= { watchguard 4 }
+
+ wgPolicyToTunnel OBJECT-IDENTITY
+ STATUS current
+ DESCRIPTION
+ "This is the base object identifier for all tunnels
+ information of the policies."
+ ::= {wgPolicyMIB 1}
+
+ wgPolicyStatistics OBJECT-IDENTITY
+ STATUS current
+ DESCRIPTION
+ "This is the base object identifier for all policy related
+ statistical counters."
+ ::= { wgPolicyMIB 2 }
+
+ wgPolicyToTunnelNum OBJECT-TYPE
+ SYNTAX Unsigned32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "The total number of tunnels in the policytotunnel table. "
+ ::= { wgPolicyToTunnel 1 }
+
+ wgPolicyToTunnelTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF WGPolicyToTunnelEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "This is the policytotunnel table of all the policies."
+ ::= { wgPolicyToTunnel 2 }
+
+ wgPolicyToTunnelEntry OBJECT-TYPE
+ SYNTAX WGPolicyToTunnelEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "An entry (conceptual row) containing the tunnels
+ information."
+ INDEX {
+ wgPolicyToTunnelPolicyID,
+ wgPolicyToTunnelTunnelID
+ }
+ ::= { wgPolicyToTunnelTable 1 }
+
+ WGPolicyToTunnelEntry ::= SEQUENCE {
+
+ wgPolicyToTunnelPolicyID Integer32,
+ wgPolicyToTunnelTunnelID Integer32
+ }
+
+ wgPolicyToTunnelPolicyID OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "The policy identifier of this entity."
+ ::= {wgPolicyToTunnelEntry 1}
+
+ wgPolicyToTunnelTunnelID OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "The tunnel identifier of this entity."
+ ::= {wgPolicyToTunnelEntry 2}
+
+-- counter ID
+-- per policy counter
+-- 1-24 is reserved
+
+ wgPolicyTableNum OBJECT-TYPE
+ SYNTAX Unsigned32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "The total number of policies in the policy table. "
+ ::= { wgPolicyStatistics 1 }
+
+ wgPolicyTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF WGPolicyEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "This is the policytotunnel table of the policies."
+ ::= { wgPolicyStatistics 2 }
+
+ wgPolicyEntry OBJECT-TYPE
+ SYNTAX WGPolicyEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "An entry (conceptual row) containing the policy
+ information."
+ INDEX{
+ wgPolicyID
+ }
+ ::= { wgPolicyTable 1 }
+
+ WGPolicyEntry ::= SEQUENCE {
+
+ wgPolicyID Integer32,
+ wgPolicyName OCTET STRING (SIZE(32)),
+ wgPolicyBytes Counter64,
+ wgPolicyPackets Counter64,
+ wgPolicyIpsecDecryptErr Counter64,
+ wgPolicyIpsecAuthErr Counter64,
+ wgPolicyIpsecReplayErr Counter64,
+ wgPolicyIpsecPadErr Counter64,
+ wgPolicyIpsecPolicyErr Counter64,
+ wgPolicyFwDisc Counter64,
+ wgPolicyOtherDisc Counter64,
+ wgPolicyActiveStreams Counter64,
+ wgPolicyIpsecDisc Counter64,
+ wgPolicyDisc Counter64,
+ wgPolicyNumTunl Counter64,
+ wgPolicySingleCntrNum Counter64,
+ wgPolicyLogging Unsigned32,
+ wgPolicyCurrActiveConns Counter64
+ }
+
+
+ wgPolicyID OBJECT-TYPE
+ SYNTAX Integer32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "The policy identifier of this policy."
+ ::= {wgPolicyEntry 1}
+
+ wgPolicyName OBJECT-TYPE
+ SYNTAX OCTET STRING (SIZE(32))
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "The policy name of this policy"
+ ::= {wgPolicyEntry 2}
+
+ wgPolicyL3PackageBytes OBJECT-TYPE
+ SYNTAX Counter64
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Total traffic in bytes (counted from L3 head) since setting up this policy."
+ ::= {wgPolicyEntry 3}
+
+ wgPolicyPackets OBJECT-TYPE
+ SYNTAX Counter64
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Total traffic in packets since setting up this policy."
+ ::= {wgPolicyEntry 4}
+
+ wgPolicyIpsecDecryptErr OBJECT-TYPE
+ SYNTAX Counter64
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Total number of packets discarded due to decryption
+ errors since setting up this policy."
+ ::= {wgPolicyEntry 5}
+
+ wgPolicyIpsecAuthErr OBJECT-TYPE
+ SYNTAX Counter64
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Total number of packets discarded due to authentication
+ errors since setting up this policy."
+ ::= {wgPolicyEntry 6}
+
+ wgPolicyIpsecReplayErr OBJECT-TYPE
+ SYNTAX Counter64
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Total number of packets discarded due to replay
+ errors since setting up this policy."
+ ::= {wgPolicyEntry 7}
+
+ wgPolicyIpsecPadErr OBJECT-TYPE
+ SYNTAX Counter64
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Total number of packets discarded due to pad value
+ errors since setting up this policy."
+ ::= {wgPolicyEntry 8}
+
+ wgPolicyIpsecPolicyErr OBJECT-TYPE
+ SYNTAX Counter64
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Total number of packets discarded due to policy
+ errors since setting up this policy."
+ ::= {wgPolicyEntry 9}
+
+ wgPolicyFwDisc OBJECT-TYPE
+ SYNTAX Counter64
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Total number of packets discarded by firewall policies
+ since setting up this policy."
+ ::= {wgPolicyEntry 10}
+
+ wgPolicyOtherDisc OBJECT-TYPE
+ SYNTAX Counter64
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Total number of packets discarded due to errors
+ other than firewall errors, ipsec errors since setting up
+ this policy."
+ ::= {wgPolicyEntry 11}
+
+ wgPolicyActiveStreams OBJECT-TYPE
+ SYNTAX Counter64
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Total number of the active connections since setting
+ up this policy."
+ ::= {wgPolicyEntry 12}
+
+ wgPolicyIpsecDisc OBJECT-TYPE
+ SYNTAX Counter64
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Total number of packets discarded by IPSEC errors
+ (decryption error, authentication error, replay error)
+ since setting up this policy."
+ ::= {wgPolicyEntry 13}
+
+ wgPolicyDisc OBJECT-TYPE
+ SYNTAX Counter64
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Total number of packets discarded since setting up
+ this policy."
+ ::= {wgPolicyEntry 14}
+
+ wgPolicyNumTunl OBJECT-TYPE
+ SYNTAX Counter64
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Total number of tunnels belong to this policy"
+ ::= {wgPolicyEntry 15}
+
+ wgPolicySingleCntrNum OBJECT-TYPE
+ SYNTAX Counter64
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Total number of single counters handled by this policy."
+ ::= {wgPolicyEntry 16}
+
+ wgPolicyLogging OBJECT-TYPE
+ SYNTAX Unsigned32 {
+ disabled(0),
+ enabled(1)
+ }
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Indicates whether if the logging of this policy has been enabled. "
+ ::= { wgPolicyEntry 17 }
+
+ wgPolicyCurrActiveConns OBJECT-TYPE
+ SYNTAX Counter64
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Total number of currently active connections for this policy."
+ ::= {wgPolicyEntry 18}
+
+ wgPolicyL2PackageBytes OBJECT-TYPE
+ SYNTAX Counter64
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Total traffic in bytes(counted from L2 head) since setting up this policy."
+ ::= {wgPolicyEntry 19}
+
+END