Imported Upstream version 0.4.8
[platform/upstream/libsmi.git] / mibs / ietf / SNA-SDLC-MIB
1 SNA-SDLC-MIB DEFINITIONS ::= BEGIN
2
3 IMPORTS
4     MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE,
5     Counter32, Integer32, TimeTicks
6         FROM SNMPv2-SMI
7     DisplayString, RowStatus, TimeInterval
8         FROM SNMPv2-TC
9     MODULE-COMPLIANCE, OBJECT-GROUP
10         FROM SNMPv2-CONF
11     mib-2, ifIndex, ifAdminStatus, ifOperStatus
12         FROM RFC1213-MIB;
13
14
15 snaDLC MODULE-IDENTITY
16         LAST-UPDATED  "9411150000Z"
17         ORGANIZATION  "IETF SNA DLC MIB Working Group"
18         CONTACT-INFO
19                 "        Wayne Clark
20
21                  Postal: cisco Systems, Inc.
22                          3100 Smoketree Ct.
23                          Suite 1000
24                          Raleigh, NC 27604
25                          US
26
27                     Tel: +1 919 878 6958
28
29                  E-Mail: wclark@cisco.com"
30
31         DESCRIPTION
32                 "This is the MIB module for objects used to
33                  manage SDLC devices."
34
35 ::= { mib-2 41 }
36
37 --
38 --  The following data link controls are modelled in this MIB module:
39 --
40 --     1. SDLC
41 --
42
43 sdlc        OBJECT IDENTIFIER ::= { snaDLC 1 }
44
45 --
46 --  THE SDLC GROUP
47 --  ==============
48 --
49 --  The following resources are modelled in the SDLC group of this
50 --  MIB module:
51 --
52 --     1. PORTS
53 --     2. LINK STATIONS
54
55 sdlcPortGroup OBJECT IDENTIFIER ::= { sdlc 1 } -- Physical Ports
56 sdlcLSGroup   OBJECT IDENTIFIER ::= { sdlc 2 } -- Logical Link Stations
57
58 --
59 --  THE SDLC PORT GROUP
60 --  ===================
61 --
62 --  The following classes of information is modelled for each SDLC port:
63 --
64 --     1.  ADMINISTRATIVE ( read/write)
65 --     2.  OPERATIONAL    ( read-only)
66 --     3.  STATISTICS     ( read-only)
67
68 --  Information not found in this group is found in tables described in
69 --  the following RFCs:
70 --
71 --    1.  RFC1213  - MIB-II
72 --
73 --            TABLE                      INDEX
74 --            ====================       ====================
75 --        a.  ifTable                    ifIndex
76 --
77 --    2.  RFC1659  - The RS232-like MIB
78 --
79 --            TABLE                      INDEX
80 --            ====================       ====================
81 --        a.  rs232PortTable             rs232PortIndex
82 --        b.  rs232SyncPortTable         rs232SyncPortIndex
83 --        c.  rs232InSigTable            rs232InSigPortIndex,
84 --                                       rs232InSigName
85 --        d.  rs232OutSigTable           rs232OutSigPortIndex,
86 --                                       rs232OutSigName
87 --     ** e.  rs232AsyncPortTable        rs232AsyncPortIndex
88 --
89 --     ** rs232AsyncPortTable for ISO 3309.3 ( Start-Stop SDLC).
90
91 --  *************************************************************
92 --  *                                                           *
93 --  *           THE SDLC PORT ADMINISTRATIVE TABLE              *
94 --  *                                                           *
95 --  *************************************************************
96
97 sdlcPortAdminTable  OBJECT-TYPE
98                     SYNTAX      SEQUENCE OF SdlcPortAdminEntry
99                     MAX-ACCESS  not-accessible
100                     STATUS      current
101                     DESCRIPTION
102                         "This table contains objects that can be
103                         changed to manage an SDLC port.    Changing one
104                         of these parameters may take effect in the
105                         operating port immediately or may wait until
106                         the interface is restarted depending on the
107                         details of the implementation.
108
109                         Most of the objects in this read-write table
110                         have corresponding read-only objects in the
111                         sdlcPortOperTable that return the current
112                         operating value.
113
114                         The operating values may be different from
115                         these configured values if  a configured
116                         parameter was changed after the interface was
117                         started."
118                      ::= { sdlcPortGroup 1 }
119
120 sdlcPortAdminEntry  OBJECT-TYPE
121                     SYNTAX      SdlcPortAdminEntry
122                     MAX-ACCESS  not-accessible
123                     STATUS      current
124                     DESCRIPTION
125                         "A list of configured values for an SDLC port."
126                     INDEX   { ifIndex }
127                     ::= { sdlcPortAdminTable 1 }
128
129 SdlcPortAdminEntry  ::= SEQUENCE
130 {
131         sdlcPortAdminName           DisplayString,
132         sdlcPortAdminRole           INTEGER,
133         sdlcPortAdminType           INTEGER,
134         sdlcPortAdminTopology       INTEGER,
135         sdlcPortAdminISTATUS        INTEGER,
136         sdlcPortAdminACTIVTO        TimeInterval,
137         sdlcPortAdminPAUSE          TimeInterval,
138         sdlcPortAdminSERVLIM        Integer32,
139         sdlcPortAdminSlowPollTimer  TimeInterval
140 }
141
142 sdlcPortAdminName   OBJECT-TYPE
143                     SYNTAX      DisplayString (SIZE (1..10))
144                     MAX-ACCESS  read-write
145                     STATUS      current
146                     DESCRIPTION
147                         "An octet string that defines the physical port
148                         to which this interface is assigned.  It has
149                         implementation-specific significance. Its value
150                         shall be unique within the administered
151                         system.  It must contain only ASCII printable
152                         characters.  Should an implementation choose to
153                         accept a write operation  for this object, it
154                         causes the logical port definition associated
155                         with the table instance to be moved to  a
156                         different physical port.  A write operation
157                         shall not take effect until the port is cycled
158                         inactive."
159                     ::= { sdlcPortAdminEntry 1 }
160
161 sdlcPortAdminRole   OBJECT-TYPE
162                     SYNTAX      INTEGER
163                     {
164                         primary(1),
165                         secondary(2),
166                         negotiable(3)
167                     }
168                     MAX-ACCESS  read-write
169                     STATUS      current
170                     DESCRIPTION
171                         "This object describes the role that the link
172                         station shall assume the next time a connection
173                         is established.
174
175                         Even though this is defined as a port object,
176                         it is a link station attribute in the sense
177                         that a role is per link station.  However, it
178                         is not possible to vary link station roles on a
179                         particular port.  For example, if an SDLC port
180                         is configured to primary, all link stations on
181                         that port must be primary."
182                     ::= { sdlcPortAdminEntry 2 }
183
184 sdlcPortAdminType   OBJECT-TYPE
185                     SYNTAX      INTEGER
186                     {
187                          leased(1),
188                          switched(2)
189                     }
190                     MAX-ACCESS  read-write
191                     STATUS      current
192                     DESCRIPTION
193                         "This parameter defines whether the SDLC port
194                         is to connect to a leased or switched line.  A
195                         write operation to this administrative  value
196                         shall not take effect until the SDLC port has
197                         been cycled inactive."
198                     DEFVAL { leased }
199                     ::= { sdlcPortAdminEntry 3 }
200
201 sdlcPortAdminTopology  OBJECT-TYPE
202                     SYNTAX      INTEGER
203                     {
204                          pointToPoint(1),
205                          multipoint(2)
206                     }
207                     MAX-ACCESS  read-write
208                     STATUS      current
209                     DESCRIPTION
210                         "This parameter defines whether the SDLC port is
211                         capable of operating in either a point-to-point
212                         or multipoint topology.
213
214                         sdlcPortAdminTopology == multipoint implies the
215                         port can also operate in a point-to-point
216                         topology.  sdlcPortAdminTopology ==
217                         pointToPoint does not imply the port can
218                         operate in a multipoint topology.
219
220                         A write operation to this administrative value
221                         shall not take effect until the SDLC port has
222                         been cycled inactive."
223                     DEFVAL { pointToPoint }
224                     ::= { sdlcPortAdminEntry 4 }
225
226 sdlcPortAdminISTATUS  OBJECT-TYPE
227                     SYNTAX      INTEGER
228                     {
229                          inactive(1),
230                          active(2)
231                     }
232                     MAX-ACCESS  read-write
233                     STATUS      current
234                     DESCRIPTION
235                         "This parameter controls the initial value of
236                         the administrative status, ifAdminStatus, of
237                         this SDLC port at port start-up.  Depending
238                         on the implementation, a write operation to
239                         this administrative object may not take effect
240                         until the SDLC port has been cycled inactive."
241                     DEFVAL { active }
242                     ::= { sdlcPortAdminEntry 5 }
243
244 sdlcPortAdminACTIVTO    OBJECT-TYPE
245                     SYNTAX      TimeInterval
246                     MAX-ACCESS  read-write
247                     STATUS      current
248                     DESCRIPTION
249                         "This parameter defines the period of time (in
250                         1/100ths of a second) that the port will allow a
251                         switched line to remain inactive before
252                         disconnecting.  A switched line is considered
253                         to be inactive if there are no I-Frames being
254                         transferred.  A value of zero indicates no
255                         timeout.  Depending on the implementation, a
256                         write operation to this administered value may
257                         not take effect until the port is cycled
258                         inactive.
259
260                         This object only has meaning for SDLC ports
261                         where sdlcPortAdminType == switched
262
263                         The object descriptor contains the name of an
264                         NCP configuration parameter, ACTIVTO.  Please
265                         note that the value of this object represents
266                         1/100ths of a second while the NCP ACTIVTO is
267                         represented in seconds."
268                     DEFVAL { 0 }
269                     ::= { sdlcPortAdminEntry 6 }
270
271 sdlcPortAdminPAUSE  OBJECT-TYPE
272                     SYNTAX      TimeInterval
273                     MAX-ACCESS  read-write
274                     STATUS      current
275                     DESCRIPTION
276                         "This object defines the minimum elapsed time
277                         (in 1/100ths of a second) between any two
278                         traversals of the poll list for a primary SDLC
279                         port.  Depending on the implementation, a write
280                         operation to this administered value  may not
281                         take effect until the port is cycled inactive.
282                         The object descriptor contains the name of an
283                         NCP configuration parameter, PAUSE.  Please
284                         note that the value of this object represents
285                         1/100ths of a second while the NCP PAUSE is
286                         represented in 1/10ths of a second.
287
288                         This object only has meaning for SDLC ports
289                         where sdlcPortAdminRole == primary "
290                     DEFVAL { 200 }
291                     ::= { sdlcPortAdminEntry 7 }
292
293 sdlcPortAdminSERVLIM OBJECT-TYPE
294                     SYNTAX      Integer32
295                     MAX-ACCESS  read-write
296                     STATUS      current
297                     DESCRIPTION
298                         "This object defines the number of times the
299                         active poll list will be traversed before
300                         polling a station on the slow poll list for a
301                         primary, multipoint SDLC port.  Depending  on
302                         the implementation, a write operation to this
303                         administered value  may not take effect until
304                         the port is cycled inactive.
305
306                         This object only has meaning for SDLC ports
307                         where
308                             sdlcPortAdminRole == primary
309                         and
310                             sdlcPortAdminTopology == multipoint "
311                     DEFVAL { 20 }
312                     ::= { sdlcPortAdminEntry 8 }
313
314 sdlcPortAdminSlowPollTimer OBJECT-TYPE
315                     SYNTAX      TimeInterval
316                     MAX-ACCESS  read-write
317                     STATUS      current
318                     DESCRIPTION
319                         "This object describes the elapsed time (in
320                         1/100ths of a second) between polls for failed
321                         secondary link station addresses.  Depending
322                         on the implementation, a write operation to
323                         this administered value  may not take effect
324                         until the port is cycled inactive.
325
326                         This object only has meaning for SDLC ports
327                         where
328                             sdlcPortAdminRole == primary
329                         and
330                             sdlcPortAdminTopology == multipoint "
331                     DEFVAL { 2000 }
332                     ::= { sdlcPortAdminEntry 9 }
333
334 --  *************************************************************
335 --  *                                                           *
336 --  *                THE SDLC PORT OPERATIONAL TABLE            *
337 --  *                                                           *
338 --  *************************************************************
339
340 sdlcPortOperTable   OBJECT-TYPE
341                     SYNTAX      SEQUENCE OF SdlcPortOperEntry
342                     MAX-ACCESS  not-accessible
343                     STATUS      current
344                     DESCRIPTION
345                         "This table contains current SDLC port
346                         parameters.  Many of these objects have
347                         corresponding objects inthe sdlcPortAdminTable."
348                     ::= { sdlcPortGroup 2 }
349
350 sdlcPortOperEntry   OBJECT-TYPE
351                     SYNTAX      SdlcPortOperEntry
352                     MAX-ACCESS  not-accessible
353                     STATUS      current
354                     DESCRIPTION
355                         "Currently set parameters for a specific SDLC
356                         port."
357                     INDEX   { ifIndex }
358                     ::= { sdlcPortOperTable 1 }
359
360 SdlcPortOperEntry   ::= SEQUENCE
361 {
362         sdlcPortOperName                DisplayString,
363         sdlcPortOperRole                INTEGER,
364         sdlcPortOperType                INTEGER,
365         sdlcPortOperTopology            INTEGER,
366         sdlcPortOperISTATUS             INTEGER,
367         sdlcPortOperACTIVTO             TimeInterval,
368         sdlcPortOperPAUSE               TimeInterval,
369         sdlcPortOperSlowPollMethod      INTEGER,
370         sdlcPortOperSERVLIM             Integer32,
371         sdlcPortOperSlowPollTimer       TimeInterval,
372         sdlcPortOperLastModifyTime      TimeTicks,
373         sdlcPortOperLastFailTime        TimeTicks,
374         sdlcPortOperLastFailCause       INTEGER
375 }
376
377 sdlcPortOperName    OBJECT-TYPE
378                     SYNTAX      DisplayString (SIZE (1..8))
379                     MAX-ACCESS  read-only
380                     STATUS      current
381                     DESCRIPTION
382                         "An octet string that describes the physical
383                         port to which this interface is currently
384                         attached.  It has  implementation-specific
385                         significance."
386                     ::= { sdlcPortOperEntry 1 }
387
388 sdlcPortOperRole    OBJECT-TYPE
389                     SYNTAX      INTEGER
390                     {
391                         primary(1),
392                         secondary(2),
393                         undefined(3)
394                     }
395                     MAX-ACCESS  read-only
396                     STATUS      current
397                     DESCRIPTION
398                         "This object describes the role that the link
399                         station has assumed on this connection.
400
401                         Even though this is defined as a port object,
402                         it is a link station attribute in the sense
403                         that a role is per link station.  However, it
404                         is not possible to vary link station roles on a
405                         particular port.  For example, if an SDLC port
406                         is configured to primary, all link stations on
407                         that port must be primary.
408
409                         The value of sdlcPortOperRole is undefined(3)
410                         whenever the link station role has not yet been
411                         established by the mode setting command."
412                     ::= { sdlcPortOperEntry 2 }
413
414 sdlcPortOperType    OBJECT-TYPE
415                     SYNTAX      INTEGER
416                     {
417                          leased(1),
418                          switched(2)
419                     }
420                     MAX-ACCESS  read-only
421                     STATUS      current
422                     DESCRIPTION
423                         "This parameter defines whether the SDLC port
424                         is currently operating as though connected to a
425                         leased or switched line."
426                     ::= { sdlcPortOperEntry 3 }
427
428 sdlcPortOperTopology  OBJECT-TYPE
429                     SYNTAX      INTEGER
430                     {
431                          pointToPoint(1),
432                          multipoint(2)
433                     }
434                     MAX-ACCESS  read-only
435                     STATUS      current
436                     DESCRIPTION
437                         "This parameter defines whether the SDLC port is
438                         currently operating in a point-to-point or
439                         multipoint topology."
440                     ::= { sdlcPortOperEntry 4 }
441
442 sdlcPortOperISTATUS OBJECT-TYPE
443                     SYNTAX      INTEGER
444                     {
445                          inactive(1),
446                          active(2)
447                     }
448                     MAX-ACCESS  read-only
449                     STATUS      current
450                     DESCRIPTION
451                         "This parameter describes the initial value of
452                         the administrative status, ifAdminStatus, of
453                         this SDLC port at last port start-up."
454                     ::= { sdlcPortOperEntry 5 }
455
456
457 sdlcPortOperACTIVTO OBJECT-TYPE
458                     SYNTAX      TimeInterval
459                     MAX-ACCESS  read-only
460                     STATUS      current
461                     DESCRIPTION
462                         "This parameter defines the period of time (in
463                         100ths of a second) that the port will allow a
464                         switched line to remain inactive before
465                         disconnecting.  A switched line is considered
466                         to be inactive if there are no I-Frames being
467                         transferred.
468
469                         The object descriptor contains the name of an
470                         NCP configuration parameter, ACTIVTO.  Please
471                         note that the value of this object represents
472                         1/100ths of a second while the NCP ACTIVTO is
473                         represented in seconds.
474                         A value of zero indicates no timeout."
475                     ::= { sdlcPortOperEntry 6 }
476
477 sdlcPortOperPAUSE   OBJECT-TYPE
478                     SYNTAX      TimeInterval
479                     MAX-ACCESS  read-only
480                     STATUS      current
481                     DESCRIPTION
482                         "This object describes the current minimum
483                         elapsed time (in 1/100ths of a second) between
484                         any two traversals of the poll list for a
485                         primary SDLC port.
486
487                         The object descriptor contains the name of an
488                         NCP configuration parameter, PAUSE.  Please
489                         note that the value of this object represents
490                         1/100ths of a second while the NCP PAUSE is
491                         represented in 1/10ths of a second.
492
493                         This object only has meaning for SDLC ports
494                         where
495                             sdlcPortAdminRole == primary "
496                     ::= { sdlcPortOperEntry 7 }
497
498 sdlcPortOperSlowPollMethod OBJECT-TYPE
499                     SYNTAX      INTEGER
500                     {
501                          servlim(1),
502                          pollpause(2),
503                          other(3)
504                     }
505                     MAX-ACCESS  read-only
506                     STATUS      current
507                     DESCRIPTION
508                         "This object defines the exact method that is in
509                         effect for periodically polling failed secondary
510                         link station addresses.
511
512                         If sdlcPortOperSlowPollMethod == servlim, then
513                         sdlcPortOperSERVLIM defines the actual polling
514                         characteristics.
515
516                         If sdlcPortOperSlowPollMethod == pollpause,
517                         then sdlcPortOperSlowPollTimer defines the
518                         actual polling characteristics.
519
520                         If sdlcPortOperSlowPollMethod == other, then
521                         the polling characteristics are modeled in
522                         vendor-specific objects.
523
524                         This object only has meaning for SDLC ports
525                         where
526                             sdlcPortOperRole == primary
527                         and
528                             sdlcPortOperTopology == multipoint "
529                     ::= { sdlcPortOperEntry 8 }
530
531 sdlcPortOperSERVLIM OBJECT-TYPE
532                     SYNTAX      Integer32
533                     MAX-ACCESS  read-only
534                     STATUS      current
535                     DESCRIPTION
536                         "This object describes the number of times the
537                         active poll list is currently being traversed
538                         before polling a station on the slow poll list
539                         for a primary, multipoint SDLC port.
540
541                         This object only has meaning for SDLC ports
542                         where
543                             sdlcPortOperRole == primary
544                         and
545                             sdlcPortOperTopology == multipoint "
546                     ::= { sdlcPortOperEntry 9 }
547
548 sdlcPortOperSlowPollTimer OBJECT-TYPE
549                     SYNTAX      TimeInterval
550                     MAX-ACCESS  read-only
551                     STATUS      current
552                     DESCRIPTION
553                         "This object describes the elapsed time (in
554                         1/100ths of a second) between polls for failed
555                         secondary link station addresses.
556
557                         This object only has meaning for SDLC ports
558                         where
559                             sdlcPortOperRole == primary
560                         and
561                             sdlcPortOperTopology == multipoint "
562                     ::= { sdlcPortOperEntry 10 }
563
564 sdlcPortOperLastModifyTime    OBJECT-TYPE
565                     SYNTAX      TimeTicks
566                     MAX-ACCESS  read-only
567                     STATUS      current
568                     DESCRIPTION
569                         "This object describes the value of sysUpTime
570                          when this port definition was last modified.
571                          If the port has not been modified, then this
572                          value shall be zero."
573                     ::= { sdlcPortOperEntry 11 }
574
575 sdlcPortOperLastFailTime    OBJECT-TYPE
576                     SYNTAX      TimeTicks
577                     MAX-ACCESS  read-only
578                     STATUS      current
579                     DESCRIPTION
580                         "This object describes the value of sysUpTime
581                         when this SDLC port last failed.  If the port
582                         has not failed, then this value shall be zero."
583                     ::= { sdlcPortOperEntry 12 }
584
585 sdlcPortOperLastFailCause    OBJECT-TYPE
586                     SYNTAX      INTEGER
587                     {
588                         undefined(1),
589                         physical(2)
590                     }
591                     MAX-ACCESS  read-only
592                     STATUS      current
593                     DESCRIPTION
594                         "This enumerated object describes the cause of
595                         the last failure of this SDLC port.  If the
596                         port has not failed, then this object has a
597                         value of undefined(1)."
598                     DEFVAL { undefined }
599                     ::= { sdlcPortOperEntry 13 }
600
601 --  *************************************************************
602 --  *                                                           *
603 --  *           THE SDLC PORT STATISTICS TABLE                  *
604 --  *                                                           *
605 --  *************************************************************
606
607 sdlcPortStatsTable  OBJECT-TYPE
608                     SYNTAX      SEQUENCE OF SdlcPortStatsEntry
609                     MAX-ACCESS  not-accessible
610                     STATUS      current
611                     DESCRIPTION
612                         "Each entry in this table contains statistics
613                         for a specific SDLC port."
614                      ::= { sdlcPortGroup 3 }
615
616 sdlcPortStatsEntry  OBJECT-TYPE
617                     SYNTAX      SdlcPortStatsEntry
618                     MAX-ACCESS  not-accessible
619                     STATUS      current
620                     DESCRIPTION
621                         "A list of statistics for an SDLC port."
622                     INDEX   { ifIndex }
623                     ::= { sdlcPortStatsTable 1 }
624
625 SdlcPortStatsEntry ::= SEQUENCE
626 {
627         sdlcPortStatsPhysicalFailures Counter32,
628         sdlcPortStatsInvalidAddresses Counter32,
629         sdlcPortStatsDwarfFrames      Counter32,
630         sdlcPortStatsPollsIn          Counter32,
631         sdlcPortStatsPollsOut         Counter32,
632         sdlcPortStatsPollRspsIn       Counter32,
633         sdlcPortStatsPollRspsOut      Counter32,
634         sdlcPortStatsLocalBusies      Counter32,
635         sdlcPortStatsRemoteBusies     Counter32,
636         sdlcPortStatsIFramesIn        Counter32,
637         sdlcPortStatsIFramesOut       Counter32,
638         sdlcPortStatsOctetsIn         Counter32,
639         sdlcPortStatsOctetsOut        Counter32,
640         sdlcPortStatsProtocolErrs     Counter32,
641         sdlcPortStatsActivityTOs      Counter32,
642         sdlcPortStatsRNRLIMITs        Counter32,
643         sdlcPortStatsRetriesExps      Counter32,
644         sdlcPortStatsRetransmitsIn    Counter32,
645         sdlcPortStatsRetransmitsOut   Counter32
646 }
647
648 sdlcPortStatsPhysicalFailures OBJECT-TYPE
649                     SYNTAX      Counter32
650                     MAX-ACCESS  read-only
651                     STATUS      current
652                     DESCRIPTION
653                         "This object reflects the total number of times
654                         this port has failed due to its physical media
655                         since port startup.  At port startup time,
656                         this object must be initialized to zero."
657                     ::= { sdlcPortStatsEntry 1 }
658
659 sdlcPortStatsInvalidAddresses OBJECT-TYPE
660                     SYNTAX      Counter32
661                     MAX-ACCESS  read-only
662                     STATUS      current
663                     DESCRIPTION
664                         "This object reflects the total number of
665                         frames received by this port with invalid link
666                         station addresses."
667                     ::= { sdlcPortStatsEntry 2 }
668
669 sdlcPortStatsDwarfFrames OBJECT-TYPE
670                     SYNTAX      Counter32
671                     MAX-ACCESS  read-only
672                     STATUS      current
673                     DESCRIPTION
674                         "This object reflects the total number of
675                         frames received by this port which were
676                         delivered intact by the physical layer but were
677                         too short to be legal.
678
679                         Ignoring the frame check sequence (FCS), a
680                         frame is considered to be too short if it
681                         is less than 2 bytes for sdlcLSOperMODULO of
682                         eight, or if it is less than 3 bytes for
683                         sdlcLSOperMODULO of onetwentyeight."
684
685                     ::= { sdlcPortStatsEntry 3 }
686
687 sdlcPortStatsPollsIn OBJECT-TYPE
688                     SYNTAX      Counter32
689                     MAX-ACCESS  read-only
690                     STATUS      current
691                     DESCRIPTION
692                          "This object reflects the total number of polls
693                          received by this port since the port was
694                          created."
695
696                     ::= { sdlcPortStatsEntry 4 }
697
698 sdlcPortStatsPollsOut OBJECT-TYPE
699                     SYNTAX      Counter32
700                     MAX-ACCESS  read-only
701                     STATUS      current
702                     DESCRIPTION
703                          "This object reflects the total number of polls
704                          sent by this port since the port was created."
705
706                     ::= { sdlcPortStatsEntry 5 }
707
708 sdlcPortStatsPollRspsIn OBJECT-TYPE
709                     SYNTAX      Counter32
710                     MAX-ACCESS  read-only
711                     STATUS      current
712                     DESCRIPTION
713                          "This object reflects the total number of poll
714                          responses received by this port since the port
715                          was created."
716
717                     ::= { sdlcPortStatsEntry 6 }
718
719 sdlcPortStatsPollRspsOut OBJECT-TYPE
720                     SYNTAX      Counter32
721                     MAX-ACCESS  read-only
722                     STATUS      current
723                     DESCRIPTION
724                          "This object reflects the total number of poll
725                          responses sent by this port since the port was
726                          created."
727
728                     ::= { sdlcPortStatsEntry 7 }
729
730 sdlcPortStatsLocalBusies OBJECT-TYPE
731                     SYNTAX      Counter32
732                     MAX-ACCESS  read-only
733                     STATUS      current
734                     DESCRIPTION
735                          "This object reflects the total number of
736                          times that the local SDLC link stations on
737                          this port have entered a busy state (RNR).
738                          This object is initialized to zero when the
739                          port is created."
740                     ::= { sdlcPortStatsEntry 8 }
741
742 sdlcPortStatsRemoteBusies OBJECT-TYPE
743                     SYNTAX      Counter32
744                     MAX-ACCESS  read-only
745                     STATUS      current
746                     DESCRIPTION
747                          "This object reflects the total number of
748                          times that the adjacent (i.e., remote) SDLC
749                          link stations on this port have entered a busy
750                          state (RNR).  This object is initialized to
751                          zero when the port is created."
752                     ::= { sdlcPortStatsEntry 9 }
753
754 sdlcPortStatsIFramesIn OBJECT-TYPE
755                     SYNTAX      Counter32
756                     MAX-ACCESS  read-only
757                     STATUS      current
758                     DESCRIPTION
759                          "This object reflects the total number of
760                          I-Frames that have been received by SDLC link
761                          stations on this port.  This object is
762                          initialized to zero when the port is created."
763                     ::= { sdlcPortStatsEntry 10 }
764
765 sdlcPortStatsIFramesOut OBJECT-TYPE
766                     SYNTAX      Counter32
767                     MAX-ACCESS  read-only
768                     STATUS      current
769                     DESCRIPTION
770                          "This object reflects the total number of
771                          I-Frames that have been transmitted by SDLC
772                          link stations on this port.  This object is
773                          initialized to zero when the port is created."
774                     ::= { sdlcPortStatsEntry 11 }
775
776 sdlcPortStatsOctetsIn OBJECT-TYPE
777                     SYNTAX      Counter32
778                     MAX-ACCESS  read-only
779                     STATUS      current
780                     DESCRIPTION
781                          "This object reflects the total octets
782                          received from adjacent SDLC link stations on
783                          this port.  This object covers the address,
784                          control, and information field of I-Frames
785                          only.  This object is initialized to zero when
786                          the port is created."
787                     ::= { sdlcPortStatsEntry 12 }
788
789 sdlcPortStatsOctetsOut OBJECT-TYPE
790                     SYNTAX      Counter32
791                     MAX-ACCESS  read-only
792                     STATUS      current
793                     DESCRIPTION
794                          "This object reflects the total octets
795                          transmitted to adjacent SDLC link stations on
796                          this port.  This object covers the address,
797                          control, and information field of I-Frames
798                          only.  This object is initialized to zero when
799                          the port is created."
800                     ::= { sdlcPortStatsEntry 13 }
801
802 sdlcPortStatsProtocolErrs OBJECT-TYPE
803                     SYNTAX      Counter32
804                     MAX-ACCESS  read-only
805                     STATUS      current
806                     DESCRIPTION
807                          "This object reflects the total number of
808                          times that the SDLC link stations on this port
809                          have deactivated the link as a result of
810                          having received a protocol violation from the
811                          adjacent link station.  This object is
812                          initialized to zero when the port is created."
813                     ::= { sdlcPortStatsEntry 14 }
814
815 sdlcPortStatsActivityTOs OBJECT-TYPE
816                     SYNTAX      Counter32
817                     MAX-ACCESS  read-only
818                     STATUS      current
819                     DESCRIPTION
820                          "This object reflects the total number of
821                          times that the SDLC link stations on this port
822                          have deactivated the link as a result of no
823                          activity on the link.  This object is
824                          initialized to zero when the port is created."
825                     ::= { sdlcPortStatsEntry 15 }
826
827 sdlcPortStatsRNRLIMITs OBJECT-TYPE
828                     SYNTAX      Counter32
829                     MAX-ACCESS  read-only
830                     STATUS      current
831                     DESCRIPTION
832                          "This object reflects the total number of
833                          times that the SDLC link stations on this port
834                          have deactivated the link as a result of its
835                          RNRLIMIT timer expiring.  This object is
836                          initialized to zero when the port is created."
837                     ::= { sdlcPortStatsEntry 16 }
838
839 sdlcPortStatsRetriesExps OBJECT-TYPE
840                     SYNTAX      Counter32
841                     MAX-ACCESS  read-only
842                     STATUS      current
843                     DESCRIPTION
844                          "This object reflects the total number of
845                          times that the SDLC link stations on this port
846                          have deactivated the link as a result of a
847                          retry sequence being exhausted.  This object
848                          is initialized to zero when the port is
849                          created."
850                     ::= { sdlcPortStatsEntry 17 }
851
852 sdlcPortStatsRetransmitsIn OBJECT-TYPE
853                     SYNTAX      Counter32
854                     MAX-ACCESS  read-only
855                     STATUS      current
856                     DESCRIPTION
857                          "This object reflects the total number of
858                          I-Frames retransmitted by remote link stations
859                          for all SDLC link stations on this port.  This
860                          object is initialized to zero when the port is
861                          created."
862                     ::= { sdlcPortStatsEntry 18 }
863
864 sdlcPortStatsRetransmitsOut OBJECT-TYPE
865                     SYNTAX      Counter32
866                     MAX-ACCESS  read-only
867                     STATUS      current
868                     DESCRIPTION
869                          "This object reflects the total number of
870                          I-Frames retransmitted by all local SDLC link
871                          stations on this port.  This object is
872                          initialized to zero when the port is created."
873                     ::= { sdlcPortStatsEntry 19 }
874
875 --
876 --  THE SDLC LINK STATION GROUP
877 --  ===========================
878 --
879
880 --  The following classes of information is modelled for each SDLC link
881 --  station:
882 --
883 --     1.  ADMINISTRATIVE ( read-write)
884 --     2.  OPERATIONAL    ( read-only)
885 --     3.  STATISTICS     ( read-only)
886
887 --  *************************************************************
888 --  *                                                           *
889 --  *        THE SDLC LINK STATION ADMINISTRATIVE TABLE         *
890 --  *                                                           *
891 --  *************************************************************
892
893 sdlcLSAdminTable  OBJECT-TYPE
894                     SYNTAX      SEQUENCE OF SdlcLSAdminEntry
895                     MAX-ACCESS  not-accessible
896                     STATUS      current
897                     DESCRIPTION
898                         "This table contains objects that can be
899                         changed to manage an SDLC link station.
900                         Changing one of these parameters may take
901                         effect in the operating link immediately or may
902                         wait until the link is restarted depending on
903                         the details of the implementation.
904
905                         The entries in sdlcLSAdminTable can be created
906                         either by an agent or a management station. The
907                         management station can create an entry in
908                         sdlcLSAdminTable by setting the appropriate
909                         value in sdlcLSAdminRowStatus.
910
911                         Most of the objects in this read-create table
912                         have corresponding read-only objects in the
913                         sdlcLSOperTable that reflect the current
914                         operating value.
915
916                         The operating values may be different from
917                         these configured values if changed by XID
918                         negotiation or if a configured parameter was
919                         changed after the link was started."
920                     ::= { sdlcLSGroup 1 }
921
922 sdlcLSAdminEntry    OBJECT-TYPE
923                     SYNTAX      SdlcLSAdminEntry
924                     MAX-ACCESS  not-accessible
925                     STATUS      current
926                     DESCRIPTION
927                          "A list of configured values for an SDLC link
928                          station."
929                     INDEX   { ifIndex, sdlcLSAddress }
930                     ::= { sdlcLSAdminTable 1 }
931
932 SdlcLSAdminEntry ::= SEQUENCE
933 {
934         sdlcLSAddress           INTEGER,
935         sdlcLSAdminName         DisplayString,
936         sdlcLSAdminState        INTEGER,
937         sdlcLSAdminISTATUS      INTEGER,
938         sdlcLSAdminMAXDATASend  Integer32,
939         sdlcLSAdminMAXDATARcv   Integer32,
940         sdlcLSAdminREPLYTO      TimeInterval,
941         sdlcLSAdminMAXIN        INTEGER,
942         sdlcLSAdminMAXOUT       INTEGER,
943         sdlcLSAdminMODULO       INTEGER,
944         sdlcLSAdminRETRIESm     INTEGER,
945         sdlcLSAdminRETRIESt     TimeInterval,
946         sdlcLSAdminRETRIESn     Integer32,
947         sdlcLSAdminRNRLIMIT     TimeInterval,
948         sdlcLSAdminDATMODE      INTEGER,
949         sdlcLSAdminGPoll        INTEGER,
950         sdlcLSAdminSimRim       INTEGER,
951         sdlcLSAdminXmitRcvCap   INTEGER,
952         sdlcLSAdminRowStatus    RowStatus
953 }
954
955 sdlcLSAddress       OBJECT-TYPE
956                     SYNTAX      INTEGER (1..255)
957                     MAX-ACCESS  read-create
958                     STATUS      current
959                     DESCRIPTION
960                          "This value is the poll address of the
961                          secondary link station for this SDLC link.  It
962                          uniquely identifies the SDLC link station
963                          within a single SDLC port."
964                     ::= { sdlcLSAdminEntry 1 }
965
966 sdlcLSAdminName     OBJECT-TYPE
967                     SYNTAX      DisplayString (SIZE (1..10))
968                     MAX-ACCESS  read-create
969                     STATUS      current
970                     DESCRIPTION
971                         "An octet string that defines the local name of
972                         the SDLC link station.  This field may be sent
973                         in the XID3 control vector 0x0E, type 0xF7."
974                     ::= { sdlcLSAdminEntry 2 }
975
976 sdlcLSAdminState    OBJECT-TYPE
977                     SYNTAX      INTEGER
978                     {
979                          inactive(1),
980                          active(2)
981                     }
982                     MAX-ACCESS  read-create
983                     STATUS      current
984                     DESCRIPTION
985                         "This object controls the desired state of the
986                         SDLC station.  The managed system shall attempt
987                         to keep the operational state, sdlcLSOperState,
988                         consistent with this value."
989                     DEFVAL { active }
990                     ::= { sdlcLSAdminEntry 3 }
991
992 sdlcLSAdminISTATUS  OBJECT-TYPE
993                     SYNTAX      INTEGER
994                     {
995                          inactive(1),
996                          active(2)
997                     }
998                     MAX-ACCESS  read-create
999                     STATUS      current
1000                     DESCRIPTION
1001                         "This parameter controls the desired state,
1002                         sdlcLSAdminState, of the SDLC link station at
1003                         link station start-up."
1004                     DEFVAL { active }
1005                     ::= { sdlcLSAdminEntry 4 }
1006
1007 sdlcLSAdminMAXDATASend  OBJECT-TYPE
1008                     SYNTAX      Integer32
1009                     MAX-ACCESS  read-create
1010                     STATUS      current
1011                     DESCRIPTION
1012                         "This object contains the maximum PDU size that
1013                         the local link station thinks it can send to
1014                         the adjacent link station before having
1015                         received any XID from the ALS.  After the
1016                         maximum PDU size that the ALS can receive is
1017                         known (via XID exchange) that value is
1018                         reflected in sdlcLSOperMAXDATASend and takes
1019                         precedence over this object.
1020
1021                         This value includes the Transmission Header
1022                         (TH) and the Request Header (RH)."
1023                     ::= { sdlcLSAdminEntry 5 }
1024
1025 sdlcLSAdminMAXDATARcv  OBJECT-TYPE
1026                     SYNTAX      Integer32
1027                     MAX-ACCESS  read-create
1028                     STATUS      current
1029                     DESCRIPTION
1030                         "This object contains the maximum PDU size that
1031                         the local link station can receive from the
1032                         adjacent link station.  This value is sent in
1033                         the XID to the ALS.
1034
1035                         This value includes the Transmission Header
1036                         (TH) and the Request Header (RH)."
1037                     ::= { sdlcLSAdminEntry 6 }
1038
1039 sdlcLSAdminREPLYTO  OBJECT-TYPE
1040                     SYNTAX      TimeInterval
1041                     MAX-ACCESS  read-create
1042                     STATUS      current
1043                     DESCRIPTION
1044                         "This object controls the reply timeout (in
1045                         1/100ths of a second) for an SDLC link
1046                         station.  If the link station does not receive
1047                         a response to a poll or message before the
1048                         specified time expires then the appropriate
1049                         error recovery shall be initiated.
1050
1051                         The object descriptor contains the name of an
1052                         NCP configuration parameter, REPLYTO.  Please
1053                         note that the value of this object represents
1054                         1/100ths of a second while the NCP REPLYTO is
1055                         represented in 1/10ths of a second.
1056
1057                         Depending on the implementation, a write
1058                         operation to this administered value  may not
1059                         change the operational value, sdlcLSOperREPLYTO,
1060                         until the link station is cycled inactive.
1061
1062                         This object only has meaning for SDLC ports
1063                         where sdlcPortAdminRole == primary "
1064                     DEFVAL { 100 }
1065                     ::= { sdlcLSAdminEntry 7 }
1066
1067 sdlcLSAdminMAXIN    OBJECT-TYPE
1068                     SYNTAX      INTEGER (1..127)
1069                     MAX-ACCESS  read-create
1070                     STATUS      current
1071                     DESCRIPTION
1072                         "This object controls the maximum number of
1073                         unacknowledged I-frames which an SDLC link
1074                         station may receive.  This should range from 1
1075                         to (sdlcLSAdminMODULO - 1).  This value is sent
1076                         in the XID to the ALS.
1077
1078                         A write operation to this administered value
1079                         will not change the operational value,
1080                         sdlcLSOperMAXIN, until the link station is
1081                         cycled inactive."
1082                     DEFVAL { 7 }
1083                     ::= { sdlcLSAdminEntry 8 }
1084
1085 sdlcLSAdminMAXOUT   OBJECT-TYPE
1086                     SYNTAX      INTEGER (1..127)
1087                     MAX-ACCESS  read-create
1088                     STATUS      current
1089                     DESCRIPTION
1090                         "This object controls the maximum number of
1091                         consecutive unacknowledged I-frames which an
1092                         SDLC link station shall send without an
1093                         acknowledgement.  This shall range from 1 to
1094                         (sdlcLSAdminMODULO - 1).
1095
1096                         For link stations on switched SDLC lines,
1097                         certain implementions may choose to override
1098                         this administered value with the value
1099                         received in the XID exchange.
1100
1101                         Depending on the implementation, a write
1102                         operation to this administered value may not
1103                         change the operational value,
1104                         sdlcLSOperMAXOUT, until the link station is
1105                         cycled inactive.
1106
1107                         An implementation can support only modulo 8,
1108                         only modulo 128, or both."
1109                     DEFVAL { 1 }
1110                     ::= { sdlcLSAdminEntry 9 }
1111
1112 sdlcLSAdminMODULO   OBJECT-TYPE
1113                     SYNTAX      INTEGER
1114                     {
1115                         eight(8),
1116                         onetwentyeight(128)
1117                     }
1118                     MAX-ACCESS  read-create
1119                     STATUS      current
1120                     DESCRIPTION
1121                         "This object controls the modulus for an SDLC
1122                         link station.  This modulus determines the size
1123                         of the rotating acknowledgement window used the
1124                         SDLC link station pair.
1125
1126                         A write operation to this administered value
1127                         will not change the operational value,
1128                         sdlcLSOperMODULO, until the link station is
1129                         cycled inactive.
1130
1131                         An implementation can support only modulo 8,
1132                         only modulo 128, or both."
1133                     DEFVAL { eight }
1134                     ::= { sdlcLSAdminEntry 10 }
1135
1136 sdlcLSAdminRETRIESm OBJECT-TYPE
1137                     SYNTAX      INTEGER (0..128)
1138                     MAX-ACCESS  read-create
1139                     STATUS      current
1140                     DESCRIPTION
1141                         "This object controls number of retries in a
1142                         retry sequence for the local SDLC link
1143                         station.  A retry sequence is a series of
1144                         retransmitted frames ( data or control) for
1145                         which no positive acknowledgement is received.
1146
1147                         The number of times that the retry sequence is
1148                         to be repeated is controlled by the object:
1149                         sdlcLSAdminRETRIESn.  The interval between retry
1150                         sequences is controlled by the object:
1151                         sdlcLSAdminRETRIESt.
1152
1153                         A value of zero indicates no retries. If the
1154                         value of sdlcLSAdminRETRIESm is zero, then the
1155                         values of sdlcLSAdminRETRIESt and
1156                         sdlcLSAdminRETRIESn should also be zero.
1157
1158                         Depending on the implementation, a write
1159                         operation to this administered value  may not
1160                         change the operational value,
1161                         sdlcLSOperRETRIESm, until the link station is
1162                         cycled inactive."
1163                     DEFVAL { 15 }
1164                     ::= { sdlcLSAdminEntry 11 }
1165
1166 sdlcLSAdminRETRIESt OBJECT-TYPE
1167                     SYNTAX      TimeInterval
1168                     MAX-ACCESS  read-create
1169                     STATUS      current
1170                     DESCRIPTION
1171                         "This object controls the interval (in 1/100ths
1172                         of a second) between retry sequences for the
1173                         local SDLC link station if multiple retry
1174                         sequences are specified .  A retry sequence is
1175                         a series of retransmitted frames ( data or
1176                         control) for which no positive acknowledgement
1177                         is received.
1178
1179                         The number of repeated retries sequences is
1180                         controlled by the object: sdlcLSAdminRETRIESn.
1181                         The retries per sequence is controlled by the
1182                         object:  sdlcLSAdminRETRIESm.
1183
1184                         The object descriptor contains the name of an
1185                         NCP configuration parameter, RETRIESt.  Please
1186                         note that the value of this object represents
1187                         1/100ths of a second while the NCP RETRIESt is
1188                         represented in seconds.
1189
1190                         Depending on the implementation, a write
1191                         operation to this administered value  may not
1192                         change the operational value,
1193                         sdlcLSOperRETRIESt, until the link station is
1194                         cycled inactive."
1195                     DEFVAL { 0 }
1196                     ::= { sdlcLSAdminEntry 12 }
1197
1198 sdlcLSAdminRETRIESn OBJECT-TYPE
1199                     SYNTAX      Integer32
1200                     MAX-ACCESS  read-create
1201                     STATUS      current
1202                     DESCRIPTION
1203                         "This object controls the number of times that
1204                         a retry sequence is repeated for the local SDLC
1205                         link station.  A retry sequence is a series of
1206                         retransmitted frames ( data or control) for
1207                         which no positive acknowledgement is received.
1208
1209                         The interval between retry sequences is
1210                         controlled by the object: sdlcLSAdminRETRIESn.
1211                         The retries per sequence is controlled by the
1212                         object:  sdlcLSAdminRETRIESm.
1213
1214                         Depending on the implementation, a write
1215                         operation to this administered value  may not
1216                         change the operational value,
1217                         sdlcLSOperRETRIESn, until the link station is
1218                         cycled inactive."
1219                     DEFVAL { 0 }
1220                     ::= { sdlcLSAdminEntry 13 }
1221
1222 sdlcLSAdminRNRLIMIT OBJECT-TYPE
1223                     SYNTAX      TimeInterval
1224                     MAX-ACCESS  read-create
1225                     STATUS      current
1226                     DESCRIPTION
1227                         "This object controls the length of time (in
1228                         1/100ths of a second) that an SDLC link station
1229                         will allow its adjacent link station to remain
1230                         in a busy (RNR) state before declaring it
1231                         inoperative.
1232
1233                         A value of sdlcLSAdminRNRLIMIT == 0 means there
1234                         is no limit.
1235
1236                         The object descriptor contains the name of an
1237                         NCP configuration parameter, RNRLIMIT.  Please
1238                         note that the value of this object represents
1239                         1/100ths of a second while the NCP RNRLIMIT is
1240                         represented in minutes.
1241
1242                         Depending on the implementation, a write
1243                         operation to this administered value  may not
1244                         change the operational value,
1245                         sdlcLSOperRNRLIMIT, until the link station is
1246                         cycled inactive."
1247                     DEFVAL { 18000 }
1248                     ::= { sdlcLSAdminEntry 14 }
1249
1250 sdlcLSAdminDATMODE  OBJECT-TYPE
1251                     SYNTAX      INTEGER
1252                     {
1253                         half(1),
1254                         full(2)
1255                     }
1256                     MAX-ACCESS  read-create
1257                     STATUS      current
1258                     DESCRIPTION
1259                         "This object controls whether communications
1260                         mode with the adjacent link station is
1261                         two-way-alternate (half) or two-way-simultaneous
1262                         (full).
1263
1264                         A write operation to this administered value
1265                         will not change the operational value,
1266                         sdlcLSOperDATMODE, until the link station is
1267                         cycled inactive."
1268                     DEFVAL { half }
1269                     ::= { sdlcLSAdminEntry 15 }
1270
1271 sdlcLSAdminGPoll    OBJECT-TYPE
1272                     SYNTAX      INTEGER (0..254)
1273                     MAX-ACCESS  read-create
1274                     STATUS      current
1275                     DESCRIPTION
1276                         "This object describes the group poll address
1277                         for this link station instance.  If group poll
1278                         is not in effect for this link station
1279                         instance, the value for sdlcLSAdminGPoll should
1280                         be zero.
1281
1282                         Depending on the implementation, a write
1283                         operation to this administered value may not
1284                         change the operational value, sdlcLSOperGPoll,
1285                         until the link station is cycled inactive."
1286                     ::= { sdlcLSAdminEntry 16 }
1287
1288 sdlcLSAdminSimRim   OBJECT-TYPE
1289                     SYNTAX      INTEGER
1290                     {
1291                          no(1),
1292                          yes(2)
1293                     }
1294                     MAX-ACCESS  read-create
1295                     STATUS      current
1296                     DESCRIPTION
1297                         "This object controls the support for
1298                         transmission and receipt of SIM and RIM control
1299                         frames for this link station.  The value of
1300                         this object controls the setting of the
1301                         transmit-receive capability sent in the XID
1302                         field."
1303                     DEFVAL { no }
1304                     ::= { sdlcLSAdminEntry 17 }
1305
1306 sdlcLSAdminXmitRcvCap OBJECT-TYPE
1307                     SYNTAX      INTEGER
1308                     {
1309                          twa(1),
1310                          tws(2)
1311                     }
1312                     MAX-ACCESS  read-create
1313                     STATUS      current
1314                     DESCRIPTION
1315                         "This object controls the transmit-receive
1316                         capabilities for this SDLC link station.  The
1317                         value of this object establishes the value of
1318                         the transmit-receive capability indicator sent
1319                         in the XID image to the adjacent link station."
1320                     DEFVAL { twa }
1321                     ::= { sdlcLSAdminEntry 18 }
1322
1323 sdlcLSAdminRowStatus OBJECT-TYPE
1324                     SYNTAX      RowStatus
1325                     MAX-ACCESS  read-create
1326                     STATUS      current
1327                     DESCRIPTION
1328                         "This object is used by a management station to
1329                         create or delete the row entry in
1330                         sdlcLSAdminTable following the RowStatus
1331                         textual convention.
1332
1333                         Upon successful creation of the row, an agent
1334                         automatically creates a corresponding entry in
1335                         the sdlcLSOperTable with sdlcLSOperState equal
1336                         to 'discontacted (1)'."
1337                     ::= { sdlcLSAdminEntry 19 }
1338
1339 --  *************************************************************
1340 --  *                                                           *
1341 --  *           THE SDLC LINK STATION OPERATIONAL TABLE         *
1342 --  *                                                           *
1343 --  *************************************************************
1344
1345 sdlcLSOperTable     OBJECT-TYPE
1346                     SYNTAX      SEQUENCE OF SdlcLSOperEntry
1347                     MAX-ACCESS  not-accessible
1348                     STATUS      current
1349                     DESCRIPTION
1350                           "This table contains current SDLC link
1351                           parameters.  Many of these objects have
1352                           corresponding objects in the
1353                           sdlcLSAdminTable."
1354                     ::= { sdlcLSGroup 2 }
1355
1356 sdlcLSOperEntry     OBJECT-TYPE
1357                     SYNTAX      SdlcLSOperEntry
1358                     MAX-ACCESS  not-accessible
1359                     STATUS      current
1360                     DESCRIPTION
1361                          "A list of status and control values for an
1362                          SDLC link station."
1363                     INDEX   { ifIndex, sdlcLSAddress }
1364                     ::= { sdlcLSOperTable 1 }
1365
1366 SdlcLSOperEntry     ::= SEQUENCE
1367 {
1368         sdlcLSOperName                  DisplayString,
1369         sdlcLSOperRole                  INTEGER,
1370         sdlcLSOperState                 INTEGER,
1371         sdlcLSOperMAXDATASend           Integer32,
1372         sdlcLSOperREPLYTO               TimeInterval,
1373         sdlcLSOperMAXIN                 INTEGER,
1374         sdlcLSOperMAXOUT                INTEGER,
1375         sdlcLSOperMODULO                INTEGER,
1376         sdlcLSOperRETRIESm              INTEGER,
1377         sdlcLSOperRETRIESt              TimeInterval,
1378         sdlcLSOperRETRIESn              INTEGER,
1379         sdlcLSOperRNRLIMIT              TimeInterval,
1380         sdlcLSOperDATMODE               INTEGER,
1381         sdlcLSOperLastModifyTime        TimeTicks,
1382         sdlcLSOperLastFailTime          TimeTicks,
1383         sdlcLSOperLastFailCause         INTEGER,
1384         sdlcLSOperLastFailCtrlIn        OCTET STRING,
1385         sdlcLSOperLastFailCtrlOut       OCTET STRING,
1386         sdlcLSOperLastFailFRMRInfo      OCTET STRING,
1387         sdlcLSOperLastFailREPLYTOs      Counter32,
1388         sdlcLSOperEcho                  INTEGER,
1389         sdlcLSOperGPoll                 INTEGER,
1390         sdlcLSOperSimRim                INTEGER,
1391         sdlcLSOperXmitRcvCap            INTEGER
1392 }
1393
1394 sdlcLSOperName      OBJECT-TYPE
1395                     SYNTAX      DisplayString (SIZE (1..10))
1396                     MAX-ACCESS  read-only
1397                     STATUS      current
1398                     DESCRIPTION
1399                          "An octet string that defines the name of the
1400                          remote SDLC link station.  This field is
1401                          received in the XID3 control vector 0x0E, type
1402                          0xF7."
1403                     ::= { sdlcLSOperEntry 1 }
1404
1405 sdlcLSOperRole      OBJECT-TYPE
1406                     SYNTAX      INTEGER
1407                     {
1408                         primary(1),
1409                         secondary(2),
1410                         undefined(3)
1411                     }
1412                     MAX-ACCESS  read-only
1413                     STATUS      current
1414                     DESCRIPTION
1415                         "This object reflects the current role that the
1416                         link station is assuming.
1417
1418                         The value of sdlcLSOperRole is undefined(3)
1419                         whenever the link station role has not yet been
1420                         established by the mode setting command."
1421                     ::= { sdlcLSOperEntry 2 }
1422
1423 sdlcLSOperState     OBJECT-TYPE
1424                     SYNTAX      INTEGER
1425                     {
1426                         discontacted(1),
1427                         contactPending(2),
1428                         contacted(3),
1429                         discontactPending(4)
1430                     }
1431                     MAX-ACCESS  read-only
1432                     STATUS      current
1433                     DESCRIPTION
1434                         "This object describes the operational state of
1435                         the SDLC link station.  The managed system
1436                         shall attempt to keep this value consistent
1437                         with the administered state, sdlcLSAdminState"
1438                     ::= { sdlcLSOperEntry 3 }
1439
1440 sdlcLSOperMAXDATASend   OBJECT-TYPE
1441                     SYNTAX      Integer32
1442                     MAX-ACCESS  read-only
1443                     STATUS      current
1444                     DESCRIPTION
1445                         "This object contains the actual maximum PDU
1446                         size that the local link station can send to
1447                         the adjacent link station.  This object is
1448                         established from the value received in the XID
1449                         from the adjacent link station.  If no XID
1450                         is received, then this value is implementation
1451                         dependent (for instance, it could be the value
1452                         of sdlcLSAdminMAXDATASend).
1453                         This value includes the Transmission Header
1454                         (TH) and the Request Header (RH)."
1455                     ::= { sdlcLSOperEntry 4 }
1456
1457 sdlcLSOperREPLYTO   OBJECT-TYPE
1458                     SYNTAX      TimeInterval
1459                     MAX-ACCESS  read-only
1460                     STATUS      current
1461                     DESCRIPTION
1462                         "This object reflects the current reply timeout
1463                         (in 1/100ths of a second) for an SDLC link
1464                         station.  If the link station does not receive
1465                         a response to a poll or message before the
1466                         specified time expires then the appropriate
1467                         error recovery shall be initiated.
1468
1469                         The object descriptor contains the name of an
1470                         NCP configuration parameter, REPLYTO.  Please
1471                         note that the value of this object represents
1472                         1/100ths of a second while the NCP REPLYTO is
1473                         represented in 1/10ths of a second.
1474
1475                         This object only has meaning for SDLC ports
1476                         where sdlcPortOperRole == primary "
1477                     ::= { sdlcLSOperEntry 5 }
1478
1479 sdlcLSOperMAXIN    OBJECT-TYPE
1480                     SYNTAX      INTEGER (1..127)
1481                     MAX-ACCESS  read-only
1482                     STATUS      current
1483                     DESCRIPTION
1484                         "This object reflects the current maximum
1485                         number of unacknowledged I-frames which an SDLC
1486                         link station may receive.  This shall range
1487                         from 1 to (sdlcLSOperMODULO - 1)."
1488                     ::= { sdlcLSOperEntry 6 }
1489
1490 sdlcLSOperMAXOUT    OBJECT-TYPE
1491                     SYNTAX      INTEGER (1..127)
1492                     MAX-ACCESS  read-only
1493                     STATUS      current
1494                     DESCRIPTION
1495                         "This object controls the maximum number of
1496                         consecutive unacknowledged I-frames which an
1497                         SDLC link station shall send without an
1498                         acknowledgement.  This shall range from 1 to
1499                         (sdlcLSAdminMODULO - 1).
1500                         This value may controlled by the administered
1501                         MAXOUT, sdlcLSAdminMAXOUT, or by the MAXIN value
1502                         received during the XID exchange."
1503                     ::= { sdlcLSOperEntry 7 }
1504
1505 sdlcLSOperMODULO   OBJECT-TYPE
1506                     SYNTAX      INTEGER
1507                     {
1508                         eight(8),
1509                         onetwentyeight(128)
1510                     }
1511                     MAX-ACCESS  read-only
1512                     STATUS      current
1513                     DESCRIPTION
1514                         "This object reflects the current modulus for
1515                         an SDLC link station.  This modulus determines
1516                         the size of rotating acknowledgement window
1517                         used by the SDLC link station pair."
1518                      DEFVAL { eight }
1519                     ::= { sdlcLSOperEntry 8 }
1520
1521 sdlcLSOperRETRIESm  OBJECT-TYPE
1522                     SYNTAX      INTEGER (0..128)
1523                     MAX-ACCESS  read-only
1524                     STATUS      current
1525                     DESCRIPTION
1526                         "This object controls number of retries in a
1527                         retry sequence for an SDLC link station.  A
1528                         retry sequence is a series of retransmitted
1529                         frames ( data or control) for which no positive
1530                         acknowledgement is received.
1531
1532                         The current number of times that the retry
1533                         sequence is to be repeated is reflected by the
1534                         object:  sdlcLSOperRETRIESn.  The current
1535                         interval between retry sequences is reflected
1536                         by the object:  sdlcLSOperRETRIESt."
1537                     ::= { sdlcLSOperEntry 9 }
1538
1539 sdlcLSOperRETRIESt  OBJECT-TYPE
1540                     SYNTAX      TimeInterval
1541                     MAX-ACCESS  read-only
1542                     STATUS      current
1543                     DESCRIPTION
1544                         "This object reflects the current interval (in
1545                         1/100ths of a second) between retry sequences
1546                         for an SDLC link station if multiple retry
1547                         sequences are specified.  A retry sequence is a
1548                         series of retransmitted frames ( data or
1549                         control) for which no positive acknowledgement
1550                         is received.
1551
1552                         The object descriptor contains the name of an
1553                         NCP configuration parameter, RETRIESt.  Please
1554                         note that the value of this object represents
1555                         1/100ths of a second while the NCP RETRIESt is
1556                         represented in seconds.
1557
1558                         The current number of repeated retries
1559                         sequences is reflected by the object:
1560                         sdlcLSOperRETRIESn.  The current retries per
1561                         sequence is reflected by the object:
1562                         sdlcLSOperRETRIESm."
1563                     ::= { sdlcLSOperEntry 10 }
1564
1565 sdlcLSOperRETRIESn OBJECT-TYPE
1566                     SYNTAX      INTEGER (0..127)
1567                     MAX-ACCESS  read-only
1568                     STATUS      current
1569                     DESCRIPTION
1570                         "This object reflects the current number of
1571                         times that a retry sequence is repeated for an
1572                         SDLC link station.  A retry sequence is a
1573                         series of retransmitted frames ( data or
1574                         control) for which no positive acknowledgement
1575                         is received.
1576
1577                         The current interval between retry sequences is
1578                         reflected by the object: sdlcLSOperRETRIESn.
1579                         The current retries per sequence is reflected
1580                         by the object:  sdlcLSOperRETRIESm."
1581                     ::= { sdlcLSOperEntry 11 }
1582
1583 sdlcLSOperRNRLIMIT  OBJECT-TYPE
1584                     SYNTAX      TimeInterval
1585                     MAX-ACCESS  read-only
1586                     STATUS      current
1587                     DESCRIPTION
1588                         "This object reflects the current length of
1589                         time (in 1/100ths of a second) that an SDLC
1590                         link station will allow its adjacent link
1591                         station to remain in a busy (RNR) state before
1592                         declaring it inoperative.
1593
1594                         The object descriptor contains the name of an
1595                         NCP configuration parameter, RNRLIMIT.  Please
1596                         note that the value of this object represents
1597                         1/100ths of a second while the NCP RNRLIMIT is
1598                         represented in minutes.
1599
1600                         A value of sdlcLSOperRNRLIMIT == 0 means there
1601                         is no limit."
1602                     ::= { sdlcLSOperEntry 12 }
1603
1604 sdlcLSOperDATMODE   OBJECT-TYPE
1605                     SYNTAX      INTEGER
1606                     {
1607                         half(1),
1608                         full(2)
1609                     }
1610                     MAX-ACCESS  read-only
1611                     STATUS      current
1612                     DESCRIPTION
1613                         "This object reflects whether the current
1614                         communications mode with the adjacent link
1615                         station is two-way-alternate (half) or
1616                         two-way-simultaneous (full)."
1617                     ::= { sdlcLSOperEntry 13 }
1618
1619 sdlcLSOperLastModifyTime    OBJECT-TYPE
1620                     SYNTAX      TimeTicks
1621                     MAX-ACCESS  read-only
1622                     STATUS      current
1623                     DESCRIPTION
1624                         "This object describes the value of sysUpTime
1625                          when this link station definition was last
1626                          modified.  If the link station has not been
1627                          modified, then this value shall be zero."
1628                     ::= { sdlcLSOperEntry 14 }
1629
1630 sdlcLSOperLastFailTime    OBJECT-TYPE
1631                     SYNTAX      TimeTicks
1632                     MAX-ACCESS  read-only
1633                     STATUS      current
1634                     DESCRIPTION
1635                         "This object describes the value of sysUpTime
1636                          when this SDLC link station last failed.  If
1637                          the link station has not failed, then this
1638                          value shall be zero."
1639                     ::= { sdlcLSOperEntry 15 }
1640
1641 sdlcLSOperLastFailCause    OBJECT-TYPE
1642                     SYNTAX      INTEGER
1643                     {
1644                         undefined(1),
1645                         rxFRMR(2),
1646                         txFRMR(3),
1647                         noResponse(4),
1648                         protocolErr(5),
1649                         noActivity(6),
1650                         rnrLimit(7),
1651                         retriesExpired(8)
1652                     }
1653                     MAX-ACCESS  read-only
1654                     STATUS      current
1655                     DESCRIPTION
1656                         "This enumerated object reflects the cause of
1657                         the last failure of this SDLC link station.  If
1658                         the link station has not failed, then this
1659                         object will have a value of undefined(1)."
1660                     DEFVAL { undefined }
1661                     ::= { sdlcLSOperEntry 16 }
1662
1663 sdlcLSOperLastFailCtrlIn  OBJECT-TYPE
1664                     SYNTAX      OCTET STRING (SIZE(1..2))
1665                     MAX-ACCESS  read-only
1666                     STATUS      current
1667                     DESCRIPTION
1668                         "This object reflects the last control octet or
1669                         octets (depending on modulus) received by this
1670                         SDLC link station at the time of the last
1671                         failure.  If the link station has not failed,
1672                         then this value has no meaning."
1673                     ::= { sdlcLSOperEntry 17 }
1674
1675 sdlcLSOperLastFailCtrlOut  OBJECT-TYPE
1676                     SYNTAX      OCTET STRING (SIZE(1..2))
1677                     MAX-ACCESS  read-only
1678                     STATUS      current
1679                     DESCRIPTION
1680                         "This object reflects the last control octet or
1681                         octets (depending on modulus) sent by this SDLC
1682                         link station at the time of the last failure.
1683                         If the link station has not failed, then this
1684                         value has no meaning."
1685                     ::= { sdlcLSOperEntry 18 }
1686
1687 sdlcLSOperLastFailFRMRInfo  OBJECT-TYPE
1688                     SYNTAX      OCTET STRING (SIZE(3))
1689                     MAX-ACCESS  read-only
1690                     STATUS      current
1691                     DESCRIPTION
1692                         "This object reflects the information field of
1693                         the FRMR frame if the last failure for this
1694                         SDLC link station was as a result of an invalid
1695                         frame.  Otherwise, this field has no meaning."
1696                     ::= { sdlcLSOperEntry 19 }
1697
1698 sdlcLSOperLastFailREPLYTOs  OBJECT-TYPE
1699                     SYNTAX      Counter32
1700                     MAX-ACCESS  read-only
1701                     STATUS      current
1702                     DESCRIPTION
1703                         "This object reflects the number of times that
1704                         the REPLYTO timer had expired for an SDLC link
1705                         station at the time of the last failure. If the
1706                         link station has not failed, then this value
1707                         has no meaning."
1708                     ::= { sdlcLSOperEntry 20 }
1709
1710 sdlcLSOperEcho      OBJECT-TYPE
1711                     SYNTAX      INTEGER
1712                     {
1713                          no(1),
1714                          yes(2)
1715                     }
1716                     MAX-ACCESS  read-only
1717                     STATUS      current
1718                     DESCRIPTION
1719                         "This object identifies whether the echo bit is
1720                          in effect for this particular link station."
1721                     DEFVAL { no }
1722                     ::= { sdlcLSOperEntry 21 }
1723
1724 sdlcLSOperGPoll     OBJECT-TYPE
1725                     SYNTAX      INTEGER (0..254)
1726                     MAX-ACCESS  read-only
1727                     STATUS      current
1728                     DESCRIPTION
1729                         "This object describes the group poll address
1730                         in effect for this link station instance."
1731                     DEFVAL { 0 }
1732                     ::= { sdlcLSOperEntry 22 }
1733
1734 sdlcLSOperSimRim    OBJECT-TYPE
1735                     SYNTAX      INTEGER
1736                     {
1737                          no(1),
1738                          yes(2)
1739                     }
1740                     MAX-ACCESS  read-only
1741                     STATUS      current
1742                     DESCRIPTION
1743                         "This object reflects the support for
1744                         transmission and receipt of SIM and RIM control
1745                         frames for the adjacent link station.  The
1746                         value of this object is set from the XID field
1747                         received from the adjacent link station."
1748                     DEFVAL { no }
1749                     ::= { sdlcLSOperEntry 23 }
1750
1751 sdlcLSOperXmitRcvCap OBJECT-TYPE
1752                     SYNTAX      INTEGER
1753                     {
1754                          twa(1),
1755                          tws(2)
1756                     }
1757                     MAX-ACCESS  read-only
1758                     STATUS      current
1759                     DESCRIPTION
1760                         "This object reflects the transmit-receive
1761                         capabilities for the adjacent SDLC link
1762                         station.  The value of this object is the value
1763                         of the transmit-receive capability indicator
1764                         received in the XID image from the adjacent
1765                         link station."
1766                     DEFVAL { twa }
1767                     ::= { sdlcLSOperEntry 24 }
1768
1769
1770 --  *************************************************************
1771 --  *                                                           *
1772 --  *           THE SDLC LINK STATION STATISTICS TABLE          *
1773 --  *                                                           *
1774 --  *************************************************************
1775
1776 sdlcLSStatsTable  OBJECT-TYPE
1777                     SYNTAX      SEQUENCE OF SdlcLSStatsEntry
1778                     MAX-ACCESS  not-accessible
1779                     STATUS      current
1780                     DESCRIPTION
1781                         "Each entry in this table contains statistics
1782                         for a specific SDLC link station."
1783                      ::= { sdlcLSGroup 3 }
1784
1785 sdlcLSStatsEntry  OBJECT-TYPE
1786                     SYNTAX      SdlcLSStatsEntry
1787                     MAX-ACCESS  not-accessible
1788                     STATUS      current
1789                     DESCRIPTION
1790                         "A list of statistics for an SDLC link station."
1791                     INDEX   { ifIndex, sdlcLSAddress }
1792                     ::= { sdlcLSStatsTable 1 }
1793
1794 SdlcLSStatsEntry ::= SEQUENCE
1795 {
1796         sdlcLSStatsBLUsIn             Counter32,
1797         sdlcLSStatsBLUsOut            Counter32,
1798         sdlcLSStatsOctetsIn           Counter32,
1799         sdlcLSStatsOctetsOut          Counter32,
1800         sdlcLSStatsPollsIn            Counter32,
1801         sdlcLSStatsPollsOut           Counter32,
1802         sdlcLSStatsPollRspsIn         Counter32,
1803         sdlcLSStatsPollRspsOut        Counter32,
1804         sdlcLSStatsLocalBusies        Counter32,
1805         sdlcLSStatsRemoteBusies       Counter32,
1806         sdlcLSStatsIFramesIn          Counter32,
1807         sdlcLSStatsIFramesOut         Counter32,
1808         sdlcLSStatsUIFramesIn         Counter32,
1809         sdlcLSStatsUIFramesOut        Counter32,
1810         sdlcLSStatsXIDsIn             Counter32,
1811         sdlcLSStatsXIDsOut            Counter32,
1812         sdlcLSStatsTESTsIn            Counter32,
1813         sdlcLSStatsTESTsOut           Counter32,
1814         sdlcLSStatsREJsIn             Counter32,
1815         sdlcLSStatsREJsOut            Counter32,
1816         sdlcLSStatsFRMRsIn            Counter32,
1817         sdlcLSStatsFRMRsOut           Counter32,
1818         sdlcLSStatsSIMsIn             Counter32,
1819         sdlcLSStatsSIMsOut            Counter32,
1820         sdlcLSStatsRIMsIn             Counter32,
1821         sdlcLSStatsRIMsOut            Counter32,
1822         sdlcLSStatsDISCIn             Counter32,
1823         sdlcLSStatsDISCOut            Counter32,
1824         sdlcLSStatsUAIn               Counter32,
1825         sdlcLSStatsUAOut              Counter32,
1826         sdlcLSStatsDMIn               Counter32,
1827         sdlcLSStatsDMOut              Counter32,
1828         sdlcLSStatsSNRMIn             Counter32,
1829         sdlcLSStatsSNRMOut            Counter32,
1830         sdlcLSStatsProtocolErrs       Counter32,
1831         sdlcLSStatsActivityTOs        Counter32,
1832         sdlcLSStatsRNRLIMITs          Counter32,
1833         sdlcLSStatsRetriesExps        Counter32,
1834         sdlcLSStatsRetransmitsIn      Counter32,
1835         sdlcLSStatsRetransmitsOut     Counter32
1836 }
1837
1838 sdlcLSStatsBLUsIn   OBJECT-TYPE
1839                     SYNTAX      Counter32
1840                     MAX-ACCESS  read-only
1841                     STATUS      current
1842                     DESCRIPTION
1843                         "This object reflects the total basic link
1844                         units (BLUs; frames) received from an adjacent
1845                         SDLC link station since link station startup.
1846                         At link station startup time, this object must
1847                         be initialized to zero."
1848                     ::= { sdlcLSStatsEntry 1 }
1849
1850 sdlcLSStatsBLUsOut   OBJECT-TYPE
1851                     SYNTAX      Counter32
1852                     MAX-ACCESS  read-only
1853                     STATUS      current
1854                     DESCRIPTION
1855                         "This object reflects the total basic link
1856                         units (BLUs; frames), transmitted to an
1857                         adjacent SDLC link station since link station
1858                         startup.  At link station startup time, this
1859                         object must be initialized to zero."
1860                     ::= { sdlcLSStatsEntry 2 }
1861
1862 sdlcLSStatsOctetsIn OBJECT-TYPE
1863                     SYNTAX      Counter32
1864                     MAX-ACCESS  read-only
1865                     STATUS      current
1866                     DESCRIPTION
1867                         "This object reflects the total octets received
1868                         from an adjacent SDLC link station since link
1869                         station startup.  This object covers the
1870                         address, control, and information field of
1871                         I-Frames only.  At link station startup time,
1872                         this object must be initialized to zero."
1873                     ::= { sdlcLSStatsEntry 3 }
1874
1875 sdlcLSStatsOctetsOut OBJECT-TYPE
1876                     SYNTAX      Counter32
1877                     MAX-ACCESS  read-only
1878                     STATUS      current
1879                     DESCRIPTION
1880                         "This object reflects the total octets
1881                         transmitted to an adjacent SDLC link station
1882                         since link station startup.  This object covers
1883                         the address, control, and information field of
1884                         I-Frames only.  At link station startup time,
1885                         this object must be initialized to zero."
1886                     ::= { sdlcLSStatsEntry 4 }
1887
1888 sdlcLSStatsPollsIn  OBJECT-TYPE
1889                     SYNTAX      Counter32
1890                     MAX-ACCESS  read-only
1891                     STATUS      current
1892                     DESCRIPTION
1893                         "This object reflects the total polls received
1894                         from an adjacent SDLC link station since link
1895                         station startup.  At link station startup time,
1896                         this object must be initialized to zero."
1897                     ::= { sdlcLSStatsEntry 5 }
1898
1899 sdlcLSStatsPollsOut OBJECT-TYPE
1900                     SYNTAX      Counter32
1901                     MAX-ACCESS  read-only
1902                     STATUS      current
1903                     DESCRIPTION
1904                         "This object reflects the total polls sent to
1905                         an adjacent SDLC link station since link
1906                         station startup.  At link station startup time,
1907                         this object must be initialized to zero."
1908                     ::= { sdlcLSStatsEntry 6 }
1909
1910 sdlcLSStatsPollRspsOut OBJECT-TYPE
1911                     SYNTAX      Counter32
1912                     MAX-ACCESS  read-only
1913                     STATUS      current
1914                     DESCRIPTION
1915                         "This object reflects the total number of poll
1916                         responses sent to the adjacent SDLC link
1917                         station since link station startup.  This value
1918                         includes I-frames that are sent in response to
1919                         a poll.
1920
1921                         At link station startup time, this object must
1922                         be initialized to zero."
1923                     ::= { sdlcLSStatsEntry 7 }
1924
1925 sdlcLSStatsPollRspsIn OBJECT-TYPE
1926                     SYNTAX      Counter32
1927                     MAX-ACCESS  read-only
1928                     STATUS      current
1929                     DESCRIPTION
1930                         "This object reflects the total number of poll
1931                         responses received from the adjacent SDLC link
1932                         station since station startup.  This value
1933                         includes I-frames that are received in response
1934                         to a poll.
1935
1936                         At link station startup time, this object must
1937                         be initialized to zero."
1938                     ::= { sdlcLSStatsEntry 8 }
1939
1940 sdlcLSStatsLocalBusies OBJECT-TYPE
1941                     SYNTAX      Counter32
1942                     MAX-ACCESS  read-only
1943                     STATUS      current
1944                     DESCRIPTION
1945                         "This object reflects the total number of times
1946                         that the local SDLC link station has entered a
1947                         busy state (RNR) since link station startup.
1948                         At link station startup time, this object must
1949                         be initialized to zero."
1950                     ::= { sdlcLSStatsEntry 9 }
1951
1952 sdlcLSStatsRemoteBusies OBJECT-TYPE
1953                     SYNTAX      Counter32
1954                     MAX-ACCESS  read-only
1955                     STATUS      current
1956                     DESCRIPTION
1957                         "This object reflects the total number of times
1958                         that an adjacent ( remote) SDLC link station
1959                         has entered a busy state (RNR) since link
1960                         station startup.  At link station startup time,
1961                         this object must be initialized to zero."
1962                     ::= { sdlcLSStatsEntry 10 }
1963
1964 sdlcLSStatsIFramesIn OBJECT-TYPE
1965                     SYNTAX      Counter32
1966                     MAX-ACCESS  read-only
1967                     STATUS      current
1968                     DESCRIPTION
1969                         "This object reflects the total I-frames
1970                         received from an adjacent SDLC link station
1971                         since link station startup.  At link station
1972                         startup time, this object must be initialized
1973                         to zero."
1974                     ::= { sdlcLSStatsEntry 11 }
1975
1976 sdlcLSStatsIFramesOut OBJECT-TYPE
1977                     SYNTAX      Counter32
1978                     MAX-ACCESS  read-only
1979                     STATUS      current
1980                     DESCRIPTION
1981                         "This object reflects the total I-frames
1982                         transmitted to an adjacent SDLC link station
1983                         since link station startup.  At link station
1984                         startup time, this object must be initialized
1985                         to zero."
1986                     ::= { sdlcLSStatsEntry 12 }
1987
1988 sdlcLSStatsUIFramesIn OBJECT-TYPE
1989                     SYNTAX      Counter32
1990                     MAX-ACCESS  read-only
1991                     STATUS      current
1992                     DESCRIPTION
1993                         "This object reflects the total UI-frames
1994                         received from an adjacent SDLC link station
1995                         since link station startup."
1996                     ::= { sdlcLSStatsEntry 13 }
1997
1998 sdlcLSStatsUIFramesOut OBJECT-TYPE
1999                     SYNTAX      Counter32
2000                     MAX-ACCESS  read-only
2001                     STATUS      current
2002                     DESCRIPTION
2003                        "This object reflects the total UI-frames
2004                        transmitted to an adjacent SDLC link station
2005                        since link station startup."
2006                     ::= { sdlcLSStatsEntry 14 }
2007
2008 sdlcLSStatsXIDsIn   OBJECT-TYPE
2009                     SYNTAX      Counter32
2010                     MAX-ACCESS  read-only
2011                     STATUS      current
2012                     DESCRIPTION
2013                         "This object reflects the total XID frames
2014                         received from an adjacent SDLC link station
2015                         since link station startup."
2016                     ::= { sdlcLSStatsEntry 15 }
2017
2018 sdlcLSStatsXIDsOut  OBJECT-TYPE
2019                     SYNTAX      Counter32
2020                     MAX-ACCESS  read-only
2021                     STATUS      current
2022                     DESCRIPTION
2023                         "This object reflects the total XID frames
2024                         transmitted to an adjacent SDLC link station
2025                         since link station startup."
2026                     ::= { sdlcLSStatsEntry 16 }
2027
2028 sdlcLSStatsTESTsIn   OBJECT-TYPE
2029                     SYNTAX      Counter32
2030                     MAX-ACCESS  read-only
2031                     STATUS      current
2032                     DESCRIPTION
2033                         "This object reflects the total TEST frames,
2034                         commands or responses, received from an
2035                         adjacent SDLC link station since link station
2036                         startup."
2037                     ::= { sdlcLSStatsEntry 17 }
2038
2039 sdlcLSStatsTESTsOut  OBJECT-TYPE
2040                     SYNTAX      Counter32
2041                     MAX-ACCESS  read-only
2042                     STATUS      current
2043                     DESCRIPTION
2044                         "This object reflects the total TEST frames,
2045                         commands or responses, transmitted to an
2046                         adjacent SDLC link station since link station
2047                         startup."
2048                     ::= { sdlcLSStatsEntry 18 }
2049
2050 sdlcLSStatsREJsIn   OBJECT-TYPE
2051                     SYNTAX      Counter32
2052                     MAX-ACCESS  read-only
2053                     STATUS      current
2054                     DESCRIPTION
2055                         "This object reflects the total REJ frames
2056                         received from an adjacent SDLC link station
2057                         since link station startup."
2058                     ::= { sdlcLSStatsEntry 19 }
2059
2060 sdlcLSStatsREJsOut  OBJECT-TYPE
2061                     SYNTAX      Counter32
2062                     MAX-ACCESS  read-only
2063                     STATUS      current
2064                     DESCRIPTION
2065                         "This object reflects the total REJ frames
2066                         transmitted to an adjacent SDLC link station
2067                         since link station startup."
2068                     ::= { sdlcLSStatsEntry 20 }
2069
2070 sdlcLSStatsFRMRsIn  OBJECT-TYPE
2071                     SYNTAX      Counter32
2072                     MAX-ACCESS  read-only
2073                     STATUS      current
2074                     DESCRIPTION
2075                         "This object reflects the total frame reject
2076                         (FRMR) frames received from an adjacent SDLC
2077                         link station since link station startup."
2078                     ::= { sdlcLSStatsEntry 21 }
2079
2080 sdlcLSStatsFRMRsOut  OBJECT-TYPE
2081                     SYNTAX      Counter32
2082                     MAX-ACCESS  read-only
2083                     STATUS      current
2084                     DESCRIPTION
2085                         "This object reflects the total frame reject
2086                         (FRMR) frames transmitted to an adjacent SDLC
2087                         link station since link station startup."
2088                     ::= { sdlcLSStatsEntry 22 }
2089
2090 sdlcLSStatsSIMsIn   OBJECT-TYPE
2091                     SYNTAX      Counter32
2092                     MAX-ACCESS  read-only
2093                     STATUS      current
2094                     DESCRIPTION
2095                         "This object reflects the total set
2096                         initialization mode (SIM) frames received from
2097                         an adjacent SDLC link station since link station
2098                         startup."
2099                     ::= { sdlcLSStatsEntry 23 }
2100
2101 sdlcLSStatsSIMsOut  OBJECT-TYPE
2102                     SYNTAX      Counter32
2103                     MAX-ACCESS  read-only
2104                     STATUS      current
2105                     DESCRIPTION
2106                         "This object reflects the total set
2107                         initialization mode (SIM) frames transmitted to
2108                         an adjacent SDLC link station since link station
2109                         startup.  At link station startup time, this
2110                         object must be initialized to zero."
2111                     ::= { sdlcLSStatsEntry 24 }
2112
2113 sdlcLSStatsRIMsIn   OBJECT-TYPE
2114                     SYNTAX      Counter32
2115                     MAX-ACCESS  read-only
2116                     STATUS      current
2117                     DESCRIPTION
2118                         "This object reflects the total request
2119                         initialization mode (RIM) frames received from
2120                         an adjacent SDLC link station since link station
2121                         startup.  At link station startup time, this
2122                         object must be initialized to zero."
2123                     ::= { sdlcLSStatsEntry 25 }
2124
2125 sdlcLSStatsRIMsOut  OBJECT-TYPE
2126                     SYNTAX      Counter32
2127                     MAX-ACCESS  read-only
2128                     STATUS      current
2129                     DESCRIPTION
2130                         "This object reflects the total request
2131                         initialization mode (RIM) frames transmitted to
2132                         an adjacent SDLC link station since link station
2133                         startup.  At link station startup time, this
2134                         object must be initialized to zero."
2135                     ::= { sdlcLSStatsEntry 26 }
2136
2137 sdlcLSStatsDISCIn   OBJECT-TYPE
2138                     SYNTAX      Counter32
2139                     MAX-ACCESS  read-only
2140                     STATUS      current
2141                     DESCRIPTION
2142                         "This object reflects the total number of
2143                          disconnect (DISC) requests received from an
2144                          adjacent SDLC link station since link station
2145                          startup.  At link station startup time, this
2146                          object must be initialized to zero."
2147                     ::= { sdlcLSStatsEntry 27 }
2148
2149 sdlcLSStatsDISCOut  OBJECT-TYPE
2150                     SYNTAX      Counter32
2151                     MAX-ACCESS  read-only
2152                     STATUS      current
2153                     DESCRIPTION
2154                         "This object reflects the total number of
2155                          disconnect (DISC) requests transmited to an
2156                          adjacent SDLC link station since link station
2157                          startup.  At link station startup time, this
2158                          object must be initialized to zero."
2159                     ::= { sdlcLSStatsEntry 28 }
2160
2161 sdlcLSStatsUAIn     OBJECT-TYPE
2162                     SYNTAX      Counter32
2163                     MAX-ACCESS  read-only
2164                     STATUS      current
2165                     DESCRIPTION
2166                         "This object reflects the total number of
2167                          unnumbered acknowledgements (UA) requests
2168                          received from an adjacent SDLC link station
2169                          since link station startup.  At link station
2170                          startup time, this object must be initialized
2171                          to zero."
2172                     ::= { sdlcLSStatsEntry 29 }
2173
2174 sdlcLSStatsUAOut    OBJECT-TYPE
2175                     SYNTAX      Counter32
2176                     MAX-ACCESS  read-only
2177                     STATUS      current
2178                     DESCRIPTION
2179                         "This object reflects the total number of
2180                          unnumbered acknowledgements (UA) requests
2181                          transmited to an adjacent SDLC link station
2182                          since link station startup.  At link station
2183                          startup time, this object must be initialized
2184                          to zero."
2185                     ::= { sdlcLSStatsEntry 30 }
2186
2187 sdlcLSStatsDMIn     OBJECT-TYPE
2188                     SYNTAX      Counter32
2189                     MAX-ACCESS  read-only
2190                     STATUS      current
2191                     DESCRIPTION
2192                         "This object reflects the total number of
2193                          disconnect mode (DM) requests received from an
2194                          adjacent SDLC link station since link station
2195                          startup.  At link station startup time, this
2196                          object must be initialized to zero."
2197                     ::= { sdlcLSStatsEntry 31 }
2198
2199 sdlcLSStatsDMOut    OBJECT-TYPE
2200                     SYNTAX      Counter32
2201                     MAX-ACCESS  read-only
2202                     STATUS      current
2203                     DESCRIPTION
2204                         "This object reflects the total number of
2205                          disconnect mode (DM) requests transmited to an
2206                          adjacent SDLC link station since link station
2207                          startup.  At link station startup time, this
2208                          object must be initialized to zero."
2209                     ::= { sdlcLSStatsEntry 32 }
2210
2211 sdlcLSStatsSNRMIn   OBJECT-TYPE
2212                     SYNTAX      Counter32
2213                     MAX-ACCESS  read-only
2214                     STATUS      current
2215                     DESCRIPTION
2216                         "This object reflects the total number of
2217                          set normal response mode (SNRM/SNRME) requests
2218                          received from an adjacent SDLC link station
2219                          since link station startup.  At link station
2220                          startup time, this object must be initialized
2221                          to zero."
2222                     ::= { sdlcLSStatsEntry 33 }
2223
2224 sdlcLSStatsSNRMOut  OBJECT-TYPE
2225                     SYNTAX      Counter32
2226                     MAX-ACCESS  read-only
2227                     STATUS      current
2228                     DESCRIPTION
2229                         "This object reflects the total number of
2230                          set normal response mode (SNRM/SNRME) requests
2231                          transmited to an adjacent SDLC link station
2232                          since link station startup.  At link station
2233                          startup time, this object must be initialized
2234                          to zero."
2235                     ::= { sdlcLSStatsEntry 34 }
2236
2237 sdlcLSStatsProtocolErrs OBJECT-TYPE
2238                     SYNTAX      Counter32
2239                     MAX-ACCESS  read-only
2240                     STATUS      current
2241                     DESCRIPTION
2242                         "This object reflects the total occurrences,
2243                         since link station startup, where this SDLC
2244                         link station has inactivated the link as a
2245                         result of receiving a frame from its adjacent
2246                         link station which was in violation of the
2247                         protocol.  At link station startup time, this
2248                         object must be initialized to zero."
2249                     ::= { sdlcLSStatsEntry 35 }
2250
2251 sdlcLSStatsActivityTOs OBJECT-TYPE
2252                     SYNTAX      Counter32
2253                     MAX-ACCESS  read-only
2254                     STATUS      current
2255                     DESCRIPTION
2256                         "This object reflects the total occurrences,
2257                         since startup, where this SDLC link station has
2258                         inactivated the link as a result of no activity
2259                         on the link.  At link station startup time,
2260                         this object must be initialized to zero."
2261                     ::= { sdlcLSStatsEntry 36 }
2262
2263 sdlcLSStatsRNRLIMITs OBJECT-TYPE
2264                     SYNTAX      Counter32
2265                     MAX-ACCESS  read-only
2266                     STATUS      current
2267                     DESCRIPTION
2268                         "This object reflects the total occurrences,
2269                         since startup, where this SDLC link station has
2270                         inactivated the link as a result of its
2271                         RNRLIMIT timer expiring.  At link station
2272                         startup time, this object must be initialized
2273                         to zero."
2274                     ::= { sdlcLSStatsEntry 37 }
2275
2276 sdlcLSStatsRetriesExps OBJECT-TYPE
2277                     SYNTAX      Counter32
2278                     MAX-ACCESS  read-only
2279                     STATUS      current
2280                     DESCRIPTION
2281                         "This object reflects the total occurrences,
2282                         since startup, where this SDLC link station has
2283                         inactivated the link as a result of a retry
2284                         sequence being exhausted.  At link station
2285                         startup time, this object must be initialized
2286                         to zero."
2287                     ::= { sdlcLSStatsEntry 38 }
2288
2289 sdlcLSStatsRetransmitsIn OBJECT-TYPE
2290                     SYNTAX      Counter32
2291                     MAX-ACCESS  read-only
2292                     STATUS      current
2293                     DESCRIPTION
2294                         "This object reflects the total number of
2295                          information frames retransmitted by the remote
2296                          link station because the N(s) received from
2297                          that link station indicated that one or more
2298                          information frames sent by that station were
2299                          lost.  This event causes the first missing
2300                          information frame of a window and all
2301                          subsequent information frames to be
2302                          retransmitted.  At link station startup time,
2303                          this object must be initialized to zero.
2304
2305                          Management: If the value of
2306                          sdlcLSStatsRetransmitsIn grows over time, then
2307                          the quality of the serial line is in
2308                          question.  You might want to look at
2309                          decreasing the value for
2310                          sdlcLSAdminMAXDATASend to compensate for the
2311                          lower quality line."
2312                     ::= { sdlcLSStatsEntry 39 }
2313
2314 sdlcLSStatsRetransmitsOut OBJECT-TYPE
2315                     SYNTAX      Counter32
2316                     MAX-ACCESS  read-only
2317                     STATUS      current
2318                     DESCRIPTION
2319                         "This object reflects the total number of
2320                          information frames retransmitted to a remote
2321                          link station because the N(r) received from
2322                          that link station indicated that one or more
2323                          information frames sent to that station were
2324                          lost. This event causes the first missing
2325                          information frame of a window and all
2326                          subsequent information frames to be
2327                          retransmitted.  At link station startup time,
2328                          this object must be initialized to zero.
2329
2330                          Management: If the value of
2331                          sdlcLSStatsRetransmitsOut grows over time,
2332                          then the quality of the serial line is in
2333                          question.  You might want to look at
2334                          decreasing the value for sdlcLSAdminMAXDATASend
2335                          to compensate for the lower quality line."
2336                     ::= { sdlcLSStatsEntry 40 }
2337
2338 --
2339 --  TRAP DEFINITIONS
2340 --
2341
2342 --
2343 --  Notifications
2344 --
2345
2346 sdlcTraps  OBJECT IDENTIFIER ::= { sdlc 3 }
2347
2348 sdlcPortStatusChange NOTIFICATION-TYPE
2349                      OBJECTS    { ifIndex,
2350                                   ifAdminStatus,
2351                                   ifOperStatus,
2352                                   sdlcPortOperLastFailTime,
2353                                   sdlcPortOperLastFailCause
2354                                 }
2355                      STATUS  current
2356                      DESCRIPTION
2357                          "This trap indicates that the state of an SDLC
2358                          port has transitioned to active or inactive."
2359                      ::= { sdlcTraps 1 }
2360
2361 sdlcLSStatusChange   NOTIFICATION-TYPE
2362                      OBJECTS    { ifIndex,
2363                                   sdlcLSAddress,
2364                                   sdlcLSOperState,
2365                                   sdlcLSAdminState,
2366                                   sdlcLSOperLastFailTime,
2367                                   sdlcLSOperLastFailCause,
2368                                   sdlcLSOperLastFailFRMRInfo,
2369                                   sdlcLSOperLastFailCtrlIn,
2370                                   sdlcLSOperLastFailCtrlOut,
2371                                   sdlcLSOperLastFailREPLYTOs
2372                                 }
2373                      STATUS  current
2374                      DESCRIPTION
2375                          "This trap indicates that the state of an SDLC
2376                          link station has transitioned to contacted or
2377                          discontacted."
2378                      ::= { sdlcTraps 2 }
2379
2380
2381 --
2382 -- Conformance Information
2383 --
2384
2385 sdlcConformance OBJECT IDENTIFIER ::= { sdlc 4 }
2386
2387 sdlcCompliances   OBJECT IDENTIFIER ::= { sdlcConformance 1 }
2388 sdlcGroups        OBJECT IDENTIFIER ::= { sdlcConformance 2 }
2389
2390 --
2391 -- Compliance Statements
2392 --
2393
2394 sdlcCoreCompliance MODULE-COMPLIANCE
2395                      STATUS current
2396                      DESCRIPTION
2397                          "The core compliance statement for all SDLC
2398                          nodes."
2399                      MODULE
2400                          MANDATORY-GROUPS
2401                          {
2402                              sdlcCorePortAdminGroup,
2403                              sdlcCorePortOperGroup,
2404                              sdlcCorePortStatsGroup,
2405                              sdlcCoreLSAdminGroup,
2406                              sdlcCoreLSOperGroup,
2407                              sdlcCoreLSStatsGroup
2408                          }
2409
2410                      OBJECT      sdlcPortAdminName
2411                      MIN-ACCESS  read-only
2412                      DESCRIPTION
2413                          "Write access is not required."
2414                      OBJECT      sdlcPortAdminRole
2415                      MIN-ACCESS  read-only
2416                      DESCRIPTION
2417                          "Write access is not required."
2418
2419                      OBJECT      sdlcPortAdminType
2420                      MIN-ACCESS  read-only
2421                      DESCRIPTION
2422                          "Write access is not required."
2423
2424                      OBJECT      sdlcPortAdminTopology
2425                      MIN-ACCESS  read-only
2426                      DESCRIPTION
2427                          "Write access is not required."
2428
2429                      OBJECT      sdlcPortAdminISTATUS
2430                      MIN-ACCESS  read-only
2431                      DESCRIPTION
2432                          "Write access is not required."
2433
2434                      OBJECT      sdlcLSAddress
2435                      MIN-ACCESS  read-only
2436                      DESCRIPTION
2437                          "Write access is not required."
2438
2439                      OBJECT      sdlcLSAdminName
2440                      MIN-ACCESS  read-only
2441                      DESCRIPTION
2442                          "Write access is not required."
2443
2444                      OBJECT      sdlcLSAdminState
2445                      MIN-ACCESS  read-only
2446                      DESCRIPTION
2447                          "Write access is not required."
2448
2449                      OBJECT      sdlcLSAdminISTATUS
2450                      MIN-ACCESS  read-only
2451                      DESCRIPTION
2452                          "Write access is not required."
2453
2454                      OBJECT      sdlcLSAdminMAXDATASend
2455                      MIN-ACCESS  read-only
2456                      DESCRIPTION
2457                          "Write access is not required."
2458
2459                      OBJECT      sdlcLSAdminMAXDATARcv
2460                      MIN-ACCESS  read-only
2461                      DESCRIPTION
2462                          "Write access is not required."
2463
2464                      OBJECT      sdlcLSAdminMAXIN
2465                      MIN-ACCESS  read-only
2466                      DESCRIPTION
2467                          "Write access is not required."
2468
2469                      OBJECT      sdlcLSAdminMAXOUT
2470                      MIN-ACCESS  read-only
2471                      DESCRIPTION
2472                          "Write access is not required."
2473
2474                      OBJECT      sdlcLSAdminMODULO
2475                      MIN-ACCESS  read-only
2476                      DESCRIPTION
2477                          "Write access is not required."
2478
2479                      OBJECT      sdlcLSAdminRETRIESm
2480                      MIN-ACCESS  read-only
2481                      DESCRIPTION
2482                          "Write access is not required."
2483
2484                      OBJECT      sdlcLSAdminRETRIESt
2485                      MIN-ACCESS  read-only
2486                      DESCRIPTION
2487                          "Write access is not required."
2488
2489                      OBJECT      sdlcLSAdminRETRIESn
2490                      MIN-ACCESS  read-only
2491                      DESCRIPTION
2492                          "Write access is not required."
2493
2494                      OBJECT      sdlcLSAdminRNRLIMIT
2495                      MIN-ACCESS  read-only
2496                      DESCRIPTION
2497                          "Write access is not required."
2498
2499                      OBJECT      sdlcLSAdminDATMODE
2500                      MIN-ACCESS  read-only
2501                      DESCRIPTION
2502                          "Write access is not required."
2503
2504                      OBJECT      sdlcLSAdminGPoll
2505                      MIN-ACCESS  read-only
2506                      DESCRIPTION
2507                          "Write access is not required."
2508
2509                      OBJECT      sdlcLSAdminSimRim
2510                      MIN-ACCESS  read-only
2511                      DESCRIPTION
2512                          "Write access is not required."
2513
2514                      OBJECT      sdlcLSAdminRowStatus
2515                      MIN-ACCESS  read-only
2516                      DESCRIPTION
2517                          "Write access is not required."
2518
2519                      ::= { sdlcCompliances 1 }
2520
2521 sdlcPrimaryCompliance  MODULE-COMPLIANCE
2522                      STATUS current
2523                      DESCRIPTION
2524                          "The compliance statement for all nodes that
2525                          are performing the role of a Primary link
2526                          station."
2527                      MODULE
2528                          MANDATORY-GROUPS { sdlcPrimaryGroup }
2529
2530                      OBJECT      sdlcPortAdminPAUSE
2531                      MIN-ACCESS  read-only
2532                      DESCRIPTION
2533                          "Write access is not required."
2534
2535                      OBJECT      sdlcLSAdminREPLYTO
2536                      MIN-ACCESS  read-only
2537                      DESCRIPTION
2538                          "Write access is not required."
2539
2540                      ::= { sdlcCompliances 2 }
2541
2542 sdlcPrimaryMultipointCompliance  MODULE-COMPLIANCE
2543                      STATUS current
2544                      DESCRIPTION
2545                          "The compliance statement for all nodes that
2546                          are performing the role of a primary link
2547                          station on a multipoint line."
2548                      MODULE
2549                          MANDATORY-GROUPS { sdlcPrimaryMultipointGroup }
2550
2551                      OBJECT      sdlcPortAdminSERVLIM
2552                      MIN-ACCESS  read-only
2553                      DESCRIPTION
2554                          "Write access is not required."
2555
2556                      OBJECT      sdlcPortAdminSlowPollTimer
2557                      MIN-ACCESS  read-only
2558                      DESCRIPTION
2559                          "Write access is not required."
2560
2561                      ::= { sdlcCompliances 3 }
2562
2563
2564 --
2565 -- Core Conformance Groups for All Link Stations
2566 --
2567
2568 sdlcCoreGroups OBJECT IDENTIFIER ::= { sdlcGroups 1 }
2569
2570 sdlcCorePortAdminGroup OBJECT-GROUP
2571                      OBJECTS
2572                      {
2573                          sdlcPortAdminName,      sdlcPortAdminRole,
2574                          sdlcPortAdminType,      sdlcPortAdminTopology,
2575                          sdlcPortAdminISTATUS
2576                      }
2577                      STATUS current
2578                      DESCRIPTION
2579                          "The sdlcCorePortAdminGroup defines objects
2580                          which are common to the PortAdmin group of all
2581                          compliant link stations."
2582                      ::= { sdlcCoreGroups 1 }
2583
2584 sdlcCorePortOperGroup OBJECT-GROUP
2585                      OBJECTS
2586                      {
2587                          sdlcPortOperName,
2588                          sdlcPortOperRole,
2589                          sdlcPortOperType,
2590                          sdlcPortOperTopology,
2591                          sdlcPortOperISTATUS,
2592                          sdlcPortOperACTIVTO,
2593                          sdlcPortOperLastFailTime,
2594                          sdlcPortOperLastFailCause
2595                      }
2596                      STATUS current
2597                      DESCRIPTION
2598                          "The sdlcCorePortOperGroup defines objects
2599                          which are common to the PortOper group of all
2600                          compliant link stations."
2601                      ::= { sdlcCoreGroups 2 }
2602
2603
2604 sdlcCorePortStatsGroup OBJECT-GROUP
2605                      OBJECTS
2606                      {
2607                          sdlcPortStatsPhysicalFailures,
2608                          sdlcPortStatsInvalidAddresses,
2609                          sdlcPortStatsDwarfFrames
2610                      }
2611                      STATUS current
2612                      DESCRIPTION
2613                          "The sdlcCorePortStatsGroup defines objects
2614                          which are common to the PortStats group of all
2615                          compliant link stations."
2616                      ::= { sdlcCoreGroups 3 }
2617
2618
2619 sdlcCoreLSAdminGroup OBJECT-GROUP
2620                      OBJECTS
2621                      {
2622                          sdlcLSAddress,
2623                          sdlcLSAdminName,
2624                          sdlcLSAdminState,
2625                          sdlcLSAdminISTATUS,
2626                          sdlcLSAdminMAXDATASend,
2627                          sdlcLSAdminMAXDATARcv,
2628                          sdlcLSAdminMAXIN,
2629                          sdlcLSAdminMAXOUT,
2630                          sdlcLSAdminMODULO,
2631                          sdlcLSAdminRETRIESm,
2632                          sdlcLSAdminRETRIESt,
2633                          sdlcLSAdminRETRIESn,
2634                          sdlcLSAdminRNRLIMIT,
2635                          sdlcLSAdminDATMODE,
2636                          sdlcLSAdminGPoll,
2637                          sdlcLSAdminSimRim,
2638                          sdlcLSAdminRowStatus
2639                      }
2640                      STATUS current
2641                      DESCRIPTION
2642                          "The sdlcCorePortAdminGroup defines objects
2643                          which are common to the PortAdmin group of all
2644                          compliant link stations."
2645                      ::= { sdlcCoreGroups 4 }
2646
2647 sdlcCoreLSOperGroup  OBJECT-GROUP
2648                      OBJECTS
2649                      {
2650                          sdlcLSOperRole,
2651                          sdlcLSOperState,
2652                          sdlcLSOperMAXDATASend,
2653                          sdlcLSOperMAXIN,
2654                          sdlcLSOperMAXOUT,
2655                          sdlcLSOperMODULO,
2656                          sdlcLSOperRETRIESm,
2657                          sdlcLSOperRETRIESt,
2658                          sdlcLSOperRETRIESn,
2659                          sdlcLSOperRNRLIMIT,
2660                          sdlcLSOperDATMODE,
2661                          sdlcLSOperLastFailTime,
2662                          sdlcLSOperLastFailCause,
2663                          sdlcLSOperLastFailCtrlIn,
2664                          sdlcLSOperLastFailCtrlOut,
2665                          sdlcLSOperLastFailFRMRInfo,
2666                          sdlcLSOperLastFailREPLYTOs,
2667                          sdlcLSOperEcho,
2668                          sdlcLSOperGPoll
2669                      }
2670                      STATUS current
2671                      DESCRIPTION
2672                          "The sdlcCorePortOperGroup defines objects
2673                          which are common to the PortOper group of all
2674                          compliant link stations."
2675                      ::= { sdlcCoreGroups 5 }
2676
2677
2678 sdlcCoreLSStatsGroup OBJECT-GROUP
2679                      OBJECTS
2680                      {
2681                          sdlcLSStatsBLUsIn,
2682                          sdlcLSStatsBLUsOut,
2683                          sdlcLSStatsOctetsIn,
2684                          sdlcLSStatsOctetsOut,
2685                          sdlcLSStatsPollsIn,
2686                          sdlcLSStatsPollsOut,
2687                          sdlcLSStatsPollRspsIn,
2688                          sdlcLSStatsPollRspsOut,
2689                          sdlcLSStatsLocalBusies,
2690                          sdlcLSStatsRemoteBusies,
2691                          sdlcLSStatsIFramesIn,
2692                          sdlcLSStatsIFramesOut,
2693                          sdlcLSStatsRetransmitsIn,
2694                          sdlcLSStatsRetransmitsOut,
2695                          sdlcLSStatsUIFramesIn,
2696                          sdlcLSStatsUIFramesOut,
2697                          sdlcLSStatsXIDsIn,
2698                          sdlcLSStatsXIDsOut,
2699                          sdlcLSStatsTESTsIn,
2700                          sdlcLSStatsTESTsOut,
2701                          sdlcLSStatsREJsIn,
2702                          sdlcLSStatsREJsOut,
2703                          sdlcLSStatsFRMRsIn,
2704                          sdlcLSStatsFRMRsOut,
2705                          sdlcLSStatsSIMsIn,
2706                          sdlcLSStatsSIMsOut,
2707                          sdlcLSStatsRIMsIn,
2708                          sdlcLSStatsRIMsOut,
2709                          sdlcLSStatsProtocolErrs,
2710                          sdlcLSStatsRNRLIMITs,
2711                          sdlcLSStatsRetriesExps
2712                      }
2713                      STATUS current
2714                      DESCRIPTION
2715                          "The sdlcCorePortStatsGroup defines objects
2716                          which are common to the PortStats group of all
2717                          compliant link stations."
2718                      ::= { sdlcCoreGroups 6 }
2719
2720
2721 --
2722 -- Conformance Groups for Primary Link Stations
2723 --
2724
2725 sdlcPrimaryGroups OBJECT IDENTIFIER ::= { sdlcGroups 2 }
2726
2727 sdlcPrimaryGroup OBJECT-GROUP
2728                      OBJECTS
2729                      {
2730                          sdlcPortAdminPAUSE,
2731                          sdlcPortOperPAUSE,
2732                          sdlcLSAdminREPLYTO,
2733                          sdlcLSOperREPLYTO
2734                      }
2735                      STATUS current
2736                      DESCRIPTION
2737                          "The sdlcPrimaryGroup defines objects which
2738                          are common to all compliant primary link
2739                          stations."
2740                      ::= { sdlcPrimaryGroups 1 }
2741
2742 sdlcPrimaryMultipointGroup OBJECT-GROUP
2743                      OBJECTS
2744                      {
2745                          sdlcPortAdminSERVLIM,
2746                          sdlcPortAdminSlowPollTimer,
2747                          sdlcPortOperSlowPollMethod,
2748                          sdlcPortOperSERVLIM,
2749                          sdlcPortOperSlowPollTimer
2750                      }
2751                      STATUS current
2752                      DESCRIPTION
2753                          "The sdlcPrimaryMultipointGroup defines objects
2754                          which are common to all compliant primary link
2755                          stations that are in a multipoint topology."
2756                      ::= { sdlcPrimaryGroups 2 }
2757
2758
2759 END