ActiveXperts Network Monitor 2019##AdminFavorites

CTRON-IF-REMAP-MIB by vendor Enterasys Networks Inc

CTRON-IF-REMAP-MIB file content

The SNMP protocol is used to for conveying information and commands between agents and managing entities. SNMP uses the User Datagram Protocol (UDP) as the transport protocol for passing data between managers and agents. The reasons for using UDP for SNMP are, firstly it has low overheads in comparison to TCP, which uses a 3-way hand shake for connection. Secondly, in congested networks, SNMP over TCP is a bad idea because TCP in order to maintain reliability will flood the network with retransmissions.

Management information (MIB) is represented as a collection of managed objects. These objects together form a virtual information base called MIB. An agent may implement many MIBs, but all agents must implement a particular MIB called MIB-II [16]. This standard defines variables for things such as interface statistics (interface speeds, MTU, octets sent, octets received, etc.) as well as various other things pertaining to the system itself (system location, system contact, etc.). The main goal of MIB-II is to provide general TCP/IP management information.

Use ActiveXperts Network Monitor 2019 to import vendor-specific MIB files, inclusing CTRON-IF-REMAP-MIB.


Vendor: Enterasys Networks Inc
Mib: CTRON-IF-REMAP-MIB  [download]  [view objects]
Tool: ActiveXperts Network Monitor 2019 [download]    (ships with advanced SNMP/MIB tools)
CTRON-IF-REMAP-MIB DEFINITIONS ::= BEGIN

--  ctron-if-remap-mib.txt
--  Revision: 1.03.00
--  Part Number: 
--  Date: May 6, 1997

--  Cabletron Systems, Inc.
--  35 Industrial Way, P.O. Box 5005
--  Rochester, NH 03867-0505
--  (603) 332-9400
--  support@ctron.com

--  This module provides authoritative definitions for Cabletron's
--  enterprise-specific repeater MIB.
--
--  This module will be extended, as required.
--

--  Cabletron Systems reserves the right to make changes in 
--  specification and other information contained in this document 
--  without prior notice.  The reader should consult Cabletron Systems
--  to determine whether any such changes have been made.
--
--  In no event shall Cabletron Systems be liable for any incidental, 
--  indirect, special, or consequential damages whatsoever (including 
--  but not limited to lost profits) arising out of or related to this
--  document or the information contained in it, even if Cabletron
--  Systems has been advised of, known, or should have known, the 
--  possibility of such damages.
--
--  Cabletron grants vendors, end-users, and other interested parties
--  a non-exclusive license to use this Specification in connection
--  with the management of Cabletron products.

--  Copyright August 95 Cabletron Systems

        IMPORTS
        OBJECT-TYPE
                FROM RFC-1212
        ctIFRemap
                FROM CTRON-MIB-NAMES;

        ctIfRemapConfig OBJECT IDENTIFIER ::= { ctIFRemap 1 }

-- The ctIfRemapConfig group is used to control interface remapping.
-- Interface remapping provides the ability to map one or more
-- interfaces directly to another interface.  This control is defined
-- by creating a row in the ctIFRemapTable specifing source interface,
-- and destination interface with ctIfRemapStatus set to a value of
-- enable(1).
--
-- When a source interface is remapped to a destination interface, the
-- destination interface will transmit out all packets received or 
-- transmitted on the source interface. Counters on the destination 
-- interface will increment for all packets transmitted be it by normal 
-- bridging or due to ifremap.


ctIFRemapTable  OBJECT-TYPE
    SYNTAX      SEQUENCE OF CtIFRemapEntry
    ACCESS      not-accessible
    STATUS      mandatory
    DESCRIPTION
        "This table provides the ability to remap all frames from one
        interface onto another interface.  As described by the remote
        analysizer function.

        A given source interface can be mapped to one or more destination
        interfaces.  Each row that exists in this table defines such a
        relationship.  By disabling a row in this table remapping
        relationship no longer exists.

        If a given relationship can not be created the set will fail
        with a BAD-VALUE error."
::= { ctIfRemapConfig 1 }

ctIFRemapEntry  OBJECT-TYPE
    SYNTAX      CtIFRemapEntry
    ACCESS      not-accessible
    STATUS      mandatory
    DESCRIPTION
        "Describes a particular interface remap entry."
INDEX { ctIfRemapSourceIf, ctIfRemapDestIf }
::= { ctIFRemapTable 1 }

CtIFRemapEntry ::= SEQUENCE {
        ctIfRemapSourceIf
                INTEGER,
        ctIfRemapDestIf
                INTEGER,
        ctIfRemapStatus
                INTEGER
        }

ctIfRemapSourceIf OBJECT-TYPE
    SYNTAX INTEGER
    ACCESS read-only
    STATUS mandatory
    DESCRIPTION
        "The source interface which will have all packets redirected to
        the destination interface as defined by ctIfRemapDestIf."
    ::= { ctIFRemapEntry 1 }

ctIfRemapDestIf OBJECT-TYPE
    SYNTAX INTEGER
    ACCESS read-only
    STATUS mandatory
    DESCRIPTION
        "Defines the interface that will see all packets redirected from
        ctIfRemapSourceIf."
    ::= { ctIFRemapEntry 2 }

ctIfRemapStatus OBJECT-TYPE
    SYNTAX      INTEGER {
        enable(1),
        disable(2)
        }
    ACCESS      read-write
    STATUS      mandatory
    DESCRIPTION
        "Defines the status of the interface remap entry.  Setting
        ctIfRemapStatus to a value of disable(2) disables the entry and
        deletes the row from the table.

        Therefore this table only contains entries that are active."
    DEFVAL { enable }
    ::= { ctIFRemapEntry 3 }

ctIfRemapTableNumberEntries OBJECT-TYPE
    SYNTAX INTEGER
    ACCESS read-only
    STATUS mandatory
    DESCRIPTION
        "The number of active entries in the ctIfRemap Table."
    ::= { ctIFRemap 2 }

ctIfRemapTableMaxNumberEntries OBJECT-TYPE
    SYNTAX INTEGER
    ACCESS read-only
    STATUS mandatory
    DESCRIPTION
        "The maximum number of entries allowed in the ctIfRemap Table."
    ::= { ctIFRemap 3 }

ctIfRemapPhysicalErrorsEnable OBJECT-TYPE
    SYNTAX INTEGER {
        enable(1),
        disable(2),
        unsupported(3)
        }
    ACCESS read-write
    STATUS mandatory
    DESCRIPTION
        "Enable or disable remapping of physical errors, or indicate that
         the device is incapable of remapping physical errors.  If the
         feature is supported, the value can only be set to 1 or 2.  If
         the feature is unsupported, a get will return 3 and the value 
         cannot be changed."
    ::= { ctIFRemap 4 }

ctIfRemapTableEnable OBJECT-TYPE
    SYNTAX INTEGER {
      enable(1),
      disable(2),
      unsupported(3)
      }
    ACCESS read-write
    STATUS mandatory
    DESCRIPTION
      "This object places the device into the correct mode to allow for 
      interface remapping.

      Setting this object to enable(1) configures the device to allow
      ifremapping.

      Setting this object to disable(2) configures the device to
      disallow ifremapping.

      A value of unsupported(3) indicates that this device does not 
      require any special configuration to allow for interface remapping."
    DEFVAL { enable }
    ::= { ctIFRemap 5 }

ctIfRemapTableStart OBJECT-TYPE
    SYNTAX INTEGER {
      start(1),
      stop(2),
      unsupported(3)
      }
    ACCESS read-write
    STATUS mandatory
    DESCRIPTION
      "This object allows operational control (start/stop) of all active 
      entries in  the ctIFRemapTable.  This object becomes meaningless
      if the ctIfRemapTableEnable object is set to disable(2).

      Setting this object to start(1) allows all active entries to 
      perform interface remapping.

      Setting this object to stop(2) stops all interface remapping
      Existing entries are not deleted from the table.

      A value of unsupported(3) indicates that this device does not
      support the starting and stopping of active entries in the
      ctIFRemapTable."
    DEFVAL { start }
    ::= { ctIFRemap 6 }

END