1 -- *****************************************************************
2-- Cisco Transaction Connection
3--
4-- Copyright (c) 1996-1999, 2005 by StarQuest Software, Inc.
5-- All rights reserved.
6-- *****************************************************************
7
8CISCO-TRANSACTION-CONNECTION-MIB DEFINITIONS ::= BEGIN
9
10IMPORTS
11    MODULE-IDENTITY,
12    OBJECT-TYPE,
13    OBJECT-IDENTITY,
14    IpAddress,
15    Unsigned32
16        FROM SNMPv2-SMI
17    DateAndTime,
18    TimeInterval,
19    TruthValue
20        FROM SNMPv2-TC
21    MODULE-COMPLIANCE,
22    OBJECT-GROUP
23        FROM SNMPv2-CONF
24    ifIndex
25        FROM IF-MIB
26    SnmpAdminString
27        FROM SNMP-FRAMEWORK-MIB
28    ciscoMgmt
29        FROM CISCO-SMI;
30
31ciscoTransactionConnectionMIB MODULE-IDENTITY
32    LAST-UPDATED    "200512220000Z"
33    ORGANIZATION    "Cisco Systems, Inc."
34    CONTACT-INFO
35            "Cisco Systems
36            Customer Service
37
38            Postal:    170 W. Tasman Drive
39            San Jose, CA  95134
40            USA
41
42            Tel: +1 800 553-NETS
43            E-mail: ctrc-dev@external.cisco.com"
44    DESCRIPTION
45            "The MIB module for retrieving Cisco Transaction
46            Connection configuration and status.  Cisco Transaction
47            Connection routes transactions between IBM CICS (Customer
48            Information Control System) hosts and clients using the
49            ISC (Inter-System Communication) protocol."
50    REVISION        "200512220000Z"
51    DESCRIPTION
52            "Imported Unsigned32 from SNMPv2-SMI instead
53            of CISCO-TC."
54    REVISION        "9908190000Z"
55    DESCRIPTION
56            "The initial version of this MIB module."
57    ::= { ciscoMgmt 144 }
58
59ciscoTransConnMIBObjects OBJECT IDENTIFIER
60    ::= { ciscoTransactionConnectionMIB 1 }
61
62-- License Information
63ctcLicense OBJECT-IDENTITY
64    STATUS          current
65    DESCRIPTION
66            "An object containing a Cisco Transaction Connection
67            license."
68    ::= { ciscoTransConnMIBObjects 1 }
69
70ctcLicenseState OBJECT-TYPE
71    SYNTAX          INTEGER {
72                        unconfigured(1),
73                        notValidatedYet(2),
74                        badKey(3),
75                        licenseOK(4),
76                        expired(5)
77                    }
78    MAX-ACCESS      read-only
79    STATUS          current
80    DESCRIPTION
81            "The state of the Transaction Connection license.
82            unconfigured    : A license key has not been provided.
83            notValidatedYet : A license key has been provided, but
84                              it cannot be validated until a server
85                              is created. When the first server is
86                              created, the license key is validated,
87                              changing the license state to one of
88                              the following.
89            badKey          : The content of ctcLicenseKey is not a
90                              valid license key.
91            licenseOK       : The license has been validated.
92            expired         : The expiration date of the license
93                              has passed."
94    ::= { ctcLicense 1 }
95
96ctcLicenseKey OBJECT-TYPE
97    SYNTAX          OCTET STRING (SIZE (16))
98    MAX-ACCESS      read-only
99    STATUS          current
100    DESCRIPTION
101            "A Transaction Connection license key. The field must
102             be exactly 32 hexadecimal characters in length."
103    ::= { ctcLicense 2 }
104
105ctcLicenseMaxConn OBJECT-TYPE
106    SYNTAX          Unsigned32
107    MAX-ACCESS      read-only
108    STATUS          current
109    DESCRIPTION
110            "The maximum number of connections allowed by the license.
111            This field contains zero if the license is for an unlimited
112            number of connections or if the ctcLicenseState is not
113            licenseOK."
114    ::= { ctcLicense 3 }
115
116ctcLicenseCurrConn OBJECT-TYPE
117    SYNTAX          Unsigned32
118    MAX-ACCESS      read-only
119    STATUS          current
120    DESCRIPTION
121            "Current number of connections in use. Normally, the value
122            of this field should be less then or equal to the value in
123            ctcLicenseMaxConn if it is not zero. However, when a license
124            key is changed to decrease the maximum number ofconnections,
125            the value  of this field may temporarily exceed the limit.
126            When this occurs, existing connections will not be deleted
127            automatically to meet the new, smaller limit.  New
128            connections will be denied until the existing connections
129            voluntarily disconnect."
130    ::= { ctcLicense 4 }
131
132ctcLicenseExpiration OBJECT-TYPE
133    SYNTAX          DateAndTime
134    MAX-ACCESS      read-only
135    STATUS          current
136    DESCRIPTION
137            "The expiration date of the Transaction Connection
138            license. This object contains a valid expiration date only
139            if the license is not permanent."
140    ::= { ctcLicense 5 }
141
142-- Destination Information
143ctcDestinationTable OBJECT-TYPE
144    SYNTAX          SEQUENCE OF CtcDestinationEntry
145    MAX-ACCESS      not-accessible
146    STATUS          current
147    DESCRIPTION
148            "A table containing Cisco Transaction Connection
149            destination configurations."
150    ::= { ciscoTransConnMIBObjects 2 }
151
152ctcDestinationEntry OBJECT-TYPE
153    SYNTAX          CtcDestinationEntry
154    MAX-ACCESS      not-accessible
155    STATUS          current
156    DESCRIPTION
157            "A row containing a Cisco Transaction Connection
158            destination configuration."
159    INDEX           { ctcDestinationName }
160    ::= { ctcDestinationTable 1 }
161
162CtcDestinationEntry ::= SEQUENCE {
163    ctcDestinationName          SnmpAdminString,
164    ctcDestinationRemoteLUName  SnmpAdminString,
165    ctcDestinationModeName      SnmpAdminString,
166    ctcDestinationNumHits       Unsigned32
167}
168
169ctcDestinationName OBJECT-TYPE
170    SYNTAX          SnmpAdminString (SIZE (0..16))
171    MAX-ACCESS      read-only
172    STATUS          current
173    DESCRIPTION
174            "The destination name."
175    ::= { ctcDestinationEntry 1 }
176
177ctcDestinationRemoteLUName OBJECT-TYPE
178    SYNTAX          SnmpAdminString (SIZE (0..17))
179    MAX-ACCESS      read-only
180    STATUS          current
181    DESCRIPTION
182            "The Remote LU (Logical Unit) name of the destination
183            target."
184    ::= { ctcDestinationEntry 2 }
185
186ctcDestinationModeName OBJECT-TYPE
187    SYNTAX          SnmpAdminString (SIZE (0..10))
188    MAX-ACCESS      read-only
189    STATUS          current
190    DESCRIPTION
191            "The mode name of the destination target. In SNA, a mode
192            name is the name used by the initiator of a session to
193            designate the characteristics desired for that session,
194            such as traffic pacing values, message length limits,
195            and the class of service within the transport network."
196    ::= { ctcDestinationEntry 3 }
197
198ctcDestinationNumHits OBJECT-TYPE
199    SYNTAX          Unsigned32
200    MAX-ACCESS      read-only
201    STATUS          current
202    DESCRIPTION
203            "The number of hits the destination target has received. A
204            hit is registered each time a route is looked up. This
205            means that every time a connection is established, one
206            destination target of the route has its hit count
207            incremented."
208    ::= { ctcDestinationEntry 4 }
209
210-- Route Information
211ctcRouteTable OBJECT-TYPE
212    SYNTAX          SEQUENCE OF CtcRouteEntry
213    MAX-ACCESS      not-accessible
214    STATUS          current
215    DESCRIPTION
216            "A table containing Cisco Transaction Connection route
217            configurations."
218    ::= { ciscoTransConnMIBObjects 3 }
219
220ctcRouteEntry OBJECT-TYPE
221    SYNTAX          CtcRouteEntry
222    MAX-ACCESS      not-accessible
223    STATUS          current
224    DESCRIPTION
225            "A row containing a Cisco Transaction Connection
226            destination configuration."
227    INDEX           { ifIndex }
228    ::= { ctcRouteTable 1 }
229
230CtcRouteEntry ::= SEQUENCE {
231    ctcRouteOwningServer     Unsigned32,
232    ctcRouteTransactionID    SnmpAdminString,
233    ctcRouteDestinationName  SnmpAdminString
234}
235
236ctcRouteOwningServer OBJECT-TYPE
237    SYNTAX          Unsigned32
238    MAX-ACCESS      read-only
239    STATUS          current
240    DESCRIPTION
241            "The ctcServerIndex of the server that owns this route."
242    ::= { ctcRouteEntry 1 }
243
244ctcRouteTransactionID OBJECT-TYPE
245    SYNTAX          SnmpAdminString (SIZE (0..16))
246    MAX-ACCESS      read-only
247    STATUS          current
248    DESCRIPTION
249            "The transaction ID that this route handles."
250    ::= { ctcRouteEntry 2 }
251
252ctcRouteDestinationName OBJECT-TYPE
253    SYNTAX          SnmpAdminString (SIZE (0..16))
254    MAX-ACCESS      read-only
255    STATUS          current
256    DESCRIPTION
257            "The name of this route's destination."
258    ::= { ctcRouteEntry 3 }
259
260-- Server Table
261ctcServerTable OBJECT-TYPE
262    SYNTAX          SEQUENCE OF CtcServerEntry
263    MAX-ACCESS      not-accessible
264    STATUS          current
265    DESCRIPTION
266            "A table containing Transaction Connection servers."
267    ::= { ciscoTransConnMIBObjects 4 }
268
269ctcServerEntry OBJECT-TYPE
270    SYNTAX          CtcServerEntry
271    MAX-ACCESS      not-accessible
272    STATUS          current
273    DESCRIPTION
274            "A row containing a Transaction Connection server. This
275            server routes APPC (Advanced Program-to-Program
276            Communcations)  data streams between TCP/IP clients and
277            CICS hosts. Each server will have a unique IP address and
278            port."
279    INDEX           { ctcServerIndex }
280    ::= { ctcServerTable 1 }
281
282CtcServerEntry ::= SEQUENCE {
283    ctcServerIndex              Unsigned32,
284    ctcServerName               SnmpAdminString,
285    ctcServerListening          TruthValue,
286    ctcServerIPAddr             IpAddress,
287    ctcServerPort               Unsigned32,
288    ctcServerDestinationName    SnmpAdminString,
289    ctcServerClientTimeout      Unsigned32,
290    ctcServerHostTimeout        Unsigned32,
291    ctcServerWindowSize         Unsigned32,
292    ctcServerConnectionCount    Unsigned32,
293    ctcServerProgNameUpperCase  TruthValue
294}
295
296ctcServerIndex OBJECT-TYPE
297    SYNTAX          Unsigned32
298    MAX-ACCESS      read-only
299    STATUS          current
300    DESCRIPTION
301            "The index of this server in the server list."
302    ::= { ctcServerEntry 1 }
303
304ctcServerName OBJECT-TYPE
305    SYNTAX          SnmpAdminString (SIZE (0..16))
306    MAX-ACCESS      read-only
307    STATUS          current
308    DESCRIPTION
309            "The name of the server."
310    ::= { ctcServerEntry 2 }
311
312ctcServerListening OBJECT-TYPE
313    SYNTAX          TruthValue
314    MAX-ACCESS      read-only
315    STATUS          current
316    DESCRIPTION
317            "This object reflects whether or not the server is
318            listening for connections.  A return value of 'true'
319            means the server is actively listening."
320    ::= { ctcServerEntry 3 }
321
322ctcServerIPAddr OBJECT-TYPE
323    SYNTAX          IpAddress
324    MAX-ACCESS      read-only
325    STATUS          current
326    DESCRIPTION
327            "This object reflects the IP address for which the server is
328            listening for connections. If it is set to 0.0.0.0, then
329            the server is listening on all IP addresses."
330    DEFVAL          { '00000000'H }
331    ::= { ctcServerEntry 4 }
332
333ctcServerPort OBJECT-TYPE
334    SYNTAX          Unsigned32 (1..65535)
335    MAX-ACCESS      read-only
336    STATUS          current
337    DESCRIPTION
338            "The port on which the server is listening for connections."
339    DEFVAL          { 1435 }
340    ::= { ctcServerEntry 5 }
341
342ctcServerDestinationName OBJECT-TYPE
343    SYNTAX          SnmpAdminString (SIZE (0..16))
344    MAX-ACCESS      read-only
345    STATUS          current
346    DESCRIPTION
347            "This object reflects the name of this server's default
348            destination."
349    ::= { ctcServerEntry 6 }
350
351ctcServerClientTimeout OBJECT-TYPE
352    SYNTAX          Unsigned32 (0..1440)
353    UNITS           "minutes"
354    MAX-ACCESS      read-only
355    STATUS          current
356    DESCRIPTION
357            "This object reflects the period of time that a client end
358            connection can remain idle before being dropped by a server.
359            The maximum time is 24 hours. If set to 0, the server will
360            never drop the connection due to a timeout event."
361    DEFVAL          { 0 }
362    ::= { ctcServerEntry 7 }
363
364ctcServerHostTimeout OBJECT-TYPE
365    SYNTAX          Unsigned32 (0..1440)
366    UNITS           "minutes"
367    MAX-ACCESS      read-only
368    STATUS          current
369    DESCRIPTION
370            "This object reflects the period of time that a host end
371            connection can remain idle before being dropped by a server.
372            The maximum time is 24 hours. If set to 0, the server will
373            never drop the connection due to a timeout event."
374    DEFVAL          { 0 }
375    ::= { ctcServerEntry 8 }
376
377ctcServerWindowSize OBJECT-TYPE
378    SYNTAX          Unsigned32
379    UNITS           "bytes"
380    MAX-ACCESS      read-only
381    STATUS          current
382    DESCRIPTION
383            "TCP window size for each connection of the Transaction
384            Connection server."
385    DEFVAL          { 4096 }
386    ::= { ctcServerEntry 9 }
387
388ctcServerConnectionCount OBJECT-TYPE
389    SYNTAX          Unsigned32
390    MAX-ACCESS      read-only
391    STATUS          current
392    DESCRIPTION
393            "The number of connections on this server at this moment."
394    ::= { ctcServerEntry 10 }
395
396ctcServerProgNameUpperCase OBJECT-TYPE
397    SYNTAX          TruthValue
398    MAX-ACCESS      read-only
399    STATUS          current
400    DESCRIPTION
401            "This object reflects whether or not the server will
402            convert CICS program names to upper case. A return value of
403            'true' means the server will convert such names to upper
404            case."
405    DEFVAL          { true }
406    ::= { ctcServerEntry 11 }
407
408-- Connection Table
409ctcConnectionTable OBJECT-TYPE
410    SYNTAX          SEQUENCE OF CtcConnectionEntry
411    MAX-ACCESS      not-accessible
412    STATUS          current
413    DESCRIPTION
414            "A table containing connection information. Each row
415            reflects a client connection that is active at this moment."
416    ::= { ciscoTransConnMIBObjects 5 }
417
418ctcConnectionEntry OBJECT-TYPE
419    SYNTAX          CtcConnectionEntry
420    MAX-ACCESS      not-accessible
421    STATUS          current
422    DESCRIPTION
423            "A row containing connection information."
424    INDEX           { ifIndex }
425    ::= { ctcConnectionTable 1 }
426
427CtcConnectionEntry ::= SEQUENCE {
428    ctcConnectionId                  OCTET STRING,
429    ctcConnectionServer              Unsigned32,
430    ctcConnectionState               INTEGER,
431    ctcConnectionSessionCount        Unsigned32,
432    ctcConnectionClientIPAddr        IpAddress,
433    ctcConnectionClientPort          Unsigned32,
434    ctcConnectionTotalConversations  Unsigned32,
435    ctcConnectionConnectTime         DateAndTime,
436    ctcConnectionIdleTime            TimeInterval,
437    ctcConnectionTotalBytesRecvd     Unsigned32
438}
439
440ctcConnectionId OBJECT-TYPE
441    SYNTAX          OCTET STRING (SIZE (4))
442    MAX-ACCESS      read-only
443    STATUS          current
444    DESCRIPTION
445            "The ID of the connection object."
446    ::= { ctcConnectionEntry 1 }
447
448ctcConnectionServer OBJECT-TYPE
449    SYNTAX          Unsigned32
450    MAX-ACCESS      read-only
451    STATUS          current
452    DESCRIPTION
453            "The ctcServerIndex of the server that owns this
454            connection."
455    ::= { ctcConnectionEntry 2 }
456
457ctcConnectionState OBJECT-TYPE
458    SYNTAX          INTEGER {
459                        reset(1),
460                        closing(2),
461                        halt(3),
462                        receiving(4)
463                    }
464    MAX-ACCESS      read-only
465    STATUS          current
466    DESCRIPTION
467            "The state of a connection object.
468            reset     :  the connection is ready to process data
469            closing   :  the connection is in the process of closing
470            halt      :  the connection has halted due to an error
471                         condition
472            receiving :  the connection is receive normal data"
473    ::= { ctcConnectionEntry 3 }
474
475ctcConnectionSessionCount OBJECT-TYPE
476    SYNTAX          Unsigned32
477    MAX-ACCESS      read-only
478    STATUS          current
479    DESCRIPTION
480            "The number of sessions currently in use for the
481            connection."
482    ::= { ctcConnectionEntry 4 }
483
484ctcConnectionClientIPAddr OBJECT-TYPE
485    SYNTAX          IpAddress
486    MAX-ACCESS      read-only
487    STATUS          current
488    DESCRIPTION
489            "IP address of client machine using this connection."
490    ::= { ctcConnectionEntry 5 }
491
492ctcConnectionClientPort OBJECT-TYPE
493    SYNTAX          Unsigned32 (1..65535)
494    MAX-ACCESS      read-only
495    STATUS          current
496    DESCRIPTION
497            "Port number used on client machine for this connection."
498    ::= { ctcConnectionEntry 6 }
499
500ctcConnectionTotalConversations OBJECT-TYPE
501    SYNTAX          Unsigned32
502    MAX-ACCESS      read-only
503    STATUS          current
504    DESCRIPTION
505            "The number of conversations that have been processed by
506            the connection."
507    ::= { ctcConnectionEntry 7 }
508
509ctcConnectionConnectTime OBJECT-TYPE
510    SYNTAX          DateAndTime
511    MAX-ACCESS      read-only
512    STATUS          current
513    DESCRIPTION
514            "The moment when the connection was established."
515    ::= { ctcConnectionEntry 8 }
516
517ctcConnectionIdleTime OBJECT-TYPE
518    SYNTAX          TimeInterval
519    MAX-ACCESS      read-only
520    STATUS          current
521    DESCRIPTION
522            "Amount of time the connection has gone without activity."
523    ::= { ctcConnectionEntry 9 }
524
525ctcConnectionTotalBytesRecvd OBJECT-TYPE
526    SYNTAX          Unsigned32
527    MAX-ACCESS      read-only
528    STATUS          current
529    DESCRIPTION
530            "The total number of bytes received from client."
531    ::= { ctcConnectionEntry 10 }
532
533-- Transaction Table
534ctcTransactionTable OBJECT-TYPE
535    SYNTAX          SEQUENCE OF CtcTransactionEntry
536    MAX-ACCESS      not-accessible
537    STATUS          current
538    DESCRIPTION
539            "A table containing transaction information. Each row
540            reflects a host transaction that is active at this moment."
541    ::= { ciscoTransConnMIBObjects 6 }
542
543ctcTransactionEntry OBJECT-TYPE
544    SYNTAX          CtcTransactionEntry
545    MAX-ACCESS      not-accessible
546    STATUS          current
547    DESCRIPTION
548            "A row containing transaction information."
549    INDEX           { ifIndex }
550    ::= { ctcTransactionTable 1 }
551
552CtcTransactionEntry ::= SEQUENCE {
553    ctcTransactionSessionId     OCTET STRING,
554    ctcTransactionServer        Unsigned32,
555    ctcTransactionConnectionId  OCTET STRING,
556    ctcTransactionState         INTEGER,
557    ctcTransactionTPName        SnmpAdminString,
558    ctcTransactionUserId        SnmpAdminString
559}
560
561ctcTransactionSessionId OBJECT-TYPE
562    SYNTAX          OCTET STRING (SIZE (4))
563    MAX-ACCESS      read-only
564    STATUS          current
565    DESCRIPTION
566            "The ID of the transaction session object."
567    ::= { ctcTransactionEntry 1 }
568
569ctcTransactionServer OBJECT-TYPE
570    SYNTAX          Unsigned32
571    MAX-ACCESS      read-only
572    STATUS          current
573    DESCRIPTION
574            "The ctcServerIndex of the server that owns this
575            transaction."
576    ::= { ctcTransactionEntry 2 }
577
578ctcTransactionConnectionId OBJECT-TYPE
579    SYNTAX          OCTET STRING (SIZE (4))
580    MAX-ACCESS      read-only
581    STATUS          current
582    DESCRIPTION
583            "The ID of the transaction session object's connection."
584    ::= { ctcTransactionEntry 3 }
585
586ctcTransactionState OBJECT-TYPE
587    SYNTAX          INTEGER {
588                        reset(1),
589                        opening(2),
590                        sending(3),
591                        receiving(4),
592                        exception(5),
593                        exceptionresponse(6),
594                        closing(7)
595                    }
596    MAX-ACCESS      read-only
597    STATUS          current
598    DESCRIPTION
599            "The state of a connection object.
600            reset             : the transaction is ready to process data
601            opening           : the transaction is opening a connection
602            sending           : the transaction is sending data
603            receiving         : the transaction is receiving data
604            exception         : the transaction has encountered an error
605            exceptionresponse : the transaction is awaiting an error
606                                response
607            closing           : the transaction is in the process of
608                                closing"
609    ::= { ctcTransactionEntry 4 }
610
611ctcTransactionTPName OBJECT-TYPE
612    SYNTAX          SnmpAdminString (SIZE (0..32))
613    MAX-ACCESS      read-only
614    STATUS          current
615    DESCRIPTION
616            "The transaction program name of the transaction. This is
617            sometimes referred to as the TRANID in CICS."
618    ::= { ctcTransactionEntry 5 }
619
620ctcTransactionUserId OBJECT-TYPE
621    SYNTAX          SnmpAdminString (SIZE (0..16))
622    MAX-ACCESS      read-only
623    STATUS          current
624    DESCRIPTION
625            "The user ID that was used to initiate the transaction."
626    ::= { ctcTransactionEntry 6 }
627
628-- conformance information
629ciscoTransConnMIBConformance OBJECT IDENTIFIER
630    ::= { ciscoTransactionConnectionMIB 3 }
631
632ciscoTransConnMIBCompliances OBJECT IDENTIFIER
633    ::= { ciscoTransConnMIBConformance 1 }
634
635ciscoTransConnMIBGroups OBJECT IDENTIFIER
636    ::= { ciscoTransConnMIBConformance 2 }
637
638-- compliance statement
639ciscoTransConnMIBCompliance MODULE-COMPLIANCE
640    STATUS          current
641    DESCRIPTION
642            "The compliance statement for entities which implement the
643            Cisco Transaction Connection MIB"
644    MODULE          -- this module
645    MANDATORY-GROUPS {
646                        ciscoTransConnLicenseGroup,
647                        ciscoTransConnDestinationGroup,
648                        ciscoTransConnRouteGroup,
649                        ciscoTransConnServerGroup,
650                        ciscoTransConnConnectionGroup,
651                        ciscoTransConnTransactionGroup
652                    }
653    ::= { ciscoTransConnMIBCompliances 1 }
654
655-- units of conformance
656ciscoTransConnLicenseGroup OBJECT-GROUP
657    OBJECTS         {
658                        ctcLicenseState,
659                        ctcLicenseKey,
660                        ctcLicenseMaxConn,
661                        ctcLicenseCurrConn,
662                        ctcLicenseExpiration
663                    }
664    STATUS          current
665    DESCRIPTION
666            "A collection of objects providing Transaction Connection
667            license monitoring."
668    ::= { ciscoTransConnMIBGroups 1 }
669
670ciscoTransConnDestinationGroup OBJECT-GROUP
671    OBJECTS         {
672                        ctcDestinationName,
673                        ctcDestinationRemoteLUName,
674                        ctcDestinationModeName,
675                        ctcDestinationNumHits
676                    }
677    STATUS          current
678    DESCRIPTION
679            "A collection of objects providing Transaction Connection
680            destination monitoring."
681    ::= { ciscoTransConnMIBGroups 2 }
682
683ciscoTransConnRouteGroup OBJECT-GROUP
684    OBJECTS         {
685                        ctcRouteOwningServer,
686                        ctcRouteTransactionID,
687                        ctcRouteDestinationName
688                    }
689    STATUS          current
690    DESCRIPTION
691            "A collection of objects providing Transaction Connection
692            route monitoring."
693    ::= { ciscoTransConnMIBGroups 3 }
694
695ciscoTransConnServerGroup OBJECT-GROUP
696    OBJECTS         {
697                        ctcServerIndex,
698                        ctcServerName,
699                        ctcServerListening,
700                        ctcServerIPAddr,
701                        ctcServerPort,
702                        ctcServerDestinationName,
703                        ctcServerClientTimeout,
704                        ctcServerHostTimeout,
705                        ctcServerWindowSize,
706                        ctcServerConnectionCount,
707                        ctcServerProgNameUpperCase
708                    }
709    STATUS          current
710    DESCRIPTION
711            "A collection of objects providing Transaction Connection
712            server monitoring."
713    ::= { ciscoTransConnMIBGroups 4 }
714
715ciscoTransConnConnectionGroup OBJECT-GROUP
716    OBJECTS         {
717                        ctcConnectionId,
718                        ctcConnectionServer,
719                        ctcConnectionState,
720                        ctcConnectionSessionCount,
721                        ctcConnectionClientIPAddr,
722                        ctcConnectionClientPort,
723                        ctcConnectionTotalConversations,
724                        ctcConnectionConnectTime,
725                        ctcConnectionIdleTime,
726                        ctcConnectionTotalBytesRecvd
727                    }
728    STATUS          current
729    DESCRIPTION
730            "A collection of objects providing Transaction Connection
731            monitoring."
732    ::= { ciscoTransConnMIBGroups 5 }
733
734ciscoTransConnTransactionGroup OBJECT-GROUP
735    OBJECTS         {
736                        ctcTransactionSessionId,
737                        ctcTransactionServer,
738                        ctcTransactionConnectionId,
739                        ctcTransactionState,
740                        ctcTransactionTPName,
741                        ctcTransactionUserId
742                    }
743    STATUS          current
744    DESCRIPTION
745            "A collection of objects providing Transaction Connection
746            transaction monitoring."
747    ::= { ciscoTransConnMIBGroups 6 }
748
749END
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772