blob: 37cc2584f86ac5df973af766a914a787a80c5b45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
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
|