📄 rfc1747.txt
字号:
Hilgeman, Nix, Bartky & Clark [Page 6]
RFC 1747 SNADLC SDLC MIB using SMIv2 January 1995
3. Definitions
SNA-SDLC-MIB DEFINITIONS ::= BEGIN
IMPORTS
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 }
Hilgeman, Nix, Bartky & Clark [Page 7]
RFC 1747 SNADLC SDLC MIB using SMIv2 January 1995
--
-- THE SDLC GROUP
-- ==============
--
-- The following resources are modelled in the SDLC group of this
-- MIB module:
--
-- 1. PORTS
-- 2. LINK STATIONS
sdlcPortGroup OBJECT IDENTIFIER ::= { sdlc 1 } -- Physical Ports
sdlcLSGroup 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).
Hilgeman, Nix, Bartky & Clark [Page 8]
RFC 1747 SNADLC SDLC MIB using SMIv2 January 1995
-- *************************************************************
-- * *
-- * 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,
Hilgeman, Nix, Bartky & Clark [Page 9]
RFC 1747 SNADLC SDLC MIB using SMIv2 January 1995
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
{
Hilgeman, Nix, Bartky & Clark [Page 10]
RFC 1747 SNADLC SDLC MIB using SMIv2 January 1995
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
Hilgeman, Nix, Bartky & Clark [Page 11]
RFC 1747 SNADLC SDLC MIB using SMIv2 January 1995
"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
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -