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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
|
F3-OSPF-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
MODULE-IDENTITY, OBJECT-TYPE, Integer32, Unsigned32,
Gauge32, Counter32
FROM SNMPv2-SMI
RowStatus, StorageType, TEXTUAL-CONVENTION, TruthValue,
VariablePointer
FROM SNMPv2-TC
fsp150cm
FROM ADVA-MIB
RouterID, AreaID, HelloRange, DesignatedRouterPriority,
OspfAuthenticationType, ospfNbrEntry
FROM OSPF-MIB
cmIpInterfaceEntry, ipManagementTunnelEntry
FROM CM-IP-MIB
F3DisplayString
FROM CM-COMMON-MIB;
f3OspfMIB MODULE-IDENTITY
LAST-UPDATED "201802130000Z"
ORGANIZATION "ADVA Optical Networking SE"
CONTACT-INFO
"Web URL: http://adva.com/
E-mail: support@adva.com
Postal: ADVA Optical Networking SE
Campus Martinsried
Fraunhoferstrasse 9a
82152 Martinsried/Munich
Germany
Phone: +49 089 89 06 65 0
Fax: +49 089 89 06 65 199 "
DESCRIPTION
"This module defines the OSPF MIB definitions
used by the F3 (FSP150CM/CC) product lines.
Copyright (C) ADVA."
REVISION "201802130000Z"
DESCRIPTION
"
Notes from release 201802130000Z
(1) added the following attributes to f3OspfRouterTable
f3OspfRouterRipRedistributionEnabled,f3OspfRouterRipMetricType,f3OspfRouterRipMetric,
f3OspfRouterAsbrStatus
(2) obsoleted f3OspfRouterMetricType, f3OspfRouterMetric, f3OspfRouterRedistributionType
(3) added the following attributes to f3OspfIpInterfaceExtTable
f3OspfIpInterfaceExtOspfEnabled,f3OspfIpInterfaceExtOspfAreaId,f3OspfIpInterfaceExtPassiveEnabled
(4) obsoleted f3OspfIpInterfaceExtStatus,f3OspfIpInterfaceExtAreaId
(5) added the following attributes to f3OspfIpMgmtTunnelExtTable
f3OspfIpMgmtTunnelExtOspfEnabled,f3OspfIpMgmtTunnelExtOspfAreaId,f3OspfIpMgmtTunnelExtPassiveEnabled
(6) added two new tables: f3OspfLoopbackInterfaceExtTable, f3OspfAreaInterfaceTable
Notes from release 201410060000Z,
(1) MIB version ready for release FSP150CC 6.6.CC."
::= {fsp150cm 35}
OspfMetricType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The metric type can be specified to define
how the cost of redistributed routes are to be
calculated. A metric type of E1 means that
the redistribution cost plus the cost to the ASBR is
used for the route while a metric type of E2 means
that only the redistributed cost is used."
SYNTAX INTEGER {
e1 (1),
e2 (2)
}
OspfRedistributionType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Enables redistribution of routes of a specific
protocol or kind into OSPF. The only supported
type is RIP."
SYNTAX INTEGER {
none (1),
rip (2)
}
OspfState ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Allows user configuration of the behavior associated
with the OSPF interface.
ENABLED - OSPF is enabled and the interface
will send HELLOs and form adjacencies.
DISABLED - the interface is not advertised
and does not participate in OSPF message exchanges.
PASSIVE - the interface will be advertised as a stub
link but will not participate in OSPF message exchange."
SYNTAX INTEGER {
enabled (1),
disabled (2),
passive (3)
}
OspfAreaType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The OSPF area type."
SYNTAX INTEGER {
normal (1),
stub (2)
}
OspfRole ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The OSPF role of the neighbor router."
SYNTAX INTEGER {
bdr (1),
dr (2),
drother (3)
}
--
-- OID definitions
--
f3OspfConfigObjects OBJECT IDENTIFIER ::= {f3OspfMIB 1}
f3OspfConformance OBJECT IDENTIFIER ::= {f3OspfMIB 2}
--
-- OSPF Router
--
f3OspfRouterTable OBJECT-TYPE
SYNTAX SEQUENCE OF F3OspfRouterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of entries corresponding to OSPF Router
instance for configuration purposes."
::= { f3OspfConfigObjects 1 }
f3OspfRouterEntry OBJECT-TYPE
SYNTAX F3OspfRouterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row in the f3OspfRouterTable."
INDEX { f3OspfRouterIndex }
::= { f3OspfRouterTable 1 }
F3OspfRouterEntry ::= SEQUENCE {
f3OspfRouterIndex RouterID,
f3OspfRouterMetricType OspfMetricType,
f3OspfRouterMetric Integer32,
f3OspfRouterRedistributionType OspfRedistributionType,
f3OspfRouterNumAttachedAreas Unsigned32,
f3OspfRouterAreaBdrRtrStatus TruthValue,
f3OspfRouterStorageType StorageType,
f3OspfRouterRowStatus RowStatus,
f3OspfRouterRipRedistributionEnabled TruthValue,
f3OspfRouterRipMetricType OspfMetricType,
f3OspfRouterRipMetric Integer32,
f3OspfRouterAsbrStatus TruthValue
}
f3OspfRouterIndex OBJECT-TYPE
SYNTAX RouterID
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A 32-bit integer uniquely identifying the
router in the Autonomous System.
By convention, to ensure uniqueness, this
should default to the value of one of the
router's IP interface addresses."
::= { f3OspfRouterEntry 1 }
f3OspfRouterMetricType OBJECT-TYPE
SYNTAX OspfMetricType
MAX-ACCESS read-create
STATUS obsolete
DESCRIPTION
"The metric type can be specified to define how the cost of
redistributed routes are to be calculated. This attribute must
be set to zero if f3OspfRouterMetric has been specified."
::= { f3OspfRouterEntry 2 }
f3OspfRouterMetric OBJECT-TYPE
SYNTAX Integer32 (0..16777214)
MAX-ACCESS read-create
STATUS obsolete
DESCRIPTION
"The metric value to use as the default cost to be
associated with any redistributed routes. This attribute must be set
to zero if the f3OspfRouterMetricType has been specified"
::= { f3OspfRouterEntry 3 }
f3OspfRouterRedistributionType OBJECT-TYPE
SYNTAX OspfRedistributionType
MAX-ACCESS read-create
STATUS obsolete
DESCRIPTION
"The redistribution type is used to enable redistribution of routes of
a specified protocol."
::= { f3OspfRouterEntry 4 }
f3OspfRouterNumAttachedAreas OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of attached areas for the OSPF Router."
::= { f3OspfRouterEntry 5 }
f3OspfRouterAreaBdrRtrStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"A flag to note whether this router is an Area
Border Router."
::= { f3OspfRouterEntry 6 }
f3OspfRouterStorageType OBJECT-TYPE
SYNTAX StorageType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The type of storage configured for this entry."
::= { f3OspfRouterEntry 7 }
f3OspfRouterRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this row. An entry MUST NOT exist in the
active state unless all objects in the entry have an
appropriate value, as described
in the description clause for each writable object.
The values of f3OspfRouterRowStatus supported are
createAndGo(4) and destroy(6). All mandatory attributes
must be specified in a single SNMP SET request with
f3OspfRouterRowStatus value as createAndGo(4).
Upon successful row creation, this object has a
value of active(1).
The f3OspfRouterRowStatus object may be modified if
the associated instance of this object is equal to active(1)."
::= { f3OspfRouterEntry 8 }
f3OspfRouterRipRedistributionEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The redistribution control is used to enable redistribution of RIP routes."
::= { f3OspfRouterEntry 9 }
f3OspfRouterRipMetricType OBJECT-TYPE
SYNTAX OspfMetricType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The metric type can be specified to define how the cost of
redistributed RIP routes are to be calculated. This attribute must
be set to zero if f3OspfRipRouterMetric has been specified."
::= { f3OspfRouterEntry 10 }
f3OspfRouterRipMetric OBJECT-TYPE
SYNTAX Integer32 (0..16777214)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The metric value to use as the default cost to be
associated with any redistributed RIP routes. This attribute must be set
to zero if the f3OspfRouterRipMetricType has been specified"
::= { f3OspfRouterEntry 11 }
f3OspfRouterAsbrStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"A flag to note whether this router is an Autonomous System
Border Router."
::= { f3OspfRouterEntry 12 }
--
-- OSPF Area Table
--
f3OspfAreaTable OBJECT-TYPE
SYNTAX SEQUENCE OF F3OspfAreaEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of entries corresponding to OSPF Area
configuration purposes."
::= { f3OspfConfigObjects 2 }
f3OspfAreaEntry OBJECT-TYPE
SYNTAX F3OspfAreaEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row in the f3OspfAreaTable."
INDEX { f3OspfAreaId }
::= { f3OspfAreaTable 1 }
F3OspfAreaEntry ::= SEQUENCE {
f3OspfAreaId AreaID,
f3OspfAreaType OspfAreaType,
f3OspfAreaAuthType OspfAuthenticationType,
f3OspfAreaDefaultCost Unsigned32,
f3OspfAreaSpfRuns Counter32,
f3OspfAreaLsaCount Gauge32,
f3OspfAreaStorageType StorageType,
f3OspfAreaRowStatus RowStatus,
f3OspfAreaInterfaceList F3DisplayString
}
f3OspfAreaId OBJECT-TYPE
SYNTAX AreaID
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A 32-bit integer uniquely identifying an area.
Area ID 0.0.0.0 is used for the OSPF backbone."
::= { f3OspfAreaEntry 1 }
f3OspfAreaType OBJECT-TYPE
SYNTAX OspfAreaType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The type of an area."
::= { f3OspfAreaEntry 2 }
f3OspfAreaAuthType OBJECT-TYPE
SYNTAX OspfAuthenticationType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The authentication type specifies whether no authentication, simple
authentication, or MD5 authentication is required for this area. Keying
information must be configured on a per-interface basis. This only
applies to non-stubby areas."
::= { f3OspfAreaEntry 3 }
f3OspfAreaDefaultCost OBJECT-TYPE
SYNTAX Unsigned32 (0..16777215)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The default cost for summary LSA's announced to stubby areas. This only
applies to stubby areas."
::= { f3OspfAreaEntry 4 }
f3OspfAreaSpfRuns OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of the number of times the Shortest Path algorithm has been
run for this area."
::= { f3OspfAreaEntry 5 }
f3OspfAreaLsaCount OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of link state advertisements
in this area's link state database, excluding
AS-external LSAs."
::= { f3OspfAreaEntry 6 }
f3OspfAreaStorageType OBJECT-TYPE
SYNTAX StorageType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The type of storage configured for this entry."
::= { f3OspfAreaEntry 7 }
f3OspfAreaRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this row. An entry MUST NOT exist in the
active state unless all objects in the entry have an
appropriate value, as described
in the description clause for each writable object.
The values of f3OspfAreaRowStatus supported are
createAndGo(4) and destroy(6). All mandatory attributes
must be specified in a single SNMP SET request with
f3OspfAreaRowStatus value as createAndGo(4).
Upon successful row creation, this object has a
value of active(1).
The f3OspfAreaRowStatus object may be modified if
the associated instance of this object is equal to active(1)."
::= { f3OspfAreaEntry 8 }
f3OspfAreaInterfaceList OBJECT-TYPE
SYNTAX F3DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object only used to display trap and interface list.
Interfaces can be added via f3OspfAreaInterfaceTable."
::= { f3OspfAreaEntry 9 }
--
-- OSPF IP Interface Ext Table
--
f3OspfIpInterfaceExtTable OBJECT-TYPE
SYNTAX SEQUENCE OF F3OspfIpInterfaceExtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of entries corresponding to OSPF Interface
configuration purposes. This table extends cmIpInterfaceTable
from CM-IP-MIB."
::= { f3OspfConfigObjects 3 }
f3OspfIpInterfaceExtEntry OBJECT-TYPE
SYNTAX F3OspfIpInterfaceExtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row in the f3OspfIpInterfaceExtTable."
AUGMENTS { cmIpInterfaceEntry }
::= { f3OspfIpInterfaceExtTable 1 }
F3OspfIpInterfaceExtEntry ::= SEQUENCE {
f3OspfIpInterfaceExtStatus OspfState,
f3OspfIpInterfaceExtAreaId AreaID,
f3OspfIpInterfaceExtIfType INTEGER,
f3OspfIpInterfaceExtHelloInterval HelloRange,
f3OspfIpInterfaceExtRtrDeadInterval Integer32,
f3OspfIpInterfaceExtRetransInterval Integer32,
f3OspfIpInterfaceExtRtrPriority DesignatedRouterPriority,
f3OspfIpInterfaceExtCost Integer32,
f3OspfIpInterfaceExtAuthType OspfAuthenticationType,
f3OspfIpInterfaceExtAuthKey OCTET STRING,
f3OspfIpInterfaceExtOspfEnabled TruthValue,
f3OspfIpInterfaceExtOspfAreaId AreaID,
f3OspfIpInterfaceExtPassiveEnabled TruthValue
}
f3OspfIpInterfaceExtStatus OBJECT-TYPE
SYNTAX OspfState
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"The OSPF admin status for the IP Interface."
DEFVAL { enabled }
::= { f3OspfIpInterfaceExtEntry 1 }
f3OspfIpInterfaceExtAreaId OBJECT-TYPE
SYNTAX AreaID
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"The Area ID with which this IP Interface is associated."
DEFVAL { '00000000'H }
::= { f3OspfIpInterfaceExtEntry 2 }
f3OspfIpInterfaceExtIfType OBJECT-TYPE
SYNTAX INTEGER {
broadcast (1),
nbma (2),
pointToPoint (3),
pointToMultipoint (5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The OSPF interface type for the IP Interface."
::= { f3OspfIpInterfaceExtEntry 3 }
f3OspfIpInterfaceExtHelloInterval OBJECT-TYPE
SYNTAX HelloRange
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of seconds between OSPF Hello packets for the IP Interface."
DEFVAL { 10 }
::= { f3OspfIpInterfaceExtEntry 4 }
f3OspfIpInterfaceExtRtrDeadInterval OBJECT-TYPE
SYNTAX Integer32 (1..65535)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of seconds that must pass from the last received Hello
packet before a neighbor router is declared down."
DEFVAL { 40 }
::= { f3OspfIpInterfaceExtEntry 5 }
f3OspfIpInterfaceExtRetransInterval OBJECT-TYPE
SYNTAX Integer32 (1..65535)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of seconds for the Retransmit Timer Interval value for
the IP Interface. The value is used when retransmitting Database
Description and Link State Request packets."
DEFVAL { 5 }
::= { f3OspfIpInterfaceExtEntry 6 }
f3OspfIpInterfaceExtRtrPriority OBJECT-TYPE
SYNTAX DesignatedRouterPriority
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The OSPF router priority for the IP Interface. The router with the
highest priority will be more eligible to become Designated Router.
Setting the value to 0 makes the router ineligible to become the
Designated Router."
DEFVAL { 1 }
::= { f3OspfIpInterfaceExtEntry 7 }
f3OspfIpInterfaceExtCost OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The cost associated with the IP Interface for use in the Shortest
Path calculations."
::= { f3OspfIpInterfaceExtEntry 8 }
f3OspfIpInterfaceExtAuthType OBJECT-TYPE
SYNTAX OspfAuthenticationType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The OSPF authentication type for the IP Interface. This value
supersedes the authentication type defined for the Area."
DEFVAL { none }
::= { f3OspfIpInterfaceExtEntry 9 }
f3OspfIpInterfaceExtAuthKey OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..16))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The OSPF authentication key for the IP Interface.
If the authentication type is Simple, the authentication key is
limited to 8 characters. If the authentication type is MD5, the
authentication key is up to 16 characters."
DEFVAL { '0000000000000000'H }
::= { f3OspfIpInterfaceExtEntry 10 }
f3OspfIpInterfaceExtOspfEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The OSPF status for the IP Interface."
::= { f3OspfIpInterfaceExtEntry 11 }
f3OspfIpInterfaceExtOspfAreaId OBJECT-TYPE
SYNTAX AreaID
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Area ID with which this IP Interface is associated."
::= { f3OspfIpInterfaceExtEntry 12 }
f3OspfIpInterfaceExtPassiveEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The OSPF status for the IP Interface."
DEFVAL { false }
::= { f3OspfIpInterfaceExtEntry 13 }
--
-- OSPF IP Management Tunnel Ext Table
--
f3OspfIpMgmtTunnelExtTable OBJECT-TYPE
SYNTAX SEQUENCE OF F3OspfIpMgmtTunnelExtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of entries corresponding to OSPF Interface
configuration purposes. This table extends ipManagementTunnelTable
from CM-IP-MIB."
::= { f3OspfConfigObjects 4 }
f3OspfIpMgmtTunnelExtEntry OBJECT-TYPE
SYNTAX F3OspfIpMgmtTunnelExtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row in the f3OspfIpMgmtTunnelExtTable."
AUGMENTS { ipManagementTunnelEntry }
::= { f3OspfIpMgmtTunnelExtTable 1 }
F3OspfIpMgmtTunnelExtEntry ::= SEQUENCE {
f3OspfIpMgmtTunnelExtStatus OspfState,
f3OspfIpMgmtTunnelExtAreaId AreaID,
f3OspfIpMgmtTunnelExtIfType INTEGER,
f3OspfIpMgmtTunnelExtHelloInterval HelloRange,
f3OspfIpMgmtTunnelExtRtrDeadInterval Integer32,
f3OspfIpMgmtTunnelExtRetransInterval Integer32,
f3OspfIpMgmtTunnelExtRtrPriority DesignatedRouterPriority,
f3OspfIpMgmtTunnelExtCost Integer32,
f3OspfIpMgmtTunnelExtAuthType OspfAuthenticationType,
f3OspfIpMgmtTunnelExtAuthKey OCTET STRING,
f3OspfIpMgmtTunnelExtOspfEnabled TruthValue,
f3OspfIpMgmtTunnelExtOspfAreaId AreaID,
f3OspfIpMgmtTunnelExtPassiveEnabled TruthValue
}
f3OspfIpMgmtTunnelExtStatus OBJECT-TYPE
SYNTAX OspfState
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The OSPF admin status for the IP Management Tunnel."
DEFVAL { enabled }
::= { f3OspfIpMgmtTunnelExtEntry 1 }
f3OspfIpMgmtTunnelExtAreaId OBJECT-TYPE
SYNTAX AreaID
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Area ID with which this IP Management Tunnel is associated."
DEFVAL { '00000000'H }
::= { f3OspfIpMgmtTunnelExtEntry 2 }
f3OspfIpMgmtTunnelExtIfType OBJECT-TYPE
SYNTAX INTEGER {
broadcast (1),
nbma (2),
pointToPoint (3),
pointToMultipoint (5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The OSPF interface type for the IP Management Tunnel."
::= { f3OspfIpMgmtTunnelExtEntry 3 }
f3OspfIpMgmtTunnelExtHelloInterval OBJECT-TYPE
SYNTAX HelloRange
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of seconds between OSPF Hello packets
for the IP Management Tunnel."
DEFVAL { 10 }
::= { f3OspfIpMgmtTunnelExtEntry 4 }
f3OspfIpMgmtTunnelExtRtrDeadInterval OBJECT-TYPE
SYNTAX Integer32 (1..65535)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of seconds that must pass from the last received Hello
packet before a neighbor router is declared down."
DEFVAL { 40 }
::= { f3OspfIpMgmtTunnelExtEntry 5 }
f3OspfIpMgmtTunnelExtRetransInterval OBJECT-TYPE
SYNTAX Integer32 (1..65535)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of seconds for the Retransmit Timer Interval value for
the IP Interface. The value is used when retransmitting Database
Description and Link State Request packets."
DEFVAL { 5 }
::= { f3OspfIpMgmtTunnelExtEntry 6 }
f3OspfIpMgmtTunnelExtRtrPriority OBJECT-TYPE
SYNTAX DesignatedRouterPriority
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The OSPF router priority for the IP Management Tunnel.
The router with the highest priority will be more eligible
to become Designated Router. Setting the value to 0 makes
the router ineligible to become the Designated Router."
DEFVAL { 1 }
::= { f3OspfIpMgmtTunnelExtEntry 7 }
f3OspfIpMgmtTunnelExtCost OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The cost associated with the IP Management Tunnel for use in the
Shortest Path calculations."
::= { f3OspfIpMgmtTunnelExtEntry 8 }
f3OspfIpMgmtTunnelExtAuthType OBJECT-TYPE
SYNTAX OspfAuthenticationType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The OSPF authentication type for the IP Management Tunnel. This value
supersedes the authentication type defined for the Area."
DEFVAL { none }
::= { f3OspfIpMgmtTunnelExtEntry 9 }
f3OspfIpMgmtTunnelExtAuthKey OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..16))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The OSPF authentication key for the IP Management Tunnel.
If the authentication type is Simple, the authentication key is
limited to 8 characters. If the authentication type is MD5, the
authentication key is up to 16 characters."
DEFVAL { '0000000000000000'H }
::= { f3OspfIpMgmtTunnelExtEntry 10 }
f3OspfIpMgmtTunnelExtOspfEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The OSPF status for the Management Tunnel."
::= { f3OspfIpMgmtTunnelExtEntry 11 }
f3OspfIpMgmtTunnelExtOspfAreaId OBJECT-TYPE
SYNTAX AreaID
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Area ID with which this Management Tunnel is associated."
::= { f3OspfIpMgmtTunnelExtEntry 12 }
f3OspfIpMgmtTunnelExtPassiveEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The OSPF Passive mode for the Management Tunnel."
DEFVAL { false }
::= { f3OspfIpMgmtTunnelExtEntry 13 }
--
-- OSPF Neighbor Ext Table
--
f3OspfNbrExtTable OBJECT-TYPE
SYNTAX SEQUENCE OF F3OspfNbrExtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table extends ospfNbrTable from OSPF-MIB."
::= { f3OspfConfigObjects 5 }
f3OspfNbrExtEntry OBJECT-TYPE
SYNTAX F3OspfNbrExtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row in the f3OspfNbrExtTable."
AUGMENTS { ospfNbrEntry }
::= { f3OspfNbrExtTable 1 }
F3OspfNbrExtEntry ::= SEQUENCE {
f3OspfNbrExtRole OspfRole
}
f3OspfNbrExtRole OBJECT-TYPE
SYNTAX OspfRole
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The OSPF role for this neighbor router."
::= { f3OspfNbrExtEntry 1 }
--
-- OSPF Loopback IP Interface Ext Table
--
f3OspfLoopbackInterfaceExtTable OBJECT-TYPE
SYNTAX SEQUENCE OF F3OspfLoopbackInterfaceExtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of entries corresponding to OSPF Interface
configuration purposes. This table extends cmIpInterfaceTable
from CM-IP-MIB."
::= { f3OspfConfigObjects 6 }
f3OspfLoopbackInterfaceExtEntry OBJECT-TYPE
SYNTAX F3OspfLoopbackInterfaceExtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row in the f3OspfLoopbackInterfaceExtTable."
AUGMENTS { ipLoopbackInterfaceEntry }
::= { f3OspfLoopbackInterfaceExtTable 1 }
F3OspfLoopbackInterfaceExtEntry ::= SEQUENCE {
f3OspfLoopbackInterfaceExtStatus TruthValue,
f3OspfLoopbackInterfaceExtAreaId AreaID
}
f3OspfLoopbackInterfaceExtStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The OSPF admin status for the Loopback Interface."
::= { f3OspfLoopbackInterfaceExtEntry 1 }
f3OspfLoopbackInterfaceExtAreaId OBJECT-TYPE
SYNTAX AreaID
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Area ID with which this Loopback Interface is associated."
::= { f3OspfLoopbackInterfaceExtEntry 2 }
--
-- OSPF Area Interface List Table
--
f3OspfAreaInterfaceTable OBJECT-TYPE
SYNTAX SEQUENCE OF F3OspfAreaInterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of entries corresponding to Interfaces associated
with an OSPF Area."
::= { f3OspfConfigObjects 7 }
f3OspfAreaInterfaceEntry OBJECT-TYPE
SYNTAX F3OspfAreaInterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row in the f3OspfAreaInterfaceTable."
INDEX { f3OspfAreaId, f3OspfAreaInterface }
::= { f3OspfAreaInterfaceTable 1 }
F3OspfAreaInterfaceEntry ::= SEQUENCE {
f3OspfAreaInterface VariablePointer,
f3OspfAreaInterfaceStorageType StorageType,
f3OspfAreaInterfaceRowStatus RowStatus
}
f3OspfAreaInterface OBJECT-TYPE
SYNTAX VariablePointer
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The interface associated with the OSPF area."
::= { f3OspfAreaInterfaceEntry 1}
f3OspfAreaInterfaceStorageType OBJECT-TYPE
SYNTAX StorageType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The type of storage configured for this entry."
::= { f3OspfAreaInterfaceEntry 2 }
f3OspfAreaInterfaceRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this row.
An entry MUST NOT exist in the active state unless all
objects in the entry have an appropriate value, as described
in the description clause for each writable object.
The values of f3VrfTrafficIpIfMemberRowStatus supported are
createAndGo(4) and destroy(6). All mandatory attributes
must be specified in a single SNMP SET request with
f3VrfTrafficIpIfMemberRowStatus value as createAndGo(4).
Upon successful row creation, this object has a
value of active(1).
The f3OspfAreaInterfaceRowStatus object may be modified if
the associated instance of this object is equal to active(1)."
::= { f3OspfAreaInterfaceEntry 3 }
--
-- Conformance
--
f3OspfCompliances OBJECT IDENTIFIER ::= {f3OspfConformance 1}
f3OspfGroups OBJECT IDENTIFIER ::= {f3OspfConformance 2}
f3OspfCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"Describes the requirements for conformance to the F3-OSPF-MIB compilance."
MODULE -- this module
MANDATORY-GROUPS {
f3OspfRouterGroup, f3OspfAreaGroup,
f3OspfIpInterfaceExtGroup, f3OspfIpMgmtTunnelExtGroup,
f3OspfNbrExtGroup, f3OspfLoopbackInterfaceExtGroup,
f3OspfAreaInterfaceGroup
}
::= { f3OspfCompliances 1 }
f3OspfRouterGroup OBJECT-GROUP
OBJECTS {
f3OspfRouterMetricType,
f3OspfRouterMetric,
f3OspfRouterRedistributionType,
f3OspfRouterNumAttachedAreas,
f3OspfRouterAreaBdrRtrStatus,
f3OspfRouterStorageType,
f3OspfRouterRowStatus,
f3OspfRouterRipRedistributionEnabled,
f3OspfRouterRipMetricType,
f3OspfRouterRipMetric,
f3OspfRouterAsbrStatus
}
STATUS current
DESCRIPTION
"A collection of objects used to manage the OSPF Router."
::= { f3OspfGroups 1 }
f3OspfAreaGroup OBJECT-GROUP
OBJECTS {
f3OspfAreaId,
f3OspfAreaType,
f3OspfAreaAuthType,
f3OspfAreaDefaultCost,
f3OspfAreaSpfRuns,
f3OspfAreaLsaCount,
f3OspfAreaStorageType,
f3OspfAreaRowStatus,
f3OspfAreaInterfaceList
}
STATUS current
DESCRIPTION
"A collection of objects used to manage the OSPF Area."
::= { f3OspfGroups 2 }
f3OspfIpInterfaceExtGroup OBJECT-GROUP
OBJECTS {
f3OspfIpInterfaceExtStatus,
f3OspfIpInterfaceExtAreaId,
f3OspfIpInterfaceExtIfType,
f3OspfIpInterfaceExtHelloInterval,
f3OspfIpInterfaceExtRtrDeadInterval,
f3OspfIpInterfaceExtRetransInterval,
f3OspfIpInterfaceExtRtrPriority,
f3OspfIpInterfaceExtCost,
f3OspfIpInterfaceExtAuthType,
f3OspfIpInterfaceExtAuthKey,
f3OspfIpInterfaceExtOspfEnabled,
f3OspfIpInterfaceExtOspfAreaId,
f3OspfIpInterfaceExtPassiveEnabled
}
STATUS current
DESCRIPTION
"A collection of objects used to manage OSPF configuration
of IP Interface."
::= { f3OspfGroups 3 }
f3OspfIpMgmtTunnelExtGroup OBJECT-GROUP
OBJECTS {
f3OspfIpMgmtTunnelExtStatus,
f3OspfIpMgmtTunnelExtAreaId,
f3OspfIpMgmtTunnelExtIfType,
f3OspfIpMgmtTunnelExtHelloInterval,
f3OspfIpMgmtTunnelExtRtrDeadInterval,
f3OspfIpMgmtTunnelExtRetransInterval,
f3OspfIpMgmtTunnelExtRtrPriority,
f3OspfIpMgmtTunnelExtCost,
f3OspfIpMgmtTunnelExtAuthType,
f3OspfIpMgmtTunnelExtAuthKey,
f3OspfIpMgmtTunnelExtOspfEnabled,
f3OspfIpMgmtTunnelExtOspfAreaId,
f3OspfIpMgmtTunnelExtPassiveEnabled
}
STATUS current
DESCRIPTION
"A collection of objects used to manage OSPF configuration
of IP Management Tunnel."
::= { f3OspfGroups 4 }
f3OspfNbrExtGroup OBJECT-GROUP
OBJECTS {
f3OspfNbrExtRole
}
STATUS current
DESCRIPTION
"A collection of objects used to manage OSPF configuration
of OSPF Neighbor."
::= { f3OspfGroups 5 }
f3OspfLoopbackInterfaceExtGroup OBJECT-GROUP
OBJECTS {
f3OspfLoopbackInterfaceExtStatus,
f3OspfLoopbackInterfaceExtAreaId
}
STATUS current
DESCRIPTION
"A collection of objects used to manage OSPF configuration
of IP loopback interface"
::= { f3OspfGroups 6 }
f3OspfAreaInterfaceGroup OBJECT-GROUP
OBJECTS {
f3OspfAreaInterface,
f3OspfAreaInterfaceStorageType,
f3OspfAreaInterfaceRowStatus
}
STATUS current
DESCRIPTION
"A collection of objects used to manage configuration
of OSPF area interfaces"
::= { f3OspfGroups 7 }
END
|