Blame mibs/ietf/TUNNEL-MIB

Packit 022b05
TUNNEL-MIB DEFINITIONS ::= BEGIN
Packit 022b05
Packit 022b05
IMPORTS
Packit 022b05
    MODULE-IDENTITY, OBJECT-TYPE, transmission,
Packit 022b05
    Integer32, IpAddress    FROM SNMPv2-SMI          -- [RFC2578]
Packit 022b05
Packit 022b05
    RowStatus, StorageType  FROM SNMPv2-TC           -- [RFC2579]
Packit 022b05
Packit 022b05
    MODULE-COMPLIANCE,
Packit 022b05
    OBJECT-GROUP            FROM SNMPv2-CONF         -- [RFC2580]
Packit 022b05
Packit 022b05
    InetAddressType,
Packit 022b05
    InetAddress             FROM INET-ADDRESS-MIB    -- [RFC4001]
Packit 022b05
Packit 022b05
    IPv6FlowLabelOrAny      FROM IPV6-FLOW-LABEL-MIB -- [RFC3595]
Packit 022b05
Packit 022b05
    ifIndex,
Packit 022b05
    InterfaceIndexOrZero    FROM IF-MIB              -- [RFC2863]
Packit 022b05
Packit 022b05
    IANAtunnelType          FROM IANAifType-MIB;     -- [IFTYPE]
Packit 022b05
Packit 022b05
tunnelMIB MODULE-IDENTITY
Packit 022b05
    LAST-UPDATED "200505160000Z" -- May 16, 2005
Packit 022b05
    ORGANIZATION "IETF IP Version 6 (IPv6) Working Group"
Packit 022b05
    CONTACT-INFO
Packit 022b05
            " Dave Thaler
Packit 022b05
              Microsoft Corporation
Packit 022b05
              One Microsoft Way
Packit 022b05
              Redmond, WA  98052-6399
Packit 022b05
              EMail: dthaler@microsoft.com"
Packit 022b05
    DESCRIPTION
Packit 022b05
            "The MIB module for management of IP Tunnels,
Packit 022b05
            independent of the specific encapsulation scheme in
Packit 022b05
            use.
Packit 022b05
Packit 022b05
            Copyright (C) The Internet Society (2005).  This
Packit 022b05
            version of this MIB module is part of RFC 4087;  see
Packit 022b05
            the RFC itself for full legal notices."
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
    REVISION     "200505160000Z" -- May 16, 2005
Packit 022b05
    DESCRIPTION
Packit 022b05
            "IPv4-specific objects were deprecated, including
Packit 022b05
            tunnelIfLocalAddress, tunnelIfRemoteAddress, the
Packit 022b05
            tunnelConfigTable, and the tunnelMIBBasicGroup.
Packit 022b05
Packit 022b05
            Added IP version-agnostic objects that should be used
Packit 022b05
            instead, including tunnelIfAddressType,
Packit 022b05
            tunnelIfLocalInetAddress, tunnelIfRemoteInetAddress,
Packit 022b05
            the tunnelInetConfigTable, and the
Packit 022b05
            tunnelIMIBInetGroup.
Packit 022b05
Packit 022b05
            The new tunnelIfLocalInetAddress and
Packit 022b05
            tunnelIfRemoteInetAddress objects are read-write,
Packit 022b05
            rather than read-only.
Packit 022b05
Packit 022b05
            Updated DESCRIPTION clauses of existing version-
Packit 022b05
            agnostic objects (e.g., tunnelIfTOS) that contained
Packit 022b05
            IPv4-specific text to cover IPv6 as well.
Packit 022b05
Packit 022b05
            Added tunnelIfFlowLabel for tunnels over IPv6.
Packit 022b05
Packit 022b05
            The encapsulation method was previously an INTEGER
Packit 022b05
            type, and is now an IANA-maintained textual
Packit 022b05
            convention.
Packit 022b05
Packit 022b05
            Published as RFC 4087."
Packit 022b05
    REVISION     "199908241200Z" -- August 24, 1999
Packit 022b05
    DESCRIPTION
Packit 022b05
            "Initial version, published as RFC 2667."
Packit 022b05
    ::= { transmission 131 }
Packit 022b05
Packit 022b05
tunnelMIBObjects OBJECT IDENTIFIER ::= { tunnelMIB 1 }
Packit 022b05
Packit 022b05
tunnel      OBJECT IDENTIFIER ::= { tunnelMIBObjects 1 }
Packit 022b05
Packit 022b05
-- the IP Tunnel MIB-Group
Packit 022b05
--
Packit 022b05
-- a collection of objects providing information about
Packit 022b05
-- IP Tunnels
Packit 022b05
Packit 022b05
tunnelIfTable OBJECT-TYPE
Packit 022b05
    SYNTAX     SEQUENCE OF TunnelIfEntry
Packit 022b05
    MAX-ACCESS not-accessible
Packit 022b05
    STATUS     current
Packit 022b05
    DESCRIPTION
Packit 022b05
            "The (conceptual) table containing information on
Packit 022b05
            configured tunnels."
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
    ::= { tunnel 1 }
Packit 022b05
Packit 022b05
tunnelIfEntry OBJECT-TYPE
Packit 022b05
    SYNTAX     TunnelIfEntry
Packit 022b05
    MAX-ACCESS not-accessible
Packit 022b05
    STATUS     current
Packit 022b05
    DESCRIPTION
Packit 022b05
            "An entry (conceptual row) containing the information
Packit 022b05
            on a particular configured tunnel."
Packit 022b05
    INDEX      { ifIndex }
Packit 022b05
    ::= { tunnelIfTable 1 }
Packit 022b05
Packit 022b05
TunnelIfEntry ::= SEQUENCE {
Packit 022b05
    tunnelIfLocalAddress            IpAddress,   -- deprecated
Packit 022b05
    tunnelIfRemoteAddress           IpAddress,   -- deprecated
Packit 022b05
    tunnelIfEncapsMethod            IANAtunnelType,
Packit 022b05
    tunnelIfHopLimit                Integer32,
Packit 022b05
    tunnelIfSecurity                INTEGER,
Packit 022b05
    tunnelIfTOS                     Integer32,
Packit 022b05
    tunnelIfFlowLabel               IPv6FlowLabelOrAny,
Packit 022b05
    tunnelIfAddressType             InetAddressType,
Packit 022b05
    tunnelIfLocalInetAddress        InetAddress,
Packit 022b05
    tunnelIfRemoteInetAddress       InetAddress,
Packit 022b05
    tunnelIfEncapsLimit             Integer32
Packit 022b05
}
Packit 022b05
Packit 022b05
tunnelIfLocalAddress OBJECT-TYPE
Packit 022b05
    SYNTAX     IpAddress
Packit 022b05
    MAX-ACCESS read-only
Packit 022b05
    STATUS     deprecated
Packit 022b05
    DESCRIPTION
Packit 022b05
            "The address of the local endpoint of the tunnel
Packit 022b05
            (i.e., the source address used in the outer IP
Packit 022b05
            header), or 0.0.0.0 if unknown or if the tunnel is
Packit 022b05
            over IPv6.
Packit 022b05
Packit 022b05
            Since this object does not support IPv6, it is
Packit 022b05
            deprecated in favor of tunnelIfLocalInetAddress."
Packit 022b05
    ::= { tunnelIfEntry 1 }
Packit 022b05
Packit 022b05
tunnelIfRemoteAddress OBJECT-TYPE
Packit 022b05
    SYNTAX     IpAddress
Packit 022b05
    MAX-ACCESS read-only
Packit 022b05
    STATUS     deprecated
Packit 022b05
    DESCRIPTION
Packit 022b05
            "The address of the remote endpoint of the tunnel
Packit 022b05
            (i.e., the destination address used in the outer IP
Packit 022b05
            header), or 0.0.0.0 if unknown, or an IPv6 address, or
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
            the tunnel is not a point-to-point link (e.g., if it
Packit 022b05
            is a 6to4 tunnel).
Packit 022b05
Packit 022b05
            Since this object does not support IPv6, it is
Packit 022b05
            deprecated in favor of tunnelIfRemoteInetAddress."
Packit 022b05
    ::= { tunnelIfEntry 2 }
Packit 022b05
Packit 022b05
tunnelIfEncapsMethod OBJECT-TYPE
Packit 022b05
    SYNTAX     IANAtunnelType
Packit 022b05
    MAX-ACCESS read-only
Packit 022b05
    STATUS     current
Packit 022b05
    DESCRIPTION
Packit 022b05
            "The encapsulation method used by the tunnel."
Packit 022b05
    ::= { tunnelIfEntry 3 }
Packit 022b05
Packit 022b05
tunnelIfHopLimit OBJECT-TYPE
Packit 022b05
    SYNTAX     Integer32 (0 | 1..255)
Packit 022b05
    MAX-ACCESS read-write
Packit 022b05
    STATUS     current
Packit 022b05
    DESCRIPTION
Packit 022b05
            "The IPv4 TTL or IPv6 Hop Limit to use in the outer IP
Packit 022b05
            header.  A value of 0 indicates that the value is
Packit 022b05
            copied from the payload's header."
Packit 022b05
    ::= { tunnelIfEntry 4 }
Packit 022b05
Packit 022b05
tunnelIfSecurity OBJECT-TYPE
Packit 022b05
    SYNTAX     INTEGER {
Packit 022b05
                   none(1),   -- no security
Packit 022b05
                   ipsec(2),  -- IPsec security
Packit 022b05
                   other(3)
Packit 022b05
               }
Packit 022b05
    MAX-ACCESS read-only
Packit 022b05
    STATUS     current
Packit 022b05
    DESCRIPTION
Packit 022b05
            "The method used by the tunnel to secure the outer IP
Packit 022b05
            header.  The value ipsec indicates that IPsec is used
Packit 022b05
            between the tunnel endpoints for authentication or
Packit 022b05
            encryption or both.  More specific security-related
Packit 022b05
            information may be available in a MIB module for the
Packit 022b05
            security protocol in use."
Packit 022b05
    ::= { tunnelIfEntry 5 }
Packit 022b05
Packit 022b05
tunnelIfTOS OBJECT-TYPE
Packit 022b05
    SYNTAX     Integer32 (-2..63)
Packit 022b05
    MAX-ACCESS read-write
Packit 022b05
    STATUS     current
Packit 022b05
    DESCRIPTION
Packit 022b05
            "The method used to set the high 6 bits (the
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
            differentiated services codepoint) of the IPv4 TOS or
Packit 022b05
            IPv6 Traffic Class in the outer IP header.  A value of
Packit 022b05
            -1 indicates that the bits are copied from the
Packit 022b05
            payload's header.  A value of -2 indicates that a
Packit 022b05
            traffic conditioner is invoked and more information
Packit 022b05
            may be available in a traffic conditioner MIB module.
Packit 022b05
            A value between 0 and 63 inclusive indicates that the
Packit 022b05
            bit field is set to the indicated value.
Packit 022b05
Packit 022b05
            Note: instead of the name tunnelIfTOS, a better name
Packit 022b05
            would have been tunnelIfDSCPMethod, but the existing
Packit 022b05
            name appeared in RFC 2667 and existing objects cannot
Packit 022b05
            be renamed."
Packit 022b05
    ::= { tunnelIfEntry 6 }
Packit 022b05
Packit 022b05
tunnelIfFlowLabel OBJECT-TYPE
Packit 022b05
    SYNTAX     IPv6FlowLabelOrAny
Packit 022b05
    MAX-ACCESS read-write
Packit 022b05
    STATUS     current
Packit 022b05
    DESCRIPTION
Packit 022b05
            "The method used to set the IPv6 Flow Label value.
Packit 022b05
            This object need not be present in rows where
Packit 022b05
            tunnelIfAddressType indicates the tunnel is not over
Packit 022b05
            IPv6.  A value of -1 indicates that a traffic
Packit 022b05
            conditioner is invoked and more information may be
Packit 022b05
            available in a traffic conditioner MIB.  Any other
Packit 022b05
            value indicates that the Flow Label field is set to
Packit 022b05
            the indicated value."
Packit 022b05
    ::= { tunnelIfEntry 7 }
Packit 022b05
Packit 022b05
tunnelIfAddressType OBJECT-TYPE
Packit 022b05
    SYNTAX     InetAddressType
Packit 022b05
    MAX-ACCESS read-write
Packit 022b05
    STATUS     current
Packit 022b05
    DESCRIPTION
Packit 022b05
            "The type of address in the corresponding
Packit 022b05
            tunnelIfLocalInetAddress and tunnelIfRemoteInetAddress
Packit 022b05
            objects."
Packit 022b05
    ::= { tunnelIfEntry 8 }
Packit 022b05
Packit 022b05
tunnelIfLocalInetAddress OBJECT-TYPE
Packit 022b05
    SYNTAX     InetAddress
Packit 022b05
    MAX-ACCESS read-write
Packit 022b05
    STATUS     current
Packit 022b05
    DESCRIPTION
Packit 022b05
            "The address of the local endpoint of the tunnel
Packit 022b05
            (i.e., the source address used in the outer IP
Packit 022b05
            header).  If the address is unknown, the value is
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
            0.0.0.0 for IPv4 or :: for IPv6.  The type of this
Packit 022b05
            object is given by tunnelIfAddressType."
Packit 022b05
    ::= { tunnelIfEntry 9 }
Packit 022b05
Packit 022b05
tunnelIfRemoteInetAddress OBJECT-TYPE
Packit 022b05
    SYNTAX     InetAddress
Packit 022b05
    MAX-ACCESS read-write
Packit 022b05
    STATUS     current
Packit 022b05
    DESCRIPTION
Packit 022b05
            "The address of the remote endpoint of the tunnel
Packit 022b05
            (i.e., the destination address used in the outer IP
Packit 022b05
            header).  If the address is unknown or the tunnel is
Packit 022b05
            not a point-to-point link (e.g., if it is a 6to4
Packit 022b05
            tunnel), the value is 0.0.0.0 for tunnels over IPv4 or
Packit 022b05
            :: for tunnels over IPv6.  The type of this object is
Packit 022b05
            given by tunnelIfAddressType."
Packit 022b05
    ::= { tunnelIfEntry 10 }
Packit 022b05
Packit 022b05
tunnelIfEncapsLimit OBJECT-TYPE
Packit 022b05
    SYNTAX     Integer32 (-1 | 0..255)
Packit 022b05
    MAX-ACCESS read-write
Packit 022b05
    STATUS     current
Packit 022b05
    DESCRIPTION
Packit 022b05
            "The maximum number of additional encapsulations
Packit 022b05
            permitted for packets undergoing encapsulation at this
Packit 022b05
            node.  A value of -1 indicates that no limit is
Packit 022b05
            present (except as a result of the packet size)."
Packit 022b05
    REFERENCE  "RFC 2473, section 4.1.1"
Packit 022b05
    ::= { tunnelIfEntry 11 }
Packit 022b05
Packit 022b05
tunnelConfigTable OBJECT-TYPE
Packit 022b05
    SYNTAX     SEQUENCE OF TunnelConfigEntry
Packit 022b05
    MAX-ACCESS not-accessible
Packit 022b05
    STATUS     deprecated
Packit 022b05
    DESCRIPTION
Packit 022b05
            "The (conceptual) table containing information on
Packit 022b05
            configured tunnels.  This table can be used to map a
Packit 022b05
            set of tunnel endpoints to the associated ifIndex
Packit 022b05
            value.  It can also be used for row creation.  Note
Packit 022b05
            that every row in the tunnelIfTable with a fixed IPv4
Packit 022b05
            destination address should have a corresponding row in
Packit 022b05
            the tunnelConfigTable, regardless of whether it was
Packit 022b05
            created via SNMP.
Packit 022b05
Packit 022b05
            Since this table does not support IPv6, it is
Packit 022b05
            deprecated in favor of tunnelInetConfigTable."
Packit 022b05
    ::= { tunnel 2 }
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
tunnelConfigEntry OBJECT-TYPE
Packit 022b05
    SYNTAX     TunnelConfigEntry
Packit 022b05
    MAX-ACCESS not-accessible
Packit 022b05
    STATUS     deprecated
Packit 022b05
    DESCRIPTION
Packit 022b05
            "An entry (conceptual row) containing the information
Packit 022b05
            on a particular configured tunnel.
Packit 022b05
Packit 022b05
            Since this entry does not support IPv6, it is
Packit 022b05
            deprecated in favor of tunnelInetConfigEntry."
Packit 022b05
    INDEX      { tunnelConfigLocalAddress,
Packit 022b05
                 tunnelConfigRemoteAddress,
Packit 022b05
                 tunnelConfigEncapsMethod,
Packit 022b05
                 tunnelConfigID }
Packit 022b05
    ::= { tunnelConfigTable 1 }
Packit 022b05
Packit 022b05
TunnelConfigEntry ::= SEQUENCE {
Packit 022b05
    tunnelConfigLocalAddress            IpAddress,
Packit 022b05
    tunnelConfigRemoteAddress           IpAddress,
Packit 022b05
    tunnelConfigEncapsMethod            IANAtunnelType,
Packit 022b05
    tunnelConfigID                      Integer32,
Packit 022b05
    tunnelConfigIfIndex                 InterfaceIndexOrZero,
Packit 022b05
    tunnelConfigStatus                  RowStatus
Packit 022b05
}
Packit 022b05
Packit 022b05
tunnelConfigLocalAddress OBJECT-TYPE
Packit 022b05
    SYNTAX     IpAddress
Packit 022b05
    MAX-ACCESS not-accessible
Packit 022b05
    STATUS     deprecated
Packit 022b05
    DESCRIPTION
Packit 022b05
            "The address of the local endpoint of the tunnel, or
Packit 022b05
            0.0.0.0 if the device is free to choose any of its
Packit 022b05
            addresses at tunnel establishment time.
Packit 022b05
Packit 022b05
            Since this object does not support IPv6, it is
Packit 022b05
            deprecated in favor of tunnelInetConfigLocalAddress."
Packit 022b05
    ::= { tunnelConfigEntry 1 }
Packit 022b05
Packit 022b05
tunnelConfigRemoteAddress OBJECT-TYPE
Packit 022b05
    SYNTAX     IpAddress
Packit 022b05
    MAX-ACCESS not-accessible
Packit 022b05
    STATUS     deprecated
Packit 022b05
    DESCRIPTION
Packit 022b05
            "The address of the remote endpoint of the tunnel.
Packit 022b05
Packit 022b05
            Since this object does not support IPv6, it is
Packit 022b05
            deprecated in favor of tunnelInetConfigRemoteAddress."
Packit 022b05
    ::= { tunnelConfigEntry 2 }
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
tunnelConfigEncapsMethod OBJECT-TYPE
Packit 022b05
    SYNTAX     IANAtunnelType
Packit 022b05
    MAX-ACCESS not-accessible
Packit 022b05
    STATUS     deprecated
Packit 022b05
    DESCRIPTION
Packit 022b05
            "The encapsulation method used by the tunnel.
Packit 022b05
Packit 022b05
            Since this object does not support IPv6, it is
Packit 022b05
            deprecated in favor of tunnelInetConfigEncapsMethod."
Packit 022b05
    ::= { tunnelConfigEntry 3 }
Packit 022b05
Packit 022b05
tunnelConfigID OBJECT-TYPE
Packit 022b05
    SYNTAX     Integer32 (1..2147483647)
Packit 022b05
    MAX-ACCESS not-accessible
Packit 022b05
    STATUS     deprecated
Packit 022b05
    DESCRIPTION
Packit 022b05
            "An identifier used to distinguish between multiple
Packit 022b05
            tunnels of the same encapsulation method, with the
Packit 022b05
            same endpoints.  If the encapsulation protocol only
Packit 022b05
            allows one tunnel per set of endpoint addresses (such
Packit 022b05
            as for GRE or IP-in-IP), the value of this object is
Packit 022b05
            1.  For encapsulation methods (such as L2F) which
Packit 022b05
            allow multiple parallel tunnels, the manager is
Packit 022b05
            responsible for choosing any ID which does not
Packit 022b05
            conflict with an existing row, such as choosing a
Packit 022b05
            random number.
Packit 022b05
Packit 022b05
            Since this object does not support IPv6, it is
Packit 022b05
            deprecated in favor of tunnelInetConfigID."
Packit 022b05
    ::= { tunnelConfigEntry 4 }
Packit 022b05
Packit 022b05
tunnelConfigIfIndex OBJECT-TYPE
Packit 022b05
    SYNTAX     InterfaceIndexOrZero
Packit 022b05
    MAX-ACCESS read-only
Packit 022b05
    STATUS     deprecated
Packit 022b05
    DESCRIPTION
Packit 022b05
            "If the value of tunnelConfigStatus for this row is
Packit 022b05
            active, then this object contains the value of ifIndex
Packit 022b05
            corresponding to the tunnel interface.  A value of 0
Packit 022b05
            is not legal in the active state, and means that the
Packit 022b05
            interface index has not yet been assigned.
Packit 022b05
Packit 022b05
            Since this object does not support IPv6, it is
Packit 022b05
            deprecated in favor of tunnelInetConfigIfIndex."
Packit 022b05
    ::= { tunnelConfigEntry 5 }
Packit 022b05
Packit 022b05
tunnelConfigStatus OBJECT-TYPE
Packit 022b05
    SYNTAX     RowStatus
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
    MAX-ACCESS read-create
Packit 022b05
    STATUS     deprecated
Packit 022b05
    DESCRIPTION
Packit 022b05
            "The status of this row, by which new entries may be
Packit 022b05
            created, or old entries deleted from this table.  The
Packit 022b05
            agent need not support setting this object to
Packit 022b05
            createAndWait or notInService since there are no other
Packit 022b05
            writable objects in this table, and writable objects
Packit 022b05
            in rows of corresponding tables such as the
Packit 022b05
            tunnelIfTable may be modified while this row is
Packit 022b05
            active.
Packit 022b05
Packit 022b05
            To create a row in this table for an encapsulation
Packit 022b05
            method which does not support multiple parallel
Packit 022b05
            tunnels with the same endpoints, the management
Packit 022b05
            station should simply use a tunnelConfigID of 1, and
Packit 022b05
            set tunnelConfigStatus to createAndGo.  For
Packit 022b05
            encapsulation methods such as L2F which allow multiple
Packit 022b05
            parallel tunnels, the management station may select a
Packit 022b05
            pseudo-random number to use as the tunnelConfigID and
Packit 022b05
            set tunnelConfigStatus to createAndGo.  In the event
Packit 022b05
            that this ID is already in use and an
Packit 022b05
            inconsistentValue is returned in response to the set
Packit 022b05
            operation, the management station should simply select
Packit 022b05
            a new pseudo-random number and retry the operation.
Packit 022b05
Packit 022b05
            Creating a row in this table will cause an interface
Packit 022b05
            index to be assigned by the agent in an
Packit 022b05
            implementation-dependent manner, and corresponding
Packit 022b05
            rows will be instantiated in the ifTable and the
Packit 022b05
            tunnelIfTable.  The status of this row will become
Packit 022b05
            active as soon as the agent assigns the interface
Packit 022b05
            index, regardless of whether the interface is
Packit 022b05
            operationally up.
Packit 022b05
Packit 022b05
            Deleting a row in this table will likewise delete the
Packit 022b05
            corresponding row in the ifTable and in the
Packit 022b05
            tunnelIfTable.
Packit 022b05
Packit 022b05
            Since this object does not support IPv6, it is
Packit 022b05
            deprecated in favor of tunnelInetConfigStatus."
Packit 022b05
    ::= { tunnelConfigEntry 6 }
Packit 022b05
Packit 022b05
tunnelInetConfigTable OBJECT-TYPE
Packit 022b05
    SYNTAX     SEQUENCE OF TunnelInetConfigEntry
Packit 022b05
    MAX-ACCESS not-accessible
Packit 022b05
    STATUS     current
Packit 022b05
    DESCRIPTION
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
            "The (conceptual) table containing information on
Packit 022b05
            configured tunnels.  This table can be used to map a
Packit 022b05
            set of tunnel endpoints to the associated ifIndex
Packit 022b05
            value.  It can also be used for row creation.  Note
Packit 022b05
            that every row in the tunnelIfTable with a fixed
Packit 022b05
            destination address should have a corresponding row in
Packit 022b05
            the tunnelInetConfigTable, regardless of whether it
Packit 022b05
            was created via SNMP."
Packit 022b05
    ::= { tunnel 3 }
Packit 022b05
Packit 022b05
tunnelInetConfigEntry OBJECT-TYPE
Packit 022b05
    SYNTAX     TunnelInetConfigEntry
Packit 022b05
    MAX-ACCESS not-accessible
Packit 022b05
    STATUS     current
Packit 022b05
    DESCRIPTION
Packit 022b05
            "An entry (conceptual row) containing the information
Packit 022b05
            on a particular configured tunnel.  Note that there is
Packit 022b05
            a 128 subid maximum for object OIDs.  Implementers
Packit 022b05
            need to be aware that if the total number of octets in
Packit 022b05
            tunnelInetConfigLocalAddress and
Packit 022b05
            tunnelInetConfigRemoteAddress exceeds 110 then OIDs of
Packit 022b05
            column instances in this table will have more than 128
Packit 022b05
            sub-identifiers and cannot be accessed using SNMPv1,
Packit 022b05
            SNMPv2c, or SNMPv3.  In practice this is not expected
Packit 022b05
            to be a problem since IPv4 and IPv6 addresses will not
Packit 022b05
            cause the limit to be reached, but if other types are
Packit 022b05
            supported by an agent, care must be taken to ensure
Packit 022b05
            that the sum of the lengths do not cause the limit to
Packit 022b05
            be exceeded."
Packit 022b05
    INDEX      { tunnelInetConfigAddressType,
Packit 022b05
                 tunnelInetConfigLocalAddress,
Packit 022b05
                 tunnelInetConfigRemoteAddress,
Packit 022b05
                 tunnelInetConfigEncapsMethod,
Packit 022b05
                 tunnelInetConfigID }
Packit 022b05
    ::= { tunnelInetConfigTable 1 }
Packit 022b05
Packit 022b05
TunnelInetConfigEntry ::= SEQUENCE {
Packit 022b05
    tunnelInetConfigAddressType         InetAddressType,
Packit 022b05
    tunnelInetConfigLocalAddress        InetAddress,
Packit 022b05
    tunnelInetConfigRemoteAddress       InetAddress,
Packit 022b05
    tunnelInetConfigEncapsMethod        IANAtunnelType,
Packit 022b05
    tunnelInetConfigID                  Integer32,
Packit 022b05
    tunnelInetConfigIfIndex             InterfaceIndexOrZero,
Packit 022b05
    tunnelInetConfigStatus              RowStatus,
Packit 022b05
    tunnelInetConfigStorageType         StorageType
Packit 022b05
}
Packit 022b05
Packit 022b05
tunnelInetConfigAddressType OBJECT-TYPE
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
    SYNTAX     InetAddressType
Packit 022b05
    MAX-ACCESS not-accessible
Packit 022b05
    STATUS     current
Packit 022b05
    DESCRIPTION
Packit 022b05
            "The address type over which the tunnel encapsulates
Packit 022b05
            packets."
Packit 022b05
    ::= { tunnelInetConfigEntry 1 }
Packit 022b05
Packit 022b05
tunnelInetConfigLocalAddress OBJECT-TYPE
Packit 022b05
    SYNTAX     InetAddress
Packit 022b05
    MAX-ACCESS not-accessible
Packit 022b05
    STATUS     current
Packit 022b05
    DESCRIPTION
Packit 022b05
            "The address of the local endpoint of the tunnel, or
Packit 022b05
            0.0.0.0 (for IPv4) or :: (for IPv6) if the device is
Packit 022b05
            free to choose any of its addresses at tunnel
Packit 022b05
            establishment time."
Packit 022b05
    ::= { tunnelInetConfigEntry 2 }
Packit 022b05
Packit 022b05
tunnelInetConfigRemoteAddress OBJECT-TYPE
Packit 022b05
    SYNTAX     InetAddress
Packit 022b05
    MAX-ACCESS not-accessible
Packit 022b05
    STATUS     current
Packit 022b05
    DESCRIPTION
Packit 022b05
            "The address of the remote endpoint of the tunnel."
Packit 022b05
    ::= { tunnelInetConfigEntry 3 }
Packit 022b05
Packit 022b05
tunnelInetConfigEncapsMethod OBJECT-TYPE
Packit 022b05
    SYNTAX     IANAtunnelType
Packit 022b05
    MAX-ACCESS not-accessible
Packit 022b05
    STATUS     current
Packit 022b05
    DESCRIPTION
Packit 022b05
            "The encapsulation method used by the tunnel."
Packit 022b05
    ::= { tunnelInetConfigEntry 4 }
Packit 022b05
Packit 022b05
tunnelInetConfigID OBJECT-TYPE
Packit 022b05
    SYNTAX     Integer32 (1..2147483647)
Packit 022b05
    MAX-ACCESS not-accessible
Packit 022b05
    STATUS     current
Packit 022b05
    DESCRIPTION
Packit 022b05
            "An identifier used to distinguish between multiple
Packit 022b05
            tunnels of the same encapsulation method, with the
Packit 022b05
            same endpoints.  If the encapsulation protocol only
Packit 022b05
            allows one tunnel per set of endpoint addresses (such
Packit 022b05
            as for GRE or IP-in-IP), the value of this object is
Packit 022b05
            1.  For encapsulation methods (such as L2F) which
Packit 022b05
            allow multiple parallel tunnels, the manager is
Packit 022b05
            responsible for choosing any ID which does not
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
            conflict with an existing row, such as choosing a
Packit 022b05
            random number."
Packit 022b05
    ::= { tunnelInetConfigEntry 5 }
Packit 022b05
Packit 022b05
tunnelInetConfigIfIndex OBJECT-TYPE
Packit 022b05
    SYNTAX     InterfaceIndexOrZero
Packit 022b05
    MAX-ACCESS read-only
Packit 022b05
    STATUS     current
Packit 022b05
    DESCRIPTION
Packit 022b05
            "If the value of tunnelInetConfigStatus for this row
Packit 022b05
            is active, then this object contains the value of
Packit 022b05
            ifIndex corresponding to the tunnel interface.  A
Packit 022b05
            value of 0 is not legal in the active state, and means
Packit 022b05
            that the interface index has not yet been assigned."
Packit 022b05
    ::= { tunnelInetConfigEntry 6 }
Packit 022b05
Packit 022b05
tunnelInetConfigStatus OBJECT-TYPE
Packit 022b05
    SYNTAX     RowStatus
Packit 022b05
    MAX-ACCESS read-create
Packit 022b05
    STATUS     current
Packit 022b05
    DESCRIPTION
Packit 022b05
            "The status of this row, by which new entries may be
Packit 022b05
            created, or old entries deleted from this table.  The
Packit 022b05
            agent need not support setting this object to
Packit 022b05
            createAndWait or notInService since there are no other
Packit 022b05
            writable objects in this table, and writable objects
Packit 022b05
            in rows of corresponding tables such as the
Packit 022b05
            tunnelIfTable may be modified while this row is
Packit 022b05
            active.
Packit 022b05
Packit 022b05
            To create a row in this table for an encapsulation
Packit 022b05
            method which does not support multiple parallel
Packit 022b05
            tunnels with the same endpoints, the management
Packit 022b05
            station should simply use a tunnelInetConfigID of 1,
Packit 022b05
            and set tunnelInetConfigStatus to createAndGo.  For
Packit 022b05
            encapsulation methods such as L2F which allow multiple
Packit 022b05
            parallel tunnels, the management station may select a
Packit 022b05
            pseudo-random number to use as the tunnelInetConfigID
Packit 022b05
            and set tunnelInetConfigStatus to createAndGo.  In the
Packit 022b05
            event that this ID is already in use and an
Packit 022b05
            inconsistentValue is returned in response to the set
Packit 022b05
            operation, the management station should simply select
Packit 022b05
            a new pseudo-random number and retry the operation.
Packit 022b05
Packit 022b05
            Creating a row in this table will cause an interface
Packit 022b05
            index to be assigned by the agent in an
Packit 022b05
            implementation-dependent manner, and corresponding
Packit 022b05
            rows will be instantiated in the ifTable and the
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
            tunnelIfTable.  The status of this row will become
Packit 022b05
            active as soon as the agent assigns the interface
Packit 022b05
            index, regardless of whether the interface is
Packit 022b05
            operationally up.
Packit 022b05
Packit 022b05
            Deleting a row in this table will likewise delete the
Packit 022b05
            corresponding row in the ifTable and in the
Packit 022b05
            tunnelIfTable."
Packit 022b05
    ::= { tunnelInetConfigEntry 7 }
Packit 022b05
Packit 022b05
tunnelInetConfigStorageType OBJECT-TYPE
Packit 022b05
    SYNTAX     StorageType
Packit 022b05
    MAX-ACCESS read-create
Packit 022b05
    STATUS     current
Packit 022b05
    DESCRIPTION
Packit 022b05
            "The storage type of this row.  If the row is
Packit 022b05
            permanent(4), no objects in the row need be writable."
Packit 022b05
    ::= { tunnelInetConfigEntry 8 }
Packit 022b05
Packit 022b05
-- conformance information
Packit 022b05
Packit 022b05
tunnelMIBConformance
Packit 022b05
                  OBJECT IDENTIFIER ::= { tunnelMIB 2 }
Packit 022b05
tunnelMIBCompliances
Packit 022b05
                  OBJECT IDENTIFIER ::= { tunnelMIBConformance 1 }
Packit 022b05
tunnelMIBGroups  OBJECT IDENTIFIER ::= { tunnelMIBConformance 2 }
Packit 022b05
Packit 022b05
-- compliance statements
Packit 022b05
Packit 022b05
tunnelMIBCompliance MODULE-COMPLIANCE
Packit 022b05
    STATUS  deprecated
Packit 022b05
    DESCRIPTION
Packit 022b05
            "The (deprecated) IPv4-only compliance statement for
Packit 022b05
            the IP Tunnel MIB.
Packit 022b05
Packit 022b05
            This is deprecated in favor of
Packit 022b05
            tunnelMIBInetFullCompliance and
Packit 022b05
            tunnelMIBInetReadOnlyCompliance."
Packit 022b05
    MODULE  -- this module
Packit 022b05
    MANDATORY-GROUPS { tunnelMIBBasicGroup }
Packit 022b05
Packit 022b05
        OBJECT      tunnelIfHopLimit
Packit 022b05
        MIN-ACCESS  read-only
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Write access is not required."
Packit 022b05
Packit 022b05
        OBJECT      tunnelIfTOS
Packit 022b05
        MIN-ACCESS  read-only
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Write access is not required."
Packit 022b05
Packit 022b05
        OBJECT      tunnelConfigStatus
Packit 022b05
        MIN-ACCESS  read-only
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Write access is not required."
Packit 022b05
   ::= { tunnelMIBCompliances 1 }
Packit 022b05
Packit 022b05
tunnelMIBInetFullCompliance MODULE-COMPLIANCE
Packit 022b05
    STATUS  current
Packit 022b05
    DESCRIPTION
Packit 022b05
            "The full compliance statement for the IP Tunnel MIB."
Packit 022b05
    MODULE  -- this module
Packit 022b05
    MANDATORY-GROUPS { tunnelMIBInetGroup }
Packit 022b05
Packit 022b05
        OBJECT      tunnelIfAddressType
Packit 022b05
        SYNTAX      InetAddressType { ipv4(1), ipv6(2),
Packit 022b05
                                      ipv4z(3), ipv6z(4) }
Packit 022b05
        DESCRIPTION
Packit 022b05
            "An implementation is only required to support IPv4
Packit 022b05
            and/or IPv6 addresses.  An implementation only needs to
Packit 022b05
            support the addresses it actually supports on the
Packit 022b05
            device."
Packit 022b05
   ::= { tunnelMIBCompliances 2 }
Packit 022b05
Packit 022b05
tunnelMIBInetReadOnlyCompliance MODULE-COMPLIANCE
Packit 022b05
    STATUS  current
Packit 022b05
    DESCRIPTION
Packit 022b05
            "The read-only compliance statement for the IP Tunnel
Packit 022b05
            MIB."
Packit 022b05
    MODULE  -- this module
Packit 022b05
    MANDATORY-GROUPS { tunnelMIBInetGroup }
Packit 022b05
Packit 022b05
        OBJECT      tunnelIfHopLimit
Packit 022b05
        MIN-ACCESS  read-only
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Write access is not required."
Packit 022b05
Packit 022b05
        OBJECT      tunnelIfTOS
Packit 022b05
        MIN-ACCESS  read-only
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Write access is not required."
Packit 022b05
Packit 022b05
        OBJECT      tunnelIfFlowLabel
Packit 022b05
        MIN-ACCESS  read-only
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Write access is not required."
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
        OBJECT      tunnelIfAddressType
Packit 022b05
        SYNTAX      InetAddressType { ipv4(1), ipv6(2),
Packit 022b05
                                      ipv4z(3), ipv6z(4) }
Packit 022b05
        MIN-ACCESS  read-only
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Write access is not required.
Packit 022b05
Packit 022b05
            An implementation is only required to support IPv4
Packit 022b05
            and/or IPv6 addresses.  An implementation only needs to
Packit 022b05
            support the addresses it actually supports on the
Packit 022b05
            device."
Packit 022b05
Packit 022b05
        OBJECT      tunnelIfLocalInetAddress
Packit 022b05
        MIN-ACCESS  read-only
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Write access is not required."
Packit 022b05
Packit 022b05
        OBJECT      tunnelIfRemoteInetAddress
Packit 022b05
        MIN-ACCESS  read-only
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Write access is not required."
Packit 022b05
Packit 022b05
        OBJECT      tunnelIfEncapsLimit
Packit 022b05
        MIN-ACCESS  read-only
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Write access is not required."
Packit 022b05
Packit 022b05
        OBJECT      tunnelInetConfigStatus
Packit 022b05
        MIN-ACCESS  read-only
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Write access is not required, and active is the only
Packit 022b05
            status that needs to be supported."
Packit 022b05
Packit 022b05
        OBJECT      tunnelInetConfigStorageType
Packit 022b05
        MIN-ACCESS  read-only
Packit 022b05
        DESCRIPTION
Packit 022b05
            "Write access is not required."
Packit 022b05
   ::= { tunnelMIBCompliances 3 }
Packit 022b05
Packit 022b05
-- units of conformance
Packit 022b05
Packit 022b05
tunnelMIBBasicGroup OBJECT-GROUP
Packit 022b05
    OBJECTS { tunnelIfLocalAddress, tunnelIfRemoteAddress,
Packit 022b05
       tunnelIfEncapsMethod, tunnelIfHopLimit, tunnelIfTOS,
Packit 022b05
       tunnelIfSecurity, tunnelConfigIfIndex, tunnelConfigStatus }
Packit 022b05
    STATUS  deprecated
Packit 022b05
    DESCRIPTION
Packit 022b05
            "A collection of objects to support basic management
Packit 022b05
Packit 022b05
Packit 022b05
Packit 022b05
            of IPv4 Tunnels.  Since this group cannot support
Packit 022b05
            IPv6, it is deprecated in favor of
Packit 022b05
            tunnelMIBInetGroup."
Packit 022b05
    ::= { tunnelMIBGroups 1 }
Packit 022b05
Packit 022b05
tunnelMIBInetGroup OBJECT-GROUP
Packit 022b05
    OBJECTS { tunnelIfAddressType, tunnelIfLocalInetAddress,
Packit 022b05
       tunnelIfRemoteInetAddress, tunnelIfEncapsMethod,
Packit 022b05
       tunnelIfEncapsLimit,
Packit 022b05
       tunnelIfHopLimit, tunnelIfTOS, tunnelIfFlowLabel,
Packit 022b05
       tunnelIfSecurity, tunnelInetConfigIfIndex,
Packit 022b05
       tunnelInetConfigStatus, tunnelInetConfigStorageType }
Packit 022b05
    STATUS  current
Packit 022b05
    DESCRIPTION
Packit 022b05
            "A collection of objects to support basic management
Packit 022b05
            of IPv4 and IPv6 Tunnels."
Packit 022b05
    ::= { tunnelMIBGroups 2 }
Packit 022b05
Packit 022b05
END