-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathCISCO-WAN-FR-CONN-MIB-V1SMI.my
2352 lines (2085 loc) · 75.1 KB
/
CISCO-WAN-FR-CONN-MIB-V1SMI.my
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
-- MIB file created 27-Jun-2003 18:03:01, by
-- SMICng version 2.2.11-beta(PRO)(Solaris), January 20, 2001. Enterprise key cisco.com
CISCO-WAN-FR-CONN-MIB DEFINITIONS ::= BEGIN
-- From file: "CISCO-WAN-FR-CONN-MIB.my"
-- Compile options "4 7 F H N W 03 06 0B 0G 0N 0T"
IMPORTS
TruthValue
FROM SNMPv2-TC-v1
frChan, frameRelay
FROM BASIS-MIB
ciscoWan
FROM CISCOWAN-SMI
Counter
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212;
ciscoWanFrConnMIB OBJECT IDENTIFIER ::= { ciscoWan 47 }
-- MODULE-IDENTITY
-- LastUpdated
-- 200209180000Z
-- OrgName
-- Cisco Systems, Inc.
-- ContactInfo
-- Cisco Systems
-- Customer Service
--
-- Postal: 170 W Tasman Drive
-- San Jose, CA 95134
-- USA
--
-- Tel: +1 800 553-NETS
--
-- E-mail: [email protected]
-- Descr
-- The MIB module to configure the Frame Relay
-- connection configuration.
--
-- Terminologies Used:
--
-- SIW - Frame-Relay-to ATM Service Interworking.
-- In SIW, the ATM port connected to a frame
-- relay port does not need to be aware that
-- it is connected to an interworking function.
--
-- This is explained in document FRF.8.
--
-- NIW - Frame-Relay-to ATM Network Interworking.
-- In NIW, the ATM port connected to a frame
-- relay port does need to be aware that
-- it is connected to an interworking function.
--
-- PVC - Permanent Virtual Circuit OR
-- Permanent Virtual Connection
--
-- A frame relay logical link, whose endpoints
-- and class of service are defined by network
-- management. A PVC consists of the originating
-- frame relay network element address, originating
-- DLCI, terminating frame relay network element
-- address and terminating DLCI.
--
-- This is controlled by PAR(Portable Auto Route)
-- controller.
--
--
-- SPVC - Soft Permanent Virtual Circuits.
-- This is a PVC controlled by PNNI Controller.
--
-- Frame Relay PVC/SPVC end-point/Channel is referred to as
-- frame Relay connection in this MIB.
--
-- Traffic shaping parameters:
-- CIR, EIR, Bc, Be, DE, Tc, AR corresponding to
-- rate of the physical interface.
--
-- CIR - Committed Information Rate.
--
-- This is the rate of traffic that the PVC
-- will support as 'comitted' traffic.
--
-- The committed rate(in bits per second) at which
-- the ingress access interface trunk interfaces,
-- and egress access interface of a frame relay
-- network transfer information to the destination
-- frame relay end system under normal conditions.
-- The rate is averaged over a minimum time interval
-- Tc.
--
-- AR - Access Rate
-- The maximum number of bits per second that an end
-- station can transmit into the network is
-- bounded by the acess rate of the user-network
-- interface. The line speed of the user network
-- connection limits the access rate.
--
-- Bc - Committed Burst Size
-- The maximum amount of data(in bits) that the
-- network agrees to transfer, under normal conditions
-- during a time interval Tc.
-- The data is in bytes in the current implementation.
--
-- Be - Excess Burst Size
-- The maximum amount of uncommitted data(in bits)
-- in excess of BC that a frame relay network can
-- attempt to deliver during a time interval Tc.
-- This data generally is delivered with a low
-- probability than Bc. The network treats Be
-- data as discard eligible.
-- The data is in bytes in the current implementation.
--
-- Tc - The committed rate measurement interval.
-- The time interval during which the user can send
-- only BC committed amount of data and BE excess
-- amount of data.
--
-- EIR - Excess Information Rate
-- This is the bandwidth in excess of CIR
-- the PVC will be allowed to burst on a
-- a given PVC.
--
-- The average rate at which excess traffic is
-- to be policed. This number is computed based
-- on Bc, Be, CIR and Tc.
--
-- DE - Discard Eligibility
--
--
-- Frame Forwarding Port: Frame Forwarding Ports are identified
-- by portType = frame-forward(3).
--
-- NOTE: The objects related to frame relay ports are
-- available in ifTable,if ifTable is implemented
-- in service module/card.
--
-- Following Service Modules support ifTable:
-- FRSM-12
-- RevDate
-- 200209180000Z
-- RevDescr
-- Initial version of the MIB.
--
-- The content of this MIB was originally available
-- in CISCO-WAN-AXIPOP-MIB defined using SMIv1.
-- The applicable objects from CISCO-WAN-AXIPOP-MIB
-- are defined using SMIv2 in this MIB. Also the
-- descriptions of some of the objects have been
-- modified.
frChanCnfGrp OBJECT IDENTIFIER ::= { frChan 1 }
frChanStateGrp OBJECT IDENTIFIER ::= { frChan 2 }
frEndPtMapGrp OBJECT IDENTIFIER ::= { frameRelay 3 }
ciscoWanFrConnMIBConformance OBJECT IDENTIFIER ::= { ciscoWanFrConnMIB 2 }
ciscoWanFrConnMIBGroups OBJECT IDENTIFIER ::= { ciscoWanFrConnMIBConformance 1 }
ciscoWanFrConnMIBCompliances OBJECT IDENTIFIER ::= { ciscoWanFrConnMIBConformance 2 }
frChanCnfGrpTable OBJECT-TYPE
SYNTAX SEQUENCE OF FrChanCnfGrpEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table is for configuring connection
parameters for frame relay connections."
::= { frChanCnfGrp 1 }
frChanCnfGrpEntry OBJECT-TYPE
SYNTAX FrChanCnfGrpEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry for each frame relay connection."
INDEX { chanNum }
::= { frChanCnfGrpTable 1 }
FrChanCnfGrpEntry ::= SEQUENCE {
chanNum INTEGER,
chanRowStatus INTEGER,
chanPortNum INTEGER,
dLCI INTEGER,
egressQSelect INTEGER,
ingressQDepth INTEGER,
ingressQDEThresh INTEGER,
ingressQECNThresh INTEGER,
egressQDepth INTEGER,
egressQDEThresh INTEGER,
egressQECNThresh INTEGER,
deTaggingEnable INTEGER,
cir INTEGER,
bc INTEGER,
be INTEGER,
ibs INTEGER,
foreSightEnable INTEGER,
qir INTEGER,
mir INTEGER,
pir INTEGER,
chanLocRmtLpbkState INTEGER,
chanTestType INTEGER,
chanTestState INTEGER,
chanRTDResult INTEGER,
chanType INTEGER,
chanFECNconfig INTEGER,
chanDEtoCLPmap INTEGER,
chanCLPtoDEmap INTEGER,
chanIngrPercentUtil INTEGER,
chanEgrPercentUtil INTEGER,
chanEgrSrvRate INTEGER,
chanOvrSubOvrRide INTEGER,
chanFrConnType INTEGER,
frCDRNumber INTEGER,
frLocalVpi INTEGER,
frLocalVci INTEGER,
frLocalNSAP OCTET STRING,
frRemoteVpi INTEGER,
frRemoteVci INTEGER,
frRemoteNSAP OCTET STRING,
frMastership INTEGER,
frVpcFlag INTEGER,
frConnServiceType INTEGER,
frRoutingPriority INTEGER,
frMaxCost INTEGER,
frRestrictTrunkType INTEGER,
frConnPCR INTEGER,
frConnRemotePCR INTEGER,
frConnMCR INTEGER,
frConnRemoteMCR INTEGER,
frConnPercentUtil INTEGER,
frConnRemotePercentUtil INTEGER,
frConnForeSightEnable INTEGER,
frConnFGCRAEnable INTEGER,
chanServType INTEGER,
chanServiceRateOverride INTEGER,
chanServiceRate INTEGER,
zeroCirConEir INTEGER,
chanReroute INTEGER,
frConnSCR INTEGER,
frConnRemoteSCR INTEGER,
frConnTemplateId INTEGER,
frConnAdminStatus INTEGER,
frChanCnfChangeCount Counter,
frChanCnfIgnoreIncomingDE INTEGER,
frChanOamCCEnable INTEGER,
frChanStatsEnable INTEGER,
frChanLocalLpbkEnable INTEGER,
frChanUpcEnable INTEGER,
frChanSlaveType INTEGER,
frConnRemoteMBS INTEGER,
frChanPrefRouteId INTEGER,
frChanDirectRoute TruthValue
}
chanNum OBJECT-TYPE
SYNTAX INTEGER(1..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The value of this object identifies the
frame relay connection/channel index.
Note that the actual range of the index
supported by a card depends on the type of card.
Supported Range for different Card Types:
FRSM-4T1/E1 : Range is 16..271 (256 entries)
FRSM-8T1/E1 : Range is 16..1015 (1000 entries)
FRSM-T3/E3/HS2/
/HS2B-HSSI/T3B/E3B : Range is 16..2015 (2000 entries)
FRSM-2CT3/HS2B-12IN1: Range is 16..4015 (4000 entries)
For FRSM12 Card : Range is 16..16015 for Lower 16 bits
Upper 16 bits contain Chassis Number
and logical slot number."
::= { frChanCnfGrpEntry 1 }
chanRowStatus OBJECT-TYPE
SYNTAX INTEGER {
add(1),
del(2),
mod(3),
outOfService(4)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used for adding/modifying/deleting
the channel.
add(1) : For adding the frame relay connections.
delete(2): For deleting frame relay connections.
mod(3) : For Modifying frame relay connections.
This is also used for uping the connection.
outOfService(4) : Bring the Frame relay connection
down."
::= { frChanCnfGrpEntry 2 }
chanPortNum OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object refers to the frame relay
port on which channel is created.
This is a mandatory object for creating the channel.
For FRSM12 Card:
This object contains the port's ifIndex value."
::= { frChanCnfGrpEntry 3 }
dLCI OBJECT-TYPE
SYNTAX INTEGER(0..8388607)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The value of this object is the DLCI number of the channel.
This is a mandatory object for creating the channel.
All the connections on the same port should have
a unique DLCI number.
Note that if we are adding a channel to a port that
has LMI signalling enabled, then we can not use DLCI
number 0(ANNEX A & D) and 1023(STRATA LMI).
The value of this object can be only 1000 if
the portType = frame-forward(3) on which the frame relay
connection is being created. That is, only one Frame Relay
Connection can be created on a Frame Forwarding Port.
For portHeaderLen = twoOctets(1) following restrictions apply.
Range supported is '0..1023'
DLCI values 0,1007, 1023 can not be used.
For portHeaderLen = fourOctets(2) following restrictions apply.
Range supported is '0..8388607'
DLCI values 0,8257535 can not be used."
::= { frChanCnfGrpEntry 4 }
egressQSelect OBJECT-TYPE
SYNTAX INTEGER {
highPriority(1),
lowPriority(2),
notSupported(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Selects one out of two possible port queues.
The default port queue number is 1 which is the high
pririty queue.
1 = High priority queue
2 = Low priority queue
3 = Indicates that this entry is not used (eg: in FRSM-VHS,
chanServType indicates the channel service type and
would determine the queue to which the channel gets mapped)
For FRSM12 Card:
This object is used to select between the two ATM-COS queues
in the egress direction."
DEFVAL { lowPriority }
::= { frChanCnfGrpEntry 5 }
ingressQDepth OBJECT-TYPE
SYNTAX INTEGER(4510..2097151)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This variable sets the max depth for queue, before
it starts dropping the cells. It is defined in
terms of number of bytes.
In all cards except the FRSM-VHS card, the range is
limited to (4510..'ffff'h).
ingressQDepth should be greater than ingressQECNThresh
and ingressQDEThresh
For FRSM12 Card: Not Supported"
DEFVAL { 65535 }
::= { frChanCnfGrpEntry 6 }
ingressQECNThresh OBJECT-TYPE
SYNTAX INTEGER(0..2097151)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This variable sets the max depth for queue, before
it starts flow control. It is defined in terms of
number of bytes.
In all cards except the FRSM-VHS card, the range is
limited to (0..'ffff'h).
For FRSM12 Card: Not Supported"
DEFVAL { 6553 }
::= { frChanCnfGrpEntry 7 }
ingressQDEThresh OBJECT-TYPE
SYNTAX INTEGER(0..2097151)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This variable sets the max depth for queue, before
they become discard eligible. It is defined in terms of
number of bytes.
In all cards except the FRSM-VHS card, the range is
limited to (0..'ffff'h).
For FRSM12 Card: Not Supported"
DEFVAL { 32767 }
::= { frChanCnfGrpEntry 8 }
egressQDepth OBJECT-TYPE
SYNTAX INTEGER(0..2097151)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This variable sets the max depth for queue, before
it starts dropping the cells. It is defined in terms of
number of bytes.
In all cards except the FRSM-VHS card, the range is
limited to (0..'ffff'h).
egressQDepth should be greater than egressQDEThresh
and egressQECNThresh
For FRSM12 Card: Not Supported"
DEFVAL { 65535 }
::= { frChanCnfGrpEntry 9 }
egressQDEThresh OBJECT-TYPE
SYNTAX INTEGER(0..2097151)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This variable sets the max depth for queue, before
they become discard eligible. It is defined in terms of
number of bytes.
In all cards except the FRSM-VHS card, the range is
limited to (0..'ffff'h).
For FRSM12 Card: Not Supported"
DEFVAL { 32767 }
::= { frChanCnfGrpEntry 10 }
egressQECNThresh OBJECT-TYPE
SYNTAX INTEGER(0..2097151)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This variable sets the max depth for queue, before
it starts flow control. It is defined in terms of
number of bytes.
In all cards except the FRSM-VHS card, the range is
limited to (0..'ffff'h).
For FRSM12 Card: Not Supported"
DEFVAL { 6553 }
::= { frChanCnfGrpEntry 11 }
deTaggingEnable OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object enables/disables the DE tagging.
The tagging is enabled only in the ingress
direction.
For FRSM12 Card:
When this object is disabled, the ingress policer will never
set the DE bit to 1 in the Frame Relay frames even if
the incoming frame exceeds the Bc bucket."
DEFVAL { disable }
::= { frChanCnfGrpEntry 12 }
cir OBJECT-TYPE
SYNTAX INTEGER(0..52000000)
-- Units
-- bps
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The value of this object is equal to the CIR parameter
for this frame relay connection.
The CIR value have to be less than or equal to the port speed.
Any value from 1 to 2399 will be rounded off to 2400.
Range supported for different interfaces/card:
For E1 interface : Range is 0..2048000
For T1 interface : Range is 0..1536000
For E3 interface : Range is 0..34368000
For T3 interface : Range is 0..44736000
For HSSI : Range is 0..52000000
For FRSM-2CT3 : Range is 0..1536000
For FRSM-HS2B-12IN1: Range is 0..10240000
The CIR value can be 0 only for chanServType = uBR(5)."
DEFVAL { 2400 }
::= { frChanCnfGrpEntry 13 }
bc OBJECT-TYPE
SYNTAX INTEGER(0..2097151)
-- Units
-- bytes
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The value of this object is equal to the
committed burst size(BC) parameter for this
PVC endpoint.
The value of bc can not be 0 when cir is non zero.
The value of bc has to be 0 if cir is 0.
The peak value for bc in FRSM-VHS cards is (2^21 -1),
i.e. 2097151 and for all other cards, it is 65535.
For FRSM-VHS cards, the relation between CIR and Bc should
be such that Tc is always less than 512 seconds. "
DEFVAL { 5100 }
::= { frChanCnfGrpEntry 14 }
be OBJECT-TYPE
SYNTAX INTEGER(0..2097151)
-- Units
-- bytes
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The value of this object is euqal to the
excess burst size(Be) parameter for this PVC
endpoint.
The value be can not be 0 when cir is 0.
The peak value for be :
For FRSM-VHS and FRSM12 cards is (2^21 -1), i.e. 2097151 and
For all other cards, it is 65535.
For FRSM-VHS cards, setting the value of 2091751 will
cause the policing to be disabled. "
DEFVAL { 5100 }
::= { frChanCnfGrpEntry 15 }
ibs OBJECT-TYPE
SYNTAX INTEGER(0..2097151)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The value of this object is euqal to the
excess burst size(Be) parameter for this PVC
endpoint.
The value of ibs should be less or equal to bc
when cir is greater than 0.
The value of ibs has to be 0 when cir is 0.
The peak value for ibs in FRSM-VHS cards is (2^21 -1),
i.e. 2097151 and for all other cards, it is 65535.
For FRSM12 Card: Not Supported"
DEFVAL { 100 }
::= { frChanCnfGrpEntry 16 }
foreSightEnable OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This variable enables/disables foreSight option.
Following objects can be modified only when this
object is set to enable(1):
qir, mir, pir
The RATE CONTROL FEATURE has to be ON in order to enable
foresight and also modify its parameter.
For FRSM12 Card: Not Supported"
DEFVAL { disable }
::= { frChanCnfGrpEntry 17 }
qir OBJECT-TYPE
SYNTAX INTEGER(160..6400000)
-- Units
-- fastpackets-per-second
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The value of this object is euqal to the
quiescent information rate for Foresight.
The unit is 1 Cell/Sec = 16 fastpackets/sec.
Following information about cps is for reference only:
The peak value for qir in FRSM-VHS cards is 285714 cps and
for all other cards, it is 10000 cps.
For FRSM-VHS cards, cell will be the ATM cell (48 byte payload).
For FRSM12 Card: Not Supported"
DEFVAL { 160 }
::= { frChanCnfGrpEntry 18 }
mir OBJECT-TYPE
SYNTAX INTEGER(160..6400000)
-- Units
-- fastpackets-per-second
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The value of this object is euqal to the
minimum information rate for Foresight.
The unit is 1 Cell/Sec = 16 fastpackets/sec.
is equal to 16 fastpackets/sec.
Following information about cps is for reference only:
The peak value for qir in FRSM-VHS cards is 285714 cps and
for all other cards, it is 10000 cps.
For FRSM-VHS cards, cell will be the ATM cell (48 byte payload).
For FRSM12 Card: Not Supported"
DEFVAL { 160 }
::= { frChanCnfGrpEntry 19 }
pir OBJECT-TYPE
SYNTAX INTEGER(160..6400000)
-- Units
-- fastpackets-per-second
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The value of this object is euqal to the
peak information rate for Foresight.
The unit is 1 Cell/Sec = 16 fastpackets/sec.
is equal to 16 fastpackets/sec.
Following information about cps is for reference only:
The peak value for qir in FRSM-VHS cards is 285714 cps and
for all other cards, it is 10000 cps.
For FRSM-VHS cards, cell will be the ATM cell (48 byte payload).
For FRSM12 Card: Not Supported"
DEFVAL { 160 }
::= { frChanCnfGrpEntry 20 }
chanLocRmtLpbkState OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This variable enables or disables the remote loopback for each
channel.
When you enable this option on a connection (channel) then all the
cells that are coming from the network side would be looped back
toward the network and all the frames coming from the user side
would be dropped.
This channel remote loopback has nothing to do with the chanTestType
option, each one does a different function.
For example, the channel remote loopback is used for looping the data
toward the network and if this connection is terminated on an IPX
then they can put a test equipment and measure some of the
characteristics of the network.
For FRSM12 Card: Not Supported"
DEFVAL { disable }
::= { frChanCnfGrpEntry 21 }
chanTestType OBJECT-TYPE
SYNTAX INTEGER {
testcon(1),
testdelay(2),
notest(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The chanTestType starts testing the continuity
or delay of a connection.
It sends specific cell patterns toward the network
and the terminating end of this connection has to be an
MGX8220 or ASI of a BPX in order for this test to be working.
The receiving node would loop back when it receives these
cells. The test should be done in about couple of seconds.
The testcon tests the continuity of the connection and
testdelay uses the same test except that it measures for
delay through the network.
To test the delay follow this procedure:
a- set chanTestType to testdelay
b- read chanTestState till it is Pass or Fail
c- Read chanRTDResult for the delay if it is Pass
*Note that the chanTestType would go back to notest when the
test is completed
To test the continuity follow this procedure:
a- set chanTestType to testcon
b- read chanTestState till it is Pass or Fail
*Note that the chanTestType would go back to notest when the
test is completed
You CAN NOT select 2 tests back to back,
you have to select one and wait for
the result and then start the other one.
SYNTAX
When you select testdelay
This is the type of the test
1 = Test Continuity
2 = Test Delay
3 = No Test
"
DEFVAL { notest }
::= { frChanCnfGrpEntry 22 }
chanTestState OBJECT-TYPE
SYNTAX INTEGER {
passed(1),
failed(2),
inprogress(3),
notinprogress(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This shows the state of the test
When you add a connection then the chanTestState becomes notinprogress
and when you select any test, it would go to inprogress state and after
it completes the test, it will go to failed or passed state.
1 = Passed
2 = Failed
3 = In Progress
4 = Not In Progress"
DEFVAL { notinprogress }
::= { frChanCnfGrpEntry 23 }
chanRTDResult OBJECT-TYPE
SYNTAX INTEGER(1..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This is round trip delay in milliseconds.
When you select testdelay option for the chanTestType, the result of
the test that is measured in milliseconds can be read in chanRTDResult."
DEFVAL { 65535 }
::= { frChanCnfGrpEntry 24 }
chanType OBJECT-TYPE
SYNTAX INTEGER {
frNIW(1),
frSIW-transparent(2),
frSIW-translate(3),
frFUNI(4),
frForward(5),
frNIWReplace(6)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The value of this object is used for setting the
channel type of a frame relay connection. If set
with values frSIW-transparent(2) and frSIW-translate(3),
all PVC data is subject to service interworking translation
and mapping in both Frame Relay-to-ATM and ATM-to-Frame relay
directions.
The possible values are :
frNIW(1) : Frame-Relay-to ATM Network
Interworking(NIW-unicast).
The traffic crosses the network as
ATM Cells.
frSIW-transparent(2): Service InterWorking with out any
SDU translation. In transparent mode,
the service module does not translate.
frSIW-translate(3) : Service InterWorking with SDU translation.
In translation mode, service module
translates protocol between the FR NLPID
encapsulation(RFC 1490) and ATM LCC
encapsulation(RFC 1483). Translation mode
support includes address resolution by
transforming address resolution protocol
(ARP, RFC 826) and inverse ARP(RFC 1293)
between the frame relay and ATM Formats.
frFUNI(4) : Frame based UNI: mode-1a which is ALL5.
frForward(5) : frame forwarding. Frame forwarding operates
same as standard frame relay except:
* 2 byte Q.922 header is not assumed
or interpreted.
* All frames received are mapped to a
specific connection if it exists. Otherwise
the frames are dropped.
* No DE/CLP or FECN/EFCI mapping is performed.
* 'llegal Header count' and 'invalid DLCI'
statistics are not kept/applicable.
frNIWReplace(6) : Frame Relay network interworking
with DLCI in FR-SSCS(Frame Relay Specific
Convergence Sublayer)PDU always
set to 1022."
REFERENCE
"FRF.8"
::= { frChanCnfGrpEntry 25 }
chanFECNconfig OBJECT-TYPE
SYNTAX INTEGER {
mapEFCI(1),
setEFCIzero(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The value of this object specifies how to map
from FECN field in the frame Relay PDU to
the EFCI field in the ATM cells.
This object does not apply to NIW.
This is applicable only
for SIW.
mapEFCI(1) : Maps the FECN bits in frame-relay
to EFCI bit in the ATM cells.
This value is valid only for SIW.
setEFCIzero(2): Set EFCI = 0. Do not map FECN to EFCI."
REFERENCE
"FRF.8, section 4.3.1.1"
::= { frChanCnfGrpEntry 26 }
chanDEtoCLPmap OBJECT-TYPE
SYNTAX INTEGER {
mapCLP(1),
setCLPzero(2),
setCLPone(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The value of this object specifies how to map
from DE bit on the Frame Relay side to CLP
bit on the ATM side.
mapCLP(1) : Map DE bit to CLP bit in ATM cell.
setCLPzero(2) : Ignore DE bit. Set CLP to 0.
setCLPone(3) : Ignore DE bit. Set CLP to 1.
For FRSM12 Card:
Should not be mapCLP for chanType of frForward."
REFERENCE
"FRF.5, FRF.8"
::= { frChanCnfGrpEntry 27 }
chanCLPtoDEmap OBJECT-TYPE
SYNTAX INTEGER {
mapDE(1),
setDEzero(2),
setDEone(3),
ignoreCLP(4)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The value of this object enables mapping of
Cell Loss Priority(CLP) bit on the ATM Side
to Discard Eligibility(DE) bit on the Frame relay
side.
The possible values are :
mapDE(1) : Map CLP bit to DE bit.
Valid for SIW and NIW.
setDEzero(2) : Ignore CLP. Set DE bit to 0.
Valid for SIW.
setDEone(3) : Ignore CLP. Set DE bit to 1.
Valid for SIW.
ignoreCLP(4) : Ignore CLP. No change in receieved DE bit.
Valid for NIW.
For FRSM12 Card:
Should be ignoreCLP for chanType of frForward.
Should not be setDEzero/setDEone for chanType of frNIW
and frNIWReplace.
Should not be ignoreCLP for chanType of frSIW-transparent
and frSIW-translate."
REFERENCE
"FRF.8, section 4.2.2
FRF.5, section 4.4.2"
::= { frChanCnfGrpEntry 28 }
chanIngrPercentUtil OBJECT-TYPE
SYNTAX INTEGER(1..100)
-- Units
-- percentage
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The ingress utilization on a
frame relay connection."
DEFVAL { 100 }
::= { frChanCnfGrpEntry 29 }
chanEgrPercentUtil OBJECT-TYPE
SYNTAX INTEGER(1..100)
-- Units
-- percentage
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The egress utilization on a
frame relay connection."
DEFVAL { 100 }
::= { frChanCnfGrpEntry 30 }
chanEgrSrvRate OBJECT-TYPE
SYNTAX INTEGER(2400..52000000)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The value of this object identifies egress CIR
value for a frame relay connection.
The value of this object must be less than or equal(<=)
to the port speed.
The value supported depends upon the interface
and service module(card) type.
For E1 Service Module : Range is 2400..2048000
For T1 Service Module : Range is 2400..1536000
2CT3 Module :
For E3 Service Module : Range is 2400..34368000
For T3 Service Module : Range is 2400..44736000
For HSSI Service Module : Range is 2400..52000000
For FRSM12 Card:
This object is used only for CAC and the range will be same
as the range for cir object. The Maximum value is 44736000m."
DEFVAL { 2400 }
::= { frChanCnfGrpEntry 31 }
chanOvrSubOvrRide OBJECT-TYPE
SYNTAX INTEGER {
disable(1),
enable(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The value of this object enables/disables the
oversubscription on a connection.
This object allows one to add a new connection on a port
even if it is over subscribed.
For FRSM12 Card: Not Supported."
DEFVAL { disable }
::= { frChanCnfGrpEntry 32 }
chanFrConnType OBJECT-TYPE
SYNTAX INTEGER {
pvc(1),
svc(2),
spvc(3),
par(4),
pnni(5),
tag(6)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The value of this object is used for configuring
connection type of a frame relay connection.
The possible values are :
pvc(1) : Permanent Virtual Connection
svc(2) : Switched Virtual Connection
spvc(3) : Soft PVC.
par(4) : Portable Auto Route Connection.
Valid only for trunk connection
pnni(5) : PNNI Connection
Valid only for trunk connection
tag(6) : Tag/MPLS Connection
Valid only for trunk connection
For FRSM12 Card: Not Supported."
DEFVAL { pvc }
::= { frChanCnfGrpEntry 33 }