-- $Id: OLD-CISCO-TCP.MIB 1.1 2005/03/14 16:34:15Z aminchew Exp $ -- $Source: v:/mksroot/rcs/OLD-CISCO-TCP.MIB $ -- ***************************************************************** -- OLD-CISCO-TCP-MIB.my: Old Local TCP MIB file -- -- May 1994, Nick Thille -- -- Copyright (c) 1994 by cisco Systems, Inc. -- All rights reserved. -- -- NOTE WELL -- Starting with IOS 10.2, all objects defined in this mib have been -- deprecated. They have been replaced with the objects defined in the -- CISCO-TCP-MIB.my document. Management applications should no longer -- be examining the objects defined in this document -- NOTE WELL -- -- ***************************************************************** -- $Log: OLD-CISCO-TCP.MIB $ -- Revision 1.1 2005/03/14 16:34:15Z aminchew -- Initial revision -- Revision 1.1.2.1 2005/02/08 01:45:11 bruceg -- CGESM_12_2_25 -- -- Revision 3.2 1995/11/17 08:36:18 hampton -- Remove old entries from the RCS header logs. -- -- Revision 3.1 1995/11/09 10:51:46 shaker -- Bump version numbers from 2.x to 3.x. -- -- Revision 2.1 1995/06/07 20:02:29 hampton -- Bump version numbers from 1.x to 2.x. -- -- ***************************************************************** -- $Endlog$ OLD-CISCO-TCP-MIB DEFINITIONS ::= BEGIN IMPORTS TimeTicks FROM RFC1155-SMI OBJECT-TYPE FROM RFC-1212 tcpConnLocalAddress, tcpConnLocalPort, tcpConnRemAddress, tcpConnRemPort FROM RFC1213-MIB local FROM CISCO-SMI; ltcp OBJECT IDENTIFIER ::= { local 6 } -- Local TCP Group -- This group is present in all products which are using the -- TCP protocol. -- Local TCP Connection Table -- This group provides additional objects to the table defined -- by RFC 1213 ltcpConnTable OBJECT-TYPE SYNTAX SEQUENCE OF LtcpConnEntry ACCESS not-accessible STATUS deprecated DESCRIPTION "A list of TCP connection entries." ::= { ltcp 1 } ltcpConnEntry OBJECT-TYPE SYNTAX LtcpConnEntry ACCESS not-accessible STATUS deprecated DESCRIPTION "A collection of additional objects in the cisco TCP implementation." INDEX { tcpConnLocalAddress, tcpConnLocalPort, tcpConnRemAddress, tcpConnRemPort } ::= { ltcpConnTable 1 } LtcpConnEntry ::= SEQUENCE { loctcpConnInBytes INTEGER, loctcpConnOutBytes INTEGER, loctcpConnInPkts INTEGER, loctcpConnOutPkts INTEGER, loctcpConnElapsed TimeTicks } -- The following section describes the components of the -- table. loctcpConnInBytes OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS deprecated DESCRIPTION "Bytes input for this TCP connection." ::= { ltcpConnEntry 1 } loctcpConnOutBytes OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS deprecated DESCRIPTION "Bytes output for this TCP connection." ::= { ltcpConnEntry 2 } loctcpConnInPkts OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS deprecated DESCRIPTION "Packets input for this TCP connection." ::= { ltcpConnEntry 3 } loctcpConnOutPkts OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS deprecated DESCRIPTION "Packets output for this TCP connection." ::= { ltcpConnEntry 4 } loctcpConnElapsed OBJECT-TYPE SYNTAX TimeTicks ACCESS read-only STATUS deprecated DESCRIPTION "How long this TCP connection has been established." ::= { ltcpConnEntry 5 } -- End of table END