-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathCISCO-90-MIB-V1SMI.my
2254 lines (2078 loc) · 77.2 KB
/
CISCO-90-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 created 6/25/99 12:56:42, by
-- SMIC (the next generation) version 1.6.29, November 22, 1994.
Cisco90Series-MIB DEFINITIONS ::= BEGIN
-- From file: "CISCO-90-MIB.my"
IMPORTS
enterprises, Counter, TimeTicks
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212
TRAP-TYPE
FROM RFC-1215;
ciscoTelesend OBJECT IDENTIFIER ::= { enterprises 1570 }
frMux OBJECT IDENTIFIER ::= { ciscoTelesend 1 }
frxSys OBJECT IDENTIFIER ::= { frMux 1 }
frxDefault OBJECT IDENTIFIER ::= { frMux 2 }
frxBank OBJECT IDENTIFIER ::= { frMux 3 }
frxChUnit OBJECT IDENTIFIER ::= { frMux 4 }
frxMgt OBJECT IDENTIFIER ::= { frMux 5 }
frxPort OBJECT IDENTIFIER ::= { frMux 6 }
DisplayString ::= OCTET STRING
frxSysDescr OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..255))
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Description of the Cisco 90 Series System."
::= { frxSys 1 }
frxClockHour OBJECT-TYPE
SYNTAX INTEGER(0..23)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Synchronized 24 hour clock for the Cisco 90 Series system -
Hour. This clock is used by the channel units
and BRITE cards to set the performance monitoring
end-of-hour and end-of-day intervals."
::= { frxSys 2 }
frxClockMin OBJECT-TYPE
SYNTAX INTEGER(0..59)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Synchronized 24 hour clock for the Cisco 90 Series system -
Minutes. This clock is used by the channel units
and BRITE cards to set the performance monitoring
end-of-hour and end-of-day intervals."
::= { frxSys 3 }
frxClockSec OBJECT-TYPE
SYNTAX INTEGER(0..59)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Synchronized 24 hour clock for the Cisco 90 Series system -
Seconds. This clock is used by the channel units
and BRITE cards to set the performance monitoring
end-of-hour and end-of-day intervals."
::= { frxSys 4 }
frxUpTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Time since the agent was last initialized in
0.01 second increments."
::= { frxSys 5 }
frxAdminContact OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..255))
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Cisco 90 Series administrative contact name."
::= { frxSys 6 }
frxSysName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..255))
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Administratively assigned name for this Cisco 90 Series agent."
::= { frxSys 7 }
frxSysLoc OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..255))
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Physical location of the Cisco 90 Series agent."
::= { frxSys 8 }
frxSysVersion OBJECT-TYPE
SYNTAX INTEGER(0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Cisco 90 Series Agent version number. The version number is
an INTEGER representation of the actual version number string.
The way to translate to a version number string is 200 = 2.0.0,
201 = 2.0.1, etc."
::= { frxSys 9 }
frxUPerfTrapEnable OBJECT-TYPE
SYNTAX INTEGER {
enableUPerfTrap(1),
disableUPerfTrap(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"1=Enable sending the frxUPerfTrap trap to the
SNMP manager when a performance monitoring
threshold is crossed at an Cisco 90 Series channel unit or
a downstream BRITE card.
2=Disable Trap."
::= { frxSys 10 }
frxAgtLinkErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of Annex-D signaling link reliability errors
between the Cisco 90 Series Agent and the Frame Relay Switch.
A signaling reliability error is declared whenever
the Cisco 90 Series Agent did not receive a reply from the
frame relay switch in response to an Annex-D link
integrity poll or full status inquiry poll"
::= { frxSys 11 }
frxAgtProtErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of Annex-D signaling protocol errors
between the Cisco 90 Series Agent and the Frame
Relay Switch. A signaling protocol error is
declared whenever the Cisco 90 Series Agent
receives a reply with incorrect format or
sequence numbers from the frame relay switch in
response to an Annex-D link integrity poll or
full status inquiry poll"
::= { frxSys 12 }
frxAgtChInactive OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of times the Cisco 90 Series Agent Annex-D signaling
channel was declared inactive."
::= { frxSys 13 }
frxAgtChStatus OBJECT-TYPE
SYNTAX INTEGER {
active(1),
inactive(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Current status of the Annex-D signaling channel
between the Cisco 90 Series Agent and the Frame Relay Switch."
::= { frxSys 14 }
frxDefaultEnable OBJECT-TYPE
SYNTAX INTEGER {
enableAutoLoad(1),
disableAutoLoad(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"1=Enable automatic loading of defaults (defined
in this group) to the channel unit when the
Download Configuration pushbutton on the channel
unit faceplate is pushed. 2=Disable loading."
::= { frxDefault 1 }
frxDefaultTrap OBJECT-TYPE
SYNTAX INTEGER {
enableConfigureTrap(1),
disableConfigureTrap(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"1=Enable sending the frxDownloadTrap trap to
the SNMP manager when the Download Configuration
pushbutton on the channel unit faceplate is pushed.
2=Disable Trap"
::= { frxDefault 2 }
frxDConfigSrc OBJECT-TYPE
SYNTAX INTEGER {
annexD(1),
snmp(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"System default for frxConfigSrc - used when the
Download Configuration pushbutton on the channel unit
faceplate is pushed and when frxDefaultEnable is set to 1.
1=Data rate and protocol set by Annex-D assignment rules.
2=Data rate and protocol set by the SNMP variables
frxPortSpeed and frxPortProtocol"
::= { frxDefault 3 }
frxDMgtT391 OBJECT-TYPE
SYNTAX INTEGER(5..30)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"System Default for frxMgtT391 - used when the
Download Configuration pushbutton on the channel unit
faceplate is pushed and when frxDefaultEnable is set to 1.
This controls how often (in seconds) the channel units
send an Annex-D poll to the frame relay switch.
This is the Annex-D T391 parameter (Typical value 10)"
::= { frxDefault 4 }
frxDMgtT392 OBJECT-TYPE
SYNTAX INTEGER(5..30)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"System Default for frxMgtT392 - used when the
Download Configuration pushbutton on the channel unit
faceplate is pushed and when frxDefaultEnable is set to 1.
This controls how long (in seconds) the channel unit
will wait for a subscriber to send it an Annex-D poll
before declaring a link error from the subscriber.
This is the Annex-D T392 parameter (Typical value 15)"
::= { frxDefault 5 }
frxDMgtN391 OBJECT-TYPE
SYNTAX INTEGER(1..255)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"System Default for frxMgtN391 - used when the
Download Configuration pushbutton on the channel unit
faceplate is pushed and when frxDefaultEnable is set to 1.
This controls how often the channel units send a full
status inquiry poll to the frame relay switch instead of
a link integrity verification poll.
This is the Annex-D N391 parameter (Typical value 6)"
::= { frxDefault 6 }
frxDMgtN392 OBJECT-TYPE
SYNTAX INTEGER(1..10)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"System Default for frxMgtN392 - used when the
Download Configuration pushbutton on the channel unit
faceplate is pushed and when frxDefaultEnable is set to 1.
When more than frxMgtN392 errors are detected in any
frxMgtN393 monitored Annex-D events, the network is
declared inactive.
This is the Annex-D N392 parameter (Typical value 3)"
::= { frxDefault 7 }
frxDMgtN393 OBJECT-TYPE
SYNTAX INTEGER(1..10)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"System Default for frxMgtN393 - used when the
Download Configuration pushbutton on the channel unit
faceplate is pushed and when frxDefaultEnable is set to 1.
When more than frxMgtN392 errors are detected in any
frxMgtN393 monitored Annex-D events, the network is
declared inactive.
This is the Annex-D N393 parameter (Typical value 4)"
::= { frxDefault 8 }
frxDPortSpeed OBJECT-TYPE
SYNTAX INTEGER {
use56kbps(1),
use64kbps(2),
use128kbps(3),
use144kbps(4)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"System Default for frxPortSpeed - used when the
Download Configuration pushbutton on the channel unit
faceplate is pushed and when frxDefaultEnable is set to 1.
This is the speed that the channel unit port runs at.
1=56kbps 2=64kbps 3=128kbps 4=144kbps"
::= { frxDefault 9 }
frxDPortProtocol OBJECT-TYPE
SYNTAX INTEGER {
frameRelay(1),
ppp(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"System Default for frxPortProtocol - used when the
Download Configuration pushbutton on the channel unit
faceplate is pushed and when frxDefaultEnable is set to 1.
1=Port uses Frame Relay protocol
2=Port uses PPP protocol - do RFC-1973 encapsulation"
::= { frxDefault 10 }
frxDCktCIR OBJECT-TYPE
SYNTAX INTEGER(0..1544000)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"System Default for frxCktCIR - used when the
Download Configuration pushbutton on the channel unit
faceplate is pushed and when frxDefaultEnable is set to 1.
This is the committed information rate (CIR) in bits per
second. (Typical value 1536000/#ports)"
::= { frxDefault 11 }
frxDCktBc OBJECT-TYPE
SYNTAX INTEGER(0..16777215)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"System Default for frxCktBc - used when the
Download Configuration pushbutton on the channel unit
faceplate is pushed and when frxDefaultEnable is set to 1.
This is the committed BurstSize (Bc) in bits. The time
interval over which the burst is measured is Bc/CIR.
(Typically set to same number as frxDCktCIR)."
::= { frxDefault 12 }
frxDCktBe OBJECT-TYPE
SYNTAX INTEGER(0..16777212)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"System Default for frxCktBe - used when the
Download Configuration pushbutton on the channel unit
faceplate is pushed and when frxDefaultEnable is set to 1.
This is the excess BurstSize (Be) in bits. The time
interval over which the excess burst is measured is Be/CIR.
(Typical value 1536000)."
::= { frxDefault 13 }
frxBankTable OBJECT-TYPE
SYNTAX SEQUENCE OF FrxBankEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This Cisco 90 Series Bank Di-group Table contains channel
bank level information for each of the channel bank di-groups
in the system. A di-group is a T1 interface to the frame
relay network. The table is indexed using the Cisco 90 Series
channel bank digroup number"
::= { frxBank 1 }
frxBankEntry OBJECT-TYPE
SYNTAX FrxBankEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A specific entry in the Cisco 90 Series Bank Di-group
Table. There is one entry for each channel bank di-group
(T1) in the system. There are no entries for unused banks"
INDEX { frxBankIndex }
::= { frxBankTable 1 }
FrxBankEntry ::= SEQUENCE {
frxBankIndex INTEGER,
frxBankType INTEGER
}
frxBankIndex OBJECT-TYPE
SYNTAX INTEGER(16..1007)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Channel Bank Di-group Number. This index is used to address
the various channel banks in the system. This number is the
same as the DLCI number used to communicate with the bank at
the Cisco 90 SNMP Agent. (note that this is NOT the same
as the DLCI number at the channel bank. The channel bank
always uses DLCI 30 or 31 to communicate with the Agent.)"
::= { frxBankEntry 1 }
frxBankType OBJECT-TYPE
SYNTAX INTEGER {
d4(1)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This is the type of channel bank and is for future use.
D4 banks return a value of 1."
::= { frxBankEntry 2 }
frxChUTable OBJECT-TYPE
SYNTAX SEQUENCE OF FrxChUEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This Cisco 90 Series Channel Unit Table contains channel unit
level control and statistics for each of the Cisco 90 Series
channel units in the system. The table is indexed
first using the Cisco 90 Series channel bank digroup number,
then the channel unit number (1 to 24)."
::= { frxChUnit 1 }
frxChUEntry OBJECT-TYPE
SYNTAX FrxChUEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A specific entry in the Cisco 90 Series Channel Unit Table.
There is one entry for each Cisco 90 Series channel unit in
the system. There are no entries for unused banks or empty
channel unit slots"
INDEX { frxBankIndex, frxChUIndex }
::= { frxChUTable 1 }
FrxChUEntry ::= SEQUENCE {
frxChUIndex INTEGER,
frxChUType INTEGER,
frxChUVersion INTEGER,
frxSigProtocol INTEGER,
frxConfigSrc INTEGER,
frxDLCIAdLen INTEGER,
frxNetInOctets Counter,
frxNetOutOctets Counter,
frxNetBadFrames Counter,
frxNetHDLCEs Counter,
frxNetCRCEs Counter,
frxNetLinkEs Counter,
frxNetFrShEs Counter,
frxNetFrLgEs Counter,
frxNetPPPEs Counter,
frxNetBufEs Counter
}
frxChUIndex OBJECT-TYPE
SYNTAX INTEGER(1..24)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Channel Unit Number. This index is used to address a
specific channel unit in a bank. For D4 channel banks
this number is the same as the physical slot number 1-24"
::= { frxChUEntry 1 }
frxChUType OBJECT-TYPE
SYNTAX INTEGER {
cisco90i(100)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Type of Cisco 90 Series channel unit installed."
::= { frxChUEntry 2 }
frxChUVersion OBJECT-TYPE
SYNTAX INTEGER(0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Cisco 90 Series channel unit version number."
::= { frxChUEntry 3 }
frxSigProtocol OBJECT-TYPE
SYNTAX INTEGER {
annexD(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This is the type of Local In-channel Signaling used
when the subscriber is running frame relay protocol.
It is provided for future use. Set to 1 for T1.617
Annex-D"
::= { frxChUEntry 4 }
frxConfigSrc OBJECT-TYPE
SYNTAX INTEGER {
annexD(1),
snmp(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Source for configuring speed and protocol for each port.
1=Data rate and protocol set by DLCI assignment rules
as reported by Annex-D. This option allows control
of these basic parameters from the frame relay switch
management station instead of the Cisco 90 Series
management station.
2=Data rate and protocol set by SNMP variables
frxPortSpeed and frxPortProtocol"
::= { frxChUEntry 5 }
frxDLCIAdLen OBJECT-TYPE
SYNTAX INTEGER {
twoOctetDlci(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of bytes used for the DLCI address.
For future use. 1=two octets."
::= { frxChUEntry 6 }
frxNetInOctets OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Total number of octets received by this channel
unit from Frame Relay Switch (on the T1 interface)
Only frames whose DLCI is addressed to a port on
this channel unit are counted. Bad frames, Annex-D
and SNMP frames are not counted. CRC bytes are not
counted"
::= { frxChUEntry 7 }
frxNetOutOctets OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Total number of octets transmitted to the Frame
Relay Switch (on the T1 interface) by this channel
unit. Annex-D and SNMP frames are not counted. CRC
bytes are not counted"
::= { frxChUEntry 8 }
frxNetBadFrames OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Total number of frames received on the network (T1)
interface that are discarded by this channel unit.
Possible reasons for discard are:
Frame contained HDLC abort (7 or more ones in a row)
Frame had a CRC error
Frame had a non-integral number of bytes
Frame was too short (less than 5 bytes)
Frame was too long (more than 8192 bytes)
Frame had bad RFC-1973 (PPP) header - this error only
occurs if destination port is set for PPP protocol.
Frame was discarded due to lack of buffer space.
Only frames whose DLCI is addressed to a port on
this channel unit are counted."
::= { frxChUEntry 9 }
frxNetHDLCEs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Network Errored Seconds caused by HDLC aborts (7 or more
ones in a row). Total number of seconds in which a frame
with an HDLC abort is received by this channel unit on
the network (T1) interface. Only frames whose DLCI is
addressed to a port on this channel unit are counted."
::= { frxChUEntry 10 }
frxNetCRCEs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Network Errored Seconds caused by CRC errors.
Total number of seconds in which a frame with a CRC
error is received by this channel unit on the network
(T1) interface. Only frames whose DLCI is addressed
to a port on this channel unit are counted."
::= { frxChUEntry 11 }
frxNetLinkEs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Network Errored Seconds caused by Non-integral Bytes.
Total number of seconds in which a frame with a non-integral
number of bytes is received by this channel unit on the
network (T1) interface. Only frames whose DLCI is addressed
to a port on this channel unit are counted."
::= { frxChUEntry 12 }
frxNetFrShEs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Network Errored Seconds caused by Short Frames received.
Total number of seconds in which a frame that is too
short (less than 5 bytes) is received by this channel
unit on the network (T1) interface. Only frames whose
DLCI is addressed to a port on this channel unit are
counted."
::= { frxChUEntry 13 }
frxNetFrLgEs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Network Errored Seconds caused by Long Frames received.
Total number of seconds in which a frame that is too
long (more than 8192 bytes) is received by this channel
unit on the network (T1) interface. Only frames whose
DLCI is addressed to a port on this channel unit are
counted."
::= { frxChUEntry 14 }
frxNetPPPEs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Errored seconds caused by bad RFC-1973 (PPP) header.
Total number of seconds in which a frame with an
invalid RFC-1973 (PPP) header is received by this
channel unit on the network (T1) interface. Only frames
whose DLCI is addressed to a port that is set to PPP
protocol and is on this channel unit are counted."
::= { frxChUEntry 15 }
frxNetBufEs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Errored Seconds caused by Buffer Overflow.
Total number of seconds in which a frame received
by this channel unit on the network (T1) interface
was discarded due to insufficient buffer space. Only
frames whose DLCI is addressed to a port on this
channel unit are counted."
::= { frxChUEntry 16 }
frxMgtTable OBJECT-TYPE
SYNTAX SEQUENCE OF FrxMgtEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table monitors and controls the T1-617 Annex-D
parameters used by the channel units. There is one
table row for every channel unit in every bank. The
table is indexed first using the Cisco 90 Series channel
bank digroup number, then the channel unit number (1 to 24).
For best performance, all of the channel units in a
given bank should be set to identical values. These
values are typically set using global parameters in the
frxDefaultTable instead of directly via this table. "
::= { frxMgt 1 }
frxMgtEntry OBJECT-TYPE
SYNTAX FrxMgtEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A specific entry in the Cisco 90 Series Management Table.
There is one entry for each Cisco 90 Series channel unit
in the system. There are no entries for unused banks or
empty channel unit slots"
INDEX { frxBankIndex, frxChUIndex }
::= { frxMgtTable 1 }
FrxMgtEntry ::= SEQUENCE {
frxPortsInSvc INTEGER,
frxMgtT391 INTEGER,
frxMgtT392 INTEGER,
frxMgtN391 INTEGER,
frxMgtN392 INTEGER,
frxMgtN393 INTEGER,
frxNetLinkErrors Counter,
frxNetProtErrors Counter,
frxNetChInactive Counter,
frxNetChStatus INTEGER
}
frxPortsInSvc OBJECT-TYPE
SYNTAX INTEGER(0..4)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Ports in service. The number of ports on a Cisco 90 Series
channel unit that have one or more active PVCs, as determined
by Annex-D."
::= { frxMgtEntry 1 }
frxMgtT391 OBJECT-TYPE
SYNTAX INTEGER(5..30)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This controls how often (in seconds) the channel unit
sends an Annex-D poll to the frame relay switch.
This is the Annex-D T391 parameter (Typical value 10)"
::= { frxMgtEntry 2 }
frxMgtT392 OBJECT-TYPE
SYNTAX INTEGER(5..30)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This controls how long (in seconds) the channel unit
will wait for a subscriber to send it an Annex-D poll
before declaring a link error from the subscriber.
This is the Annex-D T392 parameter (Typical value 15)"
::= { frxMgtEntry 3 }
frxMgtN391 OBJECT-TYPE
SYNTAX INTEGER(1..255)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This controls how often (in polls) the channel unit
sends a full status inquiry poll to the frame relay
switch instead of a link integrity verification poll.
This is the Annex-D N391 parameter (Typical value 6)"
::= { frxMgtEntry 4 }
frxMgtN392 OBJECT-TYPE
SYNTAX INTEGER(1..10)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"When more than frxMgtN392 errors are detected in any
frxMgtN393 monitored Annex-D events, the network is
declared inactive. This is the Annex-D N392 parameter
(Typical value 3)"
::= { frxMgtEntry 5 }
frxMgtN393 OBJECT-TYPE
SYNTAX INTEGER(1..10)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"When more than frxMgtN392 errors are detected in any
frxMgtN393 monitored Annex-D events, the network is
declared inactive. This is the Annex-D N393 parameter
(Typical value 4)"
::= { frxMgtEntry 6 }
frxNetLinkErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of signaling link reliability errors from
network. A signaling reliability error is declared
whenever the channel units did not receive a reply
from the frame relay switch to an Annex-D link
integrity poll or full status inquiry poll"
::= { frxMgtEntry 7 }
frxNetProtErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of signaling protocol errors from network.
A signaling protocol error is declared whenever
the channel units receive a reply with incorrect
format or sequence numbers from the frame relay
switch in response to an Annex-D link integrity
poll or full status inquiry poll"
::= { frxMgtEntry 8 }
frxNetChInactive OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of times network Annex-D signaling channel
was declared inactive."
::= { frxMgtEntry 9 }
frxNetChStatus OBJECT-TYPE
SYNTAX INTEGER {
active(1),
inactive(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Current status of the Annex-D signaling channel on
the network side of the channel bank."
::= { frxMgtEntry 10 }
frxMgtPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF FrxMgtPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table monitors the T1-617 Annex-D link
between the channel units and the subscribers.
There is one table row for every port on every
channel unit in every bank. The table is indexed
first using the channel bank digroup number, then
the channel unit number (1 to 24), and then the
port number (0 to 3)."
::= { frxMgt 2 }
frxMgtPortEntry OBJECT-TYPE
SYNTAX FrxMgtPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A specific entry in the Cisco 90 Series Management Port
Table. There is one entry for each port on each
Cisco 90 Series channel unit in the system. There are no
entries for unused banks or empty channel unit
slots."
INDEX { frxBankIndex, frxChUIndex, frxPortIndex }
::= { frxMgtPortTable 1 }
FrxMgtPortEntry ::= SEQUENCE {
frxPortIndex INTEGER,
frxPortLinkErrors Counter,
frxPortProtErrors Counter,
frxPortChInactive Counter
}
frxPortIndex OBJECT-TYPE
SYNTAX INTEGER(0..3)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Which subscriber port on the channel unit is
addressed. Ports are numbered from 0 to 3.
Some channel unit types have less than 4 ports."
::= { frxMgtPortEntry 1 }
frxPortLinkErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of signaling link reliability errors from
subscriber port. A signaling reliability error is
declared whenever the channel units did not receive
an Annex-D link integrity poll or full status inquiry
poll from the subscriber port within the required time."
::= { frxMgtPortEntry 2 }
frxPortProtErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of signaling protocol errors from subscriber
port. A signaling protocol error is declared whenever
the channel units receive an Annex-D link integrity
poll or full status inquiry poll with incorrect
format or sequence numbers from the subscriber port."
::= { frxMgtPortEntry 3 }
frxPortChInactive OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of times the subscriber port Annex-D signaling
channel was declared inactive"
::= { frxMgtPortEntry 4 }
frxPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF FrxPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This Cisco 90 Series Port Table contains per-port control and
statistics for each of the subscriber ports in the
system. The table is indexed first using the Cisco 90 Series
channel bank digroup number, then by the channel
unit number (1 to 24), and finally by the port
number (0-3)."
::= { frxPort 1 }
frxPortEntry OBJECT-TYPE
SYNTAX FrxPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A specific entry in the Cisco 90 Series Port Table. There is
one entry for each port on each Cisco 90 Series channel unit
in the system. There are no entries for unused banks or
empty channel unit slots."
INDEX { frxBankIndex, frxChUIndex, frxPortIndex }
::= { frxPortTable 1 }
FrxPortEntry ::= SEQUENCE {
frxPortSpeed INTEGER,
frxPortProtocol INTEGER,
frxDSLStatus INTEGER,
frxPVCAssigned INTEGER,
frxLastChange TimeTicks,
frxBrite INTEGER,
frxDSLInOctets Counter,
frxDSLOutOctets Counter,
frxT1InOctets Counter,
frxT1OutOctets Counter,
frxDSLBadFrames Counter,
frxDSLHDLCEs Counter,
frxDSLCRCEs Counter,
frxDSLLinkEs Counter,
frxDSLFrShEs Counter,
frxDSLFrLgEs Counter,
frxDSLDLCIEs Counter,
frxTxBuf INTEGER,
frxRxBuf INTEGER,
frxPortNetEs Counter
}
frxPortSpeed OBJECT-TYPE
SYNTAX INTEGER {
use56kbps(1),
use64kbps(2),
use128kbps(3),
use144kbps(4)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This is the speed that the channel unit port runs at.
1=56kbps 2=64kbps 3=128kbps 4=144kbps
This parameter can only be changed if frxConfigSrc is
set to SNMP."
::= { frxPortEntry 1 }
frxPortProtocol OBJECT-TYPE
SYNTAX INTEGER {
frameRelay(1),
ppp(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This parameter controls what protocol the channel
unit should expect the subscriber to send on the port.
1=Port uses Frame Relay protocol - no encapsulation
2=Port uses PPP protocol - do RFC-1973 encapsulation
This parameter can only be changed if frxConfigSrc is
set to SNMP."
::= { frxPortEntry 2 }
frxDSLStatus OBJECT-TYPE
SYNTAX INTEGER {
loopDown(1),
dslSyncOnly(2),
loopUpInactive(3),
loopUp(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This is the status of the DSL loop to the subscriber.
1=Loop is down.
2=Frx card has achieved physical layer activation with
the first BRITE card or the NT1 if there are no BRITE cards.
3=Link is up but Annex-D is still inactive. The ACT bit has
been exchanged with the NT1 indicating a clear channel path
to the customer has been established. Ports running protocols
(i.e. PPP) that do not support Annex-D will never be in this
state.
4=Link is fully up. Annex-D (if appropriate) is active."
::= { frxPortEntry 3 }
frxPVCAssigned OBJECT-TYPE
SYNTAX INTEGER(0..8)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of PVCs assigned to Subscriber Port as determined
by Annex-D"
::= { frxPortEntry 4 }
frxLastChange OBJECT-TYPE
SYNTAX TimeTicks