summaryrefslogtreecommitdiff
path: root/MIBS/sagemcom/GIGE-MIB
blob: c558077d374fcf5718ac5cd1a794fef15f701dd5 (plain)
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
--*******************************************************************
--*    SAGEM SA			 							  				*
--*******************************************************************
--*******************************************************************

--  Filename: GigE
--  File type: .mib    
-- 
--  Description:	SNMPc source Mib file.
--		The MIB module defines the gigabitEthernet card managment in Adr2500c
--
--  Version:  19 11 2002
--	
--  Date(DD MM YYYY): 15 11 02 last update for IONOS NMS 
--     
--  Contact: D. Mobuchon, F. Bonnevialle
--
--  History: 
--		Name: S.LAURENT	
--		Date: 22 05 2002 
--		Desc: original
--   
--		Name: F.Bonnevialle 	
--		Date: 15 11 2002 		
--		Desc: Modification for SilverCreek Compiler
--
--*******************************************************************
--*******************************************************************
--*   Copyright (c) 2002, SAGEM , All rights reserved.              *
--*******************************************************************




--*******************************************************************
-- MIB: GIGE-MIB
--*******************************************************************
GIGE-MIB DEFINITIONS ::= BEGIN

--*******************************************************************
-- IMPORTS
--*******************************************************************
   IMPORTS
   adr2500c								FROM ADR2500C-MIB 
   SagemBoolean, Severity						FROM EQUIPMENT-MIB
   MODULE-IDENTITY,OBJECT-TYPE,Counter64				FROM SNMPv2-SMI
   DisplayString, PhysAddress              				FROM SNMPv2-TC; 

   gige	MODULE-IDENTITY
      LAST-UPDATED "0205220000Z"
      ORGANIZATION "SAGEM-Tolbiac drd/ddp/tmhd"
      CONTACT-INFO
	"    "
      DESCRIPTION 
        "The MIB module specific for GigE module of Adr2500c"
      ::= { adr2500c 10 }
                                                                      
                                                                      
--*******************************************************************
--* Gige part  
--*******************************************************************   

   BandwidthSize    ::= INTEGER 
   { 
   	none(0), 
   	stm1(1), 
   	stm4(4), 
   	stm16(16),
   	stm64(64)
   }
      
   gigeNumber   OBJECT-TYPE
      SYNTAX       INTEGER(0..2147483647)
      MAX-ACCESS   read-only
      STATUS       current
      DESCRIPTION 
	"Number of gigabitEthernet cards in equipment."  
      ::= { gige 10 } 
   
   gigeTable   OBJECT-TYPE
      SYNTAX       SEQUENCE OF GigeEntry
      MAX-ACCESS   not-accessible
      STATUS       current
      DESCRIPTION 
	"List of gigabitEthernet cards in equipment."  
      ::= { gige 11 } 
   
   gigeEntry   OBJECT-TYPE
      SYNTAX       GigeEntry
      MAX-ACCESS   not-accessible
      STATUS       current
      DESCRIPTION 
	"A particular gigabitEthernet card of the equipment." 
      INDEX        { gigeIndex  } 
      ::= { gigeTable 1 } 

   GigeEntry ::= SEQUENCE { 
   	  gigeIndex			   INTEGER,		-- boardIndex
      gigeSdhBandwidth     BandwidthSize,
      gigeAutoTest		   SagemBoolean,
      gigeWarmStart		   SagemBoolean
   }

   gigeIndex   OBJECT-TYPE
      SYNTAX       INTEGER(0..2147483647)
      MAX-ACCESS   read-only
      STATUS       current
      DESCRIPTION 
        "A unique value which identify a particular	gigabitEthernet card of the equipment.
	The value of this index is a constant value assigned to an entry at
	equipment design time. It is usualy related to harware"  
      ::= { gigeEntry 1 } 
   
   gigeSdhBandwidth   OBJECT-TYPE
      SYNTAX       BandwidthSize
      MAX-ACCESS   read-write
      STATUS       current
      DESCRIPTION 
        "This field set the size of the SDH Bandwidth which is allocated to the gigabitEthernet card."  
      ::= { gigeEntry 2 } 
   
   gigeAutoTest   OBJECT-TYPE
      SYNTAX       SagemBoolean
      MAX-ACCESS   read-write
      STATUS       current
      DESCRIPTION 
        "When the value of this field is set to true, an autotest is executed on the gigabitEthernet card."  
      ::= { gigeEntry 3 } 

   gigeWarmStart   OBJECT-TYPE
      SYNTAX       SagemBoolean
      MAX-ACCESS   read-write
      STATUS       current
      DESCRIPTION 
        "When the value of this field is set to true, a warmStart is launched on the gigabitEthernet card."  
      ::= { gigeEntry 4 } 

   -- End of gige description     
     

--*******************************************************************
--* Maintenance part  
--*******************************************************************  

   LoopbackGE    ::= INTEGER 
   { 
   	none(0),     -- GE-SDH Bidirectionnal Transmission 
   	local1(1),   -- GE-GE Loopback (above GFP)
   	local2(2),   -- GE-GE Loopback (beyong GFP)
   	local3(3),   -- GE-GE Loopback (into SERDES)
   	local4(4),   -- GE-GE Loopback (into GMAC Bloc)
   	remote(10)   -- SDH-SDH Loopback (into Tramer)
   }
   
   
   maintenanceNumber   OBJECT-TYPE
      SYNTAX       INTEGER(0..2147483647)
      MAX-ACCESS   read-only
      STATUS       current
      DESCRIPTION 
	"Number of gigabitEthernet ports in equipment."  
      ::= { gige 20 } 
   
   maintenanceTable   OBJECT-TYPE
      SYNTAX       SEQUENCE OF MaintenanceEntry
      MAX-ACCESS   not-accessible
      STATUS       current
      DESCRIPTION 
	"List of gigabitEthernet ports in equipment."  
      ::= { gige 21 } 
   
   maintenanceEntry   OBJECT-TYPE
      SYNTAX       MaintenanceEntry
      MAX-ACCESS   not-accessible
      STATUS       current
      DESCRIPTION 
	"A particular gigabitEthernet port of the equipment." 
      INDEX        { maintenanceIndex  } 
      ::= { maintenanceTable 1 } 

   MaintenanceEntry ::= SEQUENCE { 
   	  maintenanceIndex			   	INTEGER,		-- channelIndex = nspiTTPIndex
      maintenanceAutoTest		   	SagemBoolean,
      maintenanceLoopback			LoopbackGE,
      maintenancePRBSSent			DisplayString,
      maintenancePRBSReceived 	    DisplayString,
      maintenanceResetAllCounters	SagemBoolean,
      maintenanceResetLanCounters	SagemBoolean,      
      maintenanceResetGfpCounters	SagemBoolean,      
      maintenanceResetQosCounters	SagemBoolean                  
   }

   maintenanceIndex   OBJECT-TYPE
      SYNTAX       INTEGER(0..2147483647)
      MAX-ACCESS   read-only
      STATUS       current
      DESCRIPTION 
        "A unique value which identify a particular	gigabitEthernet port of the equipment.
	The value of this index is a constant value assigned to an entry at
	equipment design time. It is usualy related to harware"  
      ::= { maintenanceEntry 1 } 
   
   maintenanceAutoTest   OBJECT-TYPE
      SYNTAX       SagemBoolean
      MAX-ACCESS   read-write
      STATUS       current
      DESCRIPTION 
        "When the value of this field is set to true, an autotest is executed on the gigabitEthernet port."  
      ::= { maintenanceEntry 2 } 

   maintenanceLoopback   OBJECT-TYPE
      SYNTAX       LoopbackGE
      MAX-ACCESS   read-write
      STATUS       current
      DESCRIPTION 
        "This field set a loopback mode to a particular gigabitEthernet port."  
      ::= { maintenanceEntry 3 } 
   
   maintenancePRBSSent   OBJECT-TYPE
      SYNTAX       DisplayString
      MAX-ACCESS   read-write
      STATUS       current
      DESCRIPTION 
        "This field allows to sent a PRBS frame on a particular gigabitEthernet port."  
      ::= { maintenanceEntry 4 } 
   
   maintenancePRBSReceived   OBJECT-TYPE
      SYNTAX       DisplayString
      MAX-ACCESS   read-only
      STATUS       current
      DESCRIPTION 
        "The value is the actual PRBS frame received in the particular gigabitEthernet port."  
      ::= { maintenanceEntry 5 } 

   maintenanceResetAllCounters   OBJECT-TYPE
      SYNTAX       SagemBoolean
      MAX-ACCESS   read-write
      STATUS       current
      DESCRIPTION 
        "When the value of this field is set to true, all counters attached to this interface are deleted."  
      ::= { maintenanceEntry 6 } 

   maintenanceResetLanCounters   OBJECT-TYPE
      SYNTAX       SagemBoolean
      MAX-ACCESS   read-write
      STATUS       current
      DESCRIPTION 
        "When the value of this field is set to true, all QoS counters attached to this interface are deleted."  
      ::= { maintenanceEntry 7 } 

   maintenanceResetGfpCounters   OBJECT-TYPE
      SYNTAX       SagemBoolean
      MAX-ACCESS   read-write
      STATUS       current
      DESCRIPTION 
        "When the value of this field is set to true, all Gfp counters attached to this interface are deleted."  
      ::= { maintenanceEntry 8 } 

   maintenanceResetQosCounters   OBJECT-TYPE
      SYNTAX       SagemBoolean
      MAX-ACCESS   read-write
      STATUS       current
      DESCRIPTION 
        "When the value of this field is set to true, all Qos counters attached to this interface are deleted."  
      ::= { maintenanceEntry 9 } 
   
   -- End of maintenance part     
 

--*******************************************************************
--* QoS part  
--*******************************************************************      

   QosType    ::= INTEGER 
   { 
   	none(0),     
   	pauseMode(1),
   	userPriority(2),
   	vlanId(3),
   	balanced(4),   
   	ipv4TOS(10),
   	ipv6TClass(11),
   	dscp(13)
   }
   
   CongestionControl    ::= INTEGER 
   { 
   	none(0),     
   	red(1),    -- Random Early Detection 
   	wred(2)    -- Weighted Random Early Detection
   }

   SchedulingSystem    ::= INTEGER 
   { 
   	unknown(0),     
   	spq(1),    -- Strict Priority Queuing
   	wfq(4),    -- Weighted Fair Queuing
    cbwfq(5),  -- Class-Based Weighted Fair Queuing
    wrr(10)	   -- Weighted Round Robbin
   }

   
   qosNumber   OBJECT-TYPE
      SYNTAX       INTEGER(0..2147483647)
      MAX-ACCESS   read-only
      STATUS       current
      DESCRIPTION 
	"Number of Quality of Service set in equipment. This number match to channelNumber because
	there is only one Qos per Sdh Channel.
	= number of entries in qosTable"  
      ::= { gige 30 } 
   
   qosTable   OBJECT-TYPE
      SYNTAX       SEQUENCE OF QosEntry
      MAX-ACCESS   not-accessible
      STATUS       current
      DESCRIPTION 
	"List of Qos in equipment."  
      ::= { gige 31 } 
   
   qosEntry   OBJECT-TYPE
      SYNTAX       QosEntry
      MAX-ACCESS   not-accessible
      STATUS       current
      DESCRIPTION 
	"A particular qos of the equipment." 
      INDEX        { qosIndex  } 
      ::= { qosTable 1 } 

   QosEntry ::= SEQUENCE { 
   	  qosIndex				   	INTEGER,		-- channelIndex = nspiTTPIndex
      qosClassNumber		   	INTEGER,
      qosType					QosType,
      qosCongestionControl		CongestionControl,
      qosSchedulingSystem		SchedulingSystem,
      qosBwREnable		 	    SagemBoolean,
      qosHCInCCDiscardsGe		Counter64,      
      qosHCInCCDiscardsWan		Counter64      
   }

   qosIndex   OBJECT-TYPE
      SYNTAX       INTEGER(0..2147483647)
      MAX-ACCESS   read-only
      STATUS       current
      DESCRIPTION 
        "A unique value which identify a particular	QoS of the equipment.
	The value of this index is a constant value assigned to an entry at
	equipment design time. It is usualy related to harware"  
      ::= { qosEntry 1 } 
   
   qosClassNumber   OBJECT-TYPE
      SYNTAX       INTEGER(0..2147483647)
      MAX-ACCESS   read-write
      STATUS       current
      DESCRIPTION 
        "This field allows to choose the number of CoS defined for the QoS"  
      ::= { qosEntry 2 } 

   qosType   OBJECT-TYPE
      SYNTAX       QosType
      MAX-ACCESS   read-write
      STATUS       current
      DESCRIPTION 
        "This field allows to choose the type of Qos"  
      ::= { qosEntry 3 } 
   
   qosCongestionControl   OBJECT-TYPE
      SYNTAX       CongestionControl
      MAX-ACCESS   read-write
      STATUS       current
      DESCRIPTION 
        "This field allows to choose a mechanism to manage congestion problems. Some Type of Qos
        force the value of this field. "  
      ::= { qosEntry 4 }  
      
   qosSchedulingSystem   OBJECT-TYPE
      SYNTAX       SchedulingSystem
      MAX-ACCESS   read-write
      STATUS       current
      DESCRIPTION 
        "This field allows to choose a mechanism to manage congestion problems. "  
      ::= { qosEntry 5 } 
      
   qosBwREnable   OBJECT-TYPE
      SYNTAX       SagemBoolean
      MAX-ACCESS   read-write
      STATUS       current
      DESCRIPTION 
        "This field allows to activate or desactivate the Sdh throughput reservation feature. "  
      ::= { qosEntry 6 } 
     
   qosHCInCCDiscardsGe   OBJECT-TYPE
      SYNTAX       Counter64
      MAX-ACCESS   read-only
      STATUS       current
      DESCRIPTION 
        "The number of packets received on the GE interface which were discarded to prevent from switch saturation"  
      ::= { qosEntry 7 } 

   qosHCInCCDiscardsWan   OBJECT-TYPE
      SYNTAX       Counter64
      MAX-ACCESS   read-only
      STATUS       current
      DESCRIPTION 
        "The number of packets received on the WAN interface which were discarded to prevent from switch saturation"  
      ::= { qosEntry 8 } 
   
   -- End of QoS part     




--*******************************************************************
--* CoS part  
--*******************************************************************  

   CosId    ::= INTEGER 
   { 
   	cos0(0),     
   	cos1(1),   
   	cos2(2),
   	cos3(3),
   	cos4(4),
   	cos5(5),
   	cos6(6),
   	cos7(7)
   }
   
   cosNumber   OBJECT-TYPE
      SYNTAX       INTEGER(0..2147483647)
      MAX-ACCESS   read-only
      STATUS       current
      DESCRIPTION 
	"Number of Class of Service set in equipment
	= number of entries in cosTable 
	= qosNumber * qosClassNumber"  
      ::= { gige 40 } 
   
   cosTable   OBJECT-TYPE
      SYNTAX       SEQUENCE OF CosEntry
      MAX-ACCESS   not-accessible
      STATUS       current
      DESCRIPTION 
	"List of CoS in equipment."  
      ::= { gige 41 } 
   
   cosEntry   OBJECT-TYPE
      SYNTAX       CosEntry
      MAX-ACCESS   not-accessible
      STATUS       current
      DESCRIPTION 
	"A particular CoS of the equipment." 
      INDEX        { cosIndex  } 
      ::= { cosTable 1 } 

   CosEntry ::= SEQUENCE { 
   	  cosIndex				   	INTEGER,		
   	  cosQosId				   	INTEGER,                   -- qosIndex
      cosId						CosId,
      cosDefinition				DisplayString,
      cosBwRRatioMin	 	    INTEGER,
      cosBwRRatioMax	 	    INTEGER,
      cosHCInOctets				Counter64,      
      cosHCOutOctets			Counter64,      
      cosHCInPkts				Counter64,      
      cosHCOutPkts				Counter64,      
      cosHCInCCDiscards			Counter64      
   }

   cosIndex   OBJECT-TYPE
      SYNTAX       INTEGER(0..2147483647)
      MAX-ACCESS   read-only
      STATUS       current
      DESCRIPTION 
        "A unique value which identify a particular	CoS of the equipment.
	The value of this index is a constant value assigned to an entry at
	equipment design time. It is usualy related to harware. Its values are taken between 1 and cosNumber."  
      ::= { cosEntry 1 } 
   
   cosQosId   OBJECT-TYPE
      SYNTAX       INTEGER(0..2147483647)
      MAX-ACCESS   read-only
      STATUS       current
      DESCRIPTION 
        "This field allows to identify which QoS this Class is belonging. Its values must match to qosIndex."  
      ::= { cosEntry 2 } 

   cosId   OBJECT-TYPE
      SYNTAX       CosId
      MAX-ACCESS   read-only
      STATUS       current
      DESCRIPTION 
        " This field identify the class of Service."  
      ::= { cosEntry 3 } 
   
   cosDefinition   OBJECT-TYPE
      SYNTAX       DisplayString
      MAX-ACCESS   read-only
      STATUS       current
      DESCRIPTION 
        "This optional textual field brings some precisions about the CoS configuration. "  
      ::= { cosEntry 4 } 
   
   cosBwRRatioMin   OBJECT-TYPE
      SYNTAX       INTEGER(0..2147483647)
      MAX-ACCESS   read-write
      STATUS       current
      DESCRIPTION 
        "When the qosBwREnable field is set to True, then this field allows to configure the guaranted percentage of SDH
        throughput which must be booked up for the CoS"  
      ::= { cosEntry 5 } 

   cosBwRRatioMax   OBJECT-TYPE
      SYNTAX       INTEGER(0..2147483647)
      MAX-ACCESS   read-write
      STATUS       current
      DESCRIPTION 
        "When the qosBwREnable field is set to True, then this field allows to configure the maximum percentage of SDH
        throughput which can be booked up for the CoS"  
      ::= { cosEntry 6 } 

   cosHCInOctets   OBJECT-TYPE
      SYNTAX       Counter64
      MAX-ACCESS   read-only
      STATUS       current
      DESCRIPTION 
        "The total number of octets received on the GE interface (excluding framing characters preambule and sfd)
         and belonging to a CosId packet"  
      ::= { cosEntry 7 } 

   cosHCOutOctets   OBJECT-TYPE
      SYNTAX       Counter64
      MAX-ACCESS   read-only
      STATUS       current
      DESCRIPTION 
        "The total number of octets transmitted out of the Wan interface (excluding framing characters preambule and sfd)
         and belonging to a CosId paket"  
      ::= { cosEntry 8 } 

   cosHCInPkts   OBJECT-TYPE
      SYNTAX       Counter64
      MAX-ACCESS   read-only
      STATUS       current
      DESCRIPTION 
        "The total number of octets received on the GE interface (excluding framing characters preambule and sfd)
         and belonging to a CosId packet"  
      ::= { cosEntry 9 } 

   cosHCOutPkts   OBJECT-TYPE
      SYNTAX       Counter64
      MAX-ACCESS   read-only
      STATUS       current
      DESCRIPTION 
        "The total number of octets transmitted out of the Wan interface (excluding framing characters preambule and sfd)
         and belonging to a CosId paket"  
      ::= { cosEntry 10 } 

   cosHCInCCDiscards   OBJECT-TYPE
      SYNTAX       Counter64
      MAX-ACCESS   read-only
      STATUS       current
      DESCRIPTION 
        "The number of CosId packets received on the GE interface which were discarded by RED/WRED/BandWidthReservation
         to prevent from congestion."  
      ::= { cosEntry 11 } 
   
   -- End of CoS part     


--*******************************************************************
--* GFP part  
--*******************************************************************  

   GfpFailure    ::= INTEGER 
   { 
   	none(0),     
   	oofd(1),   
   	lofd(2),
   	fdsc(3)
   }

   GfpState    ::= INTEGER(0..2147483647) 
  -- { 
  -- 	none(0),     
  -- 	(1),   
  -- 	(2),
  -- 	(3)
  -- }
    
   gfpNumber   OBJECT-TYPE
      SYNTAX       INTEGER(0..2147483647)
      MAX-ACCESS   read-only
      STATUS       current
      DESCRIPTION 
	"ports Number of the Gfp layer.
	= number of entries in gfpTable "  
      ::= { gige 50 } 
   
   gfpTable   OBJECT-TYPE
      SYNTAX       SEQUENCE OF GfpEntry
      MAX-ACCESS   not-accessible
      STATUS       current
      DESCRIPTION 
	"List of gfp port in the equipment."  
      ::= { gige 51 } 
   
   gfpEntry   OBJECT-TYPE
      SYNTAX       GfpEntry
      MAX-ACCESS   not-accessible
      STATUS       current
      DESCRIPTION 
	"A particular gfp port of the equipment." 
      INDEX        { gfpIndex  } 
      ::= { gfpTable 1 } 

   GfpEntry ::= SEQUENCE { 
   	  gfpIndex				   	INTEGER,		 -- channelIndex
      gfpHCInPkts				Counter64,
      gfpHCInIdlePkts			Counter64,
      gfpHCInCorruptedPkts 	    Counter64,
      gfpHCInErrors		 	    Counter64,
      gfpHCInCorrectedPkts 	    Counter64,
      gfpHCFCSErrors			Counter64,      
      gfpHCInOctets				Counter64,      
      gfpHCOutPkts				Counter64,
      gfpHCOutIdlePkts			Counter64,
      gfpHCOutOctets			Counter64,
      gfpIdleRate				INTEGER,
      gfpSendingRate			INTEGER,
   	  gfpState				   	GfpState,         
      gfpAdminStatus			INTEGER,
      gfpOperStatus				INTEGER,
      gfpMonitor				SagemBoolean,
      gfpFailure				GfpFailure,
      gfpSeverity				Severity,
      gfpOOFD					Severity,
      gfpLOFD					Severity,
      gfpFDSC					Severity
   }

   gfpIndex   OBJECT-TYPE
      SYNTAX       INTEGER(0..2147483647)
      MAX-ACCESS   read-only
      STATUS       current
      DESCRIPTION 
        "A unique value which identify a particular	gfp port in the equipment.
	The value of this index is a constant value assigned to an entry at
	equipment design time. It is usualy related to harware. Its values are mapped to channelIndex values."  
      ::= { gfpEntry 1 } 
   
   gfpHCInPkts   OBJECT-TYPE
      SYNTAX       Counter64
      MAX-ACCESS   read-only
      STATUS       current
      DESCRIPTION 
        " The total number of packets received on the Gfp interface"  
      ::= { gfpEntry 2 } 
   
   gfpHCInIdlePkts   OBJECT-TYPE
      SYNTAX       Counter64
      MAX-ACCESS   read-only
      STATUS       current
      DESCRIPTION 
         " The total number of Idle frames received on the Gfp interface"  
      ::= { gfpEntry 3 } 
   
   gfpHCInCorruptedPkts   OBJECT-TYPE
      SYNTAX       Counter64
      MAX-ACCESS   read-only
      STATUS       current
      DESCRIPTION 
        " The total number of mismatched packets received on the Gfp interface."  
      ::= { gfpEntry 4 } 

   gfpHCInErrors   OBJECT-TYPE
      SYNTAX       Counter64
      MAX-ACCESS   read-only
      STATUS       current
      DESCRIPTION 
        "The total number of mismatched packets that have been discarded. "  
      ::= { gfpEntry 5 } 

   gfpHCInCorrectedPkts   OBJECT-TYPE
      SYNTAX       Counter64
      MAX-ACCESS   read-only
      STATUS       current
      DESCRIPTION 
        "The total number of mismatched packets received on the Gfp interface that have been corrected. "  
      ::= { gfpEntry 6 } 
     
   gfpHCFCSErrors   OBJECT-TYPE
      SYNTAX       Counter64
      MAX-ACCESS   read-only
      STATUS       current
      DESCRIPTION 
        "The number of frames received on the Gfp interface that are an integral number of octets
         in length but do not pass the FCS check. "  
      ::= { gfpEntry 7 } 

   gfpHCInOctets   OBJECT-TYPE
      SYNTAX       Counter64
      MAX-ACCESS   read-only
      STATUS       current
      DESCRIPTION 
        " The total number of Octets received on the Gfp interface"  
      ::= { gfpEntry 8 } 
      
   gfpHCOutPkts   OBJECT-TYPE
      SYNTAX       Counter64
      MAX-ACCESS   read-only
      STATUS       current
      DESCRIPTION 
        " The total number of packets transmitted out of the Gfp interface"  
      ::= { gfpEntry 9 } 
       
   gfpHCOutIdlePkts   OBJECT-TYPE
      SYNTAX       Counter64
      MAX-ACCESS   read-only
      STATUS       current
      DESCRIPTION 
        " The total number of Idle frame transmitted out of the Gfp interface"  
      ::= { gfpEntry 10 } 

   gfpHCOutOctets   OBJECT-TYPE
      SYNTAX       Counter64
      MAX-ACCESS   read-only
      STATUS       current
      DESCRIPTION 
        " The total number of packets transmitted out of the Gfp interface"  
      ::= { gfpEntry 11 } 

   gfpIdleRate   OBJECT-TYPE
      SYNTAX       INTEGER(0..2147483647)
      MAX-ACCESS   read-only
      STATUS       current
      DESCRIPTION 
        " The received Idle frames rate on a particular gfp port. "  
      ::= { gfpEntry 12 } 
 
   gfpSendingRate   OBJECT-TYPE
      SYNTAX       INTEGER(0..2147483647)
      MAX-ACCESS   read-only
      STATUS       current
      DESCRIPTION 
        " The sent frames rate on a particular gfp port. "  
      ::= { gfpEntry 13 } 

   gfpState   OBJECT-TYPE
      SYNTAX       GfpState
      MAX-ACCESS   read-only
      STATUS       current
      DESCRIPTION 
        "This field allows to know in which state this gfp port is working."  
      ::= { gfpEntry 14 } 

    gfpAdminStatus   OBJECT-TYPE
      SYNTAX       INTEGER {
                      up(1),       -- ready to pass packets
                      down(2),
                      testing(3)   -- in some test mode
                   }
      MAX-ACCESS   read-write
      STATUS       current
      DESCRIPTION 
	"The desired state of the gfp port.  The
     testing(3) state indicates that no operational
     packets can be passed."  
      ::= { gfpEntry 15 } 

   gfpOperStatus   OBJECT-TYPE
      SYNTAX       INTEGER {
                     up(1),       -- ready to pass packets
                     down(2),
                     testing(3)   -- in some test mode
                   }
      MAX-ACCESS   read-only
      STATUS       current
      DESCRIPTION 
	"The current operational state of the gfp port.
     The testing(3) state indicates that no operational
     packets can be passed."  
      ::= { gfpEntry 16 }          
      
   gfpMonitor   OBJECT-TYPE
      SYNTAX       SagemBoolean
      MAX-ACCESS   read-write
      STATUS       current
      DESCRIPTION 
	"When the value of this field is set to false, the failure detection
	is stopped for this gfp port."  
      ::= { gfpEntry 17 } 
   
   gfpFailure   OBJECT-TYPE
      SYNTAX       GfpFailure
      MAX-ACCESS   read-only
      STATUS       current
      DESCRIPTION 
        "Active failures on channel"  
      ::= { gfpEntry 18 } 
   
   gfpSeverity   OBJECT-TYPE
      SYNTAX       Severity
      MAX-ACCESS   read-only
      STATUS       current
      DESCRIPTION 
        "A reference to failure severity for gfp port."  
      ::= { gfpEntry 19 }    
         
   gfpOOFD   OBJECT-TYPE
      SYNTAX       Severity
      MAX-ACCESS   read-write
      STATUS       current
      DESCRIPTION 
	"Severity associated with Out of Frame Delineation failure
	for gfp port."  
      ::= { gfpEntry 20 }     
  
   gfpLOFD   OBJECT-TYPE
      SYNTAX       Severity
      MAX-ACCESS   read-write
      STATUS       current
      DESCRIPTION 
	"Severity associated with Loss Of Frame Delineation failure
	for gfp port."  
      ::= { gfpEntry 21 } 
   
   gfpFDSC   OBJECT-TYPE
      SYNTAX       Severity
      MAX-ACCESS   read-write
      STATUS       current
      DESCRIPTION 
	"Severity associated with Frame Delineation State Change failure
	for gfp port."  
      ::= { gfpEntry 22 }
-- End of GFP part     
    

--*******************************************************************
--* PAUSE part  
--*******************************************************************  

   PauseFailure    ::= INTEGER 
   { 
   	none(0),     
   	pauseModeRejected(1)
   }
    
   pauseNumber   OBJECT-TYPE
      SYNTAX       INTEGER(0..2147483647)
      MAX-ACCESS   read-only
      STATUS       current
      DESCRIPTION 
	"Number of ports in the equipment which accept Pause mechanism
	= number of entries in pauseTable "  
      ::= { gige 60 } 
   
   pauseTable   OBJECT-TYPE
      SYNTAX       SEQUENCE OF PauseEntry
      MAX-ACCESS   not-accessible
      STATUS       current
      DESCRIPTION 
	"List of Ethernet port in the equipment which accept Pause mechanism."  
      ::= { gige 61 } 
   
   pauseEntry   OBJECT-TYPE
      SYNTAX       PauseEntry
      MAX-ACCESS   not-accessible
      STATUS       current
      DESCRIPTION 
	"A particular Ethernet port of the equipment." 
      INDEX        { pauseIndex  } 
      ::= { pauseTable 1 } 

   PauseEntry ::= SEQUENCE { 
   	  pauseIndex				INTEGER,		 -- Lan ifIndex
   	  pauseTime				   	INTEGER,         
      pauseBetweenTime			INTEGER,
      pauseMacSA				PhysAddress,
      pauseMacDA 	    		PhysAddress,
      pauseCHT		 	    	INTEGER,
      pauseCLT 	    			INTEGER,
      pauseMonitor				SagemBoolean,      
      pauseFailure				PauseFailure,      
      pauseSeverity				Severity,
      pauseModeRejected			Severity
   }

   pauseIndex   OBJECT-TYPE
      SYNTAX       INTEGER(0..2147483647)
      MAX-ACCESS   read-only
      STATUS       current
      DESCRIPTION 
        "A unique value which identify a particular	Ethernet Physical port of a gigabitEthernet card.
	The value of this index is a constant value assigned to an entry at
	equipment design time. It is usualy related to harware. Its values are mapped to IfIndex values of Lan Ports."  
      ::= { pauseEntry 1 } 
   
   pauseTime   OBJECT-TYPE
      SYNTAX       INTEGER(0..2147483647)
      MAX-ACCESS   read-write
      STATUS       current
      DESCRIPTION 
        "This field allows to set the Time during which the linkPartner stop any transmission. The Unit used is the time slot
        (= 512 ns)."  
      ::= { pauseEntry 2 } 

   pauseBetweenTime   OBJECT-TYPE
      SYNTAX       INTEGER(0..2147483647)
      MAX-ACCESS   read-write
      STATUS       current
      DESCRIPTION 
        "This field allows to set the Time between two Pause Frames transmission. The Unit used is the time slot
        (= 512 ns)."  
      ::= { pauseEntry 3 } 
   
   pauseMacSA   OBJECT-TYPE
      SYNTAX       PhysAddress
      MAX-ACCESS   read-write
      STATUS       current
      DESCRIPTION 
         " The physical address of the Ethernet port.
         This address is used to fill the SourceAddress field of any Pause Frame which is trasmitted by the LinkPartner."  
      ::= { pauseEntry 4 } 
   
   pauseMacDA   OBJECT-TYPE
      SYNTAX       PhysAddress
      MAX-ACCESS   read-write
      STATUS       current
      DESCRIPTION 
         " The physical address used to fill the DestinationAddress field of any Pause Frame which is transmitted by the LinkPartner."  
      ::= { pauseEntry 5 } 

   pauseCHT   OBJECT-TYPE
      SYNTAX       INTEGER(0..2147483647)
      MAX-ACCESS   read-write
      STATUS       current
      DESCRIPTION 
        "This field allows to configure the credit High Threshold of Pause mechanism."  
      ::= { pauseEntry 6 } 

   pauseCLT   OBJECT-TYPE
      SYNTAX       INTEGER(0..2147483647)
      MAX-ACCESS   read-write
      STATUS       current
      DESCRIPTION 
        "This field allows to configure the credit Low Threshold of Pause mechanism."  
      ::= { pauseEntry 7 } 
     
   pauseMonitor   OBJECT-TYPE
      SYNTAX       SagemBoolean
      MAX-ACCESS   read-write
      STATUS       current
      DESCRIPTION 
	"When the value of this field is set to false, the failure detection
	is stopped for this Ethernet port."  
      ::= { pauseEntry 10 } 
   
   pauseFailure   OBJECT-TYPE
      SYNTAX       PauseFailure
      MAX-ACCESS   read-only
      STATUS       current
      DESCRIPTION 
        "Active failures in the pause mechanism of the Ethernet port."  
      ::= { pauseEntry 11 } 
   
   pauseSeverity   OBJECT-TYPE
      SYNTAX       Severity
      MAX-ACCESS   read-only
      STATUS       current
      DESCRIPTION 
        "A reference to severity associated to the current pause failure."  
      ::= { pauseEntry 12 }    
         
   pauseModeRejected   OBJECT-TYPE
      SYNTAX       Severity
      MAX-ACCESS   read-write
      STATUS       current
      DESCRIPTION 
	"This field allows to configure the Severity associated with Pause Mode Rejected failure
	for Ethernet port."  
      ::= { pauseEntry 13 } 
   
-- End of Pause part     


END