-
Notifications
You must be signed in to change notification settings - Fork 0
/
hpicfOspfv3.mib
2058 lines (1822 loc) · 74.8 KB
/
hpicfOspfv3.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-OSPFV3-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,
Counter32, Integer32, Unsigned32, Gauge32
FROM SNMPv2-SMI
TruthValue
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
InetAddressIPv6
FROM INET-ADDRESS-MIB
hpSwitch
FROM HP-ICF-OID
HpicfOspfLogType, HpicfOspfLogAction
FROM HP-ICF-OSPF
Metric, BigMetric
FROM OSPF-MIB
ospfv3AsLsdbEntry, ospfv3LinkLsdbEntry,
ospfv3AreaLsdbEntry,
ospfv3IfEntry, ospfv3NbrEntry, ospfv3IfIndex,
ospfv3IfInstId,
ospfv3AreaLsdbAreaId, ospfv3AreaLsdbType,
ospfv3AreaLsdbLsid,
ospfv3AreaLsdbRouterId, ospfv3LinkLsdbIfIndex,
ospfv3LinkLsdbIfInstId, ospfv3LinkLsdbType,
ospfv3LinkLsdbRouterId,
ospfv3LinkLsdbLsid,
Ospfv3RouterIdTC, ospfv3AreaEntry,
ospfv3AreaAggregateEntry
FROM OSPFV3-MIB;
hpicfOspfv3MIB MODULE-IDENTITY
LAST-UPDATED "201406130000Z"
ORGANIZATION "HP Networking"
CONTACT-INFO "Hewlett Packard Company
8000 Foothills Blvd.
Roseville, CA 95747"
DESCRIPTION "The MIB module contains HP proprietary
extensions to the OSPFV3-MIB module."
REVISION "201406130000Z"
DESCRIPTION "Updated the descriptions for MIB objects.
Deleted Notifications."
REVISION "201204300000Z"
DESCRIPTION "Added objects in hpicfOspfv3NbrTable
hpicfOspfv3NbrDataBaseSummary
hpicfOspfv3NbrLinkStateRequest
hpicfOspfv3NbrRestartState
Added objected in hpicfOspfv3IfStatsTable
hpicfOspfv3IfSentTotalErrorCount
hpicfOspfv3IfRcvdTotalErrorCount"
REVISION "201204200000Z"
DESCRIPTION "Added hpicfOspfv3AreaLsdbStatsTable,
hpicfOspfv3AreaLsdbStatsTable and added
objects
hpicfOspfv3AreaLsdbStatRtrLsaCnt
hpicfOspfv3AreaLsdbStatNwLsaCnt
hpicfOspfv3AreaLsdbStatInterPreLsaCnt
hpicfOspfv3AreaLsdbStatInterRtrLsaCnt
hpicfOspfv3AreaLsdbStatIntraPreLsaCnt,
Added objects in hpicfOspfv3GeneralGroup
hpicfOspfv3AreaCount
hpicfOspfv3RestartHelper
hpicfOspfv3ASscopeUnknownLsaCount
hpicfOspfv3LinkLsdbStatLinkLsa,
Added objects in hpicfOspfv3LinkLsdbTable,
Added objects in hpicfOspfv3AreaTable
hpicfOspfv3AreaNbrDownCount
hpicfOspfv3AreaNbrAttemptCount
hpicfOspfv3AreaNbrInitCount
hpicfOspfv3AreaNbr2wayCount
hpicfOspfv3AreaNbrExstartCount
hpicfOspfv3AreaNbrExchangeCount
hpicfOspfv3AreaNbrLoadingCount
hpicfOspfv3AreaNbrFullCount
hpicfOspfv3AreaInterfaceCount
hpicfOspfv3AreaScopeUnknownLsaCount
Added objects in hpicfOspfv3AreaLsdbTable
hpicfOspfv3AreaLsdbLsaLength
hpicfOspfv3AreaLsdbLinks"
REVISION "201106131953Z"
DESCRIPTION "Added hpicfOspfv3AreaAggregateTable,
hpicfOspfv3AreaAggregateEntry,
HpicfOspfv3AreaAggregateEntry and
hpicfOspfv3AreaAggregateCost"
REVISION "201011040000Z"
DESCRIPTION "Added 'hpicfOspfv3AreaTable',
'hpicfOspfv3VirtIntfTable' and added objects
in 'hpicfOspfv3IfTable'"
REVISION "200902051800Z"
DESCRIPTION "Initial revision."
::= { hpSwitch 44 }
-- Top-level structure of MIB
hpicfOspfv3Objects OBJECT IDENTIFIER ::= { hpicfOspfv3MIB 1 }
hpicfOspfv3Conformance OBJECT IDENTIFIER ::= { hpicfOspfv3MIB 2 }
-- extension to OSPFv3 MIB
-- These parameters apply globally to the Router's
-- OSPFv3 Process.
hpicfOspfv3GeneralGroup OBJECT IDENTIFIER ::= { hpicfOspfv3Objects 1 }
hpicfOspfv3DefaultImportMetric OBJECT-TYPE
SYNTAX BigMetric
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The default metric used for advertising
external routes by this router."
::= { hpicfOspfv3GeneralGroup 1 }
hpicfOspfv3DefaultImportMetricType OBJECT-TYPE
SYNTAX INTEGER {
externalType1(1),
externalType2(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The default metric type used for advertising
external routes by this router."
::= { hpicfOspfv3GeneralGroup 2 }
hpicfOspfv3IntraAreaDistance OBJECT-TYPE
SYNTAX Integer32 (1..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The administrative distance to associate
with intra-area routes learned by OSPF. Routes
with lower distances are preferred. By default,
OSPF routes have an administrative distance of 110.
Note that the administrative distance settings
for OSPF do not affect the choice of routes
within OSPF. OSPF will still prefer intra-area
routes over inter-area or AS-external routes even
if hpicfOspfv3InterAreaDistance or
hpicfOspfv3ExternalDistance is lower than
hpicfOspfv3IntraAreaDistance. The appropriate
administrative distance value is applied to the
route that OSPF selects as its best route to a
destination and is used to decide whether OSPF's
route is preferred over a route from some other
source."
::= { hpicfOspfv3GeneralGroup 3}
hpicfOspfv3InterAreaDistance OBJECT-TYPE
SYNTAX Integer32 (1..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The administrative distance to associate
with inter-area routes learned by OSPF. Routes
with lower distances are preferred. By default,
OSPF routes have an administrative distance of 110.
Note that the administrative distance settings
for OSPF do not affect the choice of routes
within OSPF. OSPF will still prefer intra-area
routes over inter-area routes, even if
hpicfOspfv3InterAreaDistance is lower than
hpicfOspfv3IntraAreaDistance. It will also still
prefer inter-area routes over AS-external routes
even if hpicfOspfv3ExternalDistance is lower than
hpicfOspfv3InterAreaDistance. The appropriate
administrative distance value is applied to the
route that OSPF selects as its best route to a
destination and is used to decide whether OSPF's
route is preferred over a route from some other
source."
::= { hpicfOspfv3GeneralGroup 4 }
hpicfOspfv3ExternalDistance OBJECT-TYPE
SYNTAX Integer32 (1..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The administrative distance to associate
with AS-external routes learned by OSPF. Routes
with lower distances are preferred. By default,
OSPF routes have an administrative distance of 110.
Note that the administrative distance settings
for OSPF do not affect the choice of routes
within OSPF. OSPF will still prefer intra-area
routes and inter-area routes over AS-external
routes even if hpicfOspfv3ExternalDistance is lower
than the hpicfOspfv3IntraAreaDistance or
hpicfOspfv3InterAreaDistance. The appropriate
administrative distance value is applied to the
route that OSPF selects as its best route to a
destination and is used to decide whether OSPF's
route is preferred over a route from some other
source."
::= { hpicfOspfv3GeneralGroup 5 }
hpicfOspfv3SpfThrottleStartInterval OBJECT-TYPE
SYNTAX Integer32 (0..600)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Initial SPF schedule delay"
DEFVAL {0 }
::= { hpicfOspfv3GeneralGroup 7}
hpicfOspfv3SpfThrottleWaitInterval OBJECT-TYPE
SYNTAX Integer32 (0..600)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Minimum wait time between two consecutive SPFs
When spf throttle is triggered."
DEFVAL {0 }
::= { hpicfOspfv3GeneralGroup 8}
hpicfOspfv3SpfThrottleMaxWaitTime OBJECT-TYPE
SYNTAX Integer32 (0..600)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Maximum time between two consecutive SPFs
runs when spf throttling active."
DEFVAL {0 }
::= { hpicfOspfv3GeneralGroup 9}
hpicfOspfv3SpfThrottleCurrentSpfInterval OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Current dynamic wait interval between SPF
computations"
::= { hpicfOspfv3GeneralGroup 10}
hpicfOspfv3AreaCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of areas in a router"
::= { hpicfOspfv3GeneralGroup 11}
hpicfOspfv3RestartHelper OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Graceful restart helper status
A value of true (1) indicates that
Restart helper is enabled, false(2)
indicates that Restart helper is disabled."
DEFVAL { true }
::= { hpicfOspfv3GeneralGroup 12}
hpicfOspfv3ASscopeUnknownLsaCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The total number of AS-scope unknown link state
advertisements received."
DEFVAL { 0 }
::= { hpicfOspfv3GeneralGroup 13}
hpicfOspfv3LinkLsdbStatLinkLsa OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object indicates total
number of Link LSAs in the router."
DEFVAL { 0 }
::= { hpicfOspfv3GeneralGroup 14 }
hpicfOspfv3TotalUnknownLsa OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object indicates total
number of LSAs received with Unknown type."
DEFVAL { 0 }
::= { hpicfOspfv3GeneralGroup 15 }
-- END : 1@ Added PROPRIETARY
-- OSPFv3 AS-Scope Link State Database
hpicfOspfv3AsLsdbTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfOspfv3AsLsdbEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The OSPFv3 AS-Scope Link State Database
(LSDB). The LSDB contains the AS-Scope Link State
Advertisements from throughout the areas that the
device is attached to."
::= { hpicfOspfv3Objects 2 }
hpicfOspfv3AsLsdbEntry OBJECT-TYPE
SYNTAX HpicfOspfv3AsLsdbEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A single AS-Scope Link State Advertisement."
AUGMENTS { ospfv3AsLsdbEntry }
::= { hpicfOspfv3AsLsdbTable 1 }
HpicfOspfv3AsLsdbEntry ::= SEQUENCE {
hpicfOspfv3AsLsdbEFTFlags
BITS,
hpicfOspfv3AsLsdbMetric
Metric,
hpicfOspfv3AsLsdbPrefixLength
Unsigned32,
hpicfOspfv3AsLsdbPrefixOptions
Unsigned32,
hpicfOspfv3AsLsdbRefLsType
Unsigned32,
hpicfOspfv3AsLsdbAddrPrefix
InetAddressIPv6,
hpicfOspfv3AsLsdbFwdingAddress
InetAddressIPv6,
hpicfOspfv3AsLsdbExtRouteTags
Unsigned32,
hpicfOspfv3AsLsdbRefLsId
Unsigned32,
hpicfOspfv3AsLsdbLsaLength
Unsigned32
}
hpicfOspfv3AsLsdbEFTFlags OBJECT-TYPE
SYNTAX BITS {
bitE(0), -- Type 1/Type 2 Metric
bitF(1), -- Forwarding Address present or not
bitT(2) -- External Route Tag
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "A 32-bit integer Representing the E,F and T bit
flags"
::= { hpicfOspfv3AsLsdbEntry 1 }
hpicfOspfv3AsLsdbMetric OBJECT-TYPE
SYNTAX Metric
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The cost associated with this route."
::= { hpicfOspfv3AsLsdbEntry 2 }
hpicfOspfv3AsLsdbPrefixLength OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The Prefix Length of the Address Prefix."
::= { hpicfOspfv3AsLsdbEntry 3 }
hpicfOspfv3AsLsdbPrefixOptions OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The Prefix Options associated with the Address
Prefix."
::= { hpicfOspfv3AsLsdbEntry 4 }
hpicfOspfv3AsLsdbRefLsType OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "If non-zero value, this refers to another LSA type
in Link State Database further identified by the Reference
Link State ID field"
::= { hpicfOspfv3AsLsdbEntry 5 }
hpicfOspfv3AsLsdbAddrPrefix OBJECT-TYPE
SYNTAX InetAddressIPv6
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The advertised 16-byte Address Prefix."
::= { hpicfOspfv3AsLsdbEntry 6 }
hpicfOspfv3AsLsdbFwdingAddress OBJECT-TYPE
SYNTAX InetAddressIPv6
MAX-ACCESS read-only
STATUS current
DESCRIPTION "If included, Data traffic for the advertised
destination will be forwarded to this address."
::= { hpicfOspfv3AsLsdbEntry 7 }
hpicfOspfv3AsLsdbExtRouteTags OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The 32-bit Route Tag for the advertised Route."
::= { hpicfOspfv3AsLsdbEntry 8 }
hpicfOspfv3AsLsdbRefLsId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The 32-bit Link state ID of the referenced LSA entry."
::= { hpicfOspfv3AsLsdbEntry 9 }
hpicfOspfv3AsLsdbLsaLength OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field describes the length of LSA."
::= { hpicfOspfv3AsLsdbEntry 10 }
-- OSPFv3 Area-Scope Link State Database
hpicfOspfv3AreaLsdbTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfOspfv3AreaLsdbEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The OSPFv3 Area-Scope link state database.
The LSDB contains the Area-Scope Link State
Advertisements from throughout the area that the
device is attached to."
::= { hpicfOspfv3Objects 3 }
hpicfOspfv3AreaLsdbEntry OBJECT-TYPE
SYNTAX HpicfOspfv3AreaLsdbEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A single Area-Scope Link State Advertisement."
AUGMENTS { ospfv3AreaLsdbEntry }
::= { hpicfOspfv3AreaLsdbTable 1 }
HpicfOspfv3AreaLsdbEntry ::= SEQUENCE {
hpicfOspfv3AreaLsdbRtrCapBits -- RTR
BITS,
hpicfOspfv3AreaLsdbOptions -- NTW
Unsigned32,
hpicfOspfv3AreaLsdbMetric -- RTR, NAP, NSA
Metric,
hpicfOspfv3AreaLsdbPrefixLength -- IAP, NSA
Unsigned32,
hpicfOspfv3AreaLsdbPrefixOptions -- IAP, NSA
Unsigned32,
hpicfOspfv3AreaLsdbAddrPrefix -- IAP, NSA
InetAddressIPv6,
hpicfOspfv3AreaLsdbDstRtrId -- IAR
Ospfv3RouterIdTC,
hpicfOspfv3AreaLsdbNumPrefixes -- NAP
Unsigned32,
hpicfOspfv3AreaLsdbRefLsType -- NAP, NSA
Unsigned32,
hpicfOspfv3AreaLsdbRefLsId -- NAP, NSA
Unsigned32,
hpicfOspfv3AreaLsdbRefAdvRtrId -- NAP
Ospfv3RouterIdTC,
hpicfOspfv3AreaLsdbEFTFlags
BITS, -- NSA
hpicfOspfv3AreaLsdbFwdingAddress
InetAddressIPv6, -- NSA
hpicfOspfv3AreaLsdbExtRouteTags
Unsigned32, -- NSA
hpicfOspfv3AreaLsdbLsaLength
Unsigned32,
hpicfOspfv3AreaLsdbLinks
Counter32
}
hpicfOspfv3AreaLsdbRtrCapBits OBJECT-TYPE
SYNTAX BITS {
bitV(0), -- Virtual Link router (Transit Area)
bitE(1), -- AS Boundary Router
bitB(2), -- Area Border Router
bitW(3), -- Wide-Card Multicast receiver (MOSPF only)
bitNt(4) -- NSSA Translation capabale ABR (RFC3101)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field is valid only for Router LSA. It
represents the capabilities of the router in the Area."
REFERENCE
"OSPF Version 3, Appendix A.4.2 Router LSAs, RFC5340"
::= { hpicfOspfv3AreaLsdbEntry 1 }
hpicfOspfv3AreaLsdbOptions OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The Options field enables OSPF routers to support
(or not support) optional capabilities, and to
communicate their capability level to other
OSPF routers. This field is valid if the LSA
is a Router LSA or a Network LSA, or an
Inter-Area-Router LSA."
REFERENCE
"OSPF Version 3, Appendix A.2 The Options field"
::= { hpicfOspfv3AreaLsdbEntry 2 }
hpicfOspfv3AreaLsdbMetric OBJECT-TYPE
SYNTAX Metric
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field is valid only for Router LSA, a
Inter-Area_prefix LSA or a NSSA LSA. This field
indicates the cost involved in using the
interface or route."
::= { hpicfOspfv3AreaLsdbEntry 3 }
hpicfOspfv3AreaLsdbPrefixLength OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The Prefix Length of the Address Prefix."
::= { hpicfOspfv3AreaLsdbEntry 4 }
hpicfOspfv3AreaLsdbPrefixOptions OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The Prefix Options associated with the Address
Prefix."
::= { hpicfOspfv3AreaLsdbEntry 5 }
hpicfOspfv3AreaLsdbAddrPrefix OBJECT-TYPE
SYNTAX InetAddressIPv6
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The advertised 16-byte Address Prefix."
::= { hpicfOspfv3AreaLsdbEntry 6 }
hpicfOspfv3AreaLsdbDstRtrId OBJECT-TYPE
SYNTAX Ospfv3RouterIdTC
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The Router ID of the router being described by
the LSA. This field is valid if
the LSA is a Inter-Area-Router LSA."
::= { hpicfOspfv3AreaLsdbEntry 7 }
hpicfOspfv3AreaLsdbNumPrefixes OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field is valid only for Inter-Area-Prefix LSA
and indicates the number of prefixes in the LSA."
::= { hpicfOspfv3AreaLsdbEntry 8 }
hpicfOspfv3AreaLsdbRefLsType OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field is valid only for Inter-Area-Prefix LSA
or a NSSA LSA. If non-zero, an LSA with this LS type is to be
associated with this LSA."
::= { hpicfOspfv3AreaLsdbEntry 9 }
hpicfOspfv3AreaLsdbRefLsId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field is valid only for Inter-Area-Prefix LSA
or a NSSA LSA. This field is included only if the
Reference LS Type field is set and identifies
the LSA with this Link State ID."
::= { hpicfOspfv3AreaLsdbEntry 10 }
hpicfOspfv3AreaLsdbRefAdvRtrId OBJECT-TYPE
SYNTAX Ospfv3RouterIdTC
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field is valid only for Inter-Area-Prefix LSA
or a NSSA LSA. This field is included only if the
Reference LS Type field is set and identifies the LSA
having this Router ID as the advertising Router ID."
::= { hpicfOspfv3AreaLsdbEntry 11 }
hpicfOspfv3AreaLsdbEFTFlags OBJECT-TYPE
SYNTAX BITS {
bitE(0), -- Type 1/Type 2 Metric
bitF(1), -- Forwarding Address present or not
bitT(2) -- External Route Tag
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field is valid only for NSSA LSA. This field
represents the E,F and T bit flags"
::= { hpicfOspfv3AreaLsdbEntry 12 }
hpicfOspfv3AreaLsdbFwdingAddress OBJECT-TYPE
SYNTAX InetAddressIPv6
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field is valid only for NSSA LSA. This field
is present only if the 'F' Bit is set in the EFT flags
field and if included, the data traffic for the
advertised destination will be forwarded to this
address."
::= { hpicfOspfv3AreaLsdbEntry 13 }
hpicfOspfv3AreaLsdbExtRouteTags OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field is valid only for NSSA LSA. This field
is present only if the 'T' Bit is set in the EFT flags
field. A 32-bit field which may be used to communicate
additional information between AS boundary routers."
::= { hpicfOspfv3AreaLsdbEntry 14 }
hpicfOspfv3AreaLsdbLsaLength OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field describes the length of LSA."
::= { hpicfOspfv3AreaLsdbEntry 15 }
hpicfOspfv3AreaLsdbLinks OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field describes the number of links."
::= { hpicfOspfv3AreaLsdbEntry 16 }
-- OSPFv3 Link-Scope Link State Database, for non-virtual
-- interfaces
hpicfOspfv3LinkLsdbTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfOspfv3LinkLsdbEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The OSPFv3 Link-Scope link state database(LSDB) for
non-virtual interfaces. The LSDB contains the
Link-Scope Link State Advertisements from the
interfaces that the device is attached to."
::= { hpicfOspfv3Objects 4 }
hpicfOspfv3LinkLsdbEntry OBJECT-TYPE
SYNTAX HpicfOspfv3LinkLsdbEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A single Link-Scope Link State Advertisement."
AUGMENTS { ospfv3LinkLsdbEntry }
::= { hpicfOspfv3LinkLsdbTable 1 }
HpicfOspfv3LinkLsdbEntry ::= SEQUENCE {
hpicfOspfv3LinkLsdbRtrPriority
Unsigned32,
hpicfOspfv3LinkLsdbOptions
Unsigned32,
hpicfOspfv3LinkLsdbLocalAddress
InetAddressIPv6,
hpicfOspfv3LinkLsdbNumPrefixes
Unsigned32,
hpicfOspfv3LinkLsdbLsaLength
Unsigned32
}
hpicfOspfv3LinkLsdbRtrPriority OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field is the OSPF priority set for this
router"
::= { hpicfOspfv3LinkLsdbEntry 1 }
hpicfOspfv3LinkLsdbOptions OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The Options field enables OSPF routers to support
(or not support) optional capabilities, and to
communicate their capability level to other
OSPF routers."
REFERENCE
"OSPF Version 3, Appendix A.2 The Options field"
::= { hpicfOspfv3LinkLsdbEntry 2 }
hpicfOspfv3LinkLsdbLocalAddress OBJECT-TYPE
SYNTAX InetAddressIPv6
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The advertising router's link local IPv6 address"
::= { hpicfOspfv3LinkLsdbEntry 3 }
hpicfOspfv3LinkLsdbNumPrefixes OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of other links on the advertising
router"
::= { hpicfOspfv3LinkLsdbEntry 4 }
hpicfOspfv3LinkLsdbLsaLength OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field describes the length of LSA."
::= { hpicfOspfv3LinkLsdbEntry 5 }
-- OSPFv3 Interface Table
hpicfOspfv3IfTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfOspfv3IfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The table describes the Ospfv3 interfaces."
REFERENCE
"OSPF Version 2, Appendix C.3 Router interface
parameters"
::= { hpicfOspfv3Objects 5 }
hpicfOspfv3IfEntry OBJECT-TYPE
SYNTAX HpicfOspfv3IfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The Entry describes one Ospfv3 interface."
AUGMENTS { ospfv3IfEntry }
::= { hpicfOspfv3IfTable 1 }
HpicfOspfv3IfEntry ::= SEQUENCE {
hpicfOspfv3IfPassive
TruthValue,
hpicfOspfv3IfNbrCount
Unsigned32,
hpicfOspfv3IfDRAddr
InetAddressIPv6,
hpicfOspfv3IfBDRAddr
InetAddressIPv6,
hpicfOspfv3IfHelloDueTime
Unsigned32,
hpicfOspfv3IfAdjNbrCount
Unsigned32
}
hpicfOspfv3IfPassive OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The passive state configuration of the OSPF
interface. In the passive mode no OSPF protocol messages are
exchanged on this interface.
true (1) - The interface is configured to work
in Passive mode
false (2) - The interface is configured to work
in normal mode.
This is the default configuration.
Changing the value will cause OSPF to reset on this
interface and make necessary adjustments to
the link state database.
All other operations are not defined and will not
affect the state of the protocol."
DEFVAL { false }
::= { hpicfOspfv3IfEntry 1 }
hpicfOspfv3IfNbrCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object specifies the number of OSPFv3 neighbors
reachable via this interface. This counter should be
incremented when a new neighbor is added in the network
in which this interface is present.
It should be decremented when a neighbor is disconnected."
::= { hpicfOspfv3IfEntry 2 }
hpicfOspfv3IfDRAddr OBJECT-TYPE
SYNTAX InetAddressIPv6
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object specifies link local ipv6 address of
Designated Router on the interface."
::= { hpicfOspfv3IfEntry 10 }
hpicfOspfv3IfBDRAddr OBJECT-TYPE
SYNTAX InetAddressIPv6
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object specifies link local ipv6 address
of Backup Designated Router on the interface."
::= { hpicfOspfv3IfEntry 11 }
hpicfOspfv3IfHelloDueTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object specifies the time remaining for the
hello timer for the particular Interface to expire."
::= { hpicfOspfv3IfEntry 12 }
hpicfOspfv3IfAdjNbrCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object specifies the number of fully
adjacent neighbors present on this interface.
This counter should be incremented when a new
neighbor becomes fully adjacent. It should be
decremented when the neighbor goes out from
full state."
::= { hpicfOspfv3IfEntry 13 }
-- OSPFv3 Neighbor Table
hpicfOspfv3NbrTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfOspfv3NbrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table describing all neighbors of the
of the OSPFv3 router."
REFERENCE
"OSPF Version 2, Section 10 The Neighbor Data
Structure"
::= { hpicfOspfv3Objects 6 }
hpicfOspfv3NbrEntry OBJECT-TYPE
SYNTAX HpicfOspfv3NbrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The information regarding a single neighbor."
REFERENCE
"OSPF Version 2, Section 10 The Neighbor Data
Structure"
AUGMENTS { ospfv3NbrEntry }
::= { hpicfOspfv3NbrTable 1 }
HpicfOspfv3NbrEntry ::= SEQUENCE {
hpicfOspfv3NbrUpTime
Unsigned32,
hpicfOspfv3NbrTimeToExpiry
Unsigned32,
hpicfOspfv3NbrDataBaseSummary
Gauge32,
hpicfOspfv3NbrLinkStateRequest
Gauge32,
hpicfOspfv3NbrRestartState
INTEGER
}
hpicfOspfv3NbrUpTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object specifies the time duration in
seconds for which the adjacency with a
particular neighbor is active.
This should be a monotonically increasing timer
for the duration till the adjacency is active.
This counter should be reset on losing
and re-establishing an adjacency"
::= {hpicfOspfv3NbrEntry 1}
hpicfOspfv3NbrTimeToExpiry OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object specifies the time remaining for the
dead timer for the particular neighbor to expire.
This counter thus specifies the time in seconds
left for an adjacency to be brought down in case
no hello packet is received during that interval."
::= {hpicfOspfv3NbrEntry 2}
hpicfOspfv3NbrDataBaseSummary OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of Link State Advertisements (LSA)
sent in Database Description (DD)packet."
::= {hpicfOspfv3NbrEntry 3}
hpicfOspfv3NbrLinkStateRequest OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of Link State Advertisements (LSA)
in link state request list."
::= {hpicfOspfv3NbrEntry 4}
hpicfOspfv3NbrRestartState OBJECT-TYPE
SYNTAX INTEGER {
normal(0),
helper(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Describes the Graceful Restart(GR) state.
normal(0) - Indicates normal status
helper(1) - Helper indicates the router is helping
another router which is currently in graceful
restart."
::= {hpicfOspfv3NbrEntry 5}
hpicfOspfv3IfStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfOspfv3IfStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table that contains OSPFv3 Interface traffic
specific statistics."
::= { hpicfOspfv3Objects 7 }
hpicfOspfv3IfStatsEntry OBJECT-TYPE
SYNTAX HpicfOspfv3IfStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A list of statistics counters maintained for an
OSPFv3 interface traffic information."
INDEX { ospfv3IfIndex,
ospfv3IfInstId
}
::= { hpicfOspfv3IfStatsTable 1 }
HpicfOspfv3IfStatsEntry ::=
SEQUENCE {
hpicfOspfv3IfSentHelloPkt
Counter32,
hpicfOspfv3IfSentDDPkt
Counter32,
hpicfOspfv3IfSentLSRPkt
Counter32,
hpicfOspfv3IfSentLSUPkt
Counter32,
hpicfOspfv3IfSentLSAPkt
Counter32,
hpicfOspfv3IfRcvdHelloPkt
Counter32,
hpicfOspfv3IfRcvdDDPkt
Counter32,
hpicfOspfv3IfRcvdLSRPkt
Counter32,
hpicfOspfv3IfRcvdLSUPkt
Counter32,
hpicfOspfv3IfRcvdLSAPkt
Counter32,
hpicfOspfv3IfSentTotalErrorCount
Counter32,
hpicfOspfv3IfRcvdTotalErrorCount
Counter32
}
hpicfOspfv3IfSentHelloPkt OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of OSPFv3 Hello packets sent on the
interface. This number is incremented each time
an OSPFv3 Hello packet is sent out of an
OSPFv3 enabled interface.
Discontinuities in the value of this counter can
occur at re-initialization of the management
system. The counters can be cleared for any
interface using 'clear ipv6 ospf3 statistics'
command"
::= { hpicfOspfv3IfStatsEntry 1 }
hpicfOspfv3IfSentDDPkt OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of Database Description packets
sent on the interface. This number is incremented each
time an OSPFv3 DD packet is sent out of an OSPFv3
enabled interface.
Discontinuities in the value of this counter
can occur at re-initialization of the management
system. The counters can be cleared for any
interface using 'clear ipv6 ospf3 statistics'
command"
::= { hpicfOspfv3IfStatsEntry 2 }
hpicfOspfv3IfSentLSRPkt OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of Link State Request packets sent on
the interface. This number is incremented each
time OSPFv3 LSR packet is sent out of an OSPFv3
enabled interface.
Discontinuities in the value of this counter
can occur at re-initialization of the management
system. The counters can be cleared for any
interface using 'clear ipv6 ospf3 statistics'
command"
::= { hpicfOspfv3IfStatsEntry 3 }
hpicfOspfv3IfSentLSUPkt OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of Link State Update packets sent on
the interface. This number is incremented each
time OSPFv3 LSU packet is sent out of an OSPFv3
enabled interface.
Discontinuities in the value of this counter
can occur at re-initialization of the management
system. The counters can be cleared for any
interface using 'clear ipv6 ospf3 statistics'
command."