⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rfc1747.mib

📁 wm PNE 3.3 source code, running at more than vxworks6.x version.
💻 MIB
📖 第 1 页 / 共 5 页
字号:
SNA-SDLC-MIB DEFINITIONS ::= BEGINIMPORTS    MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE,    Counter32, Integer32, TimeTicks        FROM SNMPv2-SMI    DisplayString, RowStatus, TimeInterval        FROM SNMPv2-TC    MODULE-COMPLIANCE, OBJECT-GROUP        FROM SNMPv2-CONF    mib-2, ifIndex, ifAdminStatus, ifOperStatus        FROM RFC1213-MIB;snaDLC MODULE-IDENTITY        LAST-UPDATED  "9411150000Z"        ORGANIZATION  "IETF SNA DLC MIB Working Group"        CONTACT-INFO                "        Wayne Clark                 Postal: cisco Systems, Inc.                         3100 Smoketree Ct.                         Suite 1000                         Raleigh, NC 27604                         US                    Tel: +1 919 878 6958                 E-Mail: wclark@cisco.com"        DESCRIPTION                "This is the MIB module for objects used to                 manage SDLC devices."::= { mib-2 41 }----  The following data link controls are modelled in this MIB module:----     1. SDLC--sdlc        OBJECT IDENTIFIER ::= { snaDLC 1 }----  THE SDLC GROUP--  ==============----  The following resources are modelled in the SDLC group of this--  MIB module:----     1. PORTS--     2. LINK STATIONSsdlcPortGroup OBJECT IDENTIFIER ::= { sdlc 1 } -- Physical PortssdlcLSGroup   OBJECT IDENTIFIER ::= { sdlc 2 } -- Logical Link Stations----  THE SDLC PORT GROUP--  ===================----  The following classes of information is modelled for each SDLC port:----     1.  ADMINISTRATIVE ( read/write)--     2.  OPERATIONAL    ( read-only)--     3.  STATISTICS     ( read-only)--  Information not found in this group is found in tables described in--  the following RFCs:----    1.  RFC1213  - MIB-II----            TABLE                      INDEX--            ====================       ====================--        a.  ifTable                    ifIndex----    2.  RFC1659  - The RS232-like MIB----            TABLE                      INDEX--            ====================       ====================--        a.  rs232PortTable             rs232PortIndex--        b.  rs232SyncPortTable         rs232SyncPortIndex--        c.  rs232InSigTable            rs232InSigPortIndex,--                                       rs232InSigName--        d.  rs232OutSigTable           rs232OutSigPortIndex,--                                       rs232OutSigName--     ** e.  rs232AsyncPortTable        rs232AsyncPortIndex----     ** rs232AsyncPortTable for ISO 3309.3 ( Start-Stop SDLC).--  *************************************************************--  *                                                           *--  *           THE SDLC PORT ADMINISTRATIVE TABLE              *--  *                                                           *--  *************************************************************sdlcPortAdminTable  OBJECT-TYPE                    SYNTAX      SEQUENCE OF SdlcPortAdminEntry                    MAX-ACCESS  not-accessible                    STATUS      current                    DESCRIPTION                        "This table contains objects that can be                        changed to manage an SDLC port.    Changing one                        of these parameters may take effect in the                        operating port immediately or may wait until                        the interface is restarted depending on the                        details of the implementation.                        Most of the objects in this read-write table                        have corresponding read-only objects in the                        sdlcPortOperTable that return the current                        operating value.                        The operating values may be different from                        these configured values if  a configured                        parameter was changed after the interface was                        started."                     ::= { sdlcPortGroup 1 }sdlcPortAdminEntry  OBJECT-TYPE                    SYNTAX      SdlcPortAdminEntry                    MAX-ACCESS  not-accessible                    STATUS      current                    DESCRIPTION                        "A list of configured values for an SDLC port."                    INDEX   { ifIndex }                    ::= { sdlcPortAdminTable 1 }SdlcPortAdminEntry  ::= SEQUENCE{        sdlcPortAdminName           DisplayString,        sdlcPortAdminRole           INTEGER,        sdlcPortAdminType           INTEGER,        sdlcPortAdminTopology       INTEGER,        sdlcPortAdminISTATUS        INTEGER,        sdlcPortAdminACTIVTO        TimeInterval,        sdlcPortAdminPAUSE          TimeInterval,        sdlcPortAdminSERVLIM        Integer32,        sdlcPortAdminSlowPollTimer  TimeInterval}sdlcPortAdminName   OBJECT-TYPE                    SYNTAX      DisplayString (SIZE (1..10))                    MAX-ACCESS  read-write                    STATUS      current                    DESCRIPTION                        "An octet string that defines the physical port                        to which this interface is assigned.  It has                        implementation-specific significance. Its value                        shall be unique within the administered                        system.  It must contain only ASCII printable                        characters.  Should an implementation choose to                        accept a write operation  for this object, it                        causes the logical port definition associated                        with the table instance to be moved to  a                        different physical port.  A write operation                        shall not take effect until the port is cycled                        inactive."                    ::= { sdlcPortAdminEntry 1 }sdlcPortAdminRole   OBJECT-TYPE                    SYNTAX      INTEGER                    {                        primary(1),                        secondary(2),                        negotiable(3)                    }                    MAX-ACCESS  read-write                    STATUS      current                    DESCRIPTION                        "This object describes the role that the link                        station shall assume the next time a connection                        is established.                        Even though this is defined as a port object,                        it is a link station attribute in the sense                        that a role is per link station.  However, it                        is not possible to vary link station roles on a                        particular port.  For example, if an SDLC port                        is configured to primary, all link stations on                        that port must be primary."                    ::= { sdlcPortAdminEntry 2 }sdlcPortAdminType   OBJECT-TYPE                    SYNTAX      INTEGER                    {                         leased(1),                         switched(2)                    }                    MAX-ACCESS  read-write                    STATUS      current                    DESCRIPTION                        "This parameter defines whether the SDLC port                        is to connect to a leased or switched line.  A                        write operation to this administrative  value                        shall not take effect until the SDLC port has                        been cycled inactive."                    DEFVAL { leased }                    ::= { sdlcPortAdminEntry 3 }sdlcPortAdminTopology  OBJECT-TYPE                    SYNTAX      INTEGER                    {                         pointToPoint(1),                         multipoint(2)                    }                    MAX-ACCESS  read-write                    STATUS      current                    DESCRIPTION                        "This parameter defines whether the SDLC port is                        capable of operating in either a point-to-point                        or multipoint topology.                        sdlcPortAdminTopology == multipoint implies the                        port can also operate in a point-to-point                        topology.  sdlcPortAdminTopology ==                        pointToPoint does not imply the port can                        operate in a multipoint topology.                        A write operation to this administrative value                        shall not take effect until the SDLC port has                        been cycled inactive."                    DEFVAL { pointToPoint }                    ::= { sdlcPortAdminEntry 4 }sdlcPortAdminISTATUS  OBJECT-TYPE                    SYNTAX      INTEGER                    {                         inactive(1),                         active(2)                    }                    MAX-ACCESS  read-write                    STATUS      current                    DESCRIPTION                        "This parameter controls the initial value of                        the administrative status, ifAdminStatus, of                        this SDLC port at port start-up.  Depending                        on the implementation, a write operation to                        this administrative object may not take effect                        until the SDLC port has been cycled inactive."                    DEFVAL { active }                    ::= { sdlcPortAdminEntry 5 }sdlcPortAdminACTIVTO    OBJECT-TYPE                    SYNTAX      TimeInterval                    MAX-ACCESS  read-write                    STATUS      current                    DESCRIPTION                        "This parameter defines the period of time (in                        1/100ths of a second) that the port will allow a                        switched line to remain inactive before                        disconnecting.  A switched line is considered                        to be inactive if there are no I-Frames being                        transferred.  A value of zero indicates no                        timeout.  Depending on the implementation, a                        write operation to this administered value may                        not take effect until the port is cycled                        inactive.                        This object only has meaning for SDLC ports                        where sdlcPortAdminType == switched                        The object descriptor contains the name of an                        NCP configuration parameter, ACTIVTO.  Please                        note that the value of this object represents                        1/100ths of a second while the NCP ACTIVTO is                        represented in seconds."                    DEFVAL { 0 }                    ::= { sdlcPortAdminEntry 6 }sdlcPortAdminPAUSE  OBJECT-TYPE                    SYNTAX      TimeInterval                    MAX-ACCESS  read-write                    STATUS      current                    DESCRIPTION                        "This object defines the minimum elapsed time                        (in 1/100ths of a second) between any two                        traversals of the poll list for a primary SDLC                        port.  Depending on the implementation, a write                        operation to this administered value  may not                        take effect until the port is cycled inactive.                        The object descriptor contains the name of an                        NCP configuration parameter, PAUSE.  Please                        note that the value of this object represents                        1/100ths of a second while the NCP PAUSE is                        represented in 1/10ths of a second.                        This object only has meaning for SDLC ports                        where sdlcPortAdminRole == primary "                    DEFVAL { 200 }                    ::= { sdlcPortAdminEntry 7 }sdlcPortAdminSERVLIM OBJECT-TYPE                    SYNTAX      Integer32                    MAX-ACCESS  read-write

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -