-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHP-ICF-IPCONFIG
864 lines (715 loc) · 33.2 KB
/
HP-ICF-IPCONFIG
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
HP-ICF-IPCONFIG DEFINITIONS ::= BEGIN
IMPORTS
OBJECT-TYPE, MODULE-IDENTITY
FROM SNMPv2-SMI
RowStatus
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
InetAddress, InetAddressType, InetAddressPrefixLength, InetAddressIPv4,
InetPortNumber
FROM INET-ADDRESS-MIB
ipNetToPhysicalEntry
FROM IP-MIB
ifIndex
FROM IF-MIB
hpicfCommon
FROM HP-ICF-OID
ipv4InterfaceEntry, ipv6InterfaceEntry, IpAddressOriginTC,
IpAddressStatusTC
FROM IP-MIB
tunnelInetConfigEntry
FROM TUNNEL-MIB;
hpicfIpConfig MODULE-IDENTITY
LAST-UPDATED "200702020000Z" -- JUNE 06,2007
ORGANIZATION "Hewlett Packard Company,
ProCurve Networking Business"
CONTACT-INFO "Hewlett Packard Company
8000 Foothills Blvd.
Roseville, CA 95747"
DESCRIPTION "This MIB module describes objects for basic
IP address configuration and interface configuration
for devices in the HP Integrated Communication Facility
product line."
REVISION "200702020000Z" -- JUNE 06, 2007
DESCRIPTION "Added hpicfIpv6NDDadAttempts to augment the
hpicfIpv6GlobalConfigObjects."
REVISION "200705300000Z" -- MAY 30, 2007
DESCRIPTION "Added hpicfIpv4InterfaceLocalProxyArp on to the
hpicfIpv4InterfaceEntry."
REVISION "200702020000Z" -- FEBRUARY 02, 2007
DESCRIPTION "Added hpicfIpv6InterfaceTable to augment the
Ipv6InterfaceTable."
REVISION "200612030000Z" -- DECEMBER 03, 2006
DESCRIPTION "Added hpicfUdpTunnelMirrorSessionID to augment the
tunnelInetConfigEntry object in RFC4087."
REVISION "200607070000Z" -- JULY 07, 2006
DESCRIPTION "Added hpicfUdpTunnelSrcPort to augment the
tunnelInetConfigEntry object in RFC4087."
REVISION "200508081600Z" -- August 08, 2005
DESCRIPTION "Initial version."
::= { hpicfCommon 10 }
-- The HP ICF IP configuration group
hpicfIpConfigObjects OBJECT IDENTIFIER ::= {hpicfIpConfig 1}
-- The HP ICF Address group
hpicfIpAddressObjects OBJECT IDENTIFIER ::= {hpicfIpConfigObjects 1}
-- The HP ICF IPV4 interface group
hpicfIpv4InterfaceObjects OBJECT IDENTIFIER ::= {hpicfIpConfigObjects 2}
-- The HP ICF IPV6 config group
hpicfIpv6ConfigObjects OBJECT IDENTIFIER ::= {hpicfIpConfig 3}
-- The HP ICF IPV6 global config group
hpicfIpv6GlobalConfigObjects OBJECT IDENTIFIER ::= {hpicfIpv6ConfigObjects 1}
hpicfIpv6NDObjects OBJECT IDENTIFIER ::= {hpicfIpv6GlobalConfigObjects 1}
-- The HP ICF IPV6 ICMP group
hpicfIpv6IcmpObjects OBJECT IDENTIFIER ::= {hpicfIpv6GlobalConfigObjects 2}
-- The HP ICF IPV6 interface group
hpicfIpv6InterfaceObjects OBJECT IDENTIFIER ::= {hpicfIpv6ConfigObjects 2}
hpicfIpAddressTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfIpAddressEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table contains manually configured IPv4 and IPv6
addresses for each interface. An entry in this table
may not exist in the active state unless all objects
in the entry are consistent. In particular, the value of
hpicfIpAddressPrefixLength."
::= { hpicfIpAddressObjects 1 }
hpicfIpAddressEntry OBJECT-TYPE
SYNTAX HpicfIpAddressEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the hpicfIpAddressEntry contains a single
manually configured IP address."
INDEX { ifIndex,
hpicfIpAddressAddrType,
hpicfIpAddressAddr }
::= { hpicfIpAddressTable 1 }
HpicfIpAddressEntry ::=
SEQUENCE {
hpicfIpAddressAddrType InetAddressType,
hpicfIpAddressAddr InetAddress,
hpicfIpAddressPrefixLength InetAddressPrefixLength,
hpicfIpAddressType INTEGER,
hpicfIpAddressRowStatus RowStatus,
hpicfIpAddressExtendedType INTEGER
}
hpicfIpAddressAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Type of IP address"
::= { hpicfIpAddressEntry 1 }
hpicfIpAddressAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The IP address to which this entry's addressing
information pertains.
hpicfIpAddressAddr is always interpreted within the
context of hpicfIpAddressAddrType."
::= { hpicfIpAddressEntry 2 }
hpicfIpAddressPrefixLength OBJECT-TYPE
SYNTAX InetAddressPrefixLength
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The prefix length associated with IP address."
::= { hpicfIpAddressEntry 3 }
hpicfIpAddressType OBJECT-TYPE
SYNTAX INTEGER {
unicast(1),
anycast(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION "IP address type. For V4 addresses the value will be
unicast."
DEFVAL { unicast }
::= { hpicfIpAddressEntry 4 }
hpicfIpAddressRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The status of the IP address entry."
::= { hpicfIpAddressEntry 5 }
hpicfIpAddressExtendedType OBJECT-TYPE
SYNTAX INTEGER {
none(0),
eui64(1),
linkLocal(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION "IP address type. For V4 addresses the value will be
none. For V6 address it can be eui64 and linkLocal also."
DEFVAL { none }
::= { hpicfIpAddressEntry 6 }
-- Switch IP Address Table
hpicfSwitchIpAddressTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfSwitchIpAddressEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This read only table contains IPV4 and/or IPV6 addresses
for each interface.
These IP Addresses are either manually configured or
obtained by a dynamic meathod (such as DHCP).
This table will hold all manually configured IP Addresses
that exist in hpicfIpAddressTable except for those entries
that are not in active state (hpicfIpAddressRowStatus)."
::= { hpicfIpAddressObjects 2 }
hpicfSwitchIpAddressEntry OBJECT-TYPE
SYNTAX HpicfSwitchIpAddressEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the hpicfSwitchIpAddressEntry contains a single
IP address."
INDEX { ifIndex,
hpicfSwitchIpAddressAddrType,
hpicfSwitchIpAddressAddr }
::= { hpicfSwitchIpAddressTable 1 }
HpicfSwitchIpAddressEntry ::=
SEQUENCE {
hpicfSwitchIpAddressAddrType InetAddressType,
hpicfSwitchIpAddressAddr InetAddress,
hpicfSwitchIpAddressPrefixLength InetAddressPrefixLength,
hpicfSwitchIpAddressType INTEGER,
hpicfSwitchIpAddressOrigin IpAddressOriginTC,
hpicfSwitchIpAddressStatus IpAddressStatusTC,
hpicfSwitchIpAddressPreferredLifetime Unsigned32,
hpicfSwitchIpAddressValidLifetime Unsigned32,
hpicfSwitchIpAddressExtendedType INTEGER
}
hpicfSwitchIpAddressAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Type of IP address."
::= { hpicfSwitchIpAddressEntry 1 }
hpicfSwitchIpAddressAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The IP address to which this entry's addressing
information pertains.
hpicfSwitchIpAddressAddr is always interpreted within the
context of hpicfSwitchIpAddressAddrType."
::= { hpicfSwitchIpAddressEntry 2 }
hpicfSwitchIpAddressPrefixLength OBJECT-TYPE
SYNTAX InetAddressPrefixLength
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The prefix length associated with IP address."
::= { hpicfSwitchIpAddressEntry 3 }
hpicfSwitchIpAddressType OBJECT-TYPE
SYNTAX INTEGER {
unicast(1),
anycast(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "IP address type. For V4 addresses the value will be
unicast."
::= { hpicfSwitchIpAddressEntry 4 }
hpicfSwitchIpAddressOrigin OBJECT-TYPE
SYNTAX IpAddressOriginTC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The origin of the address."
::= { hpicfSwitchIpAddressEntry 5 }
hpicfSwitchIpAddressStatus OBJECT-TYPE
SYNTAX IpAddressStatusTC
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of the address, describing if the address can be
used for communication.
In the absence of other information, an IPv4 address is
always preferred(1)."
DEFVAL { preferred }
::= { hpicfSwitchIpAddressEntry 6 }
hpicfSwitchIpAddressPreferredLifetime OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The remaining length of time in seconds that this address
will continue to be preferred, i.e. time until deprecation.
A value of 4,294,967,295 represents infinity.
The address generated from a deprecated address should no
longer be used as a source address in new communications,
but packets received on such an interface are processed as
expected.
The default for IPv4 addresses is 4,294,967,295 (infinity)."
REFERENCE "For IPv6 RFC2461, especially sections 2 and 4.6.2 and RFC2462"
::= { hpicfSwitchIpAddressEntry 7 }
hpicfSwitchIpAddressValidLifetime OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The remaining length of time, in seconds, that this address
will continue to be valid, i.e. time until invalidation. A
value of 4,294,967,295 represents infinity.
The address generated from an invalidated address should not
appear as the destination or source address of a packet.
The default for IPv4 addresses is 4,294,967,295 (infinity)."
REFERENCE "For IPv6 RFC2461, especially sections 2 and 4.6.2 and RFC2462"
::= { hpicfSwitchIpAddressEntry 8 }
hpicfSwitchIpAddressExtendedType OBJECT-TYPE
SYNTAX INTEGER {
none(0),
eui64(1),
linkLocal(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "IP address type. For V4 addresses the value will be
none. For V6 address it can be eui64 and linkLocal also."
DEFVAL { none }
::= { hpicfSwitchIpAddressEntry 9 }
hpicfIpNetToPhysicalTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfIpNetToPhysicalEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table augments ipNeTtoPhysicalTable"
::= {hpicfIpAddressObjects 3 }
hpicfIpNetToPhysicalEntry OBJECT-TYPE
SYNTAX HpicfIpNetToPhysicalEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table augments ipNeTtoPhysicalTable"
AUGMENTS { ipNetToPhysicalEntry }
::= { hpicfIpNetToPhysicalTable 1 }
HpicfIpNetToPhysicalEntry ::=
SEQUENCE {
hpicfIpNetToPhysicalPort Integer32
}
hpicfIpNetToPhysicalPort OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object gives the port through which the
physical address was learnt"
::= { hpicfIpNetToPhysicalEntry 1}
-- V4 Interface Table
hpicfIpv4InterfaceTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfIpv4InterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table contains per-interface IPV4 configuration
information."
::= { hpicfIpv4InterfaceObjects 1 }
hpicfIpv4InterfaceEntry OBJECT-TYPE
SYNTAX HpicfIpv4InterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the hpicfIpv4InterfaceEntry contains IPV4
interface specific configuration information. This table
is indexed by ipv4InterfaceIfIndex."
AUGMENTS { ipv4InterfaceEntry }
::= { hpicfIpv4InterfaceTable 1 }
HpicfIpv4InterfaceEntry ::=
SEQUENCE {
hpicfIpv4InterfaceDhcpEnable INTEGER,
hpicfIpv4InterfaceForwarding INTEGER,
hpicfIpv4InterfaceProxyArp INTEGER,
hpicfIpv4InterfaceLocalProxyArp INTEGER,
hpicfIpv4InterfaceBootpGateway InetAddressIPv4
}
hpicfIpv4InterfaceDhcpEnable OBJECT-TYPE
SYNTAX INTEGER {
full(1),
off(2),
inform(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Changing this flag to 'full' will clear any existing
IP address configuration for this interface and
will cause the device to use a dynamic method
(e.g. DHCP) to obtain its IP configuration and
other configuration parameter (such as gateway,
time of day, etc...) for this interface.
Setting this flag to 'inform' will allow manual IP
address configuration and yet permit other configuration
parameters (such as gateway, time of day, etc...) to
be obtained from a DHCP server.
Setting this flag to 'off' will allow manual IP
configuration but disallow any DHCP configuration."
DEFVAL { full }
::= { hpicfIpv4InterfaceEntry 1 }
hpicfIpv4InterfaceForwarding OBJECT-TYPE
SYNTAX INTEGER {
enabled (1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This flag indicates whether this interface is forwarding
the datagrams that were not addressed to this interface.
Setting this flag to 'enabled' (the default) results
in forwarding the datagrams that were not addressed to
this interface.
Setting this flag to 'disabled' results in ignoring
datagrams that were not addressed to this entity."
DEFVAL { enabled }
::= { hpicfIpv4InterfaceEntry 2 }
hpicfIpv4InterfaceProxyArp OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Enables/disables ARP proxy on the interface. If set
to 'enabled', the switch will respond on ARP request
for IP addresses from other subnets.
If set to disabled (the default), the switch will not
respond on ARP request for IP addresses from other
subnets."
DEFVAL { disabled }
::= { hpicfIpv4InterfaceEntry 3 }
hpicfIpv4InterfaceLocalProxyArp OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Enables/disables local ARP proxy on the interface. If set
to 'enabled', the switch will respond on ARP request
for IP addresses within the local subnet.
If set to disabled (the default), the switch will not
respond on ARP request for IP addresses within the
local subnet."
DEFVAL { disabled }
::= { hpicfIpv4InterfaceEntry 4 }
hpicfIpv4InterfaceBootpGateway OBJECT-TYPE
SYNTAX InetAddressIPv4
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This entry will contain the IP address of the
BOOTP gateway for the interface."
::= { hpicfIpv4InterfaceEntry 5 }
-- V6 Global Objects
hpicfIpv6NDDadAttempts OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value in this object indicates the maximum number of
neighbour solicitation requests that will be sent while
performing duplicate address detection."
::= { hpicfIpv6NDObjects 1 }
-- V6 Global Icmp Objects
hpicfIpv6IcmpErrorInterval OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value in this object indicates the error interval
in which the token bucket algorithm places one token
in the bucket for ICMPV6 rate limiting.Each token
represents the right to send one ICMP error message.
Each time an error is sent, it takes a token from the bucket.
ICMP will not be allowed to originate an error
message if the bucket is empty."
::= { hpicfIpv6IcmpObjects 1 }
hpicfIpv6IcmpBucketsize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value in this object indicates the maximum number of
tokens that can be in the bucket."
::= { hpicfIpv6IcmpObjects 2 }
-- V6 Interface Table
hpicfIpv6InterfaceTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfIpv6InterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table contains per-interface IPV6 configuration
information."
::= { hpicfIpv6InterfaceObjects 1 }
hpicfIpv6InterfaceEntry OBJECT-TYPE
SYNTAX HpicfIpv6InterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the hpicfIpv6InterfaceEntry contains IPV6
interface specific configuration information. This table
is indexed by ipv6InterfaceIfIndex."
AUGMENTS { ipv6InterfaceEntry }
::= { hpicfIpv6InterfaceTable 1 }
HpicfIpv6InterfaceEntry ::=
SEQUENCE {
hpicfIpv6InterfaceDhcpMode INTEGER,
hpicfIpv6InterfaceManual INTEGER,
hpicfIpv6InterfaceAutoConfig INTEGER,
hpicfIpv6InterfaceDhcpRapidCommit INTEGER,
hpicfIpv6InterfaceDhcpRelay INTEGER,
hpicfIpv6InterfaceCfgEnableStatus INTEGER
}
hpicfIpv6InterfaceDhcpMode OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
dhcpFull(1),
dhcpInform(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Setting this flag to 'dhcpFull' will clear any existing
IP address configuration for this interface and
will cause the device to use a dynamic method
(e.g. DHCP) to obtain its IP configuration and
other configuration parameter (such as gateway,
time of day, etc...) for this interface.
Setting this flag to 'dhcpInform' will allow manual IP
address configuration and yet permit other configuration
parameters (such as gateway, time of day, etc...) to
be obtained from a DHCP server.
Setting this flag to 'disabled' will not allow any of the
above mentioned two configuration, but interface can
have link-local, auto-config and manual ip-address."
DEFVAL { disabled }
::= { hpicfIpv6InterfaceEntry 1 }
hpicfIpv6InterfaceManual OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Setting this flag to 'enabled' will allow manual IP
address configuration but disallow any DHCP configuration."
DEFVAL { disabled }
::= { hpicfIpv6InterfaceEntry 2 }
hpicfIpv6InterfaceAutoConfig OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Setting this flag to 'enabled' will allow host to
configure automatically from default router.
There may be multiple routers and in that scenario switch will
add the addresses from all these routers"
DEFVAL { disabled }
::= { hpicfIpv6InterfaceEntry 3 }
hpicfIpv6InterfaceDhcpRapidCommit OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Setting this flag to 'enabled' will allow the host to get
address and configuration information from the dhcp server
rapidly. This flag can be enabled only if the
hpicfIpv6InterfaceDhcpMode object is set as dhcpFull.
By default this flag is set to disabled."
DEFVAL { disabled }
::= { hpicfIpv6InterfaceEntry 4 }
hpicfIpv6InterfaceDhcpRelay OBJECT-TYPE
SYNTAX INTEGER {
enabled (1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This flag indicates whether this interface is dhcp-relay
enabled. By default this flag is set to disabled."
DEFVAL { enabled }
::= { hpicfIpv6InterfaceEntry 5 }
hpicfIpv6InterfaceCfgEnableStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1),
down(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The indication of whether IPv6 is enabled (up) or disabled
(down) on this interface.
Setting this object to up(1) will enable ipv6 for the given
interface.Setting this object to down(2) will disable the ipv6
for the interface only if hpicfIpv6InterfaceDhcpMode,
hpicfIpv6InterfaceManual and hpicfIpv6InterfaceAutoConfig are
disabled.A get on this object reflects the data saved in a
non-volatile storage.
Note:To get the current ipv6 status for an interface refer to
ipv6InterfaceEnableStatus."
::= { hpicfIpv6InterfaceEntry 6 }
-- **********************************************************************
-- Remote mirroring tunnel Objects
-- **********************************************************************
hpicfUdpTunnelTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfUdpTunnelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table contains per interface IPV4
Udp encapsulated tunnel specific configuration
information."
::= { hpicfIpv4InterfaceObjects 3 }
hpicfUdpTunnelEntry OBJECT-TYPE
SYNTAX HpicfUdpTunnelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the hpicfUdpTunnelEntry contains
Udp encapsulated tunnel specific configuration
information."
AUGMENTS { tunnelInetConfigEntry }
::= { hpicfUdpTunnelTable 1 }
HpicfUdpTunnelEntry ::=
SEQUENCE {
hpicfUdpTunnelSrcPort InetPortNumber,
hpicfUdpTunnelMirrorSessionID Integer32
}
hpicfUdpTunnelSrcPort OBJECT-TYPE
SYNTAX InetPortNumber
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This variable is valid only for the remote
mirroring source or destination switch.
The value will be ignored otherwise. A
value of 0 means that the UDP port
is irrelevant for the tunnel type. If this
value is non-zero it must be duplicated
in the tunnelInetConfigID value (this
will ensure that a given UDP port can
only be associated once with a given
tunnelInetConfigAddressType,
tunnelInetConfigLocalAddress,
tunnelInetConfigRemoteAddress,
tunnelInetConfigEncapsMethod combination)."
DEFVAL { 0 }
::= { hpicfUdpTunnelEntry 1 }
hpicfUdpTunnelMirrorSessionID OBJECT-TYPE
SYNTAX Integer32(0..512)
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This variable is valid only for a remote
mirroring switch which interfaces with the
source end of the tunnel.
The value will be ignored otherwise. A
value of 0 means that the mirror session ID
is irrelevant for the tunnel type. "
DEFVAL { 0 }
::= { hpicfUdpTunnelEntry 2 }
-- **********************************************************************
-- Conformance information
-- **********************************************************************
hpicfIpConfigConformance OBJECT IDENTIFIER ::= {hpicfIpConfig 2}
hpicfIpConfigCompliances OBJECT IDENTIFIER ::= {hpicfIpConfigConformance 1}
hpicfIpConfigGroups OBJECT IDENTIFIER ::= {hpicfIpConfigConformance 2}
-- **********************************************************************
-- Compliance statements
-- **********************************************************************
hpicfIpConfigCompliance MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION "
A compliance statement for HP Routing switches with IP
Configuration"
MODULE
MANDATORY-GROUPS { hpicfIpAddressTableGroup,
hpicfIpv4InterfaceTableGroup,
hpicfSwitchIpAddressTableGroup }
OBJECT hpicfIpv4InterfaceDhcpEnable
MIN-ACCESS read-write
DESCRIPTION "An agent is not required to implement inform (3)
state."
::= { hpicfIpConfigCompliances 1 }
hpicfIpConfigCompliance2 MODULE-COMPLIANCE
STATUS current
DESCRIPTION "
A compliance statement for HP Routing switches with IP
Configuration"
MODULE
MANDATORY-GROUPS { hpicfIpAddressTableGroup,
hpicfIpv4InterfaceTableGroup,
hpicfSwitchIpAddressTableGroup }
GROUP hpicfUdpTunnelTableGroup
DESCRIPTION "This group is valid only for the remote
mirroring source or destination switch.
The value will be ignored otherwise."
OBJECT hpicfIpv4InterfaceDhcpEnable
MIN-ACCESS read-write
DESCRIPTION "An agent is not required to implement inform (3)
state."
::= { hpicfIpConfigCompliances 2 }
hpicfIpConfigCompliance4 MODULE-COMPLIANCE
STATUS current
DESCRIPTION "
A compliance statement for HP Routing switches with IP
Configuration"
MODULE
MANDATORY-GROUPS { hpicfIpAddressTableGroup,
hpicfIpv4InterfaceTableGroup2,
hpicfSwitchIpAddressTableGroup,
hpicfIpv6InterfaceTableGroup }
GROUP hpicfUdpTunnelTableGroup
DESCRIPTION "This group is valid only for the remote
mirroring source or destination switch.
The value will be ignored otherwise."
OBJECT hpicfIpv4InterfaceDhcpEnable
MIN-ACCESS read-write
DESCRIPTION "An agent is not required to implement inform (3)
state."
::= { hpicfIpConfigCompliances 4 }
hpicfIpAddressTableGroup OBJECT-GROUP
OBJECTS {
hpicfIpAddressPrefixLength,
hpicfIpAddressType,
hpicfIpAddressRowStatus,
hpicfIpAddressExtendedType }
STATUS current
DESCRIPTION "A Collection of objects allowing configuration of
an IP address for an interface."
::= { hpicfIpConfigGroups 1 }
hpicfSwitchIpAddressTableGroup OBJECT-GROUP
OBJECTS {
hpicfSwitchIpAddressAddrType,
hpicfSwitchIpAddressAddr}
STATUS current
DESCRIPTION "A Collection of objects providing interfaces addressing
information."
::= { hpicfIpConfigGroups 2 }
hpicfIpv4InterfaceTableGroup OBJECT-GROUP
OBJECTS {
hpicfIpv4InterfaceDhcpEnable,
hpicfIpv4InterfaceForwarding,
hpicfIpv4InterfaceProxyArp }
STATUS deprecated
DESCRIPTION "Deprecated - see hpicfIpv4InterfaceTableGroup2"
::= { hpicfIpConfigGroups 3 }
hpicfUdpTunnelTableGroup OBJECT-GROUP
OBJECTS {
hpicfUdpTunnelSrcPort,
hpicfUdpTunnelMirrorSessionID }
STATUS current
DESCRIPTION "A Collection of objects that allows IPV4 interface
configuration for remote mirroring"
::= { hpicfIpConfigGroups 4 }
hpicfIpv6InterfaceTableGroup OBJECT-GROUP
OBJECTS {
hpicfIpv6InterfaceDhcpMode,
hpicfIpv6InterfaceManual,
hpicfIpv6InterfaceAutoConfig,
hpicfIpv6InterfaceDhcpRapidCommit,
hpicfIpv6InterfaceDhcpRelay }
STATUS current
DESCRIPTION "A Collection of objects that allows IPV6 interface
configuration"
::= { hpicfIpConfigGroups 5 }
hpicfIpv4InterfaceTableGroup2 OBJECT-GROUP
OBJECTS {
hpicfIpv4InterfaceDhcpEnable,
hpicfIpv4InterfaceForwarding,
hpicfIpv4InterfaceProxyArp,
hpicfIpv4InterfaceLocalProxyArp }
STATUS current
DESCRIPTION "A Collection of objects that allows IPV4 interface
configuration"
::= { hpicfIpConfigGroups 6 }
END