-
Notifications
You must be signed in to change notification settings - Fork 29
/
923switch.m.txt
13377 lines (12136 loc) · 504 KB
/
923switch.m.txt
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
--
-- Switch MIB Release: 9.2
--
-- Compatible StrataView Plus Release: 9.2
--
STRATACOM-MIB
--FORCE-INCLUDE <snmp_auxfuncs.h>
--FORCE-INCLUDE <snmp_asn1.h>
--FORCE-INCLUDE <snmp_mib.h>
--FORCE-INCLUDE <snmp_buffer.h>
--FORCE-INCLUDE <snmpdefs.h>
--FORCE-INCLUDE <atmf.h>
--FORCE-INCLUDE <proto/nwapps/null_set.h>
-- all functions can use %n for object name and
-- %t for object type, %p for parent name,
-- %d for name of default-bearing node and %% for %
--DEFAULT test-function it_exists
--DEFAULT set-function null_set_proc
--DEFAULT get-function get_%n
--DEFAULT next-function std_next
--DEFAULT view-mask PUBLIC_VIEW
--DEFAULT cookie (char *)NULL
--DEFAULT locator 0
DEFINITIONS ::= BEGIN
-- This MIB has not been officially released to the N.I.C.
IMPORTS
enterprises, Counter, IpAddress FROM RFC1155-SMI
OBJECT-TYPE FROM RFC-1212
DisplayString FROM RFC1213-MIB;
stratacom OBJECT IDENTIFIER ::= { enterprises 351 }
strmErrors OBJECT IDENTIFIER ::= { stratacom 910}
snmpAgents OBJECT IDENTIFIER ::= { stratacom 100}
strmSwitchMIB OBJECT IDENTIFIER ::= { snmpAgents 4 }
switchInterfaces OBJECT IDENTIFIER ::= { strmSwitchMIB 1 }
switchServiceObjects OBJECT IDENTIFIER ::= { strmSwitchMIB 2 }
switchConnection OBJECT IDENTIFIER ::= { strmSwitchMIB 3 }
switchShelf OBJECT IDENTIFIER ::= { strmSwitchMIB 4 }
switchMedia OBJECT IDENTIFIER ::= { strmSwitchMIB 5 }
frServiceObjects OBJECT IDENTIFIER ::= { switchServiceObjects 1 }
atmServiceObjects OBJECT IDENTIFIER ::= { switchServiceObjects 2 }
voiceServiceObjects OBJECT IDENTIFIER ::= { switchServiceObjects 3 }
trunkServiceObjects OBJECT IDENTIFIER ::= { switchServiceObjects 4 }
lineServiceObjects OBJECT IDENTIFIER ::= { switchServiceObjects 5 }
rsrcServiceObjects OBJECT IDENTIFIER ::= { switchServiceObjects 6 }
shelfCnfgObjects OBJECT IDENTIFIER ::= { switchShelf 1 }
shelfInfoObjects OBJECT IDENTIFIER ::= { switchShelf 2 }
shelfTrapObjects OBJECT IDENTIFIER ::= { switchShelf 3 }
--
-- The following product IDs are also defined in CISCO-PRODUCTS-MIB.oid
-- on Cisco's Web.
--
-- The object identifiers that are
-- assigned to various hardware platforms, and hence are
-- returned as values for sysObjectID
--
cisco OBJECT IDENTIFIER ::= { enterprises 9 }
ciscoProducts OBJECT IDENTIFIER ::= { cisco 1 }
-- ciscoIGX8410: Cisco IGX 8400 (Integrated Gigabit eXchange) series
-- wide-area switch with 8 slots
-- ciscoIGX8420: Cisco IGX 8400 (Integrated Gigabit eXchange) series
-- wide-area switch with 16 slots
-- ciscoIGX8430: Cisco IGX 8400 (Integrated Gigabit eXchange) series
-- wide-area switch with 32 slots
-- ciscoIGX8450 Cisco IGX 8400 (Integrated Gigabit eXchange) series
-- wide-area switch with integrated internal MGX feeder
--
ciscoIGX8410 OBJECT IDENTIFIER ::= { ciscoProducts 232 }
ciscoIGX8420 OBJECT IDENTIFIER ::= { ciscoProducts 233 }
ciscoIGX8430 OBJECT IDENTIFIER ::= { ciscoProducts 234 }
ciscoIGX8450 OBJECT IDENTIFIER ::= { ciscoProducts 235 }
--
-- ciscoBPX8620: Cisco BPX 8600 (Broadband Packet eXchange) series
-- basic wide-area switch with 15 slots
-- ciscoBPX8650 Cisco BPX 8600 (Braoadband Packet eXchange) series
-- wide-area switch with integrated tag switching controller
-- and 15 slots
-- ciscoBPX8680 Cisco BPX 8600 (Broadband Packet eXchange) series
-- wide-area switch with integrated MGX feeder and 15 slots
--
ciscoBPX8620 OBJECT IDENTIFIER ::= { ciscoProducts 237 }
ciscoBPX8650 OBJECT IDENTIFIER ::= { ciscoProducts 238 }
ciscoBPX8680 OBJECT IDENTIFIER ::= { ciscoProducts 239 }
-- The following describes the MIB variables for the switchIFTable.
-- This table supports functions equivalent to CLI commands uptrk,
-- dntrk, addtrk, deltrk, upln, dnln. Described below are the objects
-- and correct values to be given for each case:
--
-- ifindex = switchIfSlot * 1,000,000 + switchIfPort * 10,000 +
-- switchIfSubPort
--
--------
--Trunks
--------
--
--
--
--. uptrk
-- . IMA Routing Trunks ( UXM on IGX )
-- . switchIfAdmStatus = up(1)
-- . switchIfService = imaRoutingTrk(11)
-- . switchPhysPorts = Valid bit-map of ports.
-- . If only one or none of the bits are set in the bit map,
-- then GenErr error will be returned.
--
--. uptrk
-- . ATM Routing Trunks (BNI, BXM)
-- . switchIfAdmStatus = up(1)
-- . switchIfService = atmRoutingTrk(6)
-- . Axis Feeder Trunks
-- . switchIfAdmStatus = up(1)
-- . switchIfService = atmRoutingTrk(6) or
-- atmAxisIntfTrk(7)
-- . IPX Feeder Trunks
-- . switchIfAdmStatus = up(1)
-- . switchIfService = atmRoutingTrk(6) or
-- atmIPXAFIntfTrk(8)
--
-- . ESP Feeder Trunks
-- . switchIfAdmStatus = up(1)
-- . switchIfService = atmRoutingTrk(6)
--
-- . VSI Feeder Trunks
-- . switchIfAdmStatus = up(1)
-- . switchIfService = atmRoutingTrk(6)
--
-- . PAR Feeder Trunks
-- . switchIfAdmStatus = up(1)
-- . switchIfService = atmRoutingTrk(6)
--
--. dntrk
-- . ATM Trunks (BNI, BXM)
-- . switchIfAdmStatus = down(2)
-- . switchIfService = atmRoutingTrk(6)
--
-- . Axis Feeders
-- . switchIfAdmStatus = down(2)
-- . switchIfService = atmRoutingTrk(6)
--
-- . IPX Feeders
-- . switchIfAdmStatus = down(2)
-- . switchIfService = atmRoutingTrk(6)
--
-- . ESP Feeder Trunks
-- . switchIfAdmStatus = down(2)
-- . switchIfService = atmRoutingTrk(6)
--
-- . VSI Feeder Trunks
-- . switchIfAdmStatus = down(2)
-- . switchIfService = atmRoutingTrk(6)
--
-- . PAR Feeder Trunks
-- . switchIfAdmStatus = down(2)
-- . switchIfService = atmRoutingTrk(6)
--
--. addtrk
-- . IMA Routing Trunk
-- . switchIfAdmStatus = added(6)
-- . switchIfService = imaRoutingTrk(11)
--
-- . ATM Routing Trunks (BNI, BXM)
-- . switchIfAdmStatus = added(6)
-- . switchIfService = atmRoutingTrk(6)
--
-- ---------------------------------
-- Adding a physical/virtual trunk:
-- ---------------------------------
-- -----------------------------------------------------------------------------
-- | Before addtrk | After addtrk |
-- -----------------------------------------------------------------------------
-- Trunk Params | PHY TRK | VIR TRK | PHY TRK | VIR TRK |
-- -----------------------------------------------------------------------------
-- atmTrkXmitRate | Yes | Yes | No | No |
-- atmTrksResChans | No | Yes | No | Yes |
-- atmTrkVPI | No | Yes | No | No |
-- atmTrkType | No | Yes | No | No |
-- atmTrkTrfCls | Yes | Yes | Yes | Yes |
-- atmTrkPassSync | Yes | Yes | Yes | Yes |
-- atmTrkStatRes | Yes | Yes | Yes | Yes |
-- atmTrkLoopClock | Yes | Yes | Yes | Yes |
-- atmTrkSvcChannels | Yes | No | No | No |
-- atmTrkSvcBw | Yes | No | No | No |
-- -----------------------------------------------------------------------------
--
-- Note: Above table lists ATM trunk parameters which can be configured before
-- addtrk or after. This table can be refererence before adding a trunk
-- or after adding a trunk.
--
--
--
--. deltrk
-- . IMA Routing Trunk
-- . switchIfAdmStatus = deleted(7)
-- . switchIfService = imaRoutingTrk(11)
--
-- . ATM Routing Trunks (BNI, BXM, UXM, BTM)
-- . switchIfAdmStatus = deleted(7)
-- . switchIfService = atmRoutingTrk(6)
--
--. addshelf
-- . Axis Feeders
-- . switchIfAdmStatus = added(6)
-- . switchIfService = atmAxisIntfTrk(7)
--
-- . IPX Feeders
-- . switchIfAdmStatus = added(6)
-- . switchIfService = atmIPXAFIntfTrk(8)
--
-- . VSI shelf
-- . switchIfAdmStatus = added(6)
-- . switchIfService = atmVsiIntfTrk(13)
--
-- . PAR shelf
-- . switchIfAdmStatus = added(6)
-- . switchIfService = atmParIntfTrk(14)
--
--. delshelf
-- . Axis Feeders
-- . switchIfAdmStatus = deleted(7)
-- . switchIfService = atmAxisIntfTrk(7)
--
-- . IPX Feeders
-- . switchIfAdmStatus = deleted(7)
-- . switchIfService = atmIPXAFIntfTrk(8)
--
-- . VSI shelf
-- . switchIfAdmStatus = deleted(7)
-- . switchIfService = atmVsiIntfTrk(13)
--
-- . PAR shelf
-- . switchIfAdmStatus = deleted(7)
-- . switchIfService = atmParIntfTrk(14)
--
-- . Walk on switchIfTable for imaRoutingTrk
-- . First trunk in forming IMA will have
-- . switchIfService = imaRoutingTrk(11)
-- . Remainitng trunks forming this IMA trunks will have:
-- . switchIfService = physicalMedia(12)
-- . switchPhysPorts = Valid bit-map of ports.
--
--------
--Lines
-------
--. upln
-- . ATM Access Line (ASI, BXM)
-- . switchIfAdmStatus = up(1)
-- . switchIfService = atmAccessLine(3)
--
--
--. dnln
-- . ATM Access Line (ASI, BXM)
-- . switchIfAdmStatus = down(2)
-- . switchIfService = atmAccessLine(3)
--
-- The following describes the MIB variables for the switchIFTable.
switchIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF SwitchIfEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "A list of ports and subports, and their interfaces"
--DEFAULT test-function test_switchiftable
--DEFAULT next-function next_switchiftable
--DEFAULT get-function get_switchiftable_%t
::= { switchInterfaces 1 }
switchIfEntry OBJECT-TYPE
SYNTAX SwitchIfEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "A slot-port-subport entry"
INDEX { switchIfIndex }
::= { switchIfTable 1 }
SwitchIfEntry ::=
SEQUENCE {
switchIfIndex INTEGER,
switchIfSlot INTEGER,
switchIfPort INTEGER,
switchIfSubPort INTEGER,
switchIfMediaType INTEGER,
switchIfService INTEGER,
switchIfAdmStatus INTEGER,
switchIfOperStatus INTEGER,
switchIfPhysPort INTEGER,
switchIfPartiId INTEGER,
switchIfCtrlerId INTEGER,
switchIfScTmpltId INTEGER,
switchIfCtrlVPI INTEGER,
switchIfCtrlVCIStart INTEGER
}
switchIfIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "The interface number is the index for the switchIfTable,
as well as the switchMedia tables and the Trunk Service
tables. The switchIFIndex will be an INTEGER with the
value related to the slot, port, and subport as follows:
switchIFIndex = (slot x 1000000)+(port x 10000)+(subport);"
::= { switchIfEntry 1 }
switchIfSlot OBJECT-TYPE
SYNTAX INTEGER (1..32)
ACCESS read-only
STATUS mandatory
DESCRIPTION "The slot number."
::= { switchIfEntry 2 }
switchIfPort OBJECT-TYPE
SYNTAX INTEGER (1..32)
ACCESS read-only
STATUS mandatory
DESCRIPTION "The port number."
::= { switchIfEntry 3 }
switchIfSubPort OBJECT-TYPE
SYNTAX INTEGER (0..32)
ACCESS read-only
STATUS mandatory
DESCRIPTION "The subport number, used to identify virtual trunks."
::= { switchIfEntry 4 }
switchIfMediaType OBJECT-TYPE
SYNTAX INTEGER {
other(1),
ds1(18),
serialPort(22),
ds3(30),
sonet(39)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "The type of interface. This object is normally used to
provide information about a media layer, such as ds1, ds3,
or sonet."
::= { switchIfEntry 5 }
switchIfService OBJECT-TYPE
SYNTAX INTEGER {
other(1),
frameRelay(2),
atmAccessPort(3),
voiceData(4),
fpRoutingTrk(5),
atmRoutingTrk(6),
atmAxisIntfTrk(7),
atmIPXAFIntfTrk(8),
atmFdrIntfTrk(9),
atmAPSIntfTrk(10),
imaRoutingTrunk(11),
physicalMedia(12),
atmVsiIntfTrk(13),
atmParIntfTrk(14)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "User requested service for logical interface table row.
atmVsiIntfTrk is only available for BXM resource on BPX.
IPX cannot support the service."
::= { switchIfEntry 6 }
switchIfAdmStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1),
down(2),
added(6),
deleted(7),
setbitmap(8),
assginScTmplt(9)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "User requested state for logical interface table row.
A user may up, down, add, or delete an interface.
The set-request PDU should contain values for both
switchIFService and switchAdmStatus. A logical row
can be created in the switchIfTable by combining an
appropriate switchIFService and switchAdmStatus up(1).
switchIFService and switchAdmStatus. A logical row
can be deleted from the switchIfTable by combining an
appropriate switchIFService and switchAdmStatus down(2).
The values for added(6) and deleted(7) can be used
only with a valid Trunk switchIfService (5..8)."
::= { switchIfEntry 7 }
switchIfOperStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1),
down(2),
testing(3),
unknown(4),
dormant(5),
added(6)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "The current state for logical interface table row."
::= { switchIfEntry 8 }
switchIfPhysPort OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "This Integer is a Bit map specifying which physical ports
are used by the IMA trunk. Bits corresponding to the physical
ports forming this IMA trunk will be set to 1. Using this
Integer we can represent maximum 32 ports.
For regular ATM Routing trunk bit related to that port will be
set. For access lines this field is unused and will return -1.
For example:
Value Ports used Trunk Type
_______________________________________________
0 Invalid Invalid
1 1 ATM RoutingTrk
2 2 ATM RoutingTrk
3 1 & 2 IMA RoutingTrk
4 3 ATM RoutingTrk
5 1 & 3 IMA RoutingTrk
15 1,2,3 & 4 IMA RoutingTrk
"
::= { switchIfEntry 9}
switchIfPartiId OBJECT-TYPE
SYNTAX INTEGER (0..2)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The partition ID for logical interface table row.
A partition in the BXM resource is dedicated for
control by the corresponding VSI Master. There may
be more than one VSI Master assigned to a partition.
This is limited to the number of lcns available on
the BXM card. The partition is not available for any
other cards. 0 indicates non-existent partition for
all non-VSI controllers. Number of partitions supported
is one for 9.1 release and 9.2 initial release.
"
::= { switchIfEntry 10 }
switchIfCtrlerId OBJECT-TYPE
SYNTAX INTEGER (-1..32)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The controller ID for logical interface table row.
The ID in the BXM resource is used to identify
a VSI master. All masters controlling the same partition
must have unique controller id.
-1 indicates an invalid controller ID"
::= { switchIfEntry 11 }
switchIfScTmpltId OBJECT-TYPE
SYNTAX INTEGER (1..3)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The Service Class Template Identifier for the logical
interface. A Service Template Id can be assigned to a
logical interface. The interface will then use the
Service Classes and associated qbins in that template,
for VSI controller requests. -1 indicates that the template
object does not apply to this interface.
The current templates are supported in this release:
Template 1: MPLS service classes
Template 2: ATMF service classes/ UPC enabled
template 3: ATMF service classes/ UPC disabled."
::= { switchIfEntry 12 }
switchIfCtrlVPI OBJECT-TYPE
SYNTAX INTEGER (0..4095)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The control VPI for logical interface table
row. The VPI used for control VCs from the
VSI master connected to this interface
to each VSI slave on the node"
::= { switchIfEntry 13 }
switchIfCtrlVCIStart OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The control VCI start for logical interface
table row. The VCI used for control VCs from
the VSI master connected to this interface
to each VSI slave on the node. The VCI for
the control VC to VSI slave at slot n
(1<=n<=15) is given by VCIstart+(n-1)"
::= { switchIfEntry 14 }
-- The following describes the MIB variables for the frLportCnfTable.
-- This table provides the manager a detailed view of the logical ports
-- available on the switch.
frLportCnfTable OBJECT-TYPE
SYNTAX SEQUENCE OF FrLportCnfEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "The Frame Relay Logical Port Configuration table.
This table provides the following areas of information
on per port basis:
* Port identification
* Current admin & operation status
* Port-specific configuration
* LMI-related configuration
* Port error status
* Pointer(s) to other tables"
--DEFAULT test-function test_frlportcnftable
--DEFAULT next-function next_frlportcnftable
--DEFAULT get-function get_frlportcnftable_%t
--DEFAULT view-mask IPX_VIEW
::= { frServiceObjects 1 }
frLportCnfEntry OBJECT-TYPE
SYNTAX FrLportCnfEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "An entry in the Frame Relay Logical Port Configuration table.
Some entries that are applicable to a specific FRI interface
are indicated in the parenthesis, such as (FRI subrate/
T1/E1 interface only). Otherwise, they are used for both
interfaces."
INDEX { frLportSlotIndex , frLportPortIndex }
::= { frLportCnfTable 1 }
FrLportCnfEntry ::=
SEQUENCE {
frLportSlotIndex INTEGER,
frLportPortIndex INTEGER,
frLportPortDLCI INTEGER,
frLportAdminStatus INTEGER,
frLportOperStatus INTEGER,
frLportPortSpeed INTEGER,
frLportClockType INTEGER,
frLportPortType INTEGER,
frLportVcCount INTEGER,
frLportFirstVcPtr OBJECT IDENTIFIER,
frLportAggrChCnt INTEGER,
frLportChSpeed INTEGER,
frLportMaxTxQDepth INTEGER,
frLportECNQThresh INTEGER,
frLportDEThresh INTEGER,
frLportIDEMap INTEGER,
frLportSigProt INTEGER,
frLportNNIStatus INTEGER,
frLportAsynStatus INTEGER,
frLportPolVerTmr INTEGER,
frLportErrThresh INTEGER,
frLportMonEveCnt INTEGER,
frLportCommPri INTEGER,
frLportUpRNR INTEGER,
frLportLowRNR INTEGER,
frLportMinFrmFlgs INTEGER,
frLportOamThresh INTEGER,
frLportLinkTimer INTEGER,
frLportPollCycle INTEGER,
frLportCLLMTimer INTEGER,
frLportEFCItoBECN INTEGER,
frLportSrRTS INTEGER,
frLportSrDTR INTEGER,
frLportSrDCD INTEGER,
frLportSrCTS INTEGER,
frLportSrDSR INTEGER,
frLportLoopBack INTEGER,
frLportExtConFail INTEGER,
frLportLine INTEGER,
frLportStartCh INTEGER,
frLportExtProt INTEGER,
frLportDte INTEGER
}
frLportSlotIndex OBJECT-TYPE
SYNTAX INTEGER (1..32)
ACCESS read-only
STATUS mandatory
DESCRIPTION "The slot number"
::= { frLportCnfEntry 1 }
frLportPortIndex OBJECT-TYPE
SYNTAX INTEGER (1..32)
ACCESS read-only
STATUS mandatory
DESCRIPTION "The port number"
::= { frLportCnfEntry 2 }
frLportPortDLCI OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Port DLCI for Frame Forwarding (FRI subrate interface only).
- Get Operation:
If the network manager attempts to GET this object from a
T1/E1 port, SNMP_OBJ_NA (Object Not Applicable -1) is
returned."
::= { frLportCnfEntry 3 }
frLportAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1),
down(2),
modify(3),
writeOnly(4),
add(5),
delete(6)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "User requested state for logical port table row. A user
may up, down, configure, add and delete a FR Logical port.
- Get Operation:
writeOnly(4) is always returned.
- Set Operation:
. up/down/delete
No other objects are needed.
. modify
Refer to the user guide for combination of objects
allowed for various port protocols.
. add
- Adding single-line ports needs the following additional
objects:
frLportAggrChCnt (optional, default = 1)
frLportChSpeed (optional, default = 64k(2))
- Adding multi-line ports needs the following additional
objects:
frLportLine (required)
frLportStartCh (optional, default = port index)
frLportAggrChCnt (optional, default = 1)
frLportChSpeed (optional, default = 64k)
"
::= { frLportCnfEntry 4 }
frLportOperStatus OBJECT-TYPE
SYNTAX INTEGER {
inActive(1),
active (2),
looped (3),
failed (4),
unknown (5)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Actual state of the logical port."
::= { frLportCnfEntry 5 }
frLportPortSpeed OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "The baud rate of the port. For FRI T1/E1 interface, this
object is determined when this port is added by
the number of channels aggregated under it. Therefore,
it can be configured only if the port is subrated.
- Get Operation:
OK for both T1/E1 and subrate interface.
- Set Operation:
If the network manager attempts to SET this object on a
T1/E1 port, an error is reported. The value is specified
in 100bps."
::= { frLportCnfEntry 6 }
frLportClockType OBJECT-TYPE
SYNTAX INTEGER {
normal (1),
looped (2),
none (3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "The type of port clock (FRI subrate interface only). For
T1/E1 interface this object should be none.
- Get Operation:
If the network manager attempts to get this object from a
T1/E1 port, none (3) is returned.
- Set Operation:
If the network manager attempts to set this object on a
T1/E1 port with either normal or looped type, an error
is returned."
::= { frLportCnfEntry 7 }
frLportPortType OBJECT-TYPE
SYNTAX INTEGER {
fr (1),
atm (2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "The type of FRP subrate port. This object is not used in
switch software release 8.1 It is retained for historical
reasons, and possible future enhancement."
::= { frLportCnfEntry 8 }
frLportVcCount OBJECT-TYPE
SYNTAX INTEGER (0..252)
ACCESS read-only
STATUS mandatory
DESCRIPTION "The number of virtual connections that terminate on
this port. Note that there can be up to 252 connections
per FRP cards shared among the ports. A port may have up
to 252 connections allocated."
::= { frLportCnfEntry 9 }
frLportFirstVcPtr OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The object identifier denoting the first endpoint
associated with this port. For current implementation,
this OID points to the first frame relay connection
on the port. It has a NULL OID value (i.e. { 0 0 }) if
there is no frame relay connection on this port. The
management station can retrieve all the information about
the first connection by reading from row pointed to by
this OID. Specifically, this OID specifies the first
column of the appropriate row in the frEndptTable."
::= { frLportCnfEntry 10 }
frLportAggrChCnt OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "The number of aggregate channels assigned to this logical
port (FRI T1/E1 interface only) when the port is added.
- Get Operation:
. Subrate - this object is always 1.
. Single- and Multi-line - the number of channels
allocated for the logical port.
- Set Operation:
. Subrate ports - illegal.
. Single-line - specified when the manager adds a
logical Frame Relay port. Together with the port
index, this object defines the range of the channels
to be allocated, from port to port+frLportAggrChCnt-1.
. Multi-line - specified when the manager adds a logical
Frame Relay port. Together with frLportStartCh, this
object defines the range of the channels to be
allocated, from frLportStartCh to frLportStartCh +
frLportAggrChCnt - 1.
Note that single and multi-line logical ports have
different starting channels. Single-line ports start
with the port index and Multi-line ports stars with a
separate object frLportStartCh.
"
::= { frLportCnfEntry 11 }
frLportChSpeed OBJECT-TYPE
SYNTAX INTEGER {
s56k (1),
s64k (2),
na (3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "The channel speed (FRI T1/E1 interface only). For FRI
subrate interface this object should be set as na."
::= { frLportCnfEntry 12 }
frLportMaxTxQDepth OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The maximum bytes queued for transmission from the
FRP port"
::= { frLportCnfEntry 13 }
frLportECNQThresh OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION "Port explicit congestion notification threshold. This
is the point at which the BECN and FECN bits will be
set in the communications to the user device."
::= { frLportCnfEntry 14 }
frLportDEThresh OBJECT-TYPE
SYNTAX INTEGER (0..100)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The percentage of the queue depth above which frames
with the Discard Eligibility bit set will be discarded.
An entry of 100% effectively disables DE for the port."
::= { frLportCnfEntry 15 }
frLportIDEMap OBJECT-TYPE
SYNTAX INTEGER {
no (1),
yes (2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "The flag indicating whether IDE to DE mapping should be
performed."
::= { frLportCnfEntry 16 }
frLportSigProt OBJECT-TYPE
SYNTAX INTEGER {
xdisabled (1),
lmi-asyn (2),
disabled (3),
lmi-noasyn (4),
uni-annexA (5),
uni-annexD (6),
nni-annexA (7),
nni-annexD (8),
auto-det (9)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "The specified LMI operation mode. The options can be
1 - (UNI)LMI disabled
2 - (UNI)LMI and asynchronous update enabled
3 - (UNI)LMI disabled
4 - (UNI)LMI enabled but asynchronous update disabled
5 - (UNI)LMI enabled using CCITT O.933 Annex A parameters
6 - (UNI)LMI enabled using ANSI T1.617 parameters
7 - (NNI)LMI enabled using CCITT O.933 Annex A parameters
8 - (NNI)LMI enabled using ANSI T1.617 parameters
Note that option 7 and 8 are both bidirectional protocols
defined by FRF.2 and available only if Frame Relay NNI
feature is enabled."
::= { frLportCnfEntry 17 }
frLportNNIStatus OBJECT-TYPE
SYNTAX INTEGER {
no (1),
yes (2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "The flag indicating whether NNI is active on the specified
slot.port.
- Get Operation only:
This object is always NO if the network manager attempts
to GET frLportNNIStatus from a disabled, LMI or LMI no
update port. In other cases, the value of this object is
determined by whether the port is configured as NNI or not."
::= { frLportCnfEntry 18 }
frLportAsynStatus OBJECT-TYPE
SYNTAX INTEGER {
no (1),
yes (2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "The flag indicating whether the IPX should send unsolicited
LMI update messages as they appear or wait for the polling
from the user device. This object is applicable to only
Annex A/D UNI and Annex A/D NNI protocols for write and
LMI, Annex A/D UNI and Annex A/D NNI for read.
- Get Operation:
This object is always NO for ports without protocols;
otherwise, its value is determined by the asynchronous
status of the port.
- Set Operation:
If the network manager attempts to SET this object of a port
with none or LMI protocol, an error is reported."
::= { frLportCnfEntry 19 }
frLportPolVerTmr OBJECT-TYPE
SYNTAX INTEGER (5..30)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The link integrity verification timer heartbeat (keep-alive)
period. It should be set to 5 seconds more than the
heartbeat time in the user device. Default is 15 seconds.
- Get Operation:
Since this object is not applicable to disabled protocol,
SNMP_OBJ_NA (-1) is returned if the network manager attempts
to GET this object from a port without protocols.
- Set Operation:
If the network manager attempts to SET this object of a port
without any protocol, an error is reported."
::= { frLportCnfEntry 20 }
frLportErrThresh OBJECT-TYPE
SYNTAX INTEGER (1..10)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The number of the failures in the monitored events that
cause the keep-alive process to report an alarm.
- Get Operation:
Since this object is not applicable to disabled protocol,
SNMP_OBJ_NA (-1) is returned if the network manager attempts
to GET this object from a port without protocols.
- Set Operation:
If the network manager attempts to SET this object of a port
without any protocol, an error is reported."
::= { frLportCnfEntry 21 }
frLportMonEveCnt OBJECT-TYPE
SYNTAX INTEGER (1..10)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The number of monitored events for the keep-alive process.
A port communication fail condition is cleared after this
number of successful polling cycles.
- Get Operation:
Since this object is not applicable to disabled protocol,
SNMP_OBJ_NA (-1) is returned if the network manager attempts
to GET this object from a port without protocols.
- Set Operation:
If the network manager attempts to SET this object of a port
without any protocol, an error is reported."
::= { frLportCnfEntry 22 }
frLportCommPri OBJECT-TYPE
SYNTAX INTEGER {
no (1),
yes (2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "The flag specifying if the connection SNA priority should
be communicated to the user device attached to the port.
- Get Operation:
Since this object is specific to LMI protocols, SNMP_OBJ_NA
(-1) is returned if the network manager attempts to GET
this object from a non-LMI port.
- Set Operation:
Likewise, if the network manager attempts to SET this object
of a non-LMI port, an error is reported."
::= { frLportCnfEntry 23 }
frLportUpRNR OBJECT-TYPE
SYNTAX INTEGER (1..100)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The upper Receiver-Not-Ready threshold. This threshold
specifies the number of receiver not ready indications
from the user equipment before an alarm is generated for
this connection. The default is 75.
- Get Operation:
Since this object is specific to LMI protocols, SNMP_OBJ_NA
(-1) is returned if the network manager attempts to GET
this object from a non-LMI port.
- Set Operation:
Likewise, if the network manager attempts to SET this object
of a non-LMI port, an error is reported."
::= { frLportCnfEntry 24 }
frLportLowRNR OBJECT-TYPE
SYNTAX INTEGER (1..100)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The Lower Receiver-Not-Ready threshold. This threshold
specifies the number of receiver not ready indications
from the user equipment before an alarm is cleared for
this connection. The default is 75.
- Get Operation:
Since this object is specific to LMI protocols, SNMP_OBJ_NA
(-1) is returned if the network manager attempts to GET
this object from a non-LMI port.
- Set Operation:
Likewise, if the network manager attempts to SET this object
of a non-LMI port, an error is reported."
::= { frLportCnfEntry 25 }
frLportMinFrmFlgs OBJECT-TYPE
SYNTAX INTEGER (1..255)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The minimum number of flags between frames. All values
in the range 1 to 255 are valid and the default is 1."
::= { frLportCnfEntry 26 }
frLportOamThresh OBJECT-TYPE
SYNTAX INTEGER (0..15)