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/halon/HALON-SP-MIB | |
| download | mibs-98a672123c7872f6b9b75a9a2b6bb3aea504de6a.tar.gz mibs-98a672123c7872f6b9b75a9a2b6bb3aea504de6a.zip | |
Diffstat (limited to 'MIBS/halon/HALON-SP-MIB')
| -rw-r--r-- | MIBS/halon/HALON-SP-MIB | 128 |
1 files changed, 128 insertions, 0 deletions
diff --git a/MIBS/halon/HALON-SP-MIB b/MIBS/halon/HALON-SP-MIB new file mode 100644 index 0000000..37cc258 --- /dev/null +++ b/MIBS/halon/HALON-SP-MIB @@ -0,0 +1,128 @@ +HALON-SP-MIB DEFINITIONS ::= BEGIN + IMPORTS + OBJECT-TYPE, MODULE-IDENTITY, enterprises, + Counter64, Integer32 + FROM SNMPv2-SMI; + + halonSecuritySP MODULE-IDENTITY + LAST-UPDATED "201302061107Z" + ORGANIZATION "Halon Security" + CONTACT-INFO "http://www.halon.se" + DESCRIPTION "SNMP MIB for Halon" + + REVISION "201302071132Z" + DESCRIPTION "Initial release" + ::= { halonSecurityProducts 1 } + + + halonSecurity OBJECT IDENTIFIER ::= { enterprises 33234 } + + halonSecurityProducts OBJECT IDENTIFIER ::= { halonSecurity 1 } + + halonSecuritySPObjects OBJECT IDENTIFIER ::= { halonSecuritySP 1 } + + serialNumber OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Serial number" + ::= { halonSecuritySPObjects 1 } + + configurationRevision OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Running configuration revision" + ::= { halonSecuritySPObjects 2 } + + mailQueueLength OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Length of mail queue to be delivered" + ::= { halonSecuritySPObjects 3 } + + quarantinedMessages OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Messages in quarantine" + ::= { halonSecuritySPObjects 4 } + + statTable OBJECT-TYPE + SYNTAX SEQUENCE OF StatEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Table containing statistics" + ::= { halonSecuritySPObjects 5 } + + statEntry OBJECT-TYPE + SYNTAX StatEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Statistic entry" + INDEX { + statKey1Index, + statKey2Index, + statKey3Index + } + ::= { statTable 1 } + + StatEntry ::= SEQUENCE { + statKey1Index + OCTET STRING, + statKey2Index + OCTET STRING, + statKey3Index + OCTET STRING, + statCount + Counter64, + statCreated + Integer32, + statUpdated + Integer32 + } + + statKey1Index OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Key1" + ::= { statEntry 1 } + + statKey2Index OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Key2" + ::= { statEntry 2 } + + statKey3Index OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Key3" + ::= { statEntry 3 } + + statCount OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Counter value" + ::= { statEntry 4 } + + statCreated OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Unix timestamp when created" + ::= { statEntry 5 } + + statUpdated OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Unix timestamp when last updated" + ::= { statEntry 6 } + +END |