📄 rfc1559.txt
字号:
-- The implementation of the End Communication Layer Group is optional.
-- A system can be said to implement this group if and only if
-- all objects in this group are implemented.
-- Remote State Table
phivEndRemoteTable OBJECT-TYPE
SYNTAX SEQUENCE OF PhivEndRemoteEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
DECnet Phase IV MIB Working Group [Page 7]
RFC 1559 DECnet Phase IV MIB December 1993
"Information about the state of sessions between the
node under study and the nodes found in the table."
::= { end 1 }
phivEndRemoteEntry OBJECT-TYPE
SYNTAX PhivEndRemoteEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Information about a particular remote node as seen
from the end communication layer."
INDEX { phivEndRemoteHostNodeID }
::= { phivEndRemoteTable 1 }
PhivEndRemoteEntry ::=
SEQUENCE {
phivEndRemoteHostNodeID
PhivAddr,
phivEndRemoteState
INTEGER,
phivEndCircuitIndex
INTEGER,
phivEndActiveLinks
INTEGER,
phivEndDelay
INTEGER
}
phivEndRemoteHostNodeID OBJECT-TYPE
SYNTAX PhivAddr -- OCTET STRING (SIZE (2))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value is the address of the remote node to be
evaluated."
::= { phivEndRemoteEntry 1 }
phivEndRemoteState OBJECT-TYPE
SYNTAX INTEGER {
on (1),
off (2),
shut (3),
restricted (4)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This represents the operational state of the remote node
DECnet Phase IV MIB Working Group [Page 8]
RFC 1559 DECnet Phase IV MIB December 1993
being evaluated.
The possible states are:
ON Allows logical links.
OFF Allows no new links, terminates existing
links, and stops routing traffic through.
SHUT Allows no new logical links, does not
destroy existing logical links, and goes
to the OFF state when all logical links are
gone.
RESTRICTED Allows no new incoming logical links from
other nodes.
NOTE: These values are incremented by one compared to
the standard DECnet values in order to maintain
compliance with RFC 1155."
::= { phivEndRemoteEntry 2 }
phivEndCircuitIndex OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A unique index value for each known circuit used to
communicate with the remote node. This is the same
value as phivCircuitIndex."
::= { phivEndRemoteEntry 3 }
phivEndActiveLinks OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This read-only parameter represents the number of active
logical links from the executor to the destination node."
::= { phivEndRemoteEntry 4 }
phivEndDelay OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This read-only parameter is the average round trip
delay in seconds to the destination node. This
parameter is kept on a remote node basis."
::= { phivEndRemoteEntry 5 }
-- End System Counter Table
DECnet Phase IV MIB Working Group [Page 9]
RFC 1559 DECnet Phase IV MIB December 1993
phivEndCountTable OBJECT-TYPE
SYNTAX SEQUENCE OF PhivEndCountEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Information about the counters associated with each end
system that is known to the entity. These counters
reflect totals from the perspective of the executor
node."
::= { end 2 }
phivEndCountEntry OBJECT-TYPE
SYNTAX PhivEndCountEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Information about a particular session between two end
systems."
INDEX { phivEndCountHostNodeID }
::= { phivEndCountTable 1 }
PhivEndCountEntry ::=
SEQUENCE {
phivEndCountHostNodeID
PhivAddr,
phivEndCountSecsLastZeroed
PhivCounter,
phivEndCountUsrBytesRec
PhivCounter,
phivEndCountUsrBytesSent
PhivCounter,
phivEndUCountUsrMessRec
PhivCounter,
phivEndCountUsrMessSent
PhivCounter,
phivEndCountTotalBytesRec
PhivCounter,
phivEndCountTotalBytesSent
PhivCounter,
phivEndCountTotalMessRec
PhivCounter,
phivEndCountTotalMessSent
PhivCounter,
phivEndCountConnectsRecd
PhivCounter,
phivEndCountConnectsSent
PhivCounter,
DECnet Phase IV MIB Working Group [Page 10]
RFC 1559 DECnet Phase IV MIB December 1993
phivEndCountReponseTimeouts
PhivCounter,
phivEndCountRecdConnectResErrs
PhivCounter
}
phivEndCountHostNodeID OBJECT-TYPE
SYNTAX PhivAddr -- OCTET STRING (SIZE (2))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value is the address of the remote node to be
evaluated."
::= { phivEndCountEntry 1 }
phivEndCountSecsLastZeroed OBJECT-TYPE
SYNTAX PhivCounter (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value is the number of seconds that have elapsed
since the counters for the node in this table row were
last set to zero. This counter is located in the
network management layer, but is returned with the
end system information which follows."
::= { phivEndCountEntry 2 }
phivEndCountUsrBytesRec OBJECT-TYPE
SYNTAX PhivCounter (0..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of user bytes received from the target host."
::= { phivEndCountEntry 3 }
phivEndCountUsrBytesSent OBJECT-TYPE
SYNTAX PhivCounter (0..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of user bytes sent to the target host."
::= { phivEndCountEntry 4 }
phivEndUCountUsrMessRec OBJECT-TYPE
SYNTAX PhivCounter (0..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
DECnet Phase IV MIB Working Group [Page 11]
RFC 1559 DECnet Phase IV MIB December 1993
"Number of user messages received from the target host."
::= { phivEndCountEntry 5 }
phivEndCountUsrMessSent OBJECT-TYPE
SYNTAX PhivCounter (0..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of user messages sent to the target host."
::= { phivEndCountEntry 6 }
phivEndCountTotalBytesRec OBJECT-TYPE
SYNTAX PhivCounter (0..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of bytes received from the target host."
::= { phivEndCountEntry 7 }
phivEndCountTotalBytesSent OBJECT-TYPE
SYNTAX PhivCounter (0..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of bytes sent to the target host."
::= { phivEndCountEntry 8 }
phivEndCountTotalMessRec OBJECT-TYPE
SYNTAX PhivCounter (0..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of messages received from the target host."
::= { phivEndCountEntry 9 }
phivEndCountTotalMessSent OBJECT-TYPE
SYNTAX PhivCounter (0..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of messages sent to the target host."
::= { phivEndCountEntry 10 }
phivEndCountConnectsRecd OBJECT-TYPE
SYNTAX PhivCounter (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
DECnet Phase IV MIB Working Group [Page 12]
RFC 1559 DECnet Phase IV MIB December 1993
"Number of connects received from the target host."
::= { phivEndCountEntry 11 }
phivEndCountConnectsSent OBJECT-TYPE
SYNTAX PhivCounter (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of connects sent to the target host."
::= {phivEndCountEntry 12 }
phivEndCountReponseTimeouts OBJECT-TYPE
SYNTAX PhivCounter (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of response timeouts."
::= { phivEndCountEntry 13 }
phivEndCountRecdConnectResErrs OBJECT-TYPE
SYNTAX PhivCounter (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of received connect resource errors."
::= {phivEndCountEntry 14 }
-- additional End System objects
phivEndMaxLinks OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This value represents the maximum active logical
link count allowed for the executor."
::= { end 3 }
phivEndNSPVers OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This read-only parameter represents the version number
of the node End Communication S/W. The format is
version number, ECO, and user ECO, e.g., 4.1.0"
::= { end 4 }
DECnet Phase IV MIB Working Group [Page 13]
RFC 1559 DECnet Phase IV MIB December 1993
phivEndRetransmitFactor OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This value represents the maximum number of times the
source End Communication at the executor node will
restart the retransmission timer when it expires. If
the number is exceeded, Session Control disconnects the
logical link for the user."
::= { end 5 }
phivEndDelayFact OBJECT-TYPE
SYNTAX INTEGER (1..255)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This is the number by which to multiply one sixteenth
of the estimated round trip delay to a node to set the
retransmission timer to that node."
::= { end 6 }
phivEndDelayWeight OBJECT-TYPE
SYNTAX INTEGER (1..255)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -