1-- This file is corresponding to Release 9.1.10.101 from 2014/08/11 00:00:00
2
3
4-- (C)opyright 1991-2014 bintec elmeg GmbH, All Rights Reserved
5-- $RCSfile: mibatm2,v $
6-- $Revision: 1.32.1.1 $
7
8BIANCA-BRICK-ATM2-MIB DEFINITIONS ::= BEGIN
9
10        IMPORTS
11            IpAddress, Counter, Gauge, TimeTicks, enterprises
12                FROM RFC1155-SMI
13
14            DisplayString
15                FROM RFC1158-MIB
16
17	    PhysAddress
18		FROM RFC1213-MIB
19
20            OBJECT-TYPE
21                FROM RFC-1212;
22
23    bintec 	OBJECT IDENTIFIER ::= { enterprises 272 }
24    bibo	OBJECT IDENTIFIER ::= { bintec 4 }
25    atm		OBJECT IDENTIFIER
26	::= { bibo 16 }
27
28---
29--- ATM Interface Table
30---
31
32	atmIfTable OBJECT-TYPE
33	    SYNTAX  SEQUENCE OF AtmIfEntry
34	    ACCESS  not-accessible
35	    STATUS  mandatory
36	    DESCRIPTION
37	    	"The atmIfTable displays all available ATM capable interfaces."
38	::= { atm 10 }
39
40	atmIfEntry OBJECT-TYPE
41	    SYNTAX  AtmIfEntry
42	    ACCESS  not-accessible
43	    STATUS  mandatory
44	    DESCRIPTION
45		"An interface entry containing objects at the
46		subnetwork layer and below for a particular
47		interface."
48		INDEX { atmIfIndex }
49	::= { atmIfTable 1 }
50
51	AtmIfEntry ::=
52	    SEQUENCE {
53		atmIfIndex  		INTEGER,
54		atmIfType 		INTEGER,
55		atmIfDescr 		DisplayString,
56		atmIfAdminStatus	INTEGER,
57		atmIfOperStatus		INTEGER,
58		atmIfLastChange		TimeTicks,
59		atmIfInPkts		Counter,
60		atmIfOutPkts		Counter,
61		atmIfRxSpeed 		Gauge,
62		atmIfTxSpeed 		Gauge,
63		atmIfInOctets		Counter,
64		atmIfInDiscards		Counter,
65		atmIfInErrors		Counter,
66		atmIfOutOctets		Counter,
67		atmIfOutDiscards	Counter,
68		atmIfOutErrors		Counter,
69		atmIfMaxTxRate		INTEGER,
70		atmIfOperMode 		INTEGER
71	    }
72
73	atmIfIndex OBJECT-TYPE
74	    SYNTAX  INTEGER
75	    ACCESS  read-only
76	    STATUS  mandatory
77	    DESCRIPTION
78		"The interface index of the associated ATM hardware."
79	::= { atmIfEntry 1 }
80
81	atmIfType OBJECT-TYPE
82	    SYNTAX  INTEGER {
83		other(1),
84		adsl(2),
85		shdsl(3),
86		vdsl(4)
87	    }
88	    ACCESS  read-only
89	    STATUS  mandatory
90	    DESCRIPTION
91		"This object contains an interface type."
92	    DEFVAL { other }
93	::= { atmIfEntry 2 }
94
95	atmIfDescr OBJECT-TYPE
96	    SYNTAX  DisplayString
97	    ACCESS  read-only
98	    STATUS  mandatory
99	    DESCRIPTION
100	    	"Short description for this object."
101	::= { atmIfEntry 3 }
102
103	atmIfAdminStatus OBJECT-TYPE
104	    SYNTAX  INTEGER {
105	    	up(1),
106		down(2)
107	    }
108	    ACCESS  read-write
109	    STATUS  mandatory
110	    DESCRIPTION
111	    	"This object contains the desired state of the ATM interface."
112	    DEFVAL { up }
113	::= { atmIfEntry 4 }
114
115	atmIfOperStatus OBJECT-TYPE
116	    SYNTAX  INTEGER {
117	    	up(1),
118		down(2)
119	    }
120	    ACCESS  read-only
121	    STATUS  mandatory
122	    DESCRIPTION
123	        "The current operational state of the ATM interface."
124            DEFVAL { down }
125	::= { atmIfEntry 5 }
126
127	atmIfLastChange OBJECT-TYPE
128	    SYNTAX
129		    TimeTicks
130	    ACCESS  read-only
131	    STATUS  mandatory
132	    DESCRIPTION
133		"The value of sysUpTime at the time the interface entered
134		 its current operational state. If the current state was
135		 entered prior to the last re-initialization of the local
136		 network management subsystem, then this object contains a
137		 zero value."
138	::= { atmIfEntry 6 }
139
140	atmIfMaxTxRate OBJECT-TYPE
141	    SYNTAX  INTEGER
142	    ACCESS  read-write
143	    STATUS  mandatory
144	    DESCRIPTION
145                "This object enables traffic shaping on the related ATM
146		 interface. If set to zero (0) there is no shaping active.
147		 Otherwise this variable defines the maximum amount of bits
148		 per second to be transmitted. Note that the maximum transmit
149		 rate is also determined by the capabilities of the ATM
150		 hardware."
151            DEFVAL { 0 }
152	::= { atmIfEntry 7 }
153
154	atmIfOperMode OBJECT-TYPE
155	    SYNTAX  INTEGER {
156	    	atm(1),
157		efm(2)
158	    }
159	    ACCESS  read-only
160	    STATUS  mandatory
161	    DESCRIPTION
162	        "The current operational mode of the ATM interface.
163		The value atm(1) means ATM is used on the line.
164		The value efm(2) means ATM is used only internally
165		and Ethernet with HDLC framing is used on the line."
166            DEFVAL { atm }
167	::= { atmIfEntry 8 }
168
169	atmIfInPkts OBJECT-TYPE
170	    SYNTAX  INTEGER
171	    ACCESS  read-only
172	    STATUS  mandatory
173	    DESCRIPTION
174		"The number of reassembled received packets."
175	::= { atmIfEntry 22 }
176
177	atmIfOutPkts OBJECT-TYPE
178	    SYNTAX  INTEGER
179	    ACCESS  read-only
180	    STATUS  mandatory
181	    DESCRIPTION
182		"This number of transmitted packets."
183	::= { atmIfEntry 23 }
184
185	atmIfRxSpeed OBJECT-TYPE
186	    SYNTAX  INTEGER
187	    ACCESS  read-only
188	    STATUS  mandatory
189	    DESCRIPTION
190		"This object contains the receive interface speed."
191	::= { atmIfEntry 24 }
192
193	atmIfTxSpeed OBJECT-TYPE
194	    SYNTAX  INTEGER
195	    ACCESS  read-only
196	    STATUS  mandatory
197	    DESCRIPTION
198	    	"This object contains the transmit interface speed."
199	::= { atmIfEntry 25 }
200
201	atmIfInOctets OBJECT-TYPE
202	    SYNTAX  Counter
203	    ACCESS  read-only
204	    STATUS  mandatory
205	    DESCRIPTION
206		"The total number of octets received on the interface,
207		 including framing characters."
208	::= { atmIfEntry 26 }
209
210	atmIfInDiscards OBJECT-TYPE
211	    SYNTAX  Counter
212	    ACCESS  read-only
213	    STATUS  mandatory
214	    DESCRIPTION
215		"The number of inbound packets which were chosen to be
216		 discarded even though no errors had been detected to prevent
217		 their being deliverable to a higher-layer protocol. One
218		 possible reason for discarding such a packet could be to
219		 free up buffer space."
220	::= { atmIfEntry 27 }
221
222	atmIfInErrors OBJECT-TYPE
223	    SYNTAX  Counter
224	    ACCESS  read-only
225       	    STATUS  mandatory
226     	    DESCRIPTION
227		"The number of inbound packets that contained errors preventing
228		 them from being deliverable to a higher-layer protocol."
229    	::= { atmIfEntry 28 }
230
231	atmIfOutOctets OBJECT-TYPE
232	    SYNTAX  Counter
233	    ACCESS  read-only
234	    STATUS  mandatory
235	    DESCRIPTION
236		"The total number of octets transmitted out of the interface,
237		 including framing characters."
238	::= { atmIfEntry 29 }
239
240	atmIfOutDiscards OBJECT-TYPE
241      	    SYNTAX  Counter
242	    ACCESS  read-only
243	    STATUS  mandatory
244	    DESCRIPTION
245     		"The number of outbound packets which were chosen to be
246		 discarded even though no errors had been detected to prevent
247		 their being transmitted.  One possible reason for discarding
248		 such a packet could be to free up buffer space."
249	::= { atmIfEntry 30 }
250
251	atmIfOutErrors OBJECT-TYPE
252	    SYNTAX  Counter
253	    ACCESS  read-only
254	    STATUS  mandatory
255            DESCRIPTION
256		"The number of outbound packets that could not be transmitted
257		 because of errors."
258	::= { atmIfEntry 31 }
259
260---
261--- The Virtual Path Group
262--- This group is mandatory for all UNI devices.
263--- Information concerning Virtual Path Connections
264--- This is the lite version of ATM-FORUM-MIB
265---
266
267    	atmVpcTable OBJECT-TYPE
268	    SYNTAX  SEQUENCE OF AtmVpcEntry
269	    ACCESS  not-accessible
270	    STATUS  mandatory
271	    DESCRIPTION
272	    	"A table of status and parameter information on the virtual
273		 path connections which cross this UNI. There is one entry in
274		 this table for each permanent virtual path connection.
275	    	 This is the lite version of ATM-FORUM-MIB DEFINITIONS "
276	::= { atm 11 }
277
278	atmVpcEntry OBJECT-TYPE
279	    SYNTAX  AtmVpcEntry
280	    ACCESS  not-accessible
281	    STATUS  mandatory
282	    DESCRIPTION
283	    	"An entry in the table, containing information about a
284		 particular virtual path connection."
285	    INDEX	 { atmVpcPortIndex, atmVpcVpi }
286	::= { atmVpcTable 1 }
287
288	AtmVpcEntry ::=
289	    SEQUENCE {
290		atmVpcPortIndex		INTEGER,
291		atmVpcVpi		INTEGER,
292		atmVpcOperStatus	INTEGER
293	    }
294
295	atmVpcPortIndex OBJECT-TYPE
296	    SYNTAX  INTEGER
297	    ACCESS  read-only
298	    STATUS  mandatory
299	    DESCRIPTION
300		"The interface index of the associated ATM hardware."
301	::= { atmVpcEntry 1 }
302
303	atmVpcVpi OBJECT-TYPE
304	    SYNTAX  INTEGER (0..255)
305	    ACCESS  read-only
306	    STATUS  mandatory
307	    DESCRIPTION
308	    	"The VPI value of this Virtual Path Connection."
309	::= { atmVpcEntry 2 }
310
311	atmVpcOperStatus OBJECT-TYPE
312	    SYNTAX  INTEGER {
313		unknown(1),
314		end2endUp(2),
315		end2endDown(3),
316		localUpEnd2endUnknown(4),
317		localDown(5)
318	    }
319	    ACCESS 		read-only
320	    STATUS 		mandatory
321	    DESCRIPTION
322	    	"The present actual operational status of the VPC. A value of
323		 end2endUp(2) or end2endDown(3) would be used if the end-to-end
324	    	 status is known. If only local status information is available,
325		 a value of localUpEnd2endUnknown(4) or localDown(5) would
326		 be used."
327            DEFVAL { unknown }
328	::= { atmVpcEntry 3 }
329
330
331---
332--- The Virtual Channel Group
333--- This group is mandatory for all UNI devices.
334--- Information concerning Virtual Channel Connections
335--- This is the lite version of ATM-FORUM-MIB
336---
337
338	atmVccTable OBJECT-TYPE
339	    SYNTAX  SEQUENCE OF AtmVccEntry
340	    ACCESS  not-accessible
341	    STATUS  mandatory
342	    DESCRIPTION
343		"A table of status and parameter information on the virtual
344		 channel connections which are visible at this UNI. There is
345		 one entry in this table for each permanent virtual channel
346		 connection, including reserved VCCs that are supported;
347		 e.g., signalling, OAM flows, and ILMI, but not unassigned
348		 cells. This is the lite version of ATM-FORUM-MIB DEFINITIONS "
349	::= { atm 12 }
350
351	atmVccEntry OBJECT-TYPE
352	    SYNTAX  AtmVccEntry
353	    ACCESS  not-accessible
354	    STATUS  mandatory
355	    DESCRIPTION
356		"An entry in the table, containing information about a
357		 particular virtual channel connection."
358	    INDEX	 { atmVccPortIndex, atmVccVpi, atmVccVci }
359	::= { atmVccTable 1 }
360
361	AtmVccEntry ::=
362	    SEQUENCE {
363		atmVccPortIndex		INTEGER,
364		atmVccVpi		INTEGER,
365		atmVccVci		INTEGER,
366		atmVccOperStatus	INTEGER
367	    }
368
369	atmVccPortIndex OBJECT-TYPE
370	    SYNTAX  INTEGER
371	    ACCESS  read-only
372	    STATUS  mandatory
373	    DESCRIPTION
374		"The interface index of the associated ATM hardware."
375	    ::= { atmVccEntry 1 }
376
377	atmVccVpi OBJECT-TYPE
378	    SYNTAX  INTEGER (0..255)
379	    ACCESS  read-only
380	    STATUS  mandatory
381	    DESCRIPTION
382	    	"The VPI value of this Virtual Channel Connection."
383	::= { atmVccEntry 2 }
384
385	atmVccVci OBJECT-TYPE
386	    SYNTAX  INTEGER (0..65535)
387	    ACCESS  read-only
388	    STATUS  mandatory
389	    DESCRIPTION
390	    	"The VCI value of this Virtual Channel Connection."
391	::= { atmVccEntry 3 }
392
393	atmVccOperStatus OBJECT-TYPE
394	    SYNTAX  INTEGER {
395		unknown(1),
396		end2endUp(2),
397		end2endDown(3),
398		localUpEnd2endUnknown(4),
399		localDown(5)
400	    }
401	    ACCESS 	read-only
402	    STATUS 	mandatory
403	    DESCRIPTION
404	    	"The present actual operational status of the VCC. A value
405		 of end2endUp(2) or end2endUp(3) is used if the end-to-end
406		 status is known. If only local status is known a value of
407		 localUpEnd2endUnknown(4) or localDown(5) is used."
408            DEFVAL { unknown }
409	::= { atmVccEntry 4 }
410
411---
412--- OAM configuration table
413---
414
415	atmOamTable OBJECT-TYPE
416	    SYNTAX  SEQUENCE OF AtmOamEntry
417	    ACCESS  not-accessible
418	    STATUS  mandatory
419	    DESCRIPTION
420	    	"This tables contains all OAM configuration parameters."
421	::= { atm 13 }
422
423	atmOamEntry OBJECT-TYPE
424	    SYNTAX  AtmOamEntry
425	    ACCESS  not-accessible
426	    STATUS  mandatory
427	    DESCRIPTION
428		""
429		INDEX { atmOamAtmIfIndex, atmOamVpi, atmOamVci }
430	::= { atmOamTable 1 }
431
432	AtmOamEntry ::=
433	    SEQUENCE {
434		atmOamAtmIfIndex		INTEGER,
435		atmOamVpi			INTEGER,
436		atmOamVci			INTEGER,
437		atmOamFlowLevel			INTEGER,
438		atmOamLoopbackEnd2End		INTEGER,
439		atmOamLoopbackSegment		INTEGER,
440		atmOamLoopbackEnd2EndInterval	INTEGER,
441		atmOamLoopbackSegmentInterval	INTEGER,
442		atmOamLoopbackEnd2EndMaxPending	INTEGER,
443		atmOamLoopbackSegmentMaxPending	INTEGER,
444		atmOamCCEnd2EndActivation	INTEGER,
445		atmOamCCSegmentActivation	INTEGER,
446		atmOamCCEnd2EndDirection	INTEGER,
447		atmOamCCSegmentDirection	INTEGER
448	    }
449
450	atmOamAtmIfIndex OBJECT-TYPE
451	    SYNTAX  INTEGER
452	    ACCESS  read-write
453	    STATUS  mandatory
454	    DESCRIPTION
455		"The interface index of the associated ATM hardware."
456	::= { atmOamEntry 1 }
457
458	atmOamVpi OBJECT-TYPE
459	    SYNTAX  INTEGER (0..255)
460	    ACCESS  read-write
461	    STATUS  mandatory
462	    DESCRIPTION
463	    	"The VPI value of this Virtual Path/Channel Connection."
464	    DEFVAL { 8 }
465	::= { atmOamEntry 2 }
466
467	atmOamVci OBJECT-TYPE
468	    SYNTAX  INTEGER (0..65535)
469	    ACCESS  read-write
470	    STATUS  mandatory
471	    DESCRIPTION
472	    	"The VCI value of this Virtual Channel Connection."
473	    DEFVAL { 32 }
474	::= { atmOamEntry 3 }
475
476	atmOamFlowLevel	OBJECT-TYPE
477	    SYNTAX  INTEGER {
478	    	f5(1),
479	    	f4(2),
480                delete(10)
481	    }
482	    ACCESS  read-write
483	    STATUS  mandatory
484	    DESCRIPTION
485		"The OAM hierarchical flow levels : VC (F5) or VP (F4)."
486	    DEFVAL { f5 }
487	::= { atmOamEntry 4 }
488
489	atmOamLoopbackEnd2End OBJECT-TYPE
490	    SYNTAX  INTEGER {
491	    	disabled(1),
492		enabled(2)
493	    }
494	    ACCESS  read-write
495	    STATUS  mandatory
496	    DESCRIPTION
497		"Indicates wether OAM loopback is enabled onto the end-to-end
498		 connection."
499	    DEFVAL { disabled }
500	::= { atmOamEntry 5 }
501
502	atmOamLoopbackSegment OBJECT-TYPE
503	    SYNTAX  INTEGER {
504	    	disabled(1),
505		enabled(2)
506	    }
507	    ACCESS  read-write
508	    STATUS  mandatory
509	    DESCRIPTION
510		"Indicates wether active OAM loopback is enabled onto the
511		 segment connection."
512	    DEFVAL { disabled }
513	::= { atmOamEntry 6 }
514
515	atmOamLoopbackEnd2EndInterval OBJECT-TYPE
516	    SYNTAX  INTEGER (0..999)
517	    ACCESS  read-write
518	    STATUS  mandatory
519	    DESCRIPTION
520		"OAM loopback transmit interval (in seconds) for end-to-end
521		 context."
522	    DEFVAL { 5 }
523	::= { atmOamEntry 7 }
524
525	atmOamLoopbackSegmentInterval OBJECT-TYPE
526	    SYNTAX  INTEGER (0..999)
527	    ACCESS  read-write
528	    STATUS  mandatory
529	    DESCRIPTION
530		"OAM loopback transmit interval (in seconds) for segment
531		 context."
532	    DEFVAL { 5 }
533	::= { atmOamEntry 8 }
534
535	atmOamLoopbackEnd2EndMaxPending OBJECT-TYPE
536	    SYNTAX  INTEGER (0..999)
537	    ACCESS  read-write
538	    STATUS  mandatory
539	    DESCRIPTION
540		"Specifies the maximum number of outstanding OAM loopback
541		 responses after which the associated F4/F5 instance will
542		 be set into the end-to-end operational down status."
543	    DEFVAL { 5 }
544	::= { atmOamEntry 9 }
545
546	atmOamLoopbackSegmentMaxPending OBJECT-TYPE
547	    SYNTAX  INTEGER (0..999)
548	    ACCESS  read-write
549	    STATUS  mandatory
550	    DESCRIPTION
551		"Specifies the maximum number of outstanding OAM loopback
552		 responses after which the associated F4/F5 instance will
553		 be set into the segment operational down status."
554	    DEFVAL { 5 }
555	::= { atmOamEntry 10 }
556
557	atmOamCCEnd2EndActivation OBJECT-TYPE
558	    SYNTAX  INTEGER {
559	    	passive(1),
560		active(2),
561		both(3),
562		no-negotiation(4),
563		none(5)
564	    }
565	    ACCESS  read-write
566	    STATUS  mandatory
567	    DESCRIPTION
568		"Determines wether OAM continuity check activation request
569		 will be activated and/or accepted for the associated
570		 end-to-end connection.
571		 If set to passive(1) or both(3) CC activation requests
572		 will be confirmed. If set to active(2) or both CC will
573		 be requested. If set to no-negotiation(4) - depending on
574		 the settings in atmOamCCEnd2EndDirection - CC cells will
575		 be send and/or expected periodically without any previous
576		 CC activation negotiation. If set to none(5) neither
577		 CC activation will be requested/confirmed nor any CC
578		 cells will be generated/expected."
579	    DEFVAL { passive }
580	::= { atmOamEntry 11 }
581
582	atmOamCCSegmentActivation OBJECT-TYPE
583	    SYNTAX  INTEGER {
584	    	passive(1),
585		active(2),
586		both(3),
587		no-negotiation(4),
588		none(5)
589	    }
590	    ACCESS  read-write
591	    STATUS  mandatory
592	    DESCRIPTION
593		"Determines wether OAM continuity check activation request
594		 will be activated and/or accepted for the associated
595		 segment connection.
596		 If set to passive(1) or both(3) CC activation requests
597		 will be confirmed. If set to active(2) or both CC will
598		 be requested. If set to no-negotiation(4) - depending on
599		 the settings in atmOamCCSegmentDirection - CC cells will
600		 be send and/or expected periodically without any previous
601		 CC activation negotiation. If set to none(5) neither
602		 CC activation will be requested/confirmed nor any CC
603		 cells will be generated/expected."
604	    DEFVAL { passive }
605	::= { atmOamEntry 12 }
606
607	atmOamCCEnd2EndDirection OBJECT-TYPE
608	    SYNTAX  INTEGER {
609	    	sink(1),
610		source(2),
611		both(3),
612		none(4)
613	    }
614	    ACCESS  read-write
615	    STATUS  mandatory
616	    DESCRIPTION
617		"Determines OAM continuity check direction (for end-to-end).
618		 If set to sink(1) CC cells will be received only, if set to
619		 source(2) CC cells will be generated periodically, if set to
620		 both(3) CC cells will be received from the source as well
621		 as send to the sink."
622	    DEFVAL { both }
623	::= { atmOamEntry 13 }
624
625	atmOamCCSegmentDirection OBJECT-TYPE
626	    SYNTAX  INTEGER {
627	    	sink(1),
628		source(2),
629		both(3),
630		none(4)
631	    }
632	    ACCESS  read-write
633	    STATUS  mandatory
634	    DESCRIPTION
635		"Determines OAM continuity check direction (for segment).
636		 If set to sink(1) CC cells will be received only, if set to
637		 source(2) CC cells will be generated periodically, if set to
638		 both(3) CC cells will be received from the source as well
639		 as send to the sink."
640	    DEFVAL { both }
641	::= { atmOamEntry 14 }
642
643
644---
645--- OAM statistics table
646---
647
648	atmOamStatTable OBJECT-TYPE
649	    SYNTAX  SEQUENCE OF AtmOamStatEntry
650	    ACCESS  not-accessible
651	    STATUS  mandatory
652	    DESCRIPTION
653	        "This tables displays all used VCs."
654	::= { atm 14 }
655
656	atmOamStatEntry OBJECT-TYPE
657	    SYNTAX  AtmOamStatEntry
658	    ACCESS  not-accessible
659	    STATUS  mandatory
660	    DESCRIPTION
661		""
662        INDEX { atmOamStatAtmIfIndex, atmOamStatVpi, atmOamStatVci }
663	::= { atmOamStatTable 1 }
664
665	AtmOamStatEntry ::=
666	    SEQUENCE {
667		atmOamStatAtmIfIndex		INTEGER,
668		atmOamStatVpi          		INTEGER,
669		atmOamStatVci          		INTEGER,
670		atmOamStatFlowType         	INTEGER,
671		atmOamStatLoopbackTxCells	Counter,
672		atmOamStatLoopbackRxCells	Counter,
673		atmOamStatLoopbackPending	Counter,
674		atmOamStatLoopbackCorr		INTEGER,
675		atmOamStatAisState		INTEGER,
676		atmOamStatAisTxCells		Counter,
677		atmOamStatAisRxCells		Counter,
678		atmOamStatTotalAisTxCells	Counter,
679		atmOamStatTotalAisRxCells	Counter,
680		atmOamStatRdiState		INTEGER,
681		atmOamStatRdiTxCells		Counter,
682		atmOamStatRdiRxCells		Counter,
683		atmOamStatTotalRdiTxCells	Counter,
684		atmOamStatTotalRdiRxCells	Counter,
685		atmOamStatCCActivatorState	INTEGER,
686		atmOamStatCCActivatorDirection	INTEGER,
687		atmOamStatCCActivatorCorr	INTEGER,
688		atmOamStatCCResponderState	INTEGER,
689		atmOamStatCCResponderDirection	INTEGER,
690		atmOamStatCCResponderCorr	INTEGER,
691		atmOamStatCCTxCells		Counter,
692		atmOamStatCCRxCells		Counter
693	    }
694
695	atmOamStatAtmIfIndex OBJECT-TYPE
696	    SYNTAX  INTEGER
697	    ACCESS  read-only
698	    STATUS  mandatory
699	    DESCRIPTION
700		"The interface index of the associated ATM hardware."
701	::= { atmOamStatEntry 1 }
702
703	atmOamStatVpi OBJECT-TYPE
704	    SYNTAX  INTEGER (0..255)
705	    ACCESS  read-only
706	    STATUS  mandatory
707	    DESCRIPTION
708	    	"The VPI value of this Virtual Path Connection."
709	::= { atmOamStatEntry 2 }
710
711	atmOamStatVci OBJECT-TYPE
712	    SYNTAX  INTEGER (0..65535)
713	    ACCESS  read-only
714	    STATUS  mandatory
715	    DESCRIPTION
716	    	"The VCI value of this Virtual Channel Connection."
717	::= { atmOamStatEntry 3 }
718
719	atmOamStatFlowType OBJECT-TYPE
720	    SYNTAX  INTEGER {
721		f5-segment(1),
722		f5-end2end(2),
723		f4-segment(3),
724		f4-end2end(4)
725	    }
726	    ACCESS  read-only
727	    STATUS  mandatory
728	    DESCRIPTION
729		"The OAM hierarchical flow levels: see ITU I.610"
730	    DEFVAL { f5-end2end }
731	::= { atmOamStatEntry 4 }
732
733	atmOamStatLoopbackTxCells OBJECT-TYPE
734	    SYNTAX  Counter
735	    ACCESS  read-only
736	    STATUS  mandatory
737	    DESCRIPTION
738		"The number of OAM loopback cells that have been sent
739 	         to the target in this sequence."
740	::= { atmOamStatEntry 6 }
741
742	atmOamStatLoopbackRxCells OBJECT-TYPE
743	    SYNTAX  Counter
744	    ACCESS  read-only
745	    STATUS  mandatory
746	    DESCRIPTION
747		"The number of OAM loopback cells that have been received
748 	         from the target in this sequence."
749	::= { atmOamStatEntry 7 }
750
751	atmOamStatLoopbackPending OBJECT-TYPE
752	    SYNTAX  Counter
753	    ACCESS  read-only
754	    STATUS  mandatory
755	    DESCRIPTION
756		"The number of currently outstanding OAM loopback responses."
757	::= { atmOamStatEntry 8 }
758
759	atmOamStatLoopbackCorr OBJECT-TYPE
760	    SYNTAX  INTEGER
761	    ACCESS  read-only
762	    STATUS  mandatory
763	    DESCRIPTION
764		"The correlation of the last sent loopback message."
765	::= { atmOamStatEntry 9 }
766
767	atmOamStatAisState OBJECT-TYPE
768	    SYNTAX  INTEGER  { off(1), on(2) }
769	    ACCESS  read-only
770	    STATUS  mandatory
771	    DESCRIPTION
772		"The AIS state is set to on(2) after receiving an AIS cell
773		 or detection of LOC (Loss of Continuity). The Ais state is
774		 set to off(1) either when receiving user cells
775		 (same VCC context) or via timeout."
776	    DEFVAL { off }
777	::= { atmOamStatEntry 10 }
778
779	atmOamStatAisTxCells OBJECT-TYPE
780	    SYNTAX  Counter
781	    ACCESS  read-only
782	    STATUS  mandatory
783	    DESCRIPTION
784		"The number of OAM alarm indication signal (AIS) cells
785 	         that have been transmitted since last change of AisState."
786	::= { atmOamStatEntry 11 }
787
788	atmOamStatAisRxCells OBJECT-TYPE
789	    SYNTAX  Counter
790	    ACCESS  read-only
791	    STATUS  mandatory
792	    DESCRIPTION
793		"The number of OAM alarm indication signal (AIS) cells
794 	         that have been received since last change of AisState."
795	::= { atmOamStatEntry 12 }
796
797	atmOamStatTotalAisTxCells OBJECT-TYPE
798	    SYNTAX  Counter
799	    ACCESS  read-only
800	    STATUS  mandatory
801	    DESCRIPTION
802		"The total number of OAM alarm indication signal (AIS) cells
803 	         that have been transmitted."
804	::= { atmOamStatEntry 13 }
805
806	atmOamStatTotalAisRxCells OBJECT-TYPE
807	    SYNTAX  Counter
808	    ACCESS  read-only
809	    STATUS  mandatory
810	    DESCRIPTION
811		"The total number of OAM alarm indication signal (AIS) cells
812 	         that have been received."
813	::= { atmOamStatEntry 14 }
814
815	atmOamStatRdiState OBJECT-TYPE
816	    SYNTAX  INTEGER  { off(1), on(2) }
817	    ACCESS  read-only
818	    STATUS  mandatory
819	    DESCRIPTION
820		"The RDI state is set to on(2) after receiving a RDI cell.
821		 The RDI state is to off(1) via timeout."
822	    DEFVAL { off }
823	::= { atmOamStatEntry 15 }
824
825	atmOamStatRdiTxCells OBJECT-TYPE
826	    SYNTAX  Counter
827	    ACCESS  read-only
828	    STATUS  mandatory
829	    DESCRIPTION
830		"The number of OAM remote defect indication (RDI) cells
831 	         that have been transmitted since last change of RdiState."
832	::= { atmOamStatEntry 16 }
833
834	atmOamStatRdiRxCells OBJECT-TYPE
835	    SYNTAX  Counter
836	    ACCESS  read-only
837	    STATUS  mandatory
838	    DESCRIPTION
839		"The number of OAM remote defect indication (RDI) cells
840 	         that have been received since last change of RdiState."
841	::= { atmOamStatEntry 17 }
842
843	atmOamStatTotalRdiTxCells OBJECT-TYPE
844	    SYNTAX  INTEGER
845	    ACCESS  read-only
846	    STATUS  mandatory
847	    DESCRIPTION
848		"The totoal number of OAM remote defect indication (RDI) cells
849 	         that have been transmitted."
850	::= { atmOamStatEntry 18 }
851
852	atmOamStatTotalRdiRxCells OBJECT-TYPE
853	    SYNTAX  Counter
854	    ACCESS  read-only
855	    STATUS  mandatory
856	    DESCRIPTION
857		"The total number of OAM remote defect indication (RDI) cells
858 	         that have been received."
859	::= { atmOamStatEntry 19 }
860
861	atmOamStatCCActivatorState OBJECT-TYPE
862	    SYNTAX  INTEGER {
863		inactive(1),
864		wait-act-con(2),
865		active(3),
866		wait-deact-con(4)
867	    }
868	    ACCESS  read-only
869	    STATUS  mandatory
870	    DESCRIPTION
871		"The status of the initiated CC negotiation, inactive(1)
872		 is the initial status, wait-act-con(2) is set after
873		 sending an CC activation request, active(3) is reached
874		 after receiving the CC activation confirmation whereas
875		 wait-deact-con(4) is used to indicate awaiting the
876		 CC deactivation confirmation."
877            DEFVAL { inactive }
878	::= { atmOamStatEntry 20 }
879
880	atmOamStatCCActivatorDirection OBJECT-TYPE
881	    SYNTAX  INTEGER {
882		sink(1),
883		source(2),
884		both(3),
885		not-applicable(4)
886	    }
887	    ACCESS  read-only
888	    STATUS  mandatory
889	    DESCRIPTION
890		"The direction of action indicated by a received CC activation
891		 confirmation, source(1) correlates with 'A-B', sink(2) with
892		 'B-A' and both(3) with 'A-B' and 'B-A'."
893            DEFVAL { not-applicable }
894	::= { atmOamStatEntry 21 }
895
896	atmOamStatCCActivatorCorr OBJECT-TYPE
897	    SYNTAX  INTEGER
898	    ACCESS  read-only
899	    STATUS  mandatory
900	    DESCRIPTION
901		"The correlation of the last CC activation message sent
902		 to the responder."
903	::= { atmOamStatEntry 22 }
904
905	atmOamStatCCResponderState OBJECT-TYPE
906	    SYNTAX  INTEGER {
907		inactive(1),
908		active(3),
909		wait-deact-con(4)
910	    }
911	    ACCESS  read-only
912	    STATUS  mandatory
913	    DESCRIPTION
914		"The status of the passive CC negotiation, inactive(1)
915		 is the initial status, active(3) is reached after receiving
916		 an CC activation request whereas wait-deact-con(4) is used
917		 to indicate awaiting the CC deactivation confirmation."
918            DEFVAL { inactive }
919	::= { atmOamStatEntry 23 }
920
921	atmOamStatCCResponderDirection OBJECT-TYPE
922	    SYNTAX  INTEGER {
923		source(1),
924		sink(2),
925		both(3),
926		not-applicable(4)
927	    }
928	    ACCESS  read-only
929	    STATUS  mandatory
930	    DESCRIPTION
931		"The direction of action indicated by a received CC activation
932		 request, source(1) correlates with 'B-A', sink(2) with
933		 'A-B' and both(3) with 'A-B' and 'B-A'."
934            DEFVAL { not-applicable }
935	::= { atmOamStatEntry 24 }
936
937	atmOamStatCCResponderCorr OBJECT-TYPE
938	    SYNTAX  INTEGER
939	    ACCESS  read-only
940	    STATUS  mandatory
941	    DESCRIPTION
942		"The correlation of the received CC activation message."
943	::= { atmOamStatEntry 25 }
944
945	atmOamStatCCTxCells OBJECT-TYPE
946	    SYNTAX  Counter
947	    ACCESS  read-only
948	    STATUS  mandatory
949	    DESCRIPTION
950		"The number of OAM continuity check cells
951 	         that have been sent to the target in this sequence."
952	::= { atmOamStatEntry 26 }
953
954	atmOamStatCCRxCells OBJECT-TYPE
955	    SYNTAX  Counter
956	    ACCESS  read-only
957	    STATUS  mandatory
958	    DESCRIPTION
959		"The number of OAM continuity check cells
960 	         that have been received from the target in this sequence."
961	::= { atmOamStatEntry 27 }
962
963
964---
965--- Ethernet over ATM (LAN emulation) PVC table
966---
967
968	ethoaPvcTable OBJECT-TYPE
969	    SYNTAX  SEQUENCE OF EthoaPvcEntry
970	    ACCESS  not-accessible
971	    STATUS  mandatory
972	    DESCRIPTION
973	        "The ethoaPvcTable displays all virtual ethernets defined for
974		 a VCI/VPI on a specified hardware."
975	::= { atm 15 }
976
977
978	ethoaPvcEntry OBJECT-TYPE
979	    SYNTAX  EthoaPvcEntry
980	    ACCESS  not-accessible
981	    STATUS  mandatory
982
983	    DESCRIPTION
984		""
985	    INDEX { ethoaPvcVpi, ethoaPvcVci, ethoaPvcAtmIfIndex }
986	::= { ethoaPvcTable 1 }
987
988	EthoaPvcEntry ::=
989	    SEQUENCE {
990		ethoaPvcIfIndex  		INTEGER,
991		ethoaPvcDescr			DisplayString,
992		ethoaPvcAtmIfIndex		INTEGER,
993		ethoaPvcVpi			INTEGER,
994		ethoaPvcVci			INTEGER,
995		ethoaPvcEncapsulation		INTEGER,
996		ethoaPvcPhysAddress		PhysAddress
997	    }
998
999	ethoaPvcIfIndex OBJECT-TYPE
1000	    SYNTAX  INTEGER
1001	    ACCESS  read-only
1002	    STATUS  mandatory
1003	    DESCRIPTION
1004	        "This object contains an interface index and assigns the
1005                 row to an entry in ifTable. When creating new entries
1006                 in the table, the value of this object shall be set to 0.
1007                 The next free ifIndex value is than allocated and assigned
1008		 to the object. At the same time a new interface is created
1009		 in the IfTable."
1010            DEFVAL { 0 }
1011	::= { ethoaPvcEntry 1 }
1012
1013        ethoaPvcDescr OBJECT-TYPE
1014            SYNTAX  DisplayString
1015            ACCESS  read-write
1016            STATUS  mandatory
1017            DESCRIPTION
1018                "Short description of the configured PVC"
1019        ::= { ethoaPvcEntry 2 }
1020
1021
1022	ethoaPvcAtmIfIndex OBJECT-TYPE
1023	    SYNTAX  INTEGER
1024	    ACCESS  read-write
1025	    STATUS  mandatory
1026	    DESCRIPTION
1027		"The Index to the ATM hardware."
1028	::= { ethoaPvcEntry 3 }
1029
1030	ethoaPvcVpi OBJECT-TYPE
1031	    SYNTAX  INTEGER (0..255)
1032	    ACCESS  read-write
1033	    STATUS  mandatory
1034	    DESCRIPTION
1035	    	"The VPI value of this Virtual Path Connection."
1036	    DEFVAL { 8 }
1037	::= { ethoaPvcEntry 4 }
1038
1039	ethoaPvcVci OBJECT-TYPE
1040	    SYNTAX  INTEGER (0..65535)
1041	    ACCESS  read-write
1042	    STATUS  mandatory
1043	    DESCRIPTION
1044	    	"The VCI value of this Virtual Channel Connection."
1045	    DEFVAL { 32 }
1046	::= { ethoaPvcEntry 5 }
1047
1048	ethoaPvcEncapsulation OBJECT-TYPE
1049	    SYNTAX  INTEGER {
1050		bridged-no-fcs(1),	-- without frame checksum (FCS
1051		bridged-fcs(2),		-- with frame checksum (FCS)
1052		vc-multiplexed(3),	-- VC multiplexing
1053		delete(10)
1054	    }
1055	    ACCESS  read-write
1056	    STATUS  mandatory
1057	    DESCRIPTION
1058		"This values decides whether frames are send without FCS(1),
1059		 with FCS(2) or wether VC multiplexing is used."
1060	    DEFVAL { bridged-no-fcs }
1061	::= { ethoaPvcEntry 6 }
1062
1063	ethoaPvcPhysAddress OBJECT-TYPE
1064	    SYNTAX  PhysAddress
1065	    ACCESS  read-write
1066	    STATUS  mandatory
1067	    DESCRIPTION
1068	    	"The MAC-Address used for the virtual interface."
1069	::= { ethoaPvcEntry 7 }
1070
1071
1072---
1073--- raw protocol Pvc table
1074---
1075
1076	rpoaPvcTable OBJECT-TYPE
1077	    SYNTAX  SEQUENCE OF RpoaPvcEntry
1078	    ACCESS  not-accessible
1079	    STATUS  mandatory
1080	    DESCRIPTION
1081	        "This table configures Vpi/Vci for raw protocols
1082		 (IP, IPX, etc.)"
1083	::= { atm 16 }
1084
1085	rpoaPvcEntry OBJECT-TYPE
1086	    SYNTAX  RpoaPvcEntry
1087	    ACCESS  not-accessible
1088	    STATUS  mandatory
1089
1090	    DESCRIPTION
1091		""
1092	    INDEX { rpoaPvcVpi, rpoaPvcVci, rpoaPvcAtmIfIndex }
1093	::= { rpoaPvcTable 1 }
1094
1095	RpoaPvcEntry ::=
1096	    SEQUENCE {
1097		rpoaPvcIfIndex  		INTEGER,
1098		rpoaPvcDescr			DisplayString,
1099		rpoaPvcAtmIfIndex		INTEGER,
1100		rpoaPvcVpi			INTEGER,
1101		rpoaPvcVci			INTEGER,
1102		rpoaPvcEncapsulation		INTEGER
1103
1104	    }
1105
1106	rpoaPvcIfIndex OBJECT-TYPE
1107	    SYNTAX  INTEGER
1108	    ACCESS  read-only
1109	    STATUS  mandatory
1110	    DESCRIPTION
1111	        "This object contains an interface index and assigns the
1112                 row to an entry in ifTable. When creating new entries
1113                 in the table, the value of this object shall be set to 0.
1114                 The next free ifIndex value is than allocated and assigned
1115		 to the object. At the same time a new interface is created
1116		 in the IfTable."
1117            DEFVAL { 0 }
1118	::= { rpoaPvcEntry 1 }
1119
1120        rpoaPvcDescr OBJECT-TYPE
1121            SYNTAX  DisplayString
1122            ACCESS  read-write
1123            STATUS  mandatory
1124            DESCRIPTION
1125                "Short description of the configured PVC"
1126        ::= { rpoaPvcEntry 2 }
1127
1128	rpoaPvcAtmIfIndex OBJECT-TYPE
1129	    SYNTAX  INTEGER
1130	    ACCESS  read-write
1131	    STATUS  mandatory
1132	    DESCRIPTION
1133		"The Index to the ATM hardware."
1134	::= { rpoaPvcEntry 3 }
1135
1136	rpoaPvcVpi OBJECT-TYPE
1137	    SYNTAX  INTEGER (0..255)
1138	    ACCESS  read-write
1139	    STATUS  mandatory
1140	    DESCRIPTION
1141	    	"The VPI value of this Virtual Path Connection."
1142	    DEFVAL { 8 }
1143	::= { rpoaPvcEntry 4 }
1144
1145	rpoaPvcVci OBJECT-TYPE
1146	    SYNTAX  INTEGER (0..65535)
1147	    ACCESS  read-write
1148	    STATUS  mandatory
1149	    DESCRIPTION
1150	    	"The VCI value of this Virtual Channel Connection."
1151	    DEFVAL { 32 }
1152	::= { rpoaPvcEntry 5 }
1153
1154	rpoaPvcEncapsulation OBJECT-TYPE
1155	    SYNTAX  INTEGER {
1156	    	non-iso(1),
1157		iso(2),
1158		vc-multiplexed(3),
1159		delete(10)
1160	    }
1161	    ACCESS  read-write
1162	    STATUS  mandatory
1163	    DESCRIPTION
1164		"This values decides whether frames are send codes
1165		 with LLC 0xAA 0xAA (non-ISO), LLC 0xFE 0xFE (ISO)
1166		 or wether VC multiplexing is used."
1167	    DEFVAL { non-iso }
1168	::= { rpoaPvcEntry 6 }
1169
1170
1171---
1172--- pppoa Pvc Table
1173---
1174
1175	pppoaPvcTable OBJECT-TYPE
1176	    SYNTAX  SEQUENCE OF PppoaPvcEntry
1177	    ACCESS  not-accessible
1178	    STATUS  mandatory
1179	    DESCRIPTION
1180	        "This table configures Vpi/Vci for PPP oaver AAL5 (PPPoA)
1181		 permanent and on-demand sessions."
1182
1183	::= { atm 17 }
1184
1185	pppoaPvcEntry OBJECT-TYPE
1186	    SYNTAX  PppoaPvcEntry
1187	    ACCESS  not-accessible
1188	    STATUS  mandatory
1189
1190	    DESCRIPTION
1191		""
1192	    INDEX { pppoaPvcVpi, pppoaPvcVci, pppoaPvcAtmIfIndex }
1193	::= { pppoaPvcTable 1 }
1194
1195	PppoaPvcEntry ::=
1196	    SEQUENCE {
1197		pppoaPvcIfIndex  		INTEGER,
1198		pppoaPvcDescr			DisplayString,
1199		pppoaPvcAtmIfIndex		INTEGER,
1200		pppoaPvcVpi			INTEGER,
1201		pppoaPvcVci			INTEGER,
1202		pppoaPvcEncapsulation		INTEGER,
1203		pppoaPvcClientType		INTEGER
1204
1205	    }
1206
1207	pppoaPvcIfIndex OBJECT-TYPE
1208	    SYNTAX  INTEGER
1209	    ACCESS  read-only
1210	    STATUS  mandatory
1211	    DESCRIPTION
1212	        "This object contains an interface index and refers to an
1213		 entry in ifTable. When creating new entries in the table,
1214                 the next free ifIndex value is than allocated and assigned
1215		 to the object. At the same time a new interface is created
1216		 in the IfTable with that very index."
1217            DEFVAL { 0 }
1218	::= { pppoaPvcEntry 1 }
1219
1220        pppoaPvcDescr OBJECT-TYPE
1221            SYNTAX  DisplayString
1222            ACCESS  read-write
1223            STATUS  mandatory
1224            DESCRIPTION
1225                "Short description of the configured PVC"
1226        ::= { pppoaPvcEntry 2 }
1227
1228
1229	pppoaPvcAtmIfIndex OBJECT-TYPE
1230	    SYNTAX  INTEGER
1231	    ACCESS  read-write
1232	    STATUS  mandatory
1233	    DESCRIPTION
1234		"The Index to the ATM hardware."
1235	::= { pppoaPvcEntry 3 }
1236
1237	pppoaPvcVpi OBJECT-TYPE
1238	    SYNTAX  INTEGER (0..255)
1239	    ACCESS  read-write
1240	    STATUS  mandatory
1241	    DESCRIPTION
1242	    	"The VPI value of this Virtual Path Connection."
1243	    DEFVAL { 8 }
1244	::= { pppoaPvcEntry 4 }
1245
1246	pppoaPvcVci OBJECT-TYPE
1247	    SYNTAX  INTEGER (0..65535)
1248	    ACCESS  read-write
1249	    STATUS  mandatory
1250	    DESCRIPTION
1251	    	"The VCI value of this Virtual Channel Connection."
1252	    DEFVAL { 32 }
1253	::= { pppoaPvcEntry 5 }
1254
1255	pppoaPvcEncapsulation OBJECT-TYPE
1256            SYNTAX  INTEGER {
1257                vc-multiplexed(1),
1258                llc(2),
1259                delete(10)
1260            }
1261	    ACCESS  read-write
1262	    STATUS  mandatory
1263	    DESCRIPTION
1264		"This value decides whether VC multiplexing or
1265		 LLC encapsulation is used."
1266	    DEFVAL { vc-multiplexed }
1267	::= { pppoaPvcEntry 6 }
1268
1269	pppoaPvcClientType OBJECT-TYPE
1270            SYNTAX  INTEGER {
1271                permanent(1),
1272                on-demand(2)
1273            }
1274	    ACCESS  read-write
1275	    STATUS  mandatory
1276	    DESCRIPTION
1277		"This variable defines whether the PPP over AAL5 session
1278		 will be established permanent(1) or initiated on-demand(2)."
1279	    DEFVAL { on-demand }
1280	::= { pppoaPvcEntry 7 }
1281
1282
1283--- VC-related ATM QoS (ATM service categories)
1284
1285        atmQosVccTable OBJECT-TYPE
1286            SYNTAX  SEQUENCE OF AtmQosVccEntry
1287            ACCESS  not-accessible
1288            STATUS  mandatory
1289            DESCRIPTION
1290            	"This table provides QoS information for each active ATM VC on
1291	     	 the related ATM interface"
1292        ::= { atm 19 }
1293
1294        atmQosVccEntry OBJECT-TYPE
1295            SYNTAX  AtmQosVccEntry
1296            ACCESS  not-accessible
1297            STATUS  mandatory
1298            DESCRIPTION
1299            	"An entry in the table, containing ATM QoS parameters about a
1300	     	 particular virtual connection."
1301            INDEX        { atmQosVccAtmIfIndex, atmQosVccVpi, atmQosVccVci }
1302        ::= { atmQosVccTable 1 }
1303
1304        AtmQosVccEntry ::=
1305            SEQUENCE {
1306                atmQosVccAtmIfIndex	INTEGER,
1307                atmQosVccVpi		INTEGER,
1308                atmQosVccVci		INTEGER,
1309		atmQosVccService	INTEGER,
1310		atmQosVccOutPcr		INTEGER,
1311		atmQosVccOutScr		INTEGER,
1312		atmQosVccOutMbs		INTEGER,
1313		atmQosVccOutMcr		INTEGER
1314            }
1315
1316	atmQosVccAtmIfIndex OBJECT-TYPE
1317	    SYNTAX  INTEGER
1318	    ACCESS  read-write
1319	    STATUS  mandatory
1320	    DESCRIPTION
1321		"The interface index of the associated ATM hardware."
1322	::= { atmQosVccEntry 1 }
1323
1324	atmQosVccVpi OBJECT-TYPE
1325	    SYNTAX  INTEGER (0..255)
1326	    ACCESS  read-write
1327	    STATUS  mandatory
1328	    DESCRIPTION
1329	    	"The VPI value of this Virtual Channel Connection."
1330	::= { atmQosVccEntry 2 }
1331
1332	atmQosVccVci OBJECT-TYPE
1333	    SYNTAX  INTEGER (0..65535)
1334	    ACCESS  read-write
1335	    STATUS  mandatory
1336	    DESCRIPTION
1337	    	"The VCI value of this Virtual Channel Connection."
1338	::= { atmQosVccEntry 3 }
1339
1340	atmQosVccService OBJECT-TYPE
1341	    SYNTAX  INTEGER {	-- ATM Forum UNI 4.0
1342	    	cbr(1),
1343		vbr(2),
1344--		vbr2(3),
1345		vbr3(4),
1346--		vbr-rt(5),
1347--		vbr2-rt(6),
1348--		vbr3-rt(7),
1349		ubr(8),
1350--		ubr2(9),
1351--		abr(10),
1352		delete(20)
1353	    }
1354	    ACCESS  read-write
1355	    STATUS  mandatory
1356	    DESCRIPTION
1357	    	"The ATM service category of this virtual circuit connection:
1358		    cbr
1359		    vbr
1360		    vbr2
1361		    vbr3	VBR1 + Best Effort
1362		    vbr-rt	real-time
1363		    vbr2-rt	real-time
1364		    vbr3-rt	real-time
1365		    ubr		Best Effort
1366		    ubr2	Best Effort
1367		    abr
1368		    delete
1369		"
1370	    DEFVAL { ubr }
1371	::= { atmQosVccEntry 4 }
1372
1373	atmQosVccOutPcr OBJECT-TYPE
1374	    SYNTAX  INTEGER
1375	    ACCESS  read-write
1376	    STATUS  mandatory
1377	    DESCRIPTION
1378	    	"Output Peak Cell Rate (PCR) in bps."
1379	::= { atmQosVccEntry 5 }
1380
1381	atmQosVccOutScr OBJECT-TYPE
1382	    SYNTAX  INTEGER
1383	    ACCESS  read-write
1384	    STATUS  mandatory
1385	    DESCRIPTION
1386	    	"Output Sustained Cell Rate (SCR) in bps."
1387	::= { atmQosVccEntry 6 }
1388
1389	atmQosVccOutMbs OBJECT-TYPE
1390	    SYNTAX  INTEGER
1391	    ACCESS  read-write
1392	    STATUS  mandatory
1393	    DESCRIPTION
1394	    	"Output Maximum Burst Size (MBS) in Bytes, only for
1395		 atmQosVccService vbr-rt(2) and vbr-nrt(3) (ATM service
1396		 service category VBR)."
1397	::= { atmQosVccEntry 7 }
1398
1399	atmQosVccOutMcr OBJECT-TYPE
1400	    SYNTAX  INTEGER
1401	    ACCESS  read-write
1402	    STATUS  mandatory
1403	    DESCRIPTION
1404	    	"Output Minimum Cell Rate (MCR) in bps for connection with
1405		 vbr-nrt(3)."
1406	::= { atmQosVccEntry 8 }
1407
1408---
1409--- ATM ATUR Performance Data Table
1410---
1411
1412    atmAturPerfDataTable OBJECT-TYPE
1413	SYNTAX      SEQUENCE OF AtmAturPerfDataEntry
1414	ACCESS      not-accessible
1415	STATUS      mandatory
1416	DESCRIPTION
1417	    ""
1418	::= { atm 20 }
1419
1420    atmAturPerfDataEntry OBJECT-TYPE
1421	SYNTAX      AtmAturPerfDataEntry
1422	ACCESS      not-accessible
1423	STATUS      mandatory
1424	DESCRIPTION
1425	    "An entry in atmAturPerfDataTable."
1426	INDEX       { atmAturPerfIfIndex }
1427	::= { atmAturPerfDataTable 1 }
1428
1429    AtmAturPerfDataEntry ::= SEQUENCE {
1430	atmAturPerfIfIndex                 INTEGER,
1431	atmAturPerfIdleCells               INTEGER,
1432	atmAturPerfDataCells               INTEGER,
1433	atmAturPerfLcds                    INTEGER,
1434	atmAturPerfHecs                    INTEGER,
1435	atmAturPerfCurr15MinTimeElapsed    INTEGER,
1436	atmAturPerfCurr15MinIdleCells      INTEGER,
1437	atmAturPerfCurr15MinDataCells      INTEGER,
1438	atmAturPerfCurr15MinLcds           INTEGER,
1439	atmAturPerfCurr15MinHecs           INTEGER,
1440	atmAturPerfCurr1DayTimeElapsed     INTEGER,
1441	atmAturPerfCurr1DayIdleCells       INTEGER,
1442	atmAturPerfCurr1DayDataCells       INTEGER,
1443	atmAturPerfCurr1DayLcds            INTEGER,
1444	atmAturPerfCurr1DayHecs            INTEGER,
1445	atmAturPerfPrev1DayIdleCells       INTEGER,
1446	atmAturPerfPrev1DayDataCells       INTEGER,
1447	atmAturPerfPrev1DayLcds            INTEGER,
1448	atmAturPerfPrev1DayHecs            INTEGER
1449	}
1450
1451    atmAturPerfIfIndex OBJECT-TYPE
1452	SYNTAX      INTEGER
1453	ACCESS      read-only
1454	STATUS      mandatory
1455	DESCRIPTION
1456	    "Specifies the ATM interface index."
1457	::= { atmAturPerfDataEntry 1 }
1458
1459    atmAturPerfIdleCells OBJECT-TYPE
1460	SYNTAX      INTEGER
1461	ACCESS      read-only
1462	STATUS      mandatory
1463	DESCRIPTION
1464	    "The number of ATM idle cells."
1465	::= { atmAturPerfDataEntry 2 }
1466
1467    atmAturPerfDataCells OBJECT-TYPE
1468	SYNTAX      INTEGER
1469	ACCESS      read-only
1470	STATUS      mandatory
1471	DESCRIPTION
1472	    "The number of ATM data cells."
1473	::= { atmAturPerfDataEntry 3 }
1474
1475   atmAturPerfLcds OBJECT-TYPE
1476	SYNTAX      INTEGER
1477	ACCESS      read-only
1478	STATUS      mandatory
1479	DESCRIPTION
1480 	    "Count of the number of Loss of Cell Delineation failures since
1481	    agent reset."
1482	::= { atmAturPerfDataEntry 4 }
1483
1484    atmAturPerfHecs OBJECT-TYPE
1485	SYNTAX      INTEGER
1486	ACCESS      read-only
1487	STATUS      mandatory
1488	DESCRIPTION
1489 	    "Count of the number of Header Error Check failures since
1490	     agent reset."
1491	::= { atmAturPerfDataEntry 5 }
1492
1493    atmAturPerfCurr15MinTimeElapsed OBJECT-TYPE
1494	SYNTAX      INTEGER (0..899)
1495	ACCESS      read-only
1496	STATUS      mandatory
1497	DESCRIPTION
1498	    "Total elapsed seconds in this interval."
1499	::= { atmAturPerfDataEntry 11 }
1500
1501    atmAturPerfCurr15MinIdleCells OBJECT-TYPE
1502	SYNTAX      INTEGER
1503	ACCESS      read-only
1504	STATUS      mandatory
1505	DESCRIPTION
1506	    "The number of ATM idle cells in the mandatory 15 minute interval."
1507	::= { atmAturPerfDataEntry 12 }
1508
1509    atmAturPerfCurr15MinDataCells OBJECT-TYPE
1510	SYNTAX      INTEGER
1511	ACCESS      read-only
1512	STATUS      mandatory
1513	DESCRIPTION
1514	    "The number of ATM data cells in the mandatory 15 minute interval."
1515	::= { atmAturPerfDataEntry 13 }
1516
1517    atmAturPerfCurr15MinLcds OBJECT-TYPE
1518	SYNTAX      INTEGER
1519	ACCESS      read-only
1520	STATUS      mandatory
1521	DESCRIPTION
1522	    "Count of seconds in the mandatory 15 minute interval
1523	     when there was Loss of Cell Delineation."
1524	::= { atmAturPerfDataEntry 14 }
1525
1526    atmAturPerfCurr15MinHecs OBJECT-TYPE
1527	SYNTAX      INTEGER
1528	ACCESS      read-only
1529	STATUS      mandatory
1530	DESCRIPTION
1531	    "Count of seconds in the mandatory 15 minute interval
1532	     when there was Header Error Check failures."
1533	::= { atmAturPerfDataEntry 15 }
1534
1535    atmAturPerfCurr1DayTimeElapsed OBJECT-TYPE
1536	SYNTAX      INTEGER (0..86399)
1537	ACCESS      read-only
1538	STATUS      mandatory
1539	DESCRIPTION
1540	    "Number of seconds that have elapsed since the
1541	     beginning of the mandatory 1-day interval."
1542	::= { atmAturPerfDataEntry 18 }
1543
1544    atmAturPerfCurr1DayIdleCells OBJECT-TYPE
1545	SYNTAX      INTEGER
1546	ACCESS      read-only
1547	STATUS      mandatory
1548	DESCRIPTION
1549	    "The number of ATM idle cells during the mandatory day as measured
1550	     by atmAturPerfCurr1DayTimeElapsed."
1551	::= { atmAturPerfDataEntry 19 }
1552
1553    atmAturPerfCurr1DayDataCells OBJECT-TYPE
1554	SYNTAX      INTEGER
1555	ACCESS      read-only
1556	STATUS      mandatory
1557	DESCRIPTION
1558	    "The number of ATM data cells during the mandatory day as measured
1559	     by atmAturPerfCurr1DayTimeElapsed."
1560	::= { atmAturPerfDataEntry 20 }
1561
1562    atmAturPerfCurr1DayLcds OBJECT-TYPE
1563	SYNTAX      INTEGER
1564	ACCESS      read-only
1565	STATUS      mandatory
1566	DESCRIPTION
1567	    "Count of the number of seconds when there was Loss
1568	     of Cell Delineation during the mandatory day as measured
1569	     by atmAturPerfCurr1DayTimeElapsed."
1570	::= { atmAturPerfDataEntry 21 }
1571
1572    atmAturPerfCurr1DayHecs OBJECT-TYPE
1573	SYNTAX      INTEGER
1574	ACCESS      read-only
1575	STATUS      mandatory
1576	DESCRIPTION
1577	    "Count of the number of seconds when there was Header
1578	     Error Check failures during the mandatory day as measured
1579	     by atmAturPerfCurr1DayTimeElapsed."
1580	::= { atmAturPerfDataEntry 22 }
1581
1582    atmAturPerfPrev1DayIdleCells OBJECT-TYPE
1583	SYNTAX      INTEGER
1584	ACCESS      read-only
1585	STATUS      mandatory
1586	DESCRIPTION
1587	    "The number of ATM idle cells within the most recent previous
1588	     1-day period."
1589	::= { atmAturPerfDataEntry 26 }
1590
1591    atmAturPerfPrev1DayDataCells OBJECT-TYPE
1592	SYNTAX      INTEGER
1593	ACCESS      read-only
1594	STATUS      mandatory
1595	DESCRIPTION
1596	    "The number of ATM data cells within the most recent previous
1597	     1-day period."
1598	::= { atmAturPerfDataEntry 27 }
1599
1600    atmAturPerfPrev1DayLcds OBJECT-TYPE
1601	SYNTAX      INTEGER
1602	ACCESS      read-only
1603	STATUS      mandatory
1604	DESCRIPTION
1605	    "Count of seconds in the interval when there was
1606	     Loss of Cell Delineation within the most recent previous
1607	     1-day period."
1608	::= { atmAturPerfDataEntry 28 }
1609
1610    atmAturPerfPrev1DayHecs OBJECT-TYPE
1611	SYNTAX      INTEGER
1612	ACCESS      read-only
1613	STATUS      mandatory
1614	DESCRIPTION
1615	    "Count of seconds in the interval when there was
1616 	     Header Error Check within the most recent previous
1617	     1-day period."
1618	::= { atmAturPerfDataEntry 29 }
1619
1620---
1621--- ATM ATUC Performance Data Table
1622---
1623
1624    atmAtucPerfDataTable OBJECT-TYPE
1625	SYNTAX      SEQUENCE OF AtmAtucPerfDataEntry
1626	ACCESS      not-accessible
1627	STATUS      mandatory
1628	DESCRIPTION
1629	    ""
1630	::= { atm 21 }
1631
1632    atmAtucPerfDataEntry OBJECT-TYPE
1633	SYNTAX      AtmAtucPerfDataEntry
1634	ACCESS      not-accessible
1635	STATUS      mandatory
1636	DESCRIPTION
1637	    "An entry in atmAtucPerfDataTable."
1638	INDEX       { atmAtucPerfIfIndex }
1639	::= { atmAtucPerfDataTable 1 }
1640
1641    AtmAtucPerfDataEntry ::= SEQUENCE {
1642	atmAtucPerfIfIndex                 INTEGER,
1643	atmAtucPerfIdleCells               INTEGER,
1644	atmAtucPerfDataCells               INTEGER,
1645	atmAtucPerfLcds                    INTEGER,
1646	atmAtucPerfHecs                    INTEGER,
1647	atmAtucPerfCurr15MinTimeElapsed    INTEGER,
1648	atmAtucPerfCurr15MinIdleCells      INTEGER,
1649	atmAtucPerfCurr15MinDataCells      INTEGER,
1650	atmAtucPerfCurr15MinLcds           INTEGER,
1651	atmAtucPerfCurr15MinHecs           INTEGER,
1652	atmAtucPerfCurr1DayTimeElapsed     INTEGER,
1653	atmAtucPerfCurr1DayIdleCells       INTEGER,
1654	atmAtucPerfCurr1DayDataCells       INTEGER,
1655	atmAtucPerfCurr1DayLcds            INTEGER,
1656	atmAtucPerfCurr1DayHecs            INTEGER,
1657	atmAtucPerfPrev1DayIdleCells       INTEGER,
1658	atmAtucPerfPrev1DayDataCells       INTEGER,
1659	atmAtucPerfPrev1DayLcds            INTEGER,
1660	atmAtucPerfPrev1DayHecs            INTEGER
1661	}
1662
1663    atmAtucPerfIfIndex OBJECT-TYPE
1664	SYNTAX      INTEGER
1665	ACCESS      read-only
1666	STATUS      mandatory
1667	DESCRIPTION
1668	    "Specifies the ATM interface index."
1669	::= { atmAtucPerfDataEntry 1 }
1670
1671    atmAtucPerfIdleCells OBJECT-TYPE
1672	SYNTAX      INTEGER
1673	ACCESS      read-only
1674	STATUS      mandatory
1675	DESCRIPTION
1676	    "The number of ATM idle cells."
1677	::= { atmAtucPerfDataEntry 2 }
1678
1679    atmAtucPerfDataCells OBJECT-TYPE
1680	SYNTAX      INTEGER
1681	ACCESS      read-only
1682	STATUS      mandatory
1683	DESCRIPTION
1684	    "The number of ATM data cells."
1685	::= { atmAtucPerfDataEntry 3 }
1686
1687   atmAtucPerfLcds OBJECT-TYPE
1688	SYNTAX      INTEGER
1689	ACCESS      read-only
1690	STATUS      mandatory
1691	DESCRIPTION
1692 	    "Count of the number of Loss of Cell Delineation failures since
1693	    agent reset."
1694	::= { atmAtucPerfDataEntry 4 }
1695
1696    atmAtucPerfHecs OBJECT-TYPE
1697	SYNTAX      INTEGER
1698	ACCESS      read-only
1699	STATUS      mandatory
1700	DESCRIPTION
1701 	    "Count of the number of Header Error Check failures since
1702	     agent reset."
1703	::= { atmAtucPerfDataEntry 5 }
1704
1705    atmAtucPerfCurr15MinTimeElapsed OBJECT-TYPE
1706	SYNTAX      INTEGER (0..899)
1707	ACCESS      read-only
1708	STATUS      mandatory
1709	DESCRIPTION
1710	    "Total elapsed seconds in this interval."
1711	::= { atmAtucPerfDataEntry 11 }
1712
1713    atmAtucPerfCurr15MinIdleCells OBJECT-TYPE
1714	SYNTAX      INTEGER
1715	ACCESS      read-only
1716	STATUS      mandatory
1717	DESCRIPTION
1718	    "The number of ATM idle cells in the mandatory 15 minute interval."
1719	::= { atmAtucPerfDataEntry 12 }
1720
1721    atmAtucPerfCurr15MinDataCells OBJECT-TYPE
1722	SYNTAX      INTEGER
1723	ACCESS      read-only
1724	STATUS      mandatory
1725	DESCRIPTION
1726	    "The number of ATM data cells in the mandatory 15 minute interval."
1727	::= { atmAtucPerfDataEntry 13 }
1728
1729    atmAtucPerfCurr15MinLcds OBJECT-TYPE
1730	SYNTAX      INTEGER
1731	ACCESS      read-only
1732	STATUS      mandatory
1733	DESCRIPTION
1734	    "Count of seconds in the mandatory 15 minute interval
1735	     when there was Loss of Cell Delineation."
1736	::= { atmAtucPerfDataEntry 14 }
1737
1738    atmAtucPerfCurr15MinHecs OBJECT-TYPE
1739	SYNTAX      INTEGER
1740	ACCESS      read-only
1741	STATUS      mandatory
1742	DESCRIPTION
1743	    "Count of seconds in the mandatory 15 minute interval
1744	     when there was Header Error Check failures."
1745	::= { atmAtucPerfDataEntry 15 }
1746
1747    atmAtucPerfCurr1DayTimeElapsed OBJECT-TYPE
1748	SYNTAX      INTEGER (0..86399)
1749	ACCESS      read-only
1750	STATUS      mandatory
1751	DESCRIPTION
1752	    "Number of seconds that have elapsed since the
1753	     beginning of the mandatory 1-day interval."
1754	::= { atmAtucPerfDataEntry 18 }
1755
1756    atmAtucPerfCurr1DayIdleCells OBJECT-TYPE
1757	SYNTAX      INTEGER
1758	ACCESS      read-only
1759	STATUS      mandatory
1760	DESCRIPTION
1761	    "The number of ATM idle cells during the mandatory day as measured
1762	     by atmAtucPerfCurr1DayTimeElapsed."
1763	::= { atmAtucPerfDataEntry 19 }
1764
1765    atmAtucPerfCurr1DayDataCells OBJECT-TYPE
1766	SYNTAX      INTEGER
1767	ACCESS      read-only
1768	STATUS      mandatory
1769	DESCRIPTION
1770	    "The number of ATM data cells during the mandatory day as measured
1771	     by atmAtucPerfCurr1DayTimeElapsed."
1772	::= { atmAtucPerfDataEntry 20 }
1773
1774    atmAtucPerfCurr1DayLcds OBJECT-TYPE
1775	SYNTAX      INTEGER
1776	ACCESS      read-only
1777	STATUS      mandatory
1778	DESCRIPTION
1779	    "Count of the number of seconds when there was Loss
1780	     of Cell Delineation during the mandatory day as measured
1781	     by atmAtucPerfCurr1DayTimeElapsed."
1782	::= { atmAtucPerfDataEntry 21 }
1783
1784    atmAtucPerfCurr1DayHecs OBJECT-TYPE
1785	SYNTAX      INTEGER
1786	ACCESS      read-only
1787	STATUS      mandatory
1788	DESCRIPTION
1789	    "Count of the number of seconds when there was Header
1790	     Error Check failures during the mandatory day as measured
1791	     by atmAtucPerfCurr1DayTimeElapsed."
1792	::= { atmAtucPerfDataEntry 22 }
1793
1794    atmAtucPerfPrev1DayIdleCells OBJECT-TYPE
1795	SYNTAX      INTEGER
1796	ACCESS      read-only
1797	STATUS      mandatory
1798	DESCRIPTION
1799	    "The number of ATM idle cells within the most recent previous
1800	     1-day period."
1801	::= { atmAtucPerfDataEntry 26 }
1802
1803    atmAtucPerfPrev1DayDataCells OBJECT-TYPE
1804	SYNTAX      INTEGER
1805	ACCESS      read-only
1806	STATUS      mandatory
1807	DESCRIPTION
1808	    "The number of ATM data cells within the most recent previous
1809	     1-day period."
1810	::= { atmAtucPerfDataEntry 27 }
1811
1812    atmAtucPerfPrev1DayLcds OBJECT-TYPE
1813	SYNTAX      INTEGER
1814	ACCESS      read-only
1815	STATUS      mandatory
1816	DESCRIPTION
1817	    "Count of seconds in the interval when there was
1818	     Loss of Cell Delineation within the most recent previous
1819	     1-day period."
1820	::= { atmAtucPerfDataEntry 28 }
1821
1822    atmAtucPerfPrev1DayHecs OBJECT-TYPE
1823	SYNTAX      INTEGER
1824	ACCESS      read-only
1825	STATUS      mandatory
1826	DESCRIPTION
1827	    "Count of seconds in the interval when there was
1828	     Header Error Check within the most recent previous
1829	     1-day period."
1830	::= { atmAtucPerfDataEntry 29 }
1831
1832END
1833