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
|
--
-- Copyright (c) 2004-2009, Infoblox, Inc
-- All rights reserved.
IB-DHCPONE-MIB DEFINITIONS ::= BEGIN
IMPORTS
OBJECT-TYPE, NOTIFICATION-TYPE, MODULE-IDENTITY, enterprises
FROM SNMPv2-SMI
TEXTUAL-CONVENTION FROM SNMPv2-TC
Counter64, Unsigned32 FROM SNMPv2-SMI
Counter FROM RFC1155-SMI
ibDHCPOne, IbString, IbIpAddr FROM IB-SMI-MIB;
ibDhcpModule MODULE-IDENTITY
LAST-UPDATED "201003230000Z" -- Mar 23, 2010
ORGANIZATION "Infoblox"
CONTACT-INFO "See IB-SMI-MIB for information."
DESCRIPTION "This file defines the Infoblox DHCP One MIB."
REVISION "201003230000Z" -- Mar 23, 2010
DESCRIPTION "Fixed smilint errors"
REVISION "200802140000Z" -- Feb 14, 2008
DESCRIPTION "change ibDHCPSubnetPercentUsed syntax"
REVISION "200501100000Z" -- Jan 10, 2005
DESCRIPTION "Added copyright"
REVISION "200405210000Z" -- May 21, 2004
DESCRIPTION "Creation of the MIB file"
::= { ibDHCPOne 1 }
-- DNSOne DHCP Subnet Definition
ibDHCPSubnetTable OBJECT-TYPE
SYNTAX SEQUENCE OF IbDHCPSubnetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table of DHCP Subnet statistics."
::= { ibDhcpModule 1 }
ibDHCPSubnetEntry OBJECT-TYPE
SYNTAX IbDHCPSubnetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A conceptual row of the ibDHCPSubnetEntry containing
info about a particular network using DHCP."
INDEX {ibDHCPSubnetNetworkAddress }
::= { ibDHCPSubnetTable 1 }
IbDHCPSubnetEntry ::=
SEQUENCE {
ibDHCPSubnetNetworkAddress IbIpAddr,
ibDHCPSubnetNetworkMask IbIpAddr,
ibDHCPSubnetPercentUsed INTEGER
}
ibDHCPSubnetNetworkAddress OBJECT-TYPE
SYNTAX IbIpAddr
MAX-ACCESS read-only
STATUS current
DESCRIPTION "DHCP Subnet in IpAddress format. A subnetwork may have many
ranges for lease."
::= { ibDHCPSubnetEntry 1 }
ibDHCPSubnetNetworkMask OBJECT-TYPE
SYNTAX IbIpAddr
MAX-ACCESS read-only
STATUS current
DESCRIPTION "DHCP Subnet mask in IpAddress format."
::= { ibDHCPSubnetEntry 2 }
ibDHCPSubnetPercentUsed OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Percentage of dynamic DHCP address for subnet leased out at this
time. Fixed addresses are always counted as leased for this
calcuation if the fixed addresses are within ranges of leases."
::= { ibDHCPSubnetEntry 3 }
ibDHCPStatistics OBJECT IDENTIFIER
::= { ibDhcpModule 3 }
ibDhcpTotalNoOfDiscovers OBJECT-TYPE
SYNTAX Counter
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This variable indicates the number of
discovery messages received"
::= { ibDHCPStatistics 1 }
ibDhcpTotalNoOfRequests OBJECT-TYPE
SYNTAX Counter
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This variable indicates the number of
requests received"
::= { ibDHCPStatistics 2 }
ibDhcpTotalNoOfReleases OBJECT-TYPE
SYNTAX Counter
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This variable indicates the number of
releases received"
::= { ibDHCPStatistics 3 }
ibDhcpTotalNoOfOffers OBJECT-TYPE
SYNTAX Counter
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This variable indicates the number of
offers sent"
::= { ibDHCPStatistics 4 }
ibDhcpTotalNoOfAcks OBJECT-TYPE
SYNTAX Counter
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This variable indicates the number of
acks sent"
::= { ibDHCPStatistics 5 }
ibDhcpTotalNoOfNacks OBJECT-TYPE
SYNTAX Counter
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This variable indicates the number of
nacks sent"
::= { ibDHCPStatistics 6 }
ibDhcpTotalNoOfDeclines OBJECT-TYPE
SYNTAX Counter
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This variable indicates the number of
declines received"
::= { ibDHCPStatistics 7 }
ibDhcpTotalNoOfInforms OBJECT-TYPE
SYNTAX Counter
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This variable indicates the number of
informs received"
::= { ibDHCPStatistics 8 }
ibDhcpTotalNoOfOthers OBJECT-TYPE
SYNTAX Counter
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This variable indicates the number of
other messages received"
::= { ibDHCPStatistics 9 }
ibDhcpDeferredQueueSize OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The size of deferred dynamic DNS update queue"
::= { ibDhcpModule 4 }
ibDHCPDDNSStats OBJECT IDENTIFIER
::= { ibDhcpModule 5 }
ibDHCPDDNSAvgLatency5 OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Average Latencies (in microseconds) for DHCPD
dynamic DNS updates during the last 5 minutes"
::= { ibDHCPDDNSStats 1 }
ibDHCPDDNSAvgLatency15 OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Average Latencies (in microseconds) for DHCPD
dynamic DNS updates during the last 15 minutes"
::= { ibDHCPDDNSStats 2 }
ibDHCPDDNSAvgLatency60 OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Average Latencies (in microseconds) for DHCPD
dynamic DNS updates during the last 60 minutes"
::= { ibDHCPDDNSStats 3 }
ibDHCPDDNSAvgLatency1440 OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Average Latencies (in microseconds) for DHCPD
dynamic DNS updates during the last 1 day"
::= { ibDHCPDDNSStats 4 }
ibDHCPDDNSTimeoutCount5 OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of timeout DHCPD dynamic DDNS
updates during the last 5 minutes"
::= { ibDHCPDDNSStats 5 }
ibDHCPDDNSTimeoutCount15 OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of timeout DHCPD dynamic DDNS
updates during the last 15 minutes"
::= { ibDHCPDDNSStats 6 }
ibDHCPDDNSTimeoutCount60 OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of timeout DHCPD dynamic DDNS
updates during the last 60 minutes"
::= { ibDHCPDDNSStats 7 }
ibDHCPDDNSTimeoutCount1440 OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of timeout DHCPD dynamic DDNS
updates during the last 1 day"
::= { ibDHCPDDNSStats 8 }
END
|