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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
|
--
-- Copyright (c) 2004-2009, Infoblox, Inc
-- All rights reserved.
IB-DNSONE-MIB DEFINITIONS ::= BEGIN
IMPORTS
OBJECT-TYPE, NOTIFICATION-TYPE, MODULE-IDENTITY, enterprises,
Counter64 FROM SNMPv2-SMI
TEXTUAL-CONVENTION FROM SNMPv2-TC
ibDNSOne, IbString FROM IB-SMI-MIB;
ibDnsModule MODULE-IDENTITY
LAST-UPDATED "201003230000Z" -- Mar 23, 2010
ORGANIZATION "Infoblox"
CONTACT-INFO "Please See IB-SMI-MIB."
DESCRIPTION "This file defines the Infoblox DNS One MIB."
REVISION "201003230000Z" -- Mar 23, 2010
DESCRIPTION "Fixed smilint errors"
REVISION "200506090000Z" -- Jun 09, 2005
DESCRIPTION "DNS views"
REVISION "200501100000Z" -- Jan 10, 2005
DESCRIPTION "Added copyright"
REVISION "200405210000Z" -- May 21, 2004
DESCRIPTION "Creation of the MIB file"
::= { ibDNSOne 1 }
-- DNSOne Statistics Definitions
ibZoneStatisticsTable OBJECT-TYPE
SYNTAX SEQUENCE OF IbZoneStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table of named ZONE statistics."
::= { ibDnsModule 1 }
ibZoneStatisticsEntry OBJECT-TYPE
SYNTAX IbZoneStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A conceptual row of the ibZoneStatisticsEntry containing
info about a particular zone in the default view."
INDEX { ibBindZoneName }
::= { ibZoneStatisticsTable 1}
IbZoneStatisticsEntry ::=
SEQUENCE {
ibBindZoneName IbString,
ibBindZoneSuccess Counter64,
ibBindZoneReferral Counter64,
ibBindZoneNxRRset Counter64,
ibBindZoneNxDomain Counter64,
ibBindZoneRecursion Counter64,
ibBindZoneFailure Counter64
}
ibBindZoneName OBJECT-TYPE
SYNTAX IbString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "DNS Zone name. The first one is global summary statistics.
Index name for global statistics is 'summary'. All zones
live in the default view."
::= { ibZoneStatisticsEntry 1 }
ibBindZoneSuccess OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of Successful responses since DNS process started."
::= { ibZoneStatisticsEntry 2 }
ibBindZoneReferral OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of DNS referrals since DNS process started."
::= { ibZoneStatisticsEntry 3 }
ibBindZoneNxRRset OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of DNS query received for non-existent record."
::= { ibZoneStatisticsEntry 4 }
ibBindZoneNxDomain OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of DNS query received for non-existent domain."
::= { ibZoneStatisticsEntry 5 }
ibBindZoneRecursion OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of Queries received using recursion since DNS process
started."
::= { ibZoneStatisticsEntry 6 }
ibBindZoneFailure OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of Failed queries since DNS process started."
::= { ibZoneStatisticsEntry 7 }
-- Interface to query for zone statistics when there are more
-- views than just the default one. Same as the original interface
-- above (except for names and OIDs), but with the addition of the
-- view name.
ibZonePlusViewStatisticsTable OBJECT-TYPE
SYNTAX SEQUENCE OF IbZonePlusViewStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table of named ZONE+VIEW statistics."
::= { ibDnsModule 2 }
ibZonePlusViewStatisticsEntry OBJECT-TYPE
SYNTAX IbZonePlusViewStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A conceptual row of the ibZonePlusViewStatisticsEntry containing
info about a particular zone in a particular view."
INDEX { ibBindViewName, ibBindZonePlusViewName }
::= { ibZonePlusViewStatisticsTable 1}
IbZonePlusViewStatisticsEntry ::=
SEQUENCE {
ibBindZonePlusViewName IbString,
ibBindZonePlusViewSuccess Counter64,
ibBindZonePlusViewReferral Counter64,
ibBindZonePlusViewNxRRset Counter64,
ibBindZonePlusViewNxDomain Counter64,
ibBindZonePlusViewRecursion Counter64,
ibBindZonePlusViewFailure Counter64,
ibBindViewName IbString
}
ibBindZonePlusViewName OBJECT-TYPE
SYNTAX IbString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "DNS Zone name. The first one in the default view is the
global summary statistics. Index name for global statistics
is 'summary'."
::= { ibZonePlusViewStatisticsEntry 1 }
ibBindZonePlusViewSuccess OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of Successful responses since DNS process started."
::= { ibZonePlusViewStatisticsEntry 2 }
ibBindZonePlusViewReferral OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of DNS referrals since DNS process started."
::= { ibZonePlusViewStatisticsEntry 3 }
ibBindZonePlusViewNxRRset OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of DNS query received for non-existent record."
::= { ibZonePlusViewStatisticsEntry 4 }
ibBindZonePlusViewNxDomain OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of DNS query received for non-existent domain."
::= { ibZonePlusViewStatisticsEntry 5 }
ibBindZonePlusViewRecursion OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of Queries received using recursion since DNS process
started."
::= { ibZonePlusViewStatisticsEntry 6 }
ibBindZonePlusViewFailure OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of Failed queries since DNS process started."
::= { ibZonePlusViewStatisticsEntry 7 }
ibBindViewName OBJECT-TYPE
SYNTAX IbString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "DNS view name. Empty for default view and summary."
::= { ibZonePlusViewStatisticsEntry 8 }
ibDDNSUpdateStatistics OBJECT IDENTIFIER
::= { ibDnsModule 3 }
ibDDNSUpdateSuccess OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of successful dynamic DNS update."
::= { ibDDNSUpdateStatistics 1 }
ibDDNSUpdateFailure OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of failure dynamic DNS update."
::= { ibDDNSUpdateStatistics 2 }
ibDDNSUpdateReject OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of dynamic DNS update rejects maybe
due to permission failure."
::= { ibDDNSUpdateStatistics 3 }
ibDDNSUpdatePrerequisiteReject OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of dynamic DNS update rejects due to
prerequisite failure."
::= { ibDDNSUpdateStatistics 4 }
ibBindZoneTransferCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of zone transfer."
::= { ibDnsModule 4 }
END
|