1-- *****************************************************************
2-- OLD-CISCO-TCP-MIB.my:  Old Local TCP MIB file
3--
4-- May 1994, Nick Thille
5--
6-- Copyright (c) 1994 by cisco Systems, Inc.
7-- All rights reserved.
8--
9-- NOTE WELL
10-- Starting with IOS 10.2, all objects defined in this mib have been
11-- deprecated.  They have been replaced with the objects defined in the
12-- CISCO-TCP-MIB.my document.  Management applications should no longer
13-- be examining the objects defined in this document
14-- NOTE WELL
15--
16-- *****************************************************************
17
18            OLD-CISCO-TCP-MIB DEFINITIONS ::= BEGIN
19
20               IMPORTS
21			TimeTicks
22				FROM RFC1155-SMI
23			OBJECT-TYPE
24				FROM RFC-1212
25			tcpConnLocalAddress,
26			tcpConnLocalPort,
27			tcpConnRemAddress,
28			tcpConnRemPort
29				FROM RFC1213-MIB
30			local
31				FROM CISCO-SMI;
32
33               ltcp                OBJECT IDENTIFIER ::= { local 6 }
34
35               -- Local TCP Group
36
37          -- This group is present in all products which are using the
38          -- TCP protocol.
39
40          -- Local TCP Connection Table
41
42          -- This group provides additional objects to the table defined
43          -- by RFC 1213
44
45               ltcpConnTable OBJECT-TYPE
46                   SYNTAX  SEQUENCE OF LtcpConnEntry
47                   ACCESS  not-accessible
48                   STATUS  deprecated
49                   DESCRIPTION
50                            "A list of TCP connection entries."
51                   ::= { ltcp 1 }
52
53               ltcpConnEntry OBJECT-TYPE
54                   SYNTAX LtcpConnEntry
55                   ACCESS  not-accessible
56                   STATUS  deprecated
57                   DESCRIPTION
58                            "A collection of additional objects in the
59                            cisco TCP implementation."
60                   INDEX { tcpConnLocalAddress, tcpConnLocalPort,
61                   tcpConnRemAddress, tcpConnRemPort }
62               ::= { ltcpConnTable 1 }
63
64               LtcpConnEntry ::=
65                   SEQUENCE {
66                       loctcpConnInBytes
67                           INTEGER,
68                       loctcpConnOutBytes
69                           INTEGER,
70                       loctcpConnInPkts
71                           INTEGER,
72                       loctcpConnOutPkts
73                           INTEGER,
74                       loctcpConnElapsed
75                           TimeTicks
76                   }
77
78
79          -- The following section describes the components of the
80          -- table.
81
82               loctcpConnInBytes OBJECT-TYPE
83                   SYNTAX  INTEGER
84                   ACCESS  read-only
85                   STATUS  deprecated
86                   DESCRIPTION
87                           "Bytes input for this TCP connection."
88                   ::= { ltcpConnEntry 1 }
89
90               loctcpConnOutBytes OBJECT-TYPE
91                   SYNTAX  INTEGER
92                   ACCESS  read-only
93                   STATUS  deprecated
94                   DESCRIPTION
95                           "Bytes output for this TCP connection."
96                   ::= { ltcpConnEntry 2 }
97
98               loctcpConnInPkts OBJECT-TYPE
99                   SYNTAX  INTEGER
100                   ACCESS  read-only
101                   STATUS  deprecated
102                   DESCRIPTION
103                           "Packets input for this TCP connection."
104                   ::= { ltcpConnEntry 3 }
105
106               loctcpConnOutPkts OBJECT-TYPE
107                   SYNTAX  INTEGER
108                   ACCESS  read-only
109                   STATUS  deprecated
110                   DESCRIPTION
111                           "Packets output for this TCP connection."
112                   ::= { ltcpConnEntry 4 }
113
114               loctcpConnElapsed OBJECT-TYPE
115                   SYNTAX  TimeTicks
116                   ACCESS  read-only
117                   STATUS  deprecated
118                   DESCRIPTION
119                           "How long this TCP connection has been
120                           established."
121                   ::= { ltcpConnEntry 5 }
122
123               -- End of table
124
125
126END
127