-
Notifications
You must be signed in to change notification settings - Fork 0
/
hpicfDhcpSnoop.mib
1183 lines (998 loc) · 41 KB
/
hpicfDhcpSnoop.mib
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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
HP-ICF-DHCP-SNOOP-MIB DEFINITIONS ::= BEGIN
IMPORTS
hpSwitch
FROM HP-ICF-OID
ifIndex, InterfaceIndex
FROM IF-MIB
InetAddressType, InetAddress
FROM INET-ADDRESS-MIB
VlanIndex
FROM Q-BRIDGE-MIB
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
OBJECT-GROUP, MODULE-COMPLIANCE, NOTIFICATION-GROUP
FROM SNMPv2-CONF
Unsigned32, Counter32, OBJECT-TYPE, MODULE-IDENTITY, NOTIFICATION-TYPE
FROM SNMPv2-SMI
TruthValue, RowStatus, MacAddress, DateAndTime
FROM SNMPv2-TC;
-- 1.3.6.1.4.1.11.2.14.11.5.1.34
hpicfIpDhcpSnoop MODULE-IDENTITY
LAST-UPDATED "201306120000Z" -- Jun 12, 2013 at 00:00 GMT
ORGANIZATION "HP Networking"
CONTACT-INFO
"Hewlett-Packard Company
8000 Foothills Blvd.
Roseville, CA 95747"
DESCRIPTION
"This MIB module contains HP proprietary
objects for managing DHCP Snooping."
REVISION "201306120000Z" -- June 12, 2013 at 00:00 GMT
DESCRIPTION
"Added object hpicfDhcpSnoopClearStats.Added group
hpicfDhcpSnoopClearStatsOptionsGroup and compliance
hpicfDhcpSnoopClearStatsCompliance."
REVISION "201302100000Z" -- Feb 10, 2013 at 00:00 GMT
DESCRIPTION
"Added hpicfDhcpSnoopPktsSent, hpicfDhcpSnoopPktsReceived,
hpicfDhcpSnoopPktsDropped, Group hpicfDhcpSnoopPktsGroup
and Compliance hpicfDhcpSnoopCompliance4."
REVISION "200708240000Z" -- August 24, 2007 at 00:00 GMT
DESCRIPTION
"Added hpicfDhcpSnoopErrantReply notification."
REVISION "200607060038Z" -- July 06, 2006 at 00:38 GMT
DESCRIPTION
"Add support for static IP address bindings."
REVISION "200603180038Z" -- March 18, 2006 at 00:38 GMT
DESCRIPTION
"Initial revision."
::= { hpSwitch 34 }
--
-- Node definitions
--
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.0
hpicfDhcpSnoopNotifications OBJECT IDENTIFIER ::= { hpicfIpDhcpSnoop 0 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.0.1
hpicfDhcpSnoopErrantReply NOTIFICATION-TYPE
OBJECTS { hpicfDhcpSnoopNotifyCount, hpicfDhcpSnoopErrantSrcMAC,
hpicfDhcpSnoopErrantSrcIPType, hpicfDhcpSnoopErrantSrcIP }
STATUS current
DESCRIPTION
"An hpicfDhcpSnoopErrantReply notification signifies that
the DHCP snooping entity has detected and dropped an
errant DHCP response packet."
::= { hpicfDhcpSnoopNotifications 1 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1
hpicfIpDhcpSnoopObjects OBJECT IDENTIFIER ::= { hpicfIpDhcpSnoop 1 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.1
hpicfIpDhcpSnoopConfig OBJECT IDENTIFIER ::= { hpicfIpDhcpSnoopObjects 1 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.1.1
hpicfDhcpSnoopGlobalCfg OBJECT IDENTIFIER ::= { hpicfIpDhcpSnoopConfig 1 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.1.1.1
hpicfDhcpSnoopEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The administrative status of the DHCP Snooping
feature."
::= { hpicfDhcpSnoopGlobalCfg 1 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.1.1.2
hpicfDhcpSnoopVlanEnable OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (512))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The administrative status for DHCP Snooping on
each VLAN. There will be one bit in this string
for each possible VLAN ID. Each octet within this
value specifies a set of eight VLANs, with the first
octet specifying VLAN IDs 1 through 8, the second
octet specifying VLAN IDs 9 through 16, etc. Within
each octet, the most significant bit represents the
lowest numbered VLAN ID, and the least significant
bit represents the highest numbered VLAN ID. Thus,
each possible VLAN ID of the bridge is represented by
a single bit within the value of this object. If
a bit at position 'n' has a value of '1', then
DHCP Snooping is enabled on VLAN 'n'.
If this bit has a value of '0',DHCP Snooping
is not enabled on the VLAN 'n',"
::= { hpicfDhcpSnoopGlobalCfg 2 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.1.1.3
hpicfDhcpSnoopVerifyMac OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When this variable is set to 'true', DHCP Snooping
will verify that the MAC address in the chaddr field
of the DHCP header matches the source MAC address in
all DHCP packets received on untrusted ports. When
this variable is set to 'false', DHCP Snooping will
omit this check. The value of this variable is
ignored when DHCP Snooping is disabled."
::= { hpicfDhcpSnoopGlobalCfg 3 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.1.1.4
hpicfDhcpSnoopDatabaseFile OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A location to store the lease database, or
to retrieve it after a reboot. The location
must be given in the form of a Uniform
Resource Locator (URL) as defined in RFC
2396. The allowed character sets and the
encoding rules defined in RFC 2396 section 2
apply."
::= { hpicfDhcpSnoopGlobalCfg 4 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.1.1.5
hpicfDhcpSnoopDatabaseWriteDelay OBJECT-TYPE
SYNTAX Unsigned32 (15..86400)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of seconds to delay writing the
DHCP lease database file after a database
change. This potentially allows grouping
multiple database changes into a single
write. The default is 300 seconds."
::= { hpicfDhcpSnoopGlobalCfg 5 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.1.1.6
hpicfDhcpSnoopDatabaseWriteTimeout OBJECT-TYPE
SYNTAX Unsigned32 (0..86400)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of seconds to wait for the
database file transfer to finish before
giving up and declaring a failure. A
value of 0 means continue retrying
indefinitely. The default is 300 seconds."
::= { hpicfDhcpSnoopGlobalCfg 6 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.1.1.7
hpicfDhcpSnoopOpt82Insert OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When this object is set to true, DHCP snooping
will add a DHCP relay information option to
DHCP client packets that it forwards on
trusted ports, and will examine and strip DHCP
relay information options that were inserted
by this switch on DHCP server packets that it
forwards to untrusted ports. Note that when
DHCP relay and DHCP snooping are both enabled,
and this object is set to true, relay
information option processing will be handled
by DHCP snooping, and any DHCP relay settings
for relay information option processing will
be ignored. This object defaults to true."
::= { hpicfDhcpSnoopGlobalCfg 7 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.1.1.8
hpicfDhcpSnoopOpt82Policy OBJECT-TYPE
SYNTAX INTEGER
{
keep(1),
replace(2),
drop(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object configures the behavior of DHCP
snooping when forwarding a DHCP packet from
an untrusted port that already has a DHCP
relay information option present. The
policies supported are:
keep - forward the packet without
updating the existing option
replace - replace the existing option
with one generated by this switch
drop - drop the packet
This policy is only applied if DHCP snooping is
enabled and hpicfDhcpSnoopOpt82Insert is true.
In all cases where this policy is applied, if
there is no relay information option present in
the received packet, DHCP snooping will add one.
The default policy is drop."
::= { hpicfDhcpSnoopGlobalCfg 8 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.1.1.9
hpicfDhcpSnoopOpt82RemoteId OBJECT-TYPE
SYNTAX INTEGER
{
mac(1),
subnetIP(2),
mgmtIP(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object configures the value that will be
used for the remote ID sub-option of the relay
information option that will be inserted by
DHCP snooping. The possible values are:
mac - switch MAC address
subnetIP - switch IP address on the VLAN on
which the DHCP packet was received
mgmtIP - switch IP address on the management
VLAN
The value of this object is ignored unless DHCP
snooping is enabled and hpicfDhcpSnoopOpt82Insert
is true. The default value is mac."
::= { hpicfDhcpSnoopGlobalCfg 9 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.1.1.10
hpicfDhcpSnoopErrantReplyEnable OBJECT-TYPE
SYNTAX INTEGER
{
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The operational status of hpicfDhcpSnoopErrantReply
notifications. The default value is 1 (Enabled). A value
of 2 represents Disabled. Writing this object requires
authentication, such as provided by SNMPv3."
::= { hpicfDhcpSnoopGlobalCfg 10 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.1.2
hpicfDhcpSnoopPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfDhcpSnoopPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Per-interface configuration for DHCP Snooping."
::= { hpicfIpDhcpSnoopConfig 2 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.1.2.1
hpicfDhcpSnoopPortEntry OBJECT-TYPE
SYNTAX HpicfDhcpSnoopPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"DHCP snooping configuration information for
a single port."
INDEX { ifIndex }
::= { hpicfDhcpSnoopPortTable 1 }
HpicfDhcpSnoopPortEntry ::=
SEQUENCE {
hpicfDhcpSnoopPortTrust
TruthValue
}
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.1.2.1.1
hpicfDhcpSnoopPortTrust OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates whether this port is
trusted for DHCP snooping."
::= { hpicfDhcpSnoopPortEntry 1 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.1.3
hpicfDhcpSnoopServerTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfDhcpSnoopServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of authorized DHCP server addresses."
::= { hpicfIpDhcpSnoopConfig 3 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.1.3.1
hpicfDhcpSnoopServerEntry OBJECT-TYPE
SYNTAX HpicfDhcpSnoopServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row in the table, containing the address of a
single authorized DHCP server."
INDEX { hpicfDhcpSnoopServerAddrType, hpicfDhcpSnoopServerAddress }
::= { hpicfDhcpSnoopServerTable 1 }
HpicfDhcpSnoopServerEntry ::=
SEQUENCE {
hpicfDhcpSnoopServerAddrType
InetAddressType,
hpicfDhcpSnoopServerAddress
InetAddress,
hpicfDhcpSnoopServerStatus
RowStatus
}
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.1.3.1.1
hpicfDhcpSnoopServerAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The type of address in
hpicfDhcpSnoopServerAddress."
::= { hpicfDhcpSnoopServerEntry 1 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.1.3.1.2
hpicfDhcpSnoopServerAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The address of a known valid DHCP server. The
type of address contained in this object is
indicated by hpicfDhcpSnoopServerAddrType. For
DHCP snooping to allow a server to client packet
to be forwarded, it must be received on a trusted
port from a server address in this table. If this
table is empty, all addresses are trusted.
Note that this feature compares the source address
of the received DHCP server packet against the
addresses in this table. This means that this
table needs to contain trusted server addresses
as well as trusted DHCP relays that a server
packet may be relayed through."
::= { hpicfDhcpSnoopServerEntry 2 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.1.3.1.3
hpicfDhcpSnoopServerStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this DHCP server address entry.
Only 'active' entries are used when validating
DHCP server packets."
::= { hpicfDhcpSnoopServerEntry 3 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.1.4
hpicfIpStaticBindingsTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfIpStaticBindingsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of configured static IP address
bindings for this device. Active rows in
this table will also be reported in the
hpicfDhcpSnoopBindingsTable as entries with
an hpicfDhcpSnoopBindingsLeaseTime of
0xffffffff and an hpicfDhcpSnoopBindingsType
of 'static'."
::= { hpicfIpDhcpSnoopConfig 4 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.1.4.1
hpicfIpStaticBindingsEntry OBJECT-TYPE
SYNTAX HpicfIpStaticBindingsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row in the table, containing a single static
IP address binding."
INDEX { hpicfIpStaticBindingsVlan, hpicfIpStaticBindingsAddrType,
hpicfIpStaticBindingsAddress }
::= { hpicfIpStaticBindingsTable 1 }
HpicfIpStaticBindingsEntry ::=
SEQUENCE {
hpicfIpStaticBindingsVlan
VlanIndex,
hpicfIpStaticBindingsAddrType
InetAddressType,
hpicfIpStaticBindingsAddress
InetAddress,
hpicfIpStaticBindingsMacAddress
MacAddress,
hpicfIpStaticBindingsInterface
InterfaceIndex,
hpicfIpStaticBindingsStatus
RowStatus
}
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.1.4.1.1
hpicfIpStaticBindingsVlan OBJECT-TYPE
SYNTAX VlanIndex (1..512)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The VLAN ID on which this static address
binding is valid."
::= { hpicfIpStaticBindingsEntry 1 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.1.4.1.2
hpicfIpStaticBindingsAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The type of IP address contained in
hpicfIpStaticBindingsAddress. The only
values expected are ipv4 or ipv6."
::= { hpicfIpStaticBindingsEntry 2 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.1.4.1.3
hpicfIpStaticBindingsAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The static IP address of this binding.
The type of address contained in this
object is indicated by
hpicfIpStaticBindingsAddrType."
::= { hpicfIpStaticBindingsEntry 3 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.1.4.1.4
hpicfIpStaticBindingsMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The MAC address associated with this
static binding on this VLAN."
::= { hpicfIpStaticBindingsEntry 4 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.1.4.1.5
hpicfIpStaticBindingsInterface OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The interface that this static IP address
binding is valid on in this VLAN."
::= { hpicfIpStaticBindingsEntry 5 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.1.4.1.6
hpicfIpStaticBindingsStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this static IP address
binding. This object cannot be set to
'active' until valid value has been
configured for hpicfIpStaticBindingsMacAddress
and hpicfIpStaticBindingsInterface."
::= { hpicfIpStaticBindingsEntry 6 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.2
hpicfIpDhcpSnoopStatus OBJECT IDENTIFIER ::= { hpicfIpDhcpSnoopObjects 2 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.2.1
hpicfDhcpSnoopGlobalStats OBJECT IDENTIFIER ::= { hpicfIpDhcpSnoopStatus 1 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.2.1.1
hpicfDhcpSnoopCSForwards OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of snooped DHCP packets that were successfully
forwarded from untrusted client ports towards trusted
DHCP server ports."
::= { hpicfDhcpSnoopGlobalStats 1 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.2.1.2
hpicfDhcpSnoopCSMACMismatches OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of snooped DHCP client packets that were
discarded because the MAC source address of the
packet did not match the chaddr."
::= { hpicfDhcpSnoopGlobalStats 2 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.2.1.3
hpicfDhcpSnoopCSUntrustedOpt82s OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of snooped DHCP client packets that were
discarded because they were received on an untrusted
port and contained a relay information option."
::= { hpicfDhcpSnoopGlobalStats 3 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.2.1.4
hpicfDhcpSnoopCSBadReleases OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of snooped DHCP client packets that were
discarded because they were DHCPRELEASE or DHCPDECLINE
packets received on a port different from the port
that the address was leased to."
::= { hpicfDhcpSnoopGlobalStats 4 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.2.1.5
hpicfDhcpSnoopCSUntrustedDestPorts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of snooped DHCP client unicast packets that
were dropped because they were destined to untrusted
ports."
::= { hpicfDhcpSnoopGlobalStats 5 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.2.1.6
hpicfDhcpSnoopSCForwards OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of snooped DHCP packets that were successfully
forwarded from trusted DHCP server ports to untrusted
client ports."
::= { hpicfDhcpSnoopGlobalStats 6 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.2.1.7
hpicfDhcpSnoopSCUntrustedPorts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of snooped DHCP server packets that were
dropped because they were received from untrusted
ports."
::= { hpicfDhcpSnoopGlobalStats 7 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.2.1.8
hpicfDhcpSnoopSCUntrustedServers OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of snooped DHCP server packets that were
dropped because they were received from unauthorized
DHCP server addresses."
::= { hpicfDhcpSnoopGlobalStats 8 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.2.1.9
hpicfDhcpSnoopSCOpt82Failures OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of snooped DHCP server packets that were
dropped because they did not contain a valid
relay information option."
::= { hpicfDhcpSnoopGlobalStats 9 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.2.1.10
hpicfDhcpSnoopDBFileWriteAttempts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of attempts that have been made to
write the DHCP lease database to a configured
file location."
::= { hpicfDhcpSnoopGlobalStats 10 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.2.1.11
hpicfDhcpSnoopDBFileWriteFailures OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of times that an attempt to write the
DHCP lease database to a configured file location
has failed."
::= { hpicfDhcpSnoopGlobalStats 11 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.2.1.12
hpicfDhcpSnoopDBFileReadStatus OBJECT-TYPE
SYNTAX INTEGER
{
notConfigured(1),
inProgress(2),
succeeded(3),
failed(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates whether we were able to
successfully load the DHCP lease database from
the configured location after the last reboot."
::= { hpicfDhcpSnoopGlobalStats 12 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.2.1.13
hpicfDhcpSnoopDBFileWriteStatus OBJECT-TYPE
SYNTAX INTEGER
{
notConfigured(1),
delaying(2),
inProgress(3),
succeeded(4),
failed(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates whether the DHCP lease
database is currently synchronized with the
the configured file server. 'notConfigured'
means that we have not been configured with
a server location. 'delaying' means that we
are waiting for the write delay to expire
before writing the current database.
'inProgress' means that a lease database
transfer is active. 'succeeded' means that
all leases in our database have been written
to the server. 'failed' means that the last
attempt to write our lease database failed."
::= { hpicfDhcpSnoopGlobalStats 13 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.2.1.14
hpicfDhcpSnoopDBFileLastWriteTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time that we last successfully wrote
our lease database to the server. This object
will contain a value of all zeroes if we have
not written our lease database since the last
reboot."
::= { hpicfDhcpSnoopGlobalStats 14 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.2.1.15
hpicfDhcpSnoopPktsSent OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of snooped DHCP packets that were successfully
sent."
::= { hpicfDhcpSnoopGlobalStats 15 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.2.1.16
hpicfDhcpSnoopPktsReceived OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of snooped DHCP packets that were received."
::= { hpicfDhcpSnoopGlobalStats 16 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.2.1.17
hpicfDhcpSnoopPktsDropped OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of snooped DHCP packets that were dropped."
::= { hpicfDhcpSnoopGlobalStats 17 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.2.2
hpicfDhcpSnoopBindingsTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfDhcpSnoopBindingsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of DHCP bindings that have been learned
by this device."
::= { hpicfIpDhcpSnoopStatus 2 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.2.2.1
hpicfDhcpSnoopBindingsEntry OBJECT-TYPE
SYNTAX HpicfDhcpSnoopBindingsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row in the table, containing a single DHCP
binding."
INDEX { hpicfDhcpSnoopBindingsVlan, hpicfDhcpSnoopBindingsMacAddress,
hpicfDhcpSnoopBindingsAddrType, hpicfDhcpSnoopBindingsAddress }
::= { hpicfDhcpSnoopBindingsTable 1 }
HpicfDhcpSnoopBindingsEntry ::=
SEQUENCE {
hpicfDhcpSnoopBindingsVlan
VlanIndex,
hpicfDhcpSnoopBindingsMacAddress
MacAddress,
hpicfDhcpSnoopBindingsAddrType
InetAddressType,
hpicfDhcpSnoopBindingsAddress
InetAddress,
hpicfDhcpSnoopBindingsInterface
InterfaceIndex,
hpicfDhcpSnoopBindingsLeaseTime
Unsigned32,
hpicfDhcpSnoopBindingsType
INTEGER
}
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.2.2.1.1
hpicfDhcpSnoopBindingsVlan OBJECT-TYPE
SYNTAX VlanIndex (1..512)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The VLAN ID on which this client binding
was learned."
::= { hpicfDhcpSnoopBindingsEntry 1 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.2.2.1.2
hpicfDhcpSnoopBindingsMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The MAC address of the DHCP client that
this binding applies to."
::= { hpicfDhcpSnoopBindingsEntry 2 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.2.2.1.3
hpicfDhcpSnoopBindingsAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The type of IP address contained in
hpicfDhcpSnoopBindingsAddress. The only
values expected are ipv4 or ipv6."
::= { hpicfDhcpSnoopBindingsEntry 3 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.2.2.1.4
hpicfDhcpSnoopBindingsAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An IP address that has been leased to
this client. The type of address contained
in this object is indicated by
hpicfDhcpSnoopBindingsAddrType."
::= { hpicfDhcpSnoopBindingsEntry 4 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.2.2.1.5
hpicfDhcpSnoopBindingsInterface OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The interface that this DHCP client is connected
to."
::= { hpicfDhcpSnoopBindingsEntry 5 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.2.2.1.6
hpicfDhcpSnoopBindingsLeaseTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of seconds remaining until this DHCP
lease times out. A value of 0xffffffff indicates
an infinite lease."
::= { hpicfDhcpSnoopBindingsEntry 6 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.2.2.1.7
hpicfDhcpSnoopBindingsType OBJECT-TYPE
SYNTAX INTEGER
{
dhcp(1),
static(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates how this binding was
learned. A value of 'dhcp' indicates that
this binding was learned by snooping a DHCP
lease. A value of 'static' indicates that
this binding was statically configured via the
hpicfIpStaticBindingsTable."
::= { hpicfDhcpSnoopBindingsEntry 7 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.3
hpicfDhcpSnoopNotifyObjects OBJECT IDENTIFIER ::= { hpicfIpDhcpSnoopObjects 3 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.3.1
hpicfDhcpSnoopNotifyCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"A count of the DHCP snooping notification sent from the DHCP
snooping entity to the SNMP entity. This count may be greater
than the count of notifications actually transmitted by the SNMP
entity due to rate limiting or configuration."
::= { hpicfDhcpSnoopNotifyObjects 1 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.3.2
hpicfDhcpSnoopErrantSrcMAC OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The MAC address received in the errant DHCP/BootP reply packet."
::= { hpicfDhcpSnoopNotifyObjects 2 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.3.3
hpicfDhcpSnoopErrantSrcIPType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"InetAddressType of the address reported in hpicfDhcpSnoopErrantSrcIP."
::= { hpicfDhcpSnoopNotifyObjects 3 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.3.4
hpicfDhcpSnoopErrantSrcIP OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The IP address received in the errant DHCP/BootP reply packet."
::= { hpicfDhcpSnoopNotifyObjects 4 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.1.4
hpicfDhcpSnoopClearStatsOptions OBJECT IDENTIFIER ::= {hpicfIpDhcpSnoopObjects 4}
hpicfDhcpSnoopClearStats OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When the value of this object is set to TRUE,
all the dhcp-snoop statistics will be cleared.
A write operation of FALSE leads to a no operation and
a get request for this object always returns FALSE."
::= { hpicfDhcpSnoopClearStatsOptions 1 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.2
hpicfDhcpSnoopConformance OBJECT IDENTIFIER ::= { hpicfIpDhcpSnoop 2 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.2.1
hpicfIpDhcpSnoopGroups OBJECT IDENTIFIER ::= { hpicfDhcpSnoopConformance 1 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.2.1.1
hpicfDhcpSnoopBaseGroup OBJECT-GROUP
OBJECTS { hpicfDhcpSnoopEnable, hpicfDhcpSnoopVlanEnable,
hpicfDhcpSnoopVerifyMac, hpicfDhcpSnoopPortTrust,
hpicfDhcpSnoopCSForwards, hpicfDhcpSnoopCSMACMismatches,
hpicfDhcpSnoopCSBadReleases, hpicfDhcpSnoopCSUntrustedDestPorts,
hpicfDhcpSnoopSCForwards, hpicfDhcpSnoopSCUntrustedPorts
}
STATUS current
DESCRIPTION
"A collection of objects for configuring and
monitoring the base DHCP snooping functionality."
::= { hpicfIpDhcpSnoopGroups 1 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.2.1.2
hpicfDhcpSnoopOpt82Group OBJECT-GROUP
OBJECTS { hpicfDhcpSnoopOpt82Insert, hpicfDhcpSnoopOpt82Policy,
hpicfDhcpSnoopOpt82RemoteId, hpicfDhcpSnoopCSUntrustedOpt82s,
hpicfDhcpSnoopSCOpt82Failures
}
STATUS current
DESCRIPTION
"A collection of objects for configuring and
monitoring DHCP snooping relay information
option behavior."
::= { hpicfIpDhcpSnoopGroups 2 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.2.1.3
hpicfDhcpSnoopServersGroup OBJECT-GROUP
OBJECTS { hpicfDhcpSnoopServerStatus, hpicfDhcpSnoopSCUntrustedServers }
STATUS current
DESCRIPTION
"A collection of objects for configuring and
monitoring DHCP snooping trusted servers."
::= { hpicfIpDhcpSnoopGroups 3 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.34.2.1.4
hpicfDhcpSnoopDbaseFileGroup OBJECT-GROUP
OBJECTS { hpicfDhcpSnoopDatabaseFile, hpicfDhcpSnoopDatabaseWriteDelay,
hpicfDhcpSnoopDatabaseWriteTimeout, hpicfDhcpSnoopDBFileWriteAttempts,
hpicfDhcpSnoopDBFileWriteFailures, hpicfDhcpSnoopDBFileReadStatus,
hpicfDhcpSnoopDBFileWriteStatus, hpicfDhcpSnoopDBFileLastWriteTime }
STATUS current
DESCRIPTION
"A collection of objects for configuring and
monitoring DHCP snooping database file
management."
::= { hpicfIpDhcpSnoopGroups 4 }