diff options
| author | David Leutgeb <david.leutgeb@mannundmouse.com> | 2023-12-05 12:25:34 +0100 |
|---|---|---|
| committer | David Leutgeb <david.leutgeb@mannundmouse.com> | 2023-12-05 12:25:34 +0100 |
| commit | 98a672123c7872f6b9b75a9a2b6bb3aea504de6a (patch) | |
| tree | 9b13bd7f563c3198047bd359195327cf28b3caf0 /MIBS/bluecoat/BLUECOAT-SG-POLICY-MIB | |
| download | mibs-main.tar.gz mibs-main.zip | |
Diffstat (limited to 'MIBS/bluecoat/BLUECOAT-SG-POLICY-MIB')
| -rw-r--r-- | MIBS/bluecoat/BLUECOAT-SG-POLICY-MIB | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/MIBS/bluecoat/BLUECOAT-SG-POLICY-MIB b/MIBS/bluecoat/BLUECOAT-SG-POLICY-MIB new file mode 100644 index 0000000..2966881 --- /dev/null +++ b/MIBS/bluecoat/BLUECOAT-SG-POLICY-MIB @@ -0,0 +1,69 @@ +BLUECOAT-SG-POLICY-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE + FROM SNMPv2-SMI + TEXTUAL-CONVENTION + FROM SNMPv2-TC + blueCoatMgmt + FROM BLUECOAT-MIB; + +devicePolicyMIB MODULE-IDENTITY + LAST-UPDATED "200711050300Z" + ORGANIZATION "Blue Coat Systems, Inc." + CONTACT-INFO "support.services@bluecoat.com + http://www.bluecoat.com" + DESCRIPTION "The policy MIB is used to monitor policy violations." + REVISION "200711050300Z" + DESCRIPTION "Minor corrections and reformatting. Changed the + trap OID for compatibility with SNMPv1." + REVISION "200208280300Z" + DESCRIPTION "Initial revision of this MIB." + ::= { blueCoatMgmt 6 } + +devicePolicyMIBObjects + OBJECT IDENTIFIER ::= { devicePolicyMIB 1 } + +devicePolicyMIBNotifications + OBJECT IDENTIFIER ::= { devicePolicyMIB 2 } + +devicePolicyMIBNotificationsPrefix + OBJECT IDENTIFIER ::= { devicePolicyMIBNotifications 0 } + +-- +-- Textual conventions +-- + +PolicyMessageString ::= TEXTUAL-CONVENTION + DISPLAY-HINT "255a" + STATUS current + DESCRIPTION "The message that the user would enter while setting + the policy." + SYNTAX OCTET STRING (SIZE (0..255)) + +-- +-- MIB variables +-- + +devicePolicyValues + OBJECT IDENTIFIER ::= { devicePolicyMIBObjects 1 } + +devicePolicyMessage OBJECT-TYPE + SYNTAX PolicyMessageString + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION "The custom message the user entered for this policy" + ::= { devicePolicyValues 1 } + +-- +-- notifications +-- + +devicePolicyTrap NOTIFICATION-TYPE + OBJECTS { devicePolicyMessage } + STATUS current + DESCRIPTION "A notification is generated when triggered by policy" + ::= { devicePolicyMIBNotificationsPrefix 1 } + +END + |