<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE smi SYSTEM "http://www.mibexplorer.com/DTD/SMI.DTD">

<smi>
        <module name="TCP-MIB" language="SMIv2">
                <organization><![CDATA[IETF SNMPv2 Working Group]]></organization>
                <contact><![CDATA[Keith McCloghrie

Postal: Cisco Systems, Inc.
        170 West Tasman Drive
        San Jose, CA  95134-1706
        US

Phone:  +1 408 526 5260
Email:  kzm@cisco.com]]></contact>
                <description><![CDATA[The MIB module for managing TCP implementations.]]></description>
                <revision date="1991-03-31 00:00">
                        <description><![CDATA[The initial revision of this MIB module was part of MIB-
II.]]></description>
                </revision>
                <identity node="tcpMIB"/>
        </module>
        <imports>
                <import module="SNMPv2-SMI" name="MODULE-IDENTITY"/>
                <import module="SNMPv2-SMI" name="OBJECT-TYPE"/>
                <import module="SNMPv2-SMI" name="Integer32"/>
                <import module="SNMPv2-SMI" name="Gauge32"/>
                <import module="SNMPv2-SMI" name="Counter32"/>
                <import module="SNMPv2-SMI" name="IpAddress"/>
                <import module="SNMPv2-SMI" name="mib-2"/>
                <import module="SNMPv2-CONF" name="MODULE-COMPLIANCE"/>
                <import module="SNMPv2-CONF" name="OBJECT-GROUP"/>
        </imports>
        <nodes>
                <node name="tcp" oid="1.3.6.1.2.1.6"/>
                <scalar name="tcpRtoAlgorithm" oid="1.3.6.1.2.1.6.1" status="current">
                        <syntax>
                                <typedef basetype="INTEGER">
                                        <namednumber name="other" number="1"/>
                                        <namednumber name="constant" number="2"/>
                                        <namednumber name="rsre" number="3"/>
                                        <namednumber name="vanj" number="4"/>
                                </typedef>
                        </syntax>
                        <access>readonly</access>
                        <description><![CDATA[The algorithm used to determine the timeout value used for
retransmitting unacknowledged octets.]]></description>
                </scalar>
                <scalar name="tcpRtoMin" oid="1.3.6.1.2.1.6.2" status="current">
                        <syntax>
                                <type name="Integer32" module=""/>
                        </syntax>
                        <access>readonly</access>
                        <units><![CDATA[milliseconds]]></units>
                        <description><![CDATA[The minimum value permitted by a TCP implementation for the
retransmission timeout, measured in milliseconds.  More
refined semantics for objects of this type depend upon the
algorithm used to determine the retransmission timeout.  In
particular, when the timeout algorithm is rsre(3), an object
of this type has the semantics of the LBOUND quantity
described in RFC 793.]]></description>
                </scalar>
                <scalar name="tcpRtoMax" oid="1.3.6.1.2.1.6.3" status="current">
                        <syntax>
                                <type name="Integer32" module=""/>
                        </syntax>
                        <access>readonly</access>
                        <units><![CDATA[milliseconds]]></units>
                        <description><![CDATA[The maximum value permitted by a TCP implementation for the
retransmission timeout, measured in milliseconds.  More
refined semantics for objects of this type depend upon the
algorithm used to determine the retransmission timeout.  In
particular, when the timeout algorithm is rsre(3), an object
of this type has the semantics of the UBOUND quantity
described in RFC 793.]]></description>
                </scalar>
                <scalar name="tcpMaxConn" oid="1.3.6.1.2.1.6.4" status="current">
                        <syntax>
                                <type name="Integer32" module=""/>
                        </syntax>
                        <access>readonly</access>
                        <description><![CDATA[The limit on the total number of TCP connections the entity
can support.  In entities where the maximum number of
connections is dynamic, this object should contain the value
-1.]]></description>
                </scalar>
                <scalar name="tcpActiveOpens" oid="1.3.6.1.2.1.6.5" status="current">
                        <syntax>
                                <type name="Counter32" module=""/>
                        </syntax>
                        <access>readonly</access>
                        <description><![CDATA[The number of times TCP connections have made a direct
transition to the SYN-SENT state from the CLOSED state.]]></description>
                </scalar>
                <scalar name="tcpPassiveOpens" oid="1.3.6.1.2.1.6.6" status="current">
                        <syntax>
                                <type name="Counter32" module=""/>
                        </syntax>
                        <access>readonly</access>
                        <description><![CDATA[The number of times TCP connections have made a direct
transition to the SYN-RCVD state from the LISTEN state.]]></description>
                </scalar>
                <scalar name="tcpAttemptFails" oid="1.3.6.1.2.1.6.7" status="current">
                        <syntax>
                                <type name="Counter32" module=""/>
                        </syntax>
                        <access>readonly</access>
                        <description><![CDATA[The number of times TCP connections have made a direct
transition to the CLOSED state from either the SYN-SENT
state or the SYN-RCVD state, plus the number of times TCP
connections have made a direct transition to the LISTEN
state from the SYN-RCVD state.]]></description>
                </scalar>
                <scalar name="tcpEstabResets" oid="1.3.6.1.2.1.6.8" status="current">
                        <syntax>
                                <type name="Counter32" module=""/>
                        </syntax>
                        <access>readonly</access>
                        <description><![CDATA[The number of times TCP connections have made a direct
transition to the CLOSED state from either the ESTABLISHED
state or the CLOSE-WAIT state.]]></description>
                </scalar>
                <scalar name="tcpCurrEstab" oid="1.3.6.1.2.1.6.9" status="current">
                        <syntax>
                                <type name="Gauge32" module=""/>
                        </syntax>
                        <access>readonly</access>
                        <description><![CDATA[The number of TCP connections for which the current state
is either ESTABLISHED or CLOSE- WAIT.]]></description>
                </scalar>
                <scalar name="tcpInSegs" oid="1.3.6.1.2.1.6.10" status="current">
                        <syntax>
                                <type name="Counter32" module=""/>
                        </syntax>
                        <access>readonly</access>
                        <description><![CDATA[The total number of segments received, including those
received in error.  This count includes segments received on
currently established connections.]]></description>
                </scalar>
                <scalar name="tcpOutSegs" oid="1.3.6.1.2.1.6.11" status="current">
                        <syntax>
                                <type name="Counter32" module=""/>
                        </syntax>
                        <access>readonly</access>
                        <description><![CDATA[The total number of segments sent, including those on
current connections but excluding those containing only
retransmitted octets.]]></description>
                </scalar>
                <scalar name="tcpRetransSegs" oid="1.3.6.1.2.1.6.12" status="current">
                        <syntax>
                                <type name="Counter32" module=""/>
                        </syntax>
                        <access>readonly</access>
                        <description><![CDATA[The total number of segments retransmitted - that is, the
number of TCP segments transmitted containing one or more
previously transmitted octets.]]></description>
                </scalar>
                <table name="tcpConnTable" oid="1.3.6.1.2.1.6.13" status="current">
                        <description><![CDATA[A table containing TCP connection-specific information.]]></description>
                        <row name="tcpConnEntry" oid="1.3.6.1.2.1.6.13.1" status="current" create="false">
                                <linkage implied="false">
                                        <index module="TCP-MIB" name="tcpConnLocalAddress"/>
                                        <index module="TCP-MIB" name="tcpConnLocalPort"/>
                                        <index module="TCP-MIB" name="tcpConnRemAddress"/>
                                        <index module="TCP-MIB" name="tcpConnRemPort"/>
                                </linkage>
                                <description><![CDATA[A conceptual row of the tcpConnTable containing information
about a particular current TCP connection.  Each row of this
table is transient, in that it ceases to exist when (or soon
after) the connection makes the transition to the CLOSED
state.]]></description>
                                <column name="tcpConnState" oid="1.3.6.1.2.1.6.13.1.1" status="current">
                                        <syntax>
                                                <typedef basetype="INTEGER">
                                                        <namednumber name="closed" number="1"/>
                                                        <namednumber name="listen" number="2"/>
                                                        <namednumber name="synSent" number="3"/>
                                                        <namednumber name="synReceived" number="4"/>
                                                        <namednumber name="established" number="5"/>
                                                        <namednumber name="finWait1" number="6"/>
                                                        <namednumber name="finWait2" number="7"/>
                                                        <namednumber name="closeWait" number="8"/>
                                                        <namednumber name="lastAck" number="9"/>
                                                        <namednumber name="closing" number="10"/>
                                                        <namednumber name="timeWait" number="11"/>
                                                        <namednumber name="deleteTCB" number="12"/>
                                                </typedef>
                                        </syntax>
                                        <access>readwrite</access>
                                        <description><![CDATA[The state of this TCP connection.

The only value which may be set by a management station is
deleteTCB(12).  Accordingly, it is appropriate for an agent
to return a `badValue' response if a management station
attempts to set this object to any other value.

If a management station sets this object to the value
deleteTCB(12), then this has the effect of deleting the TCB
(as defined in RFC 793) of the corresponding connection on
the managed node, resulting in immediate termination of the
connection.

As an implementation-specific option, a RST segment may be
sent from the managed node to the other TCP endpoint (note
however that RST segments are not sent reliably).]]></description>
                                </column>
                                <column name="tcpConnLocalAddress" oid="1.3.6.1.2.1.6.13.1.2" status="current">
                                        <syntax>
                                                <type name="IpAddress" module=""/>
                                        </syntax>
                                        <access>readonly</access>
                                        <description><![CDATA[The local IP address for this TCP connection.  In the case
of a connection in the listen state which is willing to
accept connections for any IP interface associated with the
node, the value 0.0.0.0 is used.]]></description>
                                </column>
                                <column name="tcpConnLocalPort" oid="1.3.6.1.2.1.6.13.1.3" status="current">
                                        <syntax>
                                                <typedef basetype="INTEGER">
                                                        <range min="0" max="65535"/>
                                                </typedef>
                                        </syntax>
                                        <access>readonly</access>
                                        <description><![CDATA[The local port number for this TCP connection.]]></description>
                                </column>
                                <column name="tcpConnRemAddress" oid="1.3.6.1.2.1.6.13.1.4" status="current">
                                        <syntax>
                                                <type name="IpAddress" module=""/>
                                        </syntax>
                                        <access>readonly</access>
                                        <description><![CDATA[The remote IP address for this TCP connection.]]></description>
                                </column>
                                <column name="tcpConnRemPort" oid="1.3.6.1.2.1.6.13.1.5" status="current">
                                        <syntax>
                                                <typedef basetype="INTEGER">
                                                        <range min="0" max="65535"/>
                                                </typedef>
                                        </syntax>
                                        <access>readonly</access>
                                        <description><![CDATA[The remote port number for this TCP connection.]]></description>
                                </column>
                        </row>
                </table>
                <table name="tcpConnEntry" oid="1.3.6.1.2.1.6.13.1" status="current">
                        <description><![CDATA[A conceptual row of the tcpConnTable containing information
about a particular current TCP connection.  Each row of this
table is transient, in that it ceases to exist when (or soon
after) the connection makes the transition to the CLOSED
state.]]></description>
                        <row name="tcpConnEntry" oid="1.3.6.1.2.1.6.13.1" status="current" create="false">
                                <linkage implied="false">
                                        <index module="TCP-MIB" name="tcpConnLocalAddress"/>
                                        <index module="TCP-MIB" name="tcpConnLocalPort"/>
                                        <index module="TCP-MIB" name="tcpConnRemAddress"/>
                                        <index module="TCP-MIB" name="tcpConnRemPort"/>
                                </linkage>
                                <description><![CDATA[A conceptual row of the tcpConnTable containing information
about a particular current TCP connection.  Each row of this
table is transient, in that it ceases to exist when (or soon
after) the connection makes the transition to the CLOSED
state.]]></description>
                                <column name="tcpConnState" oid="1.3.6.1.2.1.6.13.1.1" status="current">
                                        <syntax>
                                                <typedef basetype="INTEGER">
                                                        <namednumber name="closed" number="1"/>
                                                        <namednumber name="listen" number="2"/>
                                                        <namednumber name="synSent" number="3"/>
                                                        <namednumber name="synReceived" number="4"/>
                                                        <namednumber name="established" number="5"/>
                                                        <namednumber name="finWait1" number="6"/>
                                                        <namednumber name="finWait2" number="7"/>
                                                        <namednumber name="closeWait" number="8"/>
                                                        <namednumber name="lastAck" number="9"/>
                                                        <namednumber name="closing" number="10"/>
                                                        <namednumber name="timeWait" number="11"/>
                                                        <namednumber name="deleteTCB" number="12"/>
                                                </typedef>
                                        </syntax>
                                        <access>readwrite</access>
                                        <description><![CDATA[The state of this TCP connection.

The only value which may be set by a management station is
deleteTCB(12).  Accordingly, it is appropriate for an agent
to return a `badValue' response if a management station
attempts to set this object to any other value.

If a management station sets this object to the value
deleteTCB(12), then this has the effect of deleting the TCB
(as defined in RFC 793) of the corresponding connection on
the managed node, resulting in immediate termination of the
connection.

As an implementation-specific option, a RST segment may be
sent from the managed node to the other TCP endpoint (note
however that RST segments are not sent reliably).]]></description>
                                </column>
                                <column name="tcpConnLocalAddress" oid="1.3.6.1.2.1.6.13.1.2" status="current">
                                        <syntax>
                                                <type name="IpAddress" module=""/>
                                        </syntax>
                                        <access>readonly</access>
                                        <description><![CDATA[The local IP address for this TCP connection.  In the case
of a connection in the listen state which is willing to
accept connections for any IP interface associated with the
node, the value 0.0.0.0 is used.]]></description>
                                </column>
                                <column name="tcpConnLocalPort" oid="1.3.6.1.2.1.6.13.1.3" status="current">
                                        <syntax>
                                                <typedef basetype="INTEGER">
                                                        <range min="0" max="65535"/>
                                                </typedef>
                                        </syntax>
                                        <access>readonly</access>
                                        <description><![CDATA[The local port number for this TCP connection.]]></description>
                                </column>
                                <column name="tcpConnRemAddress" oid="1.3.6.1.2.1.6.13.1.4" status="current">
                                        <syntax>
                                                <type name="IpAddress" module=""/>
                                        </syntax>
                                        <access>readonly</access>
                                        <description><![CDATA[The remote IP address for this TCP connection.]]></description>
                                </column>
                                <column name="tcpConnRemPort" oid="1.3.6.1.2.1.6.13.1.5" status="current">
                                        <syntax>
                                                <typedef basetype="INTEGER">
                                                        <range min="0" max="65535"/>
                                                </typedef>
                                        </syntax>
                                        <access>readonly</access>
                                        <description><![CDATA[The remote port number for this TCP connection.]]></description>
                                </column>
                        </row>
                </table>
                <scalar name="tcpInErrs" oid="1.3.6.1.2.1.6.14" status="current">
                        <syntax>
                                <type name="Counter32" module=""/>
                        </syntax>
                        <access>readonly</access>
                        <description><![CDATA[The total number of segments received in error (e.g., bad
TCP checksums).]]></description>
                </scalar>
                <scalar name="tcpOutRsts" oid="1.3.6.1.2.1.6.15" status="current">
                        <syntax>
                                <type name="Counter32" module=""/>
                        </syntax>
                        <access>readonly</access>
                        <description><![CDATA[The number of TCP segments sent containing the RST flag.]]></description>
                </scalar>
                <node name="tcpMIB" oid="1.3.6.1.2.1.49">
                        <description><![CDATA[The MIB module for managing TCP implementations.]]></description>
                </node>
                <node name="tcpMIBConformance" oid="1.3.6.1.2.1.49.2"/>
                <node name="tcpMIBCompliances" oid="1.3.6.1.2.1.49.2.1"/>
                <node name="tcpMIBGroups" oid="1.3.6.1.2.1.49.2.2"/>
        </nodes>
        <groups>
                <group name="tcpGroup" oid="1.3.6.1.2.1.49.2.2.1" status="current">
                        <members>
                                <member module="TCP-MIB" name="tcpRtoAlgorithm"/>
                                <member module="TCP-MIB" name="tcpRtoMin"/>
                                <member module="TCP-MIB" name="tcpRtoMax"/>
                                <member module="TCP-MIB" name="tcpMaxConn"/>
                                <member module="TCP-MIB" name="tcpActiveOpens"/>
                                <member module="TCP-MIB" name="tcpPassiveOpens"/>
                                <member module="TCP-MIB" name="tcpAttemptFails"/>
                                <member module="TCP-MIB" name="tcpEstabResets"/>
                                <member module="TCP-MIB" name="tcpCurrEstab"/>
                                <member module="TCP-MIB" name="tcpInSegs"/>
                                <member module="TCP-MIB" name="tcpOutSegs"/>
                                <member module="TCP-MIB" name="tcpRetransSegs"/>
                                <member module="TCP-MIB" name="tcpConnState"/>
                                <member module="TCP-MIB" name="tcpConnLocalAddress"/>
                                <member module="TCP-MIB" name="tcpConnLocalPort"/>
                                <member module="TCP-MIB" name="tcpConnRemAddress"/>
                                <member module="TCP-MIB" name="tcpConnRemPort"/>
                                <member module="TCP-MIB" name="tcpInErrs"/>
                                <member module="TCP-MIB" name="tcpOutRsts"/>
                        </members>
                        <description><![CDATA[The tcp group of objects providing for management of TCP
entities.]]></description>
                </group>
        </groups>
        <compliances>
                <compliance name="tcpMIBCompliance" oid="1.3.6.1.2.1.49.2.1.1" status="current">
                        <description><![CDATA[The compliance statement for SNMPv2 entities which
implement TCP.]]></description>
                        <requires>
                                <mandatory module="TCP-MIB" name="tcpGroup"/>
                        </requires>
                </compliance>
        </compliances>
</smi>
<!--MIB Explorer 1.6 - Full License, no expiration-->
